/* ==========================================================================
   Nicomelia Therapy — shared styles
   ========================================================================== */

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

:root {
  /* Brand palette — calm sage-teal with a warm apricot accent */
  --primary:      #2e5e5a;
  --primary-mid:  #4f8a82;
  --primary-dark: #1f403d;
  --primary-tint: #e3eeea;
  --accent:       #e38b5f;
  --accent-mid:   #f3c1a4;
  --accent-dark:  #a94e25;
  --accent-tint:  #fbe9dd;

  /* Neutrals */
  --bg:         #fcf8f2;
  --sand:       #f4ece0;
  --surface:    #ffffff;
  --border:     #e7dfd2;
  --text:       #1f2a2e;
  --text-soft:  #4b585c;
  --text-muted: #6e797c;
  --footer-bg:  #16211f;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1200px;
  --gutter:      clamp(1rem, 5vw, 2rem);
  --radius:      12px;
  --radius-lg:   24px;
  --header-h:    76px;

  --shadow-sm: 0 2px 10px rgba(31, 64, 61, 0.06);
  --shadow-md: 0 14px 40px -12px rgba(31, 64, 61, 0.18);
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; color: var(--primary-dark); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); line-height: 1.25; }
p  { font-family: var(--font-body); font-size: clamp(0.95rem, 1.5vw, 1.1rem); line-height: 1.75; color: var(--text-soft); }
h1 em, h2 em { font-style: italic; color: var(--primary-mid); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-pad); }
.section--sand { background: var(--sand); }
.section--tint { background: var(--primary-tint); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }

.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head p { margin-top: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--primary-dark); color: #fff; padding: 0.75rem 1.25rem; border-radius: var(--radius);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 0.95rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px -10px rgba(46, 94, 90, 0.6); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { background: var(--accent-tint); transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 3px;
}

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 800; color: var(--primary); text-decoration: underline; text-decoration-color: var(--accent-mid);
  text-decoration-thickness: 2px; text-underline-offset: 5px; transition: color 0.2s, text-decoration-color 0.2s;
}
.text-link:hover { color: var(--accent-dark); text-decoration-color: var(--accent); }

/* ---------- Header / navigation (mobile-first) ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { background: rgba(252, 248, 242, 0.97); box-shadow: 0 1px 0 var(--border), var(--shadow-sm); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.logo { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; position: relative; z-index: 2; }
.logo svg { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--primary-dark); }
.logo-text span { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent-dark); margin-top: 0.25rem; }

.nav-toggle {
  position: relative; z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: var(--surface); border: 1px solid var(--border); cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--primary-dark); transition: transform 0.3s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  position: fixed; inset: 0; height: 100dvh; z-index: 1;
  background: var(--bg);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), visibility 0s linear 0.4s;
  overflow-y: auto;
}
.nav-menu.open { transform: none; visibility: visible; transition: transform 0.4s cubic-bezier(.2,.7,.2,1); }
.nav-menu ul { list-style: none; display: flex; flex-direction: column; }
.nav-menu li { border-bottom: 1px solid var(--border); }
.nav-menu ul a {
  display: flex; justify-content: space-between; align-items: center; padding: 1.05rem 0;
  font-family: var(--font-display); font-size: 1.75rem; color: var(--primary-dark); text-decoration: none;
  transition: color 0.2s;
}
.nav-menu ul a::after { content: "→"; font-family: var(--font-body); font-size: 1.1rem; color: var(--accent); }
.nav-menu ul a:hover, .nav-menu ul a[aria-current="page"] { color: var(--accent-dark); }
.nav-menu-foot { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.nav-menu-foot a.contact-line { color: var(--text-soft); font-weight: 700; text-decoration: none; }
.nav-cta { display: none; }

@media (min-width: 1024px) {
  .site-header.scrolled {
    background: rgba(252, 248, 242, 0.86);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  }
  .nav-toggle { display: none; }
  .nav-menu {
    position: static; height: auto; inset: auto; transform: none; visibility: visible;
    background: none; padding: 0; overflow: visible; flex-direction: row; margin-left: auto;
  }
  .nav-menu ul { flex-direction: row; gap: 2rem; }
  .nav-menu li { border: 0; }
  .nav-menu ul a {
    font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; color: var(--text); padding: 0.4rem 0;
    position: relative;
  }
  .nav-menu ul a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
    background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
  }
  .nav-menu ul a:hover::after, .nav-menu ul a[aria-current="page"]::after { transform: scaleX(1); }
  .nav-menu ul a:hover, .nav-menu ul a[aria-current="page"] { color: var(--primary-dark); }
  .nav-menu-foot { display: none; }
  .nav-cta { display: inline-flex; padding: 0.7rem 1.35rem; font-size: 0.95rem; }
}

/* ---------- Home hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: clamp(5rem, 9vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 90% 10%, var(--accent-tint) 0%, transparent 70%),
    radial-gradient(50% 60% at 0% 100%, var(--primary-tint) 0%, transparent 70%),
    var(--bg);
}
.hero-grid { display: grid; gap: clamp(3rem, 6vw, 4.5rem); align-items: center; }
.hero-copy > * { opacity: 0; transform: translateY(24px); animation: rise 0.8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-copy > *:nth-child(2) { animation-delay: 0.1s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.3s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.4s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.hero h1 { margin-bottom: 1.4rem; font-size: clamp(2.4rem, 5vw, 3.9rem); }
.hero-lead { max-width: 540px; font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-note { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.8rem; font-size: 0.95rem; color: var(--text-soft); font-weight: 600; }
.hero-note svg { width: 20px; height: 20px; color: var(--primary-mid); flex-shrink: 0; }

.hero-visual { position: relative; max-width: 520px; width: 100%; margin-inline: auto; animation: rise 1s 0.3s cubic-bezier(.2,.7,.2,1) both; }
.hero-photo {
  aspect-ratio: 4 / 5; width: 100%;
  border-radius: 46% 54% 42% 58% / 38% 40% 60% 62%;
}
.float-card {
  position: absolute; background: var(--surface); border-radius: 18px; padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.8rem; max-width: 230px;
}
.float-card strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--primary-dark); line-height: 1; }
.float-card span { font-size: 0.82rem; font-weight: 700; color: var(--text-soft); line-height: 1.3; }
.float-card .fc-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: var(--accent-tint); color: var(--accent-dark); }
.float-card .fc-icon svg { width: 22px; height: 22px; }
.float-card--a { left: -0.5rem; bottom: 12%; animation: bob 6s ease-in-out infinite; }
.float-card--b { right: -0.5rem; top: 8%; animation: bob 6s 1.5s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-8px); } }

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .float-card--a { left: -2.5rem; }
  .float-card--b { right: -1.5rem; }
}

/* ---------- Image placeholders (replace with real photos) ---------- */
.ph {
  position: relative; overflow: hidden; background-color: var(--primary-tint);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55) 0 18%, transparent 19%),
    radial-gradient(circle at 75% 70%, rgba(227,139,95,0.22) 0 24%, transparent 25%),
    radial-gradient(rgba(46,94,90,0.14) 1.5px, transparent 1.6px);
  background-size: 100% 100%, 100% 100%, 18px 18px;
}
.ph--warm { background-color: var(--accent-tint); }
.ph--sand { background-color: var(--sand); }
.ph-label {
  position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%);
  background: rgba(255,255,255,0.85); color: var(--text-soft); font-size: 0.75rem; font-weight: 700;
  padding: 0.35rem 0.8rem; border-radius: 999px; white-space: nowrap;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(55% 70% at 100% 0%, var(--accent-tint) 0%, transparent 70%),
    radial-gradient(45% 60% at 0% 100%, var(--primary-tint) 0%, transparent 70%),
    var(--bg);
}
.page-hero .container > * { opacity: 0; transform: translateY(20px); animation: rise 0.8s cubic-bezier(.2,.7,.2,1) forwards; }
.page-hero .container > *:nth-child(2) { animation-delay: 0.1s; }
.page-hero .container > *:nth-child(3) { animation-delay: 0.2s; }
.page-hero h1 { max-width: 820px; font-size: clamp(2.3rem, 5.5vw, 4.2rem); }
.page-hero p { max-width: 640px; margin-top: 1.25rem; font-size: clamp(1.05rem, 1.8vw, 1.2rem); }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 1.25rem; list-style: none; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: var(--border); }

/* ---------- Credentials strip ---------- */
.cred-strip { background: var(--primary-dark); color: #fff; padding-block: 1.6rem; }
.cred-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.5rem; }
.cred-list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 700; font-size: 0.95rem; color: #e6efec; }
.cred-list svg { width: 22px; height: 22px; color: var(--accent-mid); flex-shrink: 0; }
@media (min-width: 1024px) { .cred-list { grid-template-columns: repeat(4, auto); justify-content: space-between; } }

/* ---------- Split / about layout ---------- */
.split { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split-media { position: relative; }
.split-media .ph { aspect-ratio: 5 / 6; border-radius: var(--radius-lg); }
.split-media .media-badge {
  position: absolute; right: -0.5rem; bottom: -1.25rem; background: var(--accent); color: #1f2a2e;
  border-radius: 20px; padding: 1.1rem 1.3rem; max-width: 210px; box-shadow: var(--shadow-md);
}
.media-badge strong { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; font-weight: 600; }
.media-badge span { font-size: 0.85rem; font-weight: 800; line-height: 1.3; display: block; margin-top: 0.3rem; }
.split-copy h2 { margin-bottom: 1.25rem; }
.split-copy p + p { margin-top: 1rem; }
.split-copy .btn, .split-copy .text-link { margin-top: 2rem; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split-media { order: 2; }
}

.tick-list { list-style: none; margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.tick-list li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--text); font-weight: 600; }
.tick-list li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 0.15rem; border-radius: 50%;
  background: var(--primary-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e5e5a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ---------- Focus / service cards ---------- */
.card-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.focus-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}
.focus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-mid); background: #fffaf5; }
.focus-card .icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.4rem;
  background: var(--primary-tint); color: var(--primary); transition: background 0.25s, color 0.25s;
}
.focus-card:hover .icon { background: var(--accent); color: #fff; }
.focus-card .icon svg { width: 28px; height: 28px; }
.focus-card h3 { margin-bottom: 0.6rem; }
.focus-card p { font-size: 1rem; }
.section-foot { margin-top: 2.5rem; text-align: center; }

/* Grouped focus areas (How I Help page) */
.focus-group + .focus-group { margin-top: clamp(4rem, 8vw, 6rem); }
.focus-group-head { display: grid; gap: 1rem; margin-bottom: 2.25rem; }
.focus-group-head .num { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--accent-dark); }
.focus-group-head p { max-width: 620px; }
@media (min-width: 1024px) {
  .focus-group-head { grid-template-columns: 0.9fr 1.1fr; align-items: end; gap: 3rem; }
}
.focus-card .signs { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px dashed var(--border); }
.focus-card .signs h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 0.5rem; }
.focus-card .signs ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.focus-card .signs li { font-size: 0.85rem; font-weight: 700; color: var(--primary-dark); background: var(--primary-tint); padding: 0.3rem 0.7rem; border-radius: 999px; }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; background: var(--surface); border-radius: var(--radius-lg); padding: 2rem 1.6rem 1.8rem;
  border: 1px solid var(--border); counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero); display: block; font-family: var(--font-display); font-style: italic;
  font-size: 2.6rem; line-height: 1; color: var(--accent); margin-bottom: 1.1rem;
}
.step h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); margin-bottom: 0.55rem; }
.step p { font-size: 0.98rem; }

/* ---------- Quote ---------- */
.quote-block { position: relative; max-width: 900px; margin-inline: auto; text-align: center; }
.quote-block svg.quote-mark { width: 54px; height: 54px; color: var(--accent); margin: 0 auto 1.5rem; }
.quote-block blockquote p {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.35;
  color: var(--primary-dark); font-weight: 400;
}
.quote-block figcaption { margin-top: 1.75rem; font-weight: 800; color: var(--text-soft); }
.quote-block figcaption span { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Values / feature tiles ---------- */
.tiles { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
.tile { background: var(--surface); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); }
.tile h3 { margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.75rem; }
.tile h3 svg { width: 26px; height: 26px; color: var(--accent-dark); flex-shrink: 0; }

/* Timeline (About) */
.timeline { list-style: none; position: relative; display: grid; gap: 2rem; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--accent-mid); }
.timeline li { position: relative; }
.timeline li::before {
  content: ""; position: absolute; left: -2rem; top: 0.35rem; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--accent);
}
.timeline h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 0.35rem; }

/* ---------- Explainer (Approach page) ---------- */
.explainer { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .explainer { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.explainer-card { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem); border: 1px solid var(--border); }
.explainer-card .tag { display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 999px; background: var(--accent-tint); color: var(--accent-dark); margin-bottom: 1.25rem; }
.explainer-card h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.explainer-card p + p { margin-top: 0.9rem; }

.callout {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 2.5rem; padding: 1.5rem 1.75rem;
  background: var(--surface); border-left: 4px solid var(--primary-mid); border-radius: var(--radius);
}
.callout svg { width: 26px; height: 26px; color: var(--primary-mid); flex-shrink: 0; margin-top: 0.2rem; }
.callout p { font-size: 0.98rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.2s, box-shadow 0.2s; }
.faq details[open] { border-color: var(--accent-mid); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--primary-dark);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-tint); color: var(--primary); font-family: var(--font-body); font-weight: 800; font-size: 1.2rem;
  transition: transform 0.25s, background 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--accent-tint); color: var(--accent-dark); }
.faq summary:hover { color: var(--primary); }
.faq .answer { padding: 0 1.5rem 1.4rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--primary); color: #fff; padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid; gap: 2rem; align-items: center;
}
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.cta-band::before { width: 340px; height: 340px; right: -90px; top: -140px; background: rgba(243, 193, 164, 0.18); }
.cta-band::after { width: 200px; height: 200px; right: 20%; bottom: -120px; background: rgba(255, 255, 255, 0.06); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: var(--accent-mid); }
.cta-band p { color: #d7e6e2; margin-top: 0.9rem; max-width: 560px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.cta-actions .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-actions .btn-outline:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }
@media (min-width: 1024px) { .cta-band { grid-template-columns: 1.4fr auto; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }
.contact-details { list-style: none; display: grid; gap: 1rem; margin-top: 2rem; }
.contact-details li a, .contact-details li > div {
  display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.25rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); text-decoration: none; transition: border-color 0.2s, transform 0.2s;
}
.contact-details li a:hover { border-color: var(--accent-mid); transform: translateX(4px); }
.contact-details .ci { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--primary-tint); color: var(--primary); flex-shrink: 0; }
.contact-details .ci svg { width: 22px; height: 22px; }
.contact-details small { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.contact-details strong { font-size: 1.05rem; color: var(--primary-dark); word-break: break-word; }

.form-card { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.form-card > p { margin-bottom: 1.75rem; }
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-weight: 800; font-size: 0.92rem; color: var(--primary-dark); margin-bottom: 0.45rem; }
.field label .opt { font-weight: 600; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text); background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--radius); padding: 0.85rem 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--primary-mid); }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--primary); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #b3261e; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }
.form-card .btn { margin-top: 1.5rem; width: 100%; }
@media (min-width: 768px) { .form-card .btn { width: auto; } }
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success svg { width: 64px; height: 64px; margin: 0 auto 1.25rem; color: var(--primary); }
.form-success h2 { margin-bottom: 0.75rem; }
.form-card.sent form, .form-card.sent > h2, .form-card.sent > p { display: none; }
.form-card.sent .form-success { display: block; }

/* ---------- 404 ---------- */
.not-found { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 3rem) var(--gutter) 4rem; }
.not-found .big { font-family: var(--font-display); font-size: clamp(5rem, 16vw, 9rem); line-height: 1; color: var(--accent); font-style: italic; }
.not-found p { max-width: 480px; margin: 1rem auto 2rem; }
.not-found .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: #b9c6c3; padding-top: clamp(3.5rem, 7vw, 5rem); }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .logo-text strong { color: #fff; }
.site-footer .logo-text span { color: var(--accent-mid); }
.footer-about p { color: #a6b5b2; font-size: 0.98rem; margin-top: 1.25rem; max-width: 340px; }
.site-footer h2 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-mid); margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: grid; gap: 0.65rem; }
.footer-links a, .site-footer address a { color: #dde6e4; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover, .site-footer address a:hover { color: var(--accent-mid); text-decoration: underline; text-underline-offset: 4px; }
.site-footer address { font-style: normal; display: grid; gap: 0.65rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem 2rem;
  justify-content: space-between; font-size: 0.88rem; color: #93a3a0;
}
.footer-bottom a { color: #dde6e4; }
.footer-bottom a:hover { color: var(--accent-mid); }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s !important; }
.reveal-d2 { transition-delay: 0.16s !important; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (min-width: 1024px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
