@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #575454;
  --accent: #9c5b43;
  --accent-dark: #6f3b2c;
  --cream: #f7f1ec;
  --sand: #efe7df;
  --night: #141010;
  --line: #e2d8cf;
  --shadow: 0 24px 50px rgba(18, 14, 14, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 20px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-cream {
  background: var(--cream);
}

.section-sand {
  background: var(--sand);
}

.section-night {
  background: var(--night);
  color: #f7f2ee;
}

.hero {
  padding: 70px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: linear-gradient(135deg, rgba(156, 91, 67, 0.08), rgba(250, 247, 242, 0.9));
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin: 0;
}

.hero-content p {
  max-width: 560px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-block {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translateY(-20px);
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(156, 91, 67, 0.12);
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
}

.testimonial {
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.service-card.active {
  border-color: var(--accent);
  background: rgba(156, 91, 67, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.section-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #151212;
  color: #f6f1ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: rgba(246, 241, 238, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-stack img {
  border-radius: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
  }

  .cards,
  .pricing-grid,
  .service-options,
  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .price-item,
  .service-card,
  .step {
    flex: 1 1 calc(50% - 12px);
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    flex: 1;
  }

  .hero-content {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .cards .card,
  .pricing-grid .price-item,
  .service-options .service-card,
  .steps .step {
    flex: 1 1 calc(33.333% - 12px);
  }

  .nav {
    padding: 28px 8vw;
  }

  .section {
    padding: 80px 8vw;
  }
}
