:root {
  --cream: #f8f1e8;
  --light: #fffaf4;
  --white: #ffffff;
  --text: #2f2a25;
  --muted: #6f665f;
  --sage: #8fa58b;
  --sage-dark: #5f735b;
  --terra: #c87557;
  --peach: #fff1eb;
  --border: #eadfd2;
  --shadow: 0 18px 60px rgba(47, 42, 37, 0.08);
  --max: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}

ul {
  padding-left: 0;
  list-style: none;
}

.container {
  width: min(var(--max), 90%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 90%);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--terra);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.script {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--sage-dark);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 22px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 20px;
}

h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.section {
  padding: 92px 0;
}

.light {
  background: var(--light);
}

.btn,
.footer-cta,
.text-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid var(--terra);
  border-radius: 6px;
  background: var(--terra);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn:hover,
.footer-cta:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn:hover {
  box-shadow: 0 14px 30px rgba(200, 117, 87, 0.22);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 26px 0;
  background: rgba(248, 241, 232, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 223, 210, 0.45);
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.nav.nav-scrolled {
  padding: 12px 0;
  background: rgba(248, 241, 232, 0.96);
  box-shadow: 0 8px 28px rgba(47, 42, 37, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  width: 440px;
  max-width: 45vw;
  height: 76px;
  transition: width 0.28s ease, height 0.28s ease;
}

.header-logo {
  width: 100%;
  max-width: 440px;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.18s ease, transform 0.28s ease;
}

.nav.nav-scrolled .logo {
  width: 200px;
  height: 52px;
}

.nav.nav-scrolled .header-logo {
  max-width: 200px;
  max-height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:not(.btn) {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a.active::after,
.nav-links a:not(.btn):hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--sage-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--light);
  color: var(--text);
  padding: 10px 13px;
  border-radius: 6px;
  font: inherit;
}

.hero {
  padding: 105px 0 82px;
  overflow: hidden;
}

.hero-grid,
.split,
.two-column,
.cta-grid,
.about-grid,
.signature-grid {
  display: grid;
  align-items: center;
  gap: 70px;
}

.hero-grid {
  grid-template-columns: 1fr 1fr;
}

.split,
.cta-grid {
  grid-template-columns: 1fr 1.05fr;
}

.split.reverse {
  grid-template-columns: 1.05fr 1fr;
}

.two-column {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.hero-copy p {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-art {
  position: relative;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -40px auto auto -50px;
  width: 250px;
  height: 250px;
  background: url("assets/images/blob.svg") center/contain no-repeat;
  z-index: -1;
}

.page-hero {
  padding-top: 82px;
  padding-bottom: 44px;
}

.page-hero .narrow {
  text-align: center;
}

.image-card {
  border-radius: 90px 0 90px 0;
  overflow: hidden;
  background: var(--light);
  box-shadow: var(--shadow);
}

.card,
.service-card,
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(47, 42, 37, 0.04);
}

.card {
  padding: 38px;
  border-radius: 14px;
}

.cards,
.three,
.services-grid,
.process-grid,
.profile-grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.service-card {
  border-radius: 16px;
  padding: 34px 28px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-card.featured {
  border-color: var(--sage);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-self: center;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(143, 165, 139, 0.25);
  color: var(--sage-dark);
  font-size: 24px;
  margin: 0 auto 20px;
}

.icon.peach {
  background: rgba(200, 117, 87, 0.18);
  color: var(--terra);
}

.service-card .list,
.card .list {
  margin-top: 18px;
}

.list {
  display: grid;
  gap: 12px;
  color: var(--muted);
  text-align: left;
}

.list li {
  position: relative;
  padding-left: 26px;
}

.list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--terra);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 18px;
  justify-content: center;
}

.statement {
  position: relative;
  overflow: hidden;
  padding: 80px 55px;
  border-radius: 22px;
  background: var(--sage);
  color: var(--white);
}

.statement h2,
.statement p,
.statement .eyebrow {
  color: var(--white);
}

.statement::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 20px;
  width: 180px;
  height: 180px;
  background: url("assets/images/leaf.svg") center/contain no-repeat;
  opacity: 0.32;
}

.cta-band {
  padding: 70px 0;
}

.cta-box {
  padding: 60px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
}

.footer {
  padding: 55px 0 25px;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 36px;
}

.footer strong {
  display: inline-block;
  margin-bottom: 14px;
}

.footer ul {
  color: var(--muted);
  font-size: 14px;
}

.footer li {
  margin-bottom: 7px;
}

.footer-logo-link {
  display: inline-block;
  width: min(260px, 100%);
  margin-bottom: 14px;
}

.footer-logo {
  width: 100%;
  height: auto;
}

.footer-cta {
  display: inline-flex;
  margin-top: 12px;
  color: var(--sage-dark);
  font-weight: 800;
}

.copyright {
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: inherit;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  opacity: 0.75;
  transform: translateX(3px);
}

.contact-card {
  text-align: center;
}

.contact-card .contact-links {
  align-items: center;
}

.process-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 42px;
}

.process-step {
  position: relative;
  padding: 36px 32px 34px;
  border-radius: 16px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--terra);
  font-family: "Cinzel", Georgia, serif;
  font-size: 18px;
}

.process-step p:last-child,
.service-card p:last-of-type,
.card p:last-child,
.statement p:last-child,
.cta-box p:last-child {
  margin-bottom: 0;
}

.profile-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}

.profile-card {
  height: 100%;
}

.profile-role {
  color: var(--sage-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 12px;
}

.service-intro {
  max-width: 760px;
  margin: auto;
}

.support-note {
  margin-top: 22px;
  color: var(--sage-dark);
  font-weight: 700;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  margin-top: 18px;
  box-shadow: 0 10px 35px rgba(47, 42, 37, 0.04);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 14px;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .logo {
    width: 320px;
    max-width: 62vw;
    height: 64px;
  }

  .header-logo {
    max-width: 320px;
    max-height: 64px;
  }

  .nav.nav-scrolled .logo {
    width: 200px;
    height: 46px;
  }

  .nav.nav-scrolled .header-logo {
    max-width: 200px;
    max-height: 46px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    left: 5%;
    right: 5%;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--light);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav.nav-scrolled .nav-links {
    top: 70px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .cta-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .cards,
  .services-grid,
  .process-grid,
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .three,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 75px 0;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 38px;
  }

  .logo {
    width: 260px;
    max-width: 65vw;
    height: 58px;
  }

  .header-logo {
    max-width: 260px;
    max-height: 58px;
  }

  .nav.nav-scrolled .logo {
    width: 170px;
    height: 42px;
  }

  .nav.nav-scrolled .header-logo {
    max-width: 170px;
    max-height: 42px;
  }

  .cards,
  .services-grid,
  .process-grid,
  .profile-grid,
  .three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions .btn,
  .hero-actions .text-link,
  .btn {
    width: 100%;
  }

  .statement,
  .cta-box,
  .card,
  .process-step {
    padding: 38px 26px;
  }
}