:root {
  --cream: #f7ede8;        /* heroes -> blush */
  --warm-white: #faf6f1;   /* warm cream sections, buttons, toggle */
  --blush: #f7ede8;
  --rose: #c4a4a0;         /* dusty mauve accent */
  --rose-soft: #f0e3df;    /* mauve-tint pill background */
  --sage: #8a9e85;
  --sage-dark: #2c3f2c;
  --espresso: #3d3530;
  --ink: #3d3530;
  --muted: #6d625c;
  --line: #e7ded6;
  --shadow: 0 18px 42px rgba(64, 52, 46, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
}

h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 600;
}

.site-header,
.site-footer {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  min-height: 92px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 237, 232, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--espresso);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-footer a:hover {
  color: var(--rose);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--espresso);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 25px;
  border: 1px solid rgba(64, 52, 46, 0.28);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--espresso);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  border-color: rgba(64, 52, 46, 0.45);
  background: var(--warm-white);
  transform: translateY(-1px);
}

.button-small {
  min-height: 48px;
  padding: 0 22px;
}

.button-secondary {
  background: transparent;
}

.section-cream,
.section-white,
.section-blush,
.cta-band {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--warm-white);
}

.section-blush {
  background: var(--blush);
}

.section-inner {
  width: min(calc(100% - 64px), 1080px);
  margin: 0 auto;
  padding: 86px 0;
}

.section-inner.narrow {
  width: min(calc(100% - 64px), 880px);
  text-align: center;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero .section-inner {
  display: flex;
  min-height: 548px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 70px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.muted {
  color: #c894a7;
}

.hero-copy {
  max-width: 780px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 52px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.credentials.left {
  justify-content: flex-start;
  margin-top: 28px;
  padding-top: 0;
  border-top: 0;
}

.credentials span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: #985b70;
  font-size: 0.88rem;
  font-weight: 800;
}

.credentials svg {
  width: 15px;
  height: 15px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2 + p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 500;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.process-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.card {
  min-height: 246px;
  padding: 32px;
}

.card svg,
.contact-card > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: #c996aa;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  min-height: 320px;
  padding: 36px 30px;
}

.process-card span {
  display: block;
  margin-bottom: 18px;
  color: #d2a9ba;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.process-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.testimonials {
  display: grid;
  gap: 24px;
}

blockquote {
  margin: 0;
  padding: 34px 42px;
  border-left: 4px solid #ce98ad;
  background: var(--cream);
}

blockquote p {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
}

cite {
  display: block;
  margin-top: 14px;
  color: var(--rose);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
}

.cta-band {
  background: var(--sage);
  color: var(--sage-dark);
  text-align: center;
}

.cta-band h2 {
  color: var(--sage-dark);
}

.cta-band p {
  max-width: 850px;
  margin: 22px auto 0;
  font-size: 1.18rem;
  font-weight: 600;
}

.cta-band .button {
  margin-top: 42px;
  border-color: rgba(56, 90, 56, 0.35);
  background: rgba(246, 241, 234, 0.24);
  color: #263f28;
}

.cta-band .fine-print {
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  min-height: 96px;
  padding: 0 48px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background: var(--espresso);
  color: #d1c6be;
  font-size: 0.95rem;
}

.site-footer .brand {
  color: var(--warm-white);
}

.site-footer nav {
  gap: 26px;
  color: #d9b7c5;
}

.site-footer p {
  color: #a6978e;
  font-weight: 700;
}

.page-hero .section-inner {
  padding-top: 112px;
  padding-bottom: 112px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.22rem;
  font-weight: 500;
}

.split-layout,
.contact-layout {
  display: grid;
  width: min(calc(100% - 64px), 1080px);
  margin: 0 auto;
  padding: 86px 0;
  gap: 58px;
}

.split-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.portrait-panel {
  display: flex;
  min-height: 460px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(183, 203, 177, 0.72), rgba(183, 203, 177, 0.72)),
    radial-gradient(circle at 35% 20%, #f6f1ea, transparent 34%),
    #d8c2cc;
}

.portrait-panel svg {
  width: 58px;
  height: 58px;
  color: var(--sage-dark);
}

.content-stack h2 {
  margin-bottom: 22px;
}

.content-stack p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.contact-card {
  padding: 38px;
  background: var(--cream);
}

.contact-card p {
  margin: 12px 0 28px;
  color: var(--muted);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--sage-dark);
}

.policy-copy {
  width: min(calc(100% - 64px), 820px);
  margin: 0 auto;
  padding: 82px 0;
}

.policy-copy h2 {
  margin-top: 38px;
  font-size: 1.65rem;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.policy-copy a {
  color: var(--rose);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header > .button {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--warm-white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .card-grid.four,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand {
    white-space: normal;
  }

  .site-nav {
    top: 78px;
  }

  .section-inner,
  .section-inner.narrow,
  .split-layout,
  .contact-layout,
  .policy-copy {
    width: min(calc(100% - 34px), 1080px);
  }

  .section-inner,
  .split-layout,
  .contact-layout,
  .policy-copy {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero .section-inner {
    min-height: 560px;
    padding-top: 78px;
  }

  h1 {
    font-size: 2.24rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .hero-actions {
    width: 100%;
    margin-top: 38px;
  }

  .button {
    width: 100%;
  }

  .credentials {
    align-items: center;
    margin-top: 42px;
    padding-top: 34px;
  }

  .credentials span {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .card-grid.four,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .process-card,
  .contact-card {
    min-height: auto;
    padding: 28px;
  }

  blockquote {
    padding: 28px;
  }

  blockquote p {
    font-size: 1.08rem;
  }
}
