@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --cream: #f8f4ef;
  --rose: #f4d8da;
  --caramel: #d6a98c;
  --ink: #2b2121;
  --sage: #b9c1b5;
  --pearl: #fffaf5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 20px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary {
  background: var(--ink);
  color: var(--pearl);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.cta-primary:hover {
  transform: translateY(-2px);
}

.cta-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--pearl);
}

.section-rose {
  background: var(--rose);
}

.section-sage {
  background: var(--sage);
}

.hero {
  position: relative;
  padding: 60px 0 80px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.hero-card {
  background: var(--pearl);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 35px rgba(43, 33, 33, 0.08);
  width: min(420px, 100%);
  align-self: flex-start;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: min(520px, 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--rose);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.offset-highlight {
  background: var(--ink);
  color: var(--pearl);
  padding: 22px;
  border-radius: 16px;
  align-self: flex-start;
  width: min(360px, 100%);
}

.offset-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  background: var(--pearl);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(43, 33, 33, 0.08);
}

.offset-card:nth-child(2) {
  transform: translateX(16px);
}

.offset-card:nth-child(3) {
  transform: translateX(32px);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-grid .story-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--ink);
  border-radius: 50%;
  margin-top: 6px;
  flex: 0 0 auto;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--pearl);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 24px rgba(43, 33, 33, 0.08);
}

.service-price {
  font-weight: 600;
  font-size: 1.1rem;
}

.service-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--pearl);
  padding: 20px;
  border-radius: 16px;
  font-style: italic;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: var(--pearl);
  border: 1px solid rgba(43, 33, 33, 0.1);
  cursor: pointer;
}

.service-option.active {
  border-color: var(--ink);
  background: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(43, 33, 33, 0.2);
  font-family: inherit;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  padding: 50px 0;
  background: var(--ink);
  color: var(--pearl);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--caramel);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(43, 33, 33, 0.95);
  color: var(--pearl);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  padding: 60px 0 40px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-grid .story-text {
    flex: 1;
  }

  .story-grid .story-image {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .testimonial-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1 1 240px;
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-row img {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
  }

  .form-wrap > * {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }
}
