/* ==========================================================================
   SUMANAS COUNSELING — Brand & Website System
   Built to the "Complete Website Content, Brand Direction & Developer
   Implementation Guide" (Avani Vimawala, MHA, LMHCA, NCC, RPSGT).

   Palette : Indigo #0D1B4C · Gold #C6A75E · Silver #C7C9CC
             Soft White #F7F7F5 · Charcoal #2B2B2B
   Type    : Cormorant Garamond (headings) · Source Sans 3 (body)
   ========================================================================== */

:root {
  /* Approved palette — do not substitute */
  --indigo: #0D1B4C;
  --indigo-deep: #081234;
  --indigo-soft: #16265e;
  --gold: #C6A75E;
  --gold-soft: #d9c089;
  --gold-wash: #f3ecdd;
  --silver: #C7C9CC;
  --silver-soft: #e4e5e7;
  --soft-white: #F7F7F5;
  --white: #ffffff;
  --charcoal: #2B2B2B;
  --charcoal-muted: #55565a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  --max: 1180px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 8px 24px rgba(13, 27, 76, .06);
  --shadow-md: 0 18px 44px rgba(13, 27, 76, .10);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  /* Guide: body text at least 17–18px desktop */
  font-size: 18px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--soft-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
svg { stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--indigo);
  font-weight: 600;
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: .005em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); line-height: 1.14; }
h2 { font-size: clamp(1.8rem, 3.1vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* Gold is an ACCENT only — never long-form body copy (guide + WCAG) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8a6f2c;              /* darkened gold — passes contrast on light bg */
  margin: 0 0 .85rem;
}
.section-navy .eyebrow, .cta-band .eyebrow, .statement .eyebrow { color: var(--gold); }

.lede { font-size: 1.15rem; color: var(--charcoal); }
.muted { color: var(--charcoal-muted); }
.center { text-align: center; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 780px; margin-left: auto; margin-right: auto; }

/* Gold hairline flourish, echoes the wordmark rule */
.rule { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 1.4rem; }
.rule::before, .rule::after { content: ""; height: 1px; width: 46px; background: var(--gold); }
/* Left-aligned rule for left-aligned section intros (e.g. split columns) */
.rule-left { justify-content: flex-start; }
.rule-left::before { display: none; }

/* Skip link — keyboard accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--indigo); color: var(--white); padding: 12px 20px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* Visible focus states (guide requirement) */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 247, 245, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(13, 27, 76, .08);
}
.nav-wrap {
  max-width: 1320px; margin: 0 auto; padding: 10px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 74px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 20px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  color: var(--indigo); white-space: nowrap;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #8a6f2c; border-color: var(--gold); }

/* Guide: header carries ONE gold consultation button */
.nav-links a.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 20px;          /* 44px min tap target */
  background: var(--gold); color: var(--indigo);
  border: none; border-radius: var(--radius);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  transition: background .25s ease, color .25s ease;
}
.nav-links a.nav-cta:hover, .nav-links a.nav-cta[aria-current="page"] { background: var(--indigo); color: var(--white); border-color: transparent; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 10px;
  min-height: 44px; min-width: 44px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--indigo); display: block; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 30px;
  font-family: var(--font-body); font-size: .86rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  border-radius: var(--radius); border: 1.5px solid transparent; cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-2px); }
/* Guide: main button is gold on indigo, or indigo on soft white */
.btn-primary { background: var(--indigo); color: var(--white); }
.btn-primary:hover { background: var(--gold); color: var(--indigo); }
.btn-gold { background: var(--gold); color: var(--indigo); }
.btn-gold:hover { background: var(--white); color: var(--indigo); }
.btn-outline { background: transparent; color: var(--indigo); border-color: var(--indigo); }
.btn-outline:hover { border-color: var(--gold); color: #8a6f2c; }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--indigo);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}
.link-arrow:hover { color: #8a6f2c; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 88px 0; }
.section-sm { padding: 62px 0; }
.section-alt { background: var(--white); }
.section-wash { background: var(--gold-wash); }
.section-navy { background: var(--indigo); color: rgba(255,255,255,.9); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }

.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head p:not(.eyebrow) { color: var(--charcoal-muted); font-size: 1.08rem; }
.section-navy .section-head p { color: rgba(255,255,255,.82); }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 74px 0 62px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(198,167,94,.10), transparent 62%),
    var(--soft-white);
  text-align: center;
}
.page-hero p { max-width: 720px; margin-left: auto; margin-right: auto; color: var(--charcoal-muted); }

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */
/* Full-bleed portrait with the copy overlaid on the left. A soft cream
   "left shade" sits behind the text block, acting as its background. */
.hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  height: 80vh; min-height: 620px; max-height: 780px;
  padding: 56px 8vw;
  background-color: #ece5d8;
  background-image: url("../images/avani-hero.png");                 /* fallback */
  background-image: image-set(url("../images/avani-hero.webp") type("image/webp"),
                              url("../images/avani-hero.png")  type("image/png"));
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* The cream "left shade" is baked into the banner image, so no CSS scrim on
   desktop. A very light extra wash deepens the far-left behind the text. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(244,239,230,.45) 0%,
    rgba(244,239,230,.12) 22%,
    rgba(244,239,230,0)   40%);
}
.hero-copy { position: relative; z-index: 2; min-width: 0; max-width: 620px; }
.hero-copy h1 { color: var(--indigo); max-width: 18ch; }
.hero-copy .lede { color: var(--charcoal); max-width: 46ch; }
.hero-copy .support { color: var(--charcoal-muted); max-width: 46ch; font-size: 1.02rem; }

.credential-card {
  position: absolute; right: 3vw; bottom: 34px; z-index: 3;
  display: flex; align-items: center; gap: 18px;
  max-width: 430px; padding: 20px 26px;
  background: rgba(255, 255, 255, .95);
  border-radius: 18px; box-shadow: var(--shadow-md);
}
.cred-mark {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-wash); color: var(--indigo);
}
.cred-mark svg { width: 28px; height: 28px; }
.cred-text { display: block; }
.cred-text strong {
  display: block; font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; color: var(--indigo); margin-bottom: 3px;
}
.cred-text span { display: block; font-size: .85rem; line-height: 1.5; color: var(--charcoal-muted); }
.hero-langs {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 1.4rem; font-size: .84rem; font-weight: 600;
  letter-spacing: .06em; color: var(--indigo);
}
.hero-langs span { display: inline-flex; align-items: center; gap: 8px; }
.hero-langs .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* Decorative neural-line motif (subtle, per brand motifs) */
.neural {
  position: absolute; pointer-events: none; opacity: .5; z-index: 0;
}
.neural-left { left: -60px; top: 40px; width: 220px; }

/* --------------------------------------------------------------------------
   Trust bar — modalities & languages
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--indigo); color: var(--white); padding: 20px 0; }
.trust-list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 26px; margin: 0; padding: 0; list-style: none;
  font-size: .82rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
}
.trust-list li { display: inline-flex; align-items: center; gap: 26px; }
.trust-list li::after { content: "•"; color: var(--gold); }
.trust-list li:last-child::after { display: none; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 76, .07);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--charcoal-muted); font-size: 1rem; margin: 0; }

.card-icon {
  width: 54px; height: 54px; margin-bottom: 20px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--gold-wash); color: var(--indigo);
  transition: background .3s ease, color .3s ease;
}
.card:hover .card-icon { background: var(--indigo); color: var(--white); }
.card-icon svg { width: 26px; height: 26px; }

/* Approach cards (How Healing Works) */
.approach-card { display: flex; flex-direction: column; height: 100%; }
.approach-card .tag {
  display: inline-block; align-self: flex-start;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #8a6f2c; background: var(--gold-wash);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.approach-card .link-arrow { margin-top: auto; padding-top: 18px; align-self: flex-start; }

/* Detail block used on How Healing Works page */
.modality {
  background: var(--white); border: 1px solid rgba(13,27,76,.07);
  border-left: 4px solid var(--gold); border-radius: var(--radius-lg);
  padding: 38px 36px; box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.modality h3 { font-size: 1.5rem; }
.modality .meta { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--silver-soft); }
.modality .meta p { font-size: .98rem; color: var(--charcoal-muted); }
.modality .meta strong { color: var(--indigo); font-weight: 600; }

/* --------------------------------------------------------------------------
   Checklists (✓ benefit lists)
   -------------------------------------------------------------------------- */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.check-list li { position: relative; padding-left: 38px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D1B4C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px 13px no-repeat;
}
.check-list strong { display: block; color: var(--indigo); font-weight: 600; font-family: var(--font-display); font-size: 1.18rem; }
.check-list p { margin: 4px 0 0; color: var(--charcoal-muted); font-size: 1rem; }

/* Plain bullet list */
.bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.bullets li { position: relative; padding-left: 26px; color: var(--charcoal-muted); }
.bullets li::before {
  content: ""; position: absolute; left: 4px; top: .72em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}

/* Tag pills (areas of support) */
.tag-row { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-row.center { justify-content: center; }
.pill {
  background: var(--white); border: 1px solid var(--silver);
  color: var(--indigo); padding: 9px 18px; border-radius: 999px;
  font-size: .92rem;
}
.section-navy .pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: var(--white); }

/* --------------------------------------------------------------------------
   Split editorial layout
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.start { align-items: start; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Portrait media.
   <picture> is display:inline by default, which breaks percentage sizing and
   lets the intrinsic height win — so it must be a block. An explicit height
   keeps the portrait in proportion instead of towering over the copy. */
.split-media, .about-media { max-width: 400px; }
.split-media picture, .about-media picture { display: block; }
.split-media img, .about-media img {
  display: block; width: 100%; height: 480px;
  object-fit: cover; object-position: center 18%;
  border-radius: var(--radius-lg);
}
/* Give the copy the wider column so the pairing reads as editorial, not blocky */
.split-media + div, .about-media + div { min-width: 0; }
.section-wash .split, .about-avani .split { grid-template-columns: .78fr 1.22fr; align-items: center; }
/* Nudge a top-aligned portrait down so it sits lower than the heading */
.portrait-down { margin-top: 54px; }

/* Portrait placeholder if no photo supplied */
.portrait-ph {
  aspect-ratio: 4/5; width: 100%; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--silver), var(--soft-white) 68%);
  display: grid; place-items: center;
}
.portrait-ph svg { width: 42%; opacity: .5; }

/* --------------------------------------------------------------------------
   Statement band
   -------------------------------------------------------------------------- */
.statement {
  position: relative; overflow: hidden;
  background: var(--indigo); color: var(--white);
  padding: 96px 0; text-align: center;
}
/* Neural-line motif sits behind the words, deliberately faint */
.statement-motif {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: .16; pointer-events: none;
}
.statement .wrap { position: relative; z-index: 1; }

/* Lotus mark — the meaning of Sumanas, stated quietly */
.statement-mark {
  width: 68px; height: 68px; margin: 0 auto 24px;
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(198, 167, 94, .45);
  background: rgba(198, 167, 94, .10); color: var(--gold);
}
.statement-mark svg { width: 34px; height: 34px; }

.statement h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1.32; max-width: 24ch; margin: 0 auto;
}
.statement .accent { color: var(--gold); }

/* Four pillars — gold, spaced, with hairline separators (brand-essence lockup) */
.pillars {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 30px; list-style: none; margin: 2.6rem 0 0; padding: 0;
  font-size: .84rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.pillars li { display: inline-flex; align-items: center; gap: 30px; }
.pillars li::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: rgba(198, 167, 94, .55); }
.pillars li:last-child::after { display: none; }

/* Final CTA band */
.cta-band { background: var(--indigo); color: rgba(255,255,255,.9); padding: 78px 0; text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 62ch; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.85); }

/* Image CTA (dawn light / pathway imagery) */
.cta-image {
  position: relative; padding: 96px 0; text-align: center; color: var(--white);
  background-image:
    linear-gradient(180deg, rgba(13,27,76,.62), rgba(13,27,76,.78)),
    url("../images/cta-west.png");                                   /* fallback */
  background-image:
    linear-gradient(180deg, rgba(13,27,76,.62), rgba(13,27,76,.78)),
    image-set(url("../images/cta-west.webp") type("image/webp"),
              url("../images/cta-west.png")  type("image/png"));
  background-size: cover; background-position: center;
}
.cta-image h2 { color: var(--white); }
.cta-image p { color: rgba(255,255,255,.9); max-width: 60ch; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Fees table
   -------------------------------------------------------------------------- */
.fee-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.fee-table caption { text-align: left; padding: 0 0 14px; color: var(--charcoal-muted); font-size: .95rem; }
.fee-table th, .fee-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--silver-soft); }
.fee-table thead th { background: var(--indigo); color: var(--white); font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.fee-table tbody tr:last-child th, .fee-table tbody tr:last-child td { border-bottom: 0; }
.fee-table tbody th { font-weight: 600; color: var(--indigo); font-family: var(--font-body); }
.fee-table td { font-weight: 600; color: var(--indigo); }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  background: var(--white); border: 1px solid rgba(13,27,76,.08);
  border-radius: var(--radius-lg); margin-bottom: 14px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 60px 22px 26px; position: relative;
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; color: var(--indigo);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 26px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .answer { padding: 0 26px 24px; color: var(--charcoal-muted); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white); border: 1px solid rgba(13,27,76,.08);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 22px; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--indigo); margin-bottom: 8px; }
.field .hint { display: block; font-size: .88rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--charcoal-muted); margin-top: 4px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 1px solid rgba(13,27,76,.2); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  background: var(--soft-white);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; }
.consent input { width: 22px; height: 22px; min-height: 22px; flex: none; margin-top: 3px; }
.consent label { text-transform: none; letter-spacing: 0; font-size: .95rem; font-weight: 400; color: var(--charcoal-muted); }

/* Contact detail items */
.contact-list { display: grid; gap: 24px; margin: 0; padding: 0; list-style: none; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ico {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  border: 1px solid var(--gold); color: #8a6f2c;
  display: grid; place-items: center;
}
.contact-list .ico svg { width: 19px; height: 19px; }
.contact-list h4 { margin: 0 0 2px; font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--indigo); }
.contact-list p { margin: 0; color: var(--charcoal-muted); }

/* Notices */
.notice {
  border: 1px solid var(--gold); background: rgba(198,167,94,.09);
  border-radius: var(--radius); padding: 20px 22px; color: var(--charcoal);
  font-size: .96rem;
}
.notice strong { color: var(--indigo); }
.notice-crisis { border-color: #b4433a; background: rgba(180,67,58,.07); }
.notice-crisis strong { color: #97362e; }
.fineprint { font-size: .9rem; color: var(--charcoal-muted); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--indigo-deep); color: rgba(255,255,255,.72); padding: 62px 0 26px; font-size: .95rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { height: 74px; width: auto; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { max-width: 34ch; font-size: .92rem; }
.footer-col h5 { color: var(--gold); font-family: var(--font-body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.72); margin: 0 0 10px; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-legal { padding-top: 26px; display: grid; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.55); }
.footer-legal a { color: rgba(255,255,255,.7); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 18px; }

/* --------------------------------------------------------------------------
   Motion — restrained, per brand guide (p6):
   gentle fade-ins, subtle line drawing, small hover changes. No parallax,
   no spinning icons, no autoplay. Everything is disabled for reduced-motion.
   -------------------------------------------------------------------------- */
:root { --ease-out: cubic-bezier(.22, .61, .36, 1); }

.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Staggered cascade — children settle in sequence rather than all at once */
.js .stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.js .stagger.is-visible > * { opacity: 1; transform: none; }
.js .stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.js .stagger.is-visible > *:nth-child(2) { transition-delay: .13s; }
.js .stagger.is-visible > *:nth-child(3) { transition-delay: .21s; }
.js .stagger.is-visible > *:nth-child(4) { transition-delay: .29s; }
.js .stagger.is-visible > *:nth-child(5) { transition-delay: .37s; }
.js .stagger.is-visible > *:nth-child(6) { transition-delay: .45s; }
.js .stagger.is-visible > *:nth-child(7) { transition-delay: .53s; }

/* Hero entrance — a calm, sequenced settle */
.js .hero-copy > * { opacity: 0; transform: translateY(20px); animation: settle .9s var(--ease-out) forwards; }
.js .hero-copy > *:nth-child(1) { animation-delay: .10s; }
.js .hero-copy > *:nth-child(2) { animation-delay: .20s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .30s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .40s; }
.js .hero-copy > *:nth-child(5) { animation-delay: .50s; }
.js .credential-card { opacity: 0; animation: settle 1s var(--ease-out) .72s forwards; }
@keyframes settle { to { opacity: 1; transform: none; } }

/* Subtle line drawing — the neural motif draws itself in (guide-approved) */
.js .statement-motif path,
.js .statement-motif circle {
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  transition: stroke-dashoffset 2.6s var(--ease-out);
}
.js .statement.is-visible .statement-motif path,
.js .statement.is-visible .statement-motif circle { stroke-dashoffset: 0; }

/* Lotus unfolding — the "meaning of Sumanas" micro-story, stated quietly */
.js .statement-mark { opacity: 0; transform: scale(.82); transition: opacity .9s var(--ease-out) .25s, transform .9s var(--ease-out) .25s; }
.js .statement.is-visible .statement-mark { opacity: 1; transform: none; }
.js .statement-mark svg path {
  stroke-dasharray: 90; stroke-dashoffset: 90;
  transition: stroke-dashoffset 1.5s var(--ease-out) .5s;
}
.js .statement.is-visible .statement-mark svg path { stroke-dashoffset: 0; }

/* Gold rule flourish draws outward from centre */
.js .reveal .rule::before, .js .reveal .rule::after { width: 0; transition: width .8s var(--ease-out) .2s; }
.js .reveal.is-visible .rule::before, .js .reveal.is-visible .rule::after { width: 46px; }

/* Header condenses slightly once scrolled — small, functional, not decorative */
.site-header { transition: box-shadow .3s ease, background .3s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(13, 27, 76, .07); background: rgba(247, 247, 245, .98); }
.brand img { transition: height .3s var(--ease-out); }
.site-header.is-scrolled .brand img { height: 58px; }

/* Nav underline sweeps in from the left rather than snapping on */
.nav-links a { position: relative; border-bottom-color: transparent; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta)[aria-current="page"]::after { width: 100%; }

/* Card icon lifts a touch on hover, in step with the card */
.card-icon { transition: background .3s ease, color .3s ease, transform .3s var(--ease-out); }
.card:hover .card-icon { transform: translateY(-3px); }

/* Buttons ease rather than jump */
.btn { transition: background .25s ease, color .25s ease, border-color .25s ease,
                   transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.btn-primary:hover, .btn-gold:hover { box-shadow: 0 10px 24px rgba(13, 27, 76, .18); }

/* FAQ answers ease open */
.faq details[open] .answer { animation: fadeIn .45s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--soft-white); padding: 10px 32px 22px;
    border-bottom: 1px solid rgba(13,27,76,.1); box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 13px 0; }
  .nav-links a.nav-cta { margin-top: 12px; width: auto; }
  .hero { height: auto; max-height: none; min-height: 540px; padding: 48px 6vw; background-position: center top; }
  .credential-card { right: 4vw; bottom: 26px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .section-wash .split, .about-avani .split { grid-template-columns: 1fr; }
  .split-media, .about-media { max-width: 340px; }
  .split-media img, .about-media img { height: 400px; }
  .portrait-down { margin-top: 0; }   /* no offset once stacked */
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }               /* guide: 16px minimum on mobile */
  .wrap, .nav-wrap { padding-left: 20px; padding-right: 20px; }
  /* Mobile hero: photo as a full-width banner on top, copy on cream below. */
  .hero {
    display: flex; flex-direction: column;
    padding: 0 0 34px; min-height: 0; max-height: none;
    background-image: none; background-color: var(--soft-white);
  }
  .hero::before {
    content: ""; position: static; inset: auto; z-index: auto;
    display: block; width: 100%; height: 300px; margin: 0 0 26px;
    background-color: #d9ddd2;
    background-image: url("../images/avani-hero.png");
    background-image: image-set(url("../images/avani-hero.webp") type("image/webp"),
                                url("../images/avani-hero.png")  type("image/png"));
    background-size: cover; background-position: 60% 16%; background-repeat: no-repeat;
  }
  .hero-copy { max-width: none; padding: 6px 20px 0; }
  .credential-card { position: static; right: auto; bottom: auto; margin: 22px 20px 0; max-width: none; }
  .section { padding: 60px 0; }
  .brand img { height: 58px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }   /* cards single-column */
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-card, .modality { padding: 26px 22px; }
  .statement { padding: 64px 0; }
  .pillars { gap: 8px 18px; font-size: .74rem; letter-spacing: .16em; }
  .pillars li { gap: 18px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .trust-list li::after { display: none; }
}

/* Respect reduced-motion (guide requirement) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  /* Nothing may stay hidden waiting on an animation that will not run */
  .js .reveal,
  .js .stagger > *,
  .js .hero-copy > *,
  .js .credential-card,
  .js .statement-mark { opacity: 1 !important; transform: none !important; animation: none !important; }
  .js .statement-motif path,
  .js .statement-motif circle,
  .js .statement-mark svg path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  .js .reveal .rule::before, .js .reveal .rule::after { width: 46px !important; }
  .btn:hover, .card:hover, .card:hover .card-icon, .site-header.is-scrolled .brand img { transform: none; }
}
