* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1b1a;
  background: #f8f4ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid rgba(28, 27, 26, 0.1);
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #c94a2f;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 42px 0 20px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1c1b1a;
  background: #1c1b1a;
  color: #f8f4ee;
}

.btn.alt {
  background: transparent;
  color: #1c1b1a;
}

.btn.light {
  background: #f8f4ee;
  color: #1c1b1a;
  border-color: #f8f4ee;
}

.inline-link {
  border-bottom: 1px solid #c94a2f;
  padding-bottom: 2px;
  color: #c94a2f;
}

.section {
  padding: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.bg-spice {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f4ee;
  border-radius: 28px;
  padding: 60px 40px;
}

.bg-spice .section-title,
.bg-spice .section-subtitle {
  color: #f8f4ee;
}

.bg-spice .btn {
  background: #f8f4ee;
  color: #1c1b1a;
  border-color: #f8f4ee;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0;
}

.section-subtitle {
  margin: 0;
  font-size: 1rem;
  color: #4b4036;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mag-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mag-columns .column {
  background: #fff6ea;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quote {
  padding: 24px;
  background: #1c1b1a;
  color: #f8f4ee;
  border-radius: 20px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row img {
  border-radius: 16px;
}

.layered {
  background: #fff;
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.layered::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 74, 47, 0.25);
  border-radius: 26px;
  pointer-events: none;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(28, 27, 26, 0.08);
}

.service-card img {
  border-radius: 16px;
  height: 140px;
  object-fit: cover;
}

.service-card strong {
  font-size: 1.1rem;
}

.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
  color: #c94a2f;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1c1b1a;
  color: #f8f4ee;
  padding: 28px;
  border-radius: 24px;
}

.form-panel label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: #c94a2f;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff6ea;
  padding: 24px;
  border-radius: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 18px;
  background: #292929;
  border-radius: 16px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(28, 27, 26, 0.1);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #1c1b1a;
  color: #f8f4ee;
  padding: 16px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-banner button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-accept {
  background: #f8f4ee;
  color: #1c1b1a;
}

.cookie-reject {
  background: transparent;
  color: #f8f4ee;
  border: 1px solid #f8f4ee;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip img {
  border-radius: 14px;
}

@media (min-width: 800px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .section-split {
    flex-direction: row;
    align-items: flex-start;
  }

  .mag-columns {
    flex-direction: row;
  }

  .gallery-row {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .image-strip {
    flex-direction: row;
  }
}

@media (min-width: 1040px) {
  .service-card {
    flex: 1 1 calc(33% - 16px);
  }
}
