/* =========================================================================
   Hearth & Vale — Family & Matrimonial, Pune
   "Arched thresholds": plum + blush, Fraunces + Mulish, warm & human.
   ========================================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--plum);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button { font: inherit; color: inherit; cursor: pointer; }

input, select, textarea, button { font-family: inherit; }

:root {
  /* Palette */
  --plum:        #351E33;   /* brand ink / deep aubergine */
  --plum-900:    #291628;   /* deepest — closing band, footer */
  --plum-700:    #4A2E47;
  --mauve:       #6E4E68;   /* muted plum — secondary text */
  --mauve-soft:  #8B6E86;
  --blush:       #E4B2A2;   /* warm blush / clay accent */
  --blush-deep:  #CE8E7B;   /* accent hover / links on paper */
  --blush-soft:  #F0CFC4;   /* arcs, hairlines on dark */
  --rose-mist:   #F7E7DF;   /* soft tint blocks */
  --rose-mist-2: #F2DBD1;
  --paper:       #FBF5F1;   /* warm paper background */
  --paper-2:     #F5EAE3;   /* secondary warm panel */
  --cream:       #FFFDFB;
  --line:        rgba(53, 30, 51, 0.14);
  --line-soft:   rgba(53, 30, 51, 0.08);
  --line-blush:  rgba(228, 178, 162, 0.42);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Space */
  --container: 1180px;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --arch: 50% 50% 16px 16px / 26% 26% 3% 3%;   /* signature doorway arch */
  --arch-tall: 50% 50% 14px 14px / 20% 20% 2% 2%;

  --shadow-soft: 0 18px 50px -30px rgba(53, 30, 51, 0.55);
  --shadow-lift: 0 26px 70px -34px rgba(53, 30, 51, 0.60);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--plum);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Focus visibility ---------- */
:focus-visible {
  outline: 3px solid var(--blush-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--section-y); }

.section--tint { background: var(--paper-2); }
.section--mist { background: var(--rose-mist); }

/* ---------- Eyebrow + signature arc ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 12px;
  flex: none;
  /* small hand-drawn arch, the recurring motif */
  background:
    radial-gradient(13px 12px at 50% 100%, transparent 0 10px, var(--blush-deep) 10px 12px, transparent 12.5px);
}
.eyebrow--on-dark { color: var(--blush); }
.eyebrow--on-dark::before {
  background:
    radial-gradient(13px 12px at 50% 100%, transparent 0 10px, var(--blush) 10px 12px, transparent 12.5px);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--plum);
  font-optical-sizing: auto;
}

.h-section {
  font-size: clamp(2.05rem, 1.2rem + 3.4vw, 3.25rem);
  max-width: 18ch;
}
.h-section em {
  font-style: italic;
  color: var(--blush-deep);
  font-weight: 400;
}

.lede {
  font-size: clamp(1.06rem, 1rem + 0.4vw, 1.28rem);
  color: var(--mauve);
  max-width: 56ch;
  line-height: 1.62;
}

.section-head { max-width: 60ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head .lede { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--plum);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.92rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  box-shadow: 0 10px 26px -18px rgba(53, 30, 51, 0.7);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn .btn-ico { width: 18px; height: 18px; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--plum);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--cream); border-color: var(--plum); box-shadow: var(--shadow-soft); }

.btn--blush {
  --btn-bg: var(--blush);
  --btn-fg: var(--plum-900);
}
.btn--wa {
  --btn-bg: #128C4B;
  --btn-fg: #ffffff;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* text link with arc underline */
.link-arc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-weight: 700;
  color: var(--plum);
  border-bottom: 2px solid var(--line-blush);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-arc:hover { color: var(--blush-deep); border-color: var(--blush-deep); }
.link-arc .arr { transition: transform 0.25s var(--ease); }
.link-arc:hover .arr { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-stuck {
  border-color: var(--line-soft);
  box-shadow: 0 10px 30px -26px rgba(53, 30, 51, 0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

/* Brand lockup with arch mark */
.brand { display: inline-flex; align-items: center; gap: 0.62rem; }
.brand-mark { width: 30px; height: 34px; flex: none; }
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--plum);
  line-height: 1;
}
.brand-name .amp { color: var(--blush-deep); font-style: italic; padding: 0 0.05em; }
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve-soft);
  margin-top: 3px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.9rem);
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--plum-700);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--blush-deep);
  transition: right 0.28s var(--ease);
}
.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: inline-flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  /* warm blush glow behind copy */
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 30% 30%, rgba(228,178,162,0.55), transparent 62%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.4rem, 7vw, 6rem);
}
.hero-copy { max-width: 40rem; }
.hero h1 {
  font-size: clamp(2.65rem, 1.3rem + 5.6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--blush-deep); }
.hero .lede { margin-top: 1.4rem; font-size: clamp(1.08rem, 1rem + 0.55vw, 1.34rem); }
.hero .btn-row { margin-top: 2rem; }

.trust-line {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-inline: 0;
}
.trust-line li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mauve);
}
.trust-line li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--blush-deep);
  flex: none;
}

/* Hero figure — the signature arch */
.hero-figure { position: relative; }
.arch-frame {
  position: relative;
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  isolation: isolate;
}
.arch-frame::after {
  /* thin blush keyline that traces the arch */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 253, 251, 0.35);
  pointer-events: none;
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .arch-frame { aspect-ratio: 4 / 5; }

.hero-figure .float-note {
  position: absolute;
  left: -8px;
  bottom: 22px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 0.85rem 1.05rem;
  box-shadow: var(--shadow-soft);
  max-width: 15rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.float-note .fn-ico {
  width: 38px; height: 38px; flex: none;
  border-radius: 999px;
  background: var(--rose-mist);
  display: grid; place-items: center;
  color: var(--blush-deep);
}
.float-note b { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--plum); }
.float-note span { display: block; font-size: 0.78rem; color: var(--mauve); line-height: 1.3; }

/* ---------- Assurance band ---------- */
.assurance {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
.assure-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
}
.assure-card .ac-ico {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--rose-mist);
  color: var(--blush-deep);
  display: grid; place-items: center;
}
.assure-card h3 { font-size: 1.14rem; font-weight: 600; margin-bottom: 0.25rem; }
.assure-card p { color: var(--mauve); font-size: 0.94rem; line-height: 1.55; }

/* ---------- Practice grid ---------- */
.practice-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
.practice-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 1.7rem 1.6rem 1.8rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.practice-card::before {
  /* tiny arch tab, top-left, the motif */
  content: "";
  position: absolute;
  top: 0; left: 1.6rem;
  width: 46px; height: 8px;
  background: var(--blush);
  border-radius: 0 0 999px 999px / 0 0 100% 100%;
}
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-blush);
}
.practice-card .pc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blush-deep);
}
.practice-card h3 { font-size: 1.32rem; font-weight: 600; margin: 0.5rem 0 0.55rem; }
.practice-card p { color: var(--mauve); font-size: 0.96rem; }
.practice-card .pc-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}
.practice-card .pc-tags li {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--plum-700);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

/* ---------- What to expect (steps + image) ---------- */
.expect-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: start;
}
.expect-figure .arch-frame { aspect-ratio: 5 / 6; position: sticky; top: 100px; }
.steps { list-style: none; padding: 0; display: grid; gap: 0.4rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.step:last-child { border-bottom: 0; }
.step .step-n {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--plum);
  width: 46px; height: 46px;
  border-radius: 999px 999px 8px 8px / 60% 60% 8% 8%;  /* small arch counter */
  border: 1.5px solid var(--line-blush);
  display: grid; place-items: center;
  flex: none;
}
.step h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 0.3rem; }
.step p { color: var(--mauve); font-size: 0.97rem; max-width: 46ch; }

/* ---------- Approach ---------- */
.approach-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}
.approach-figure .arch-frame { aspect-ratio: 4 / 3; }
.principles { list-style: none; padding: 0; display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.principle .p-ico {
  width: 40px; height: 40px; flex: none;
  border-radius: 12px;
  background: var(--rose-mist);
  color: var(--blush-deep);
  display: grid; place-items: center;
}
.principle h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 0.15rem; }
.principle p { color: var(--mauve); font-size: 0.94rem; }

.pullquote {
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  background: var(--rose-mist);
  border-radius: 18px;
  border-left: 4px solid var(--blush);
}
.pullquote p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--plum);
}

/* ---------- About / people ---------- */
.about-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}
.about-portrait { position: relative; }
.about-portrait .arch-frame { aspect-ratio: 4 / 5; max-width: 420px; }
.about-portrait .cred-chip {
  position: absolute;
  right: -6px; bottom: 26px;
  background: var(--plum);
  color: var(--cream);
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-soft);
}
.cred-chip b { font-family: var(--serif); display: block; font-size: 1.5rem; font-weight: 600; line-height: 1; }
.cred-chip span { font-size: 0.78rem; color: var(--blush-soft); }

.people { display: grid; gap: 1rem; margin-top: 1.9rem; }
.person {
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--cream);
}
.person h3 { font-size: 1.12rem; font-weight: 600; }
.person .role { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blush-deep); margin: 0.2rem 0 0.5rem; }
.person p { color: var(--mauve); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; gap: clamp(2rem, 5vw, 3.6rem); align-items: start; }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--cream);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--line-blush); box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--plum);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-sign {
  width: 30px; height: 30px; flex: none;
  border-radius: 999px;
  border: 1.5px solid var(--line-blush);
  position: relative;
  transition: background 0.25s var(--ease);
}
.faq-item summary .q-sign::before,
.faq-item summary .q-sign::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blush-deep);
  border-radius: 2px;
}
.faq-item summary .q-sign::before { width: 12px; height: 2px; }
.faq-item summary .q-sign::after  { width: 2px; height: 12px; transition: transform 0.3s var(--ease); }
.faq-item[open] summary .q-sign { background: var(--rose-mist); }
.faq-item[open] summary .q-sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { padding: 0 1.3rem 1.3rem; }
.faq-answer p { color: var(--mauve); font-size: 0.97rem; line-height: 1.65; }
.faq-answer p + p { margin-top: 0.7rem; }

/* ---------- Closing CTA band ---------- */
.closing {
  position: relative;
  background: var(--plum-900);
  color: var(--cream);
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 55vw; height: 55vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle at 40% 40%, rgba(228,178,162,0.34), transparent 62%);
  pointer-events: none;
}
.closing .container { position: relative; z-index: 1; text-align: center; display: grid; justify-items: center; }
.closing h2 { color: var(--cream); font-size: clamp(2rem, 1.2rem + 3.4vw, 3.4rem); font-weight: 400; max-width: 20ch; }
.closing h2 em { font-style: italic; color: var(--blush); }
.closing p { color: var(--blush-soft); margin-top: 1.1rem; max-width: 52ch; font-size: 1.08rem; }
.closing .btn-row { margin-top: 2.2rem; justify-content: center; }
.closing .btn--ghost { --btn-fg: var(--cream); border-color: rgba(240,207,196,0.4); }
.closing .btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--blush); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum-900);
  color: var(--blush-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  border-top: 1px solid rgba(240,207,196,0.14);
}
.footer-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; line-height: 1.6; color: var(--blush-soft); opacity: 0.85; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(240,207,196,0.24);
  display: grid; place-items: center;
  color: var(--blush-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-social a:hover { background: var(--blush); color: var(--plum-900); border-color: var(--blush); }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col address {
  color: var(--blush-soft);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.55;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(240,207,196,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  color: rgba(240,207,196,0.72);
}
.footer-bottom a { color: var(--blush); border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.footer-bottom a:hover { border-color: var(--blush); }
.footer-credit { max-width: 60ch; }

/* ---------- Contact page ---------- */
.page-hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 50vw; height: 50vw;
  max-width: 560px; max-height: 560px;
  background: radial-gradient(circle at 60% 40%, rgba(228,178,162,0.5), transparent 62%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 1.4rem + 4vw, 3.8rem); font-weight: 400; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--blush-deep); }
.page-hero .lede { margin-top: 1.2rem; }

.contact-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: start;
}

/* Form */
.form-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.form-card h2 { font-size: 1.7rem; font-weight: 600; }
.form-card > p { color: var(--mauve); margin-top: 0.5rem; margin-bottom: 1.6rem; font-size: 0.97rem; }
.field { margin-bottom: 1.15rem; }
.field-row { display: grid; gap: 1.15rem; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--plum-700);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}
.field .req { color: var(--blush-deep); }
.field .opt { font-weight: 500; color: var(--mauve-soft); text-transform: none; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--plum);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E4E68' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blush-deep);
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(228,178,162,0.28);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--mauve-soft); opacity: 0.75; }
.form-actions { margin-top: 1.6rem; }
.form-actions .btn { width: 100%; justify-content: center; }
.form-fine {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--mauve);
  text-align: center;
  line-height: 1.5;
}
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-status.is-error { display: block; background: #FBE4DE; color: #8A3B2C; border: 1px solid #E9B7AC; }

/* Contact aside */
.contact-aside { display: grid; gap: 1.1rem; }
.contact-card {
  background: var(--rose-mist);
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
}
.contact-card.plum { background: var(--plum-900); color: var(--blush-soft); }
.contact-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; }
.contact-card.plum h3 { color: var(--cream); }
.contact-line {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.6rem 0;
}
.contact-line .cl-ico {
  width: 38px; height: 38px; flex: none;
  border-radius: 10px;
  background: var(--cream);
  color: var(--blush-deep);
  display: grid; place-items: center;
}
.contact-card.plum .cl-ico { background: rgba(255,255,255,0.08); color: var(--blush); }
.contact-line .cl-label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mauve); }
.contact-card.plum .cl-label { color: var(--blush); }
.contact-line a, .contact-line .cl-value { font-size: 1rem; font-weight: 600; color: var(--plum); }
.contact-card.plum .cl-value, .contact-card.plum a { color: var(--cream); }
.contact-line address { font-style: normal; font-weight: 500; color: var(--plum); line-height: 1.5; }
.contact-card .btn-row { margin-top: 1.2rem; }
.hours-list { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; border-bottom: 1px dashed var(--line); padding-bottom: 0.5rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--mauve); font-weight: 600; }
.hours-list .time { color: var(--plum); font-weight: 700; }

/* ---------- Thank-you ---------- */
.thanks {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.thanks::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 50%;
  transform: translateX(-50%);
  width: 70vw; height: 70vw;
  max-width: 680px; max-height: 680px;
  background: radial-gradient(circle at 50% 35%, rgba(228,178,162,0.4), transparent 60%);
  pointer-events: none;
}
.thanks .container { position: relative; z-index: 1; display: grid; justify-items: center; max-width: 640px; }
.thanks-mark {
  width: 84px; height: 92px;
  margin-bottom: 1.8rem;
}
.thanks h1 { font-size: clamp(2.2rem, 1.3rem + 4vw, 3.6rem); font-weight: 400; }
.thanks h1 em { font-style: italic; color: var(--blush-deep); }
.thanks p { color: var(--mauve); font-size: 1.1rem; margin-top: 1.1rem; max-width: 46ch; }
.thanks .next {
  margin-top: 2rem;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  text-align: left;
  max-width: 460px;
}
.thanks .next h2 { font-size: 1.05rem; font-weight: 700; font-family: var(--sans); letter-spacing: 0.04em; text-transform: uppercase; color: var(--blush-deep); margin-bottom: 0.8rem; }
.thanks .next ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.thanks .next li { display: flex; gap: 0.7rem; color: var(--mauve); font-size: 0.96rem; align-items: flex-start; }
.thanks .next li::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--blush); margin-top: 0.5rem; flex: none; }
.thanks .btn-row { margin-top: 2rem; justify-content: center; }

/* ---------- Reveal / motion ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .assurance { grid-template-columns: repeat(3, 1fr); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 880px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .practice-grid { grid-template-columns: repeat(3, 1fr); }
  .expect-layout { grid-template-columns: 0.85fr 1.15fr; }
  .approach-layout { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 0.9fr 1.1fr; }
  .faq-layout { grid-template-columns: 0.8fr 1.2fr; }
  .contact-layout { grid-template-columns: 1.15fr 0.85fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
}

/* mobile nav */
@media (max-width: 879px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem var(--pad-x) 1.8rem;
    display: grid;
    gap: 1.3rem;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
  }
  .nav-menu.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0.2rem; width: 100%; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .nav-links a::after { display: none; }
  .nav-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-cta .btn { justify-content: center; }
}

@media (max-width: 460px) {
  .hero-figure .float-note { left: 6px; right: 6px; max-width: none; bottom: 12px; }
  .about-portrait .cred-chip { right: 8px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .practice-card:hover { transform: none; }
}

@media print {
  .site-header, .closing, .nav-toggle { display: none; }
}
