/* ============================================================
   DERBY LIFESCIENCE — Contact Us page
   Builds on the shared design system in css/style.css
   Palette: Primary #769382 · Background #F3EFE3 · Ink #263229
   Redesign: asymmetric "contact studio" · glass form · timeline
             direct-lines · live support status · cinematic map card
   ============================================================ */

:root {
  --primary-dark:  #5f7d6c;
  --primary-deep:  #47624f;
  --primary-tint:  rgba(118, 147, 130, 0.10);
  --primary-tint-2:rgba(118, 147, 130, 0.18);
  --card:          #FFFFFF;
  --glass:         rgba(255, 255, 255, 0.72);
  --glass-2:       rgba(255, 255, 255, 0.85);
  --line:          rgba(38, 50, 41, 0.10);
  --line-strong:   rgba(38, 50, 41, 0.16);
  --ink-soft:      rgba(38, 50, 41, 0.66);
  --ink-faint:     rgba(38, 50, 41, 0.48);
  --danger:        #c0483c;
  --online:        #3fae6b;
  --offline:       #c9a24b;

  --radius-lg:     18px;
  --radius-xl:     22px;
  --radius-2xl:    26px;

  --shadow-sm:     0 4px 14px -8px rgba(30, 40, 33, 0.35);
  --shadow-md:     0 18px 40px -24px rgba(30, 40, 33, 0.45);
  --shadow-lg:     0 30px 60px -30px rgba(30, 40, 33, 0.55);
  --shadow-xl:     0 44px 90px -44px rgba(30, 40, 33, 0.62);
  --shadow-primary:0 18px 34px -14px rgba(118, 147, 130, 0.55);
}

/* ---------- Layout helpers ---------- */
.section { padding: 96px 0; position: relative; }
.section--tint { background:
    radial-gradient(120% 100% at 50% 0%, rgba(118,147,130,0.10), transparent 60%),
    var(--bg); }
.container--narrow { max-width: 860px; }

/* ---------- Section heading block ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head__eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary-deep);
  background: var(--primary-tint);
  padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section-head__title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.12; color: var(--ink);
}
.section-head__sub {
  margin-top: 14px; font-size: 17px; line-height: 1.6; color: var(--ink-soft);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --btn-h: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: var(--btn-h); padding: 0 22px;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease),
              box-shadow 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg { --btn-h: 54px; padding: 0 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(118,147,130,0.7); }
.btn--primary:active { transform: translateY(0); }

.btn--glass {
  background: rgba(237, 231, 216, 0.12); color: var(--cream);
  border-color: rgba(237, 231, 216, 0.34);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(237, 231, 216, 0.2); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--primary-deep); box-shadow: var(--shadow-md); }
.btn--light:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

/* ============================================================
   1 · HERO
   ============================================================ */
/* Take the floating capsule out of flow so the hero image fills the
   entire top of the page and sits BEHIND the nav (not below it).
   Scoped to the contact page — the shared header stays sticky elsewhere. */
.header-wrap { position: fixed; left: 0; right: 0; }

.c-hero {
  position: relative;
  min-height: 82vh;
  display: flex; align-items: center;
  padding: 160px 0 120px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(30,40,33,0.48) 0%, rgba(30,40,33,0.62) 55%, rgba(30,40,33,0.82) 100%),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80") center 30% / cover no-repeat,
    var(--pine);
}
.c-hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 120% at 20% 0%, rgba(118,147,130,0.28), transparent 55%),
    radial-gradient(80% 100% at 100% 100%, rgba(30,40,33,0.5), transparent 60%);
  pointer-events: none;
}
.c-hero__inner { position: relative; z-index: 2; max-width: 760px; }

.c-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cream);
  background: rgba(237, 231, 216, 0.12);
  border: 1px solid rgba(237, 231, 216, 0.22);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.c-hero__eyebrow svg { width: 16px; height: 16px; color: var(--accent-soft); }

.c-hero__title {
  margin-top: 22px;
  font-size: clamp(38px, 6.4vw, 68px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.04; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.c-hero__sub {
  margin-top: 20px; max-width: 600px;
  font-size: clamp(16px, 2vw, 19px); line-height: 1.62;
  color: rgba(237, 231, 216, 0.9);
}
.c-hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.c-hero__scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px; border-radius: var(--radius-pill);
  border: 2px solid rgba(237, 231, 216, 0.55);
  display: flex; justify-content: center; padding-top: 8px;
}
.c-hero__scroll-dot {
  width: 4px; height: 8px; border-radius: 4px; background: var(--cream);
  animation: scrollDot 1.7s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ============================================================
   2 · CONTACT STUDIO — layered, asymmetric
   ============================================================ */
.studio { position: relative; overflow: hidden; }
.studio__decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(64px); opacity: 0.55; }
.orb--a {
  width: 440px; height: 440px; top: -140px; left: -130px;
  background: radial-gradient(circle, rgba(118,147,130,0.55), transparent 70%);
  animation: floatA 17s var(--ease) infinite;
}
.orb--b {
  width: 500px; height: 500px; bottom: -180px; right: -150px;
  background: radial-gradient(circle, rgba(30,40,33,0.22), transparent 70%);
  animation: floatB 21s var(--ease) infinite;
}
@keyframes floatA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(28px,22px); } }
@keyframes floatB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-26px,-18px); } }
.studio > .container { position: relative; z-index: 1; }

.studio__layout {
  display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 28px; align-items: start;
}
.studio__aside { display: flex; flex-direction: column; gap: 22px; }

/* ---------- FORM PANEL (frosted glass) ---------- */
.form-panel {
  position: relative; overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-panel__glow {
  position: absolute; top: -30%; right: -20%; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(118,147,130,0.22), transparent 70%);
  pointer-events: none; z-index: 0;
}
/* keep the glow absolutely positioned; only lift the real content above it */
.form-panel > *:not(.form-panel__glow) { position: relative; z-index: 1; }

.form-panel__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  margin-bottom: 28px;
}
.form-panel__title { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.form-panel__sub { margin-top: 6px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.form-panel__badge {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--primary-tint); color: var(--primary-deep);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.01em; white-space: nowrap;
}
.pulse-dot {
  position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--online);
}
.pulse-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--online);
  animation: ping 1.8s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2.6); opacity: 0; } }

/* ---------- floating-label fields ---------- */
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; margin-bottom: 20px; }
.ff { position: relative; margin-bottom: 20px; }
.cform__row .ff { margin-bottom: 0; }
.ff--area { margin-bottom: 24px; }

.ff__icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  display: inline-flex; color: var(--ink-faint); pointer-events: none; z-index: 2;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.ff__icon svg { width: 19px; height: 19px; display: block; }
.ff__icon--top { top: 24px; transform: none; }

.ff__input {
  width: 100%; height: 62px;
  padding: 24px 16px 8px 46px;
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--glass-2);
  border: 1.6px solid var(--line-strong);
  border-radius: var(--radius-md);
  transition: border-color 0.28s var(--ease), background 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.ff__textarea { height: auto; min-height: 150px; padding: 32px 16px 14px 46px; resize: vertical; line-height: 1.55; }

.ff__label {
  position: absolute; left: 46px; top: 50%; transform: translateY(-50%);
  font-size: 15.5px; color: var(--ink-faint); pointer-events: none;
  transform-origin: left center;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease), top 0.25s var(--ease);
}
.ff--area .ff__label { top: 26px; transform: none; }

/* float on focus or when filled (placeholder is a single space) */
.ff__input:focus ~ .ff__label,
.ff__input:not(:placeholder-shown) ~ .ff__label {
  top: 10px; transform: translateY(0) scale(0.8); color: var(--primary-deep); font-weight: 600;
}
.ff--area .ff__input:focus ~ .ff__label,
.ff--area .ff__input:not(:placeholder-shown) ~ .ff__label {
  top: 10px; transform: scale(0.8);
}

.ff__input:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px var(--primary-tint-2);
}
.ff__input:hover:not(:focus) { border-color: var(--primary-dark); }
.ff:focus-within .ff__icon { color: var(--primary); transform: translateY(-50%) scale(1.06); }
.ff--area:focus-within .ff__icon--top { transform: scale(1.06); }

/* validation */
.ff.is-invalid .ff__input { border-color: var(--danger); background: rgba(192,72,60,0.04); }
.ff.is-invalid .ff__icon { color: var(--danger); }
.ff.is-invalid .ff__label { color: var(--danger); }
.ff__error {
  display: block; font-size: 12.5px; color: var(--danger); font-weight: 500;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease), opacity 0.3s var(--ease), margin-top 0.3s var(--ease);
}
.ff.is-invalid .ff__error { max-height: 34px; opacity: 1; margin-top: 7px; }

/* submit + states */
.cform__submit { margin-top: 4px; }
.btn__spinner { display: none; }
#submitBtn.is-loading .btn__send { display: none; }
#submitBtn.is-loading .btn__spinner { display: inline-block; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.cform__status {
  display: flex; align-items: center; gap: 11px;
  margin-top: 18px; padding: 15px 18px;
  border-radius: var(--radius-md);
  font-size: 14.5px; font-weight: 600; line-height: 1.45;
  animation: statusIn 0.4s var(--ease);
}
.cform__status--ok  { background: var(--primary-tint); border: 1px solid var(--primary-tint-2); color: var(--primary-deep); }
.cform__status--err { background: #fbeae7; border: 1px solid #f1c9c1; color: #a3372a; }

/* two icons live in the markup; show the one matching the current state */
.cform__status-ico { display: none; width: 22px; height: 22px; flex-shrink: 0; color: #fff; border-radius: 50%; padding: 3px; }
.cform__status--ok  .cform__status-ico--ok  { display: block; background: var(--primary); }
.cform__status--err .cform__status-ico--err { display: block; background: #c0432f; }
@keyframes statusIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* "(optional)" hint next to a field label */
.ff__opt { font-weight: 500; font-size: 0.9em; opacity: 0.6; }

/* honeypot — kept in the accessibility/layout shadows, never shown to humans */
.ff-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ff-hp input { pointer-events: none; }

/* ---------- REACH · dark timeline panel ---------- */
.reach {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--pine) 0%, #16201a 100%);
  color: var(--cream);
  border-radius: var(--radius-2xl);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
}
.reach::before {
  content: ""; position: absolute; top: -40%; right: -30%; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(118,147,130,0.4), transparent 70%); pointer-events: none;
}
.reach__head { position: relative; }
.reach__eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--footer-accent); }
.reach__title { margin-top: 6px; font-size: 21px; font-weight: 800; letter-spacing: -0.01em; color: #fff; }

.tl { position: relative; margin-top: 22px; display: flex; flex-direction: column; gap: 4px; }
.tl::before {
  content: ""; position: absolute; left: 34px; top: 34px; bottom: 34px; width: 2px;
  background: linear-gradient(var(--hair-light-2), rgba(168,192,175,0.04));
  transform: translateX(-1px);
}
.tl__item {
  position: relative; display: flex; gap: 16px; align-items: flex-start;
  padding: 12px; border-radius: var(--radius-md);
  transition: background 0.28s var(--ease), transform 0.28s var(--ease);
}
.tl__item:hover { background: rgba(237, 231, 216, 0.07); transform: translateX(3px); }
.tl__node {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(168, 192, 175, 0.16); color: var(--footer-accent);
  box-shadow: 0 0 0 5px rgba(22, 32, 26, 1);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease);
}
.tl__item:hover .tl__node { transform: scale(1.06); background: rgba(168, 192, 175, 0.28); }
.tl__node svg { width: 21px; height: 21px; }
.tl__body { display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.tl__label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--footer-accent); }
.tl__value { font-size: 14.5px; line-height: 1.5; color: var(--cream); transition: color 0.25s var(--ease); }
a.tl__value:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.reach__socials { position: relative; display: flex; gap: 11px; margin-top: 24px; }
.reach .social-btn { color: var(--cream); }

/* ---------- HOURS + live support ---------- */
.hours-card {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-2xl);
  padding: 26px 28px;
  box-shadow: var(--shadow-md);
}
.support { display: flex; align-items: center; gap: 14px; }
.support__dot {
  position: relative; flex-shrink: 0; width: 12px; height: 12px; border-radius: 50%;
  background: var(--online); box-shadow: 0 0 0 4px rgba(63,174,107,0.18);
}
.support__dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--online);
  animation: ping 1.8s var(--ease) infinite;
}
.support[data-online="false"] .support__dot { background: var(--offline); box-shadow: 0 0 0 4px rgba(201,162,75,0.18); }
.support[data-online="false"] .support__dot::after { display: none; }
.support__text { display: flex; flex-direction: column; gap: 1px; }
.support__title { font-size: 15px; font-weight: 700; color: var(--ink); }
.support__hint { font-size: 13px; color: var(--ink-soft); }
.support__icon { margin-left: auto; width: 26px; height: 26px; color: var(--primary); }

.hours-card__divider { height: 1px; background: var(--line); margin: 20px 0; }
.hours-card__label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.sched { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.sched__row { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; }
.sched__row > span:first-child { color: var(--ink-soft); }
.sched__row > span:last-child { color: var(--ink); font-weight: 600; }
.sched__row--off > span:last-child { color: var(--offline); }

/* ============================================================
   3 · MAP SHOWCASE — cinematic floating card
   ============================================================ */
.mapcard {
  position: relative; border-radius: var(--radius-2xl); overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}
.mapcard__ring {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; border-radius: var(--radius-2xl);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5), inset 0 0 0 6px rgba(118,147,130,0.10);
}
.mapcard__frame { display: block; width: 100%; height: 440px; border: 0; filter: saturate(1.05) contrast(1.02); }

.mapcard__badge {
  position: absolute; top: 20px; left: 20px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 14px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7); box-shadow: var(--shadow-md);
}
.mapcard__pin { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--primary); color: #fff; }
.mapcard__pin svg { width: 20px; height: 20px; }
.mapcard__badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.mapcard__badge-text b { font-size: 15px; color: var(--ink); }
.mapcard__badge-text span { font-size: 12.5px; color: var(--ink-soft); }

.mapcard__bar {
  position: relative; z-index: 4;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; background: #fff; border-top: 1px solid var(--line);
}
.mapcard__addr { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.mapcard__addr svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.mapcard__dir {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  height: 44px; padding: 0 20px; border-radius: var(--radius-pill);
  background: var(--primary); color: #fff; font-size: 14.5px; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow-primary);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.mapcard__dir svg { width: 18px; height: 18px; }
.mapcard__dir:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============================================================
   4 · EXTRA INFO CARDS
   ============================================================ */
.help-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.help-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.help-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-tint-2); }
.help-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(145deg, var(--primary-tint-2), var(--primary-tint));
  color: var(--primary-deep); margin-bottom: 22px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.help-card__icon svg { width: 27px; height: 27px; }
.help-card:hover .help-card__icon { background: var(--primary); color: #fff; transform: rotate(-6deg) scale(1.06); }
.help-card__title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 10px; }
.help-card__text { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 20px; }
.help-card__link { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 700; color: var(--primary-deep); }
.help-card__link svg { width: 17px; height: 17px; transition: transform 0.28s var(--ease); }
.help-card:hover .help-card__link svg { transform: translateX(4px); }

/* ============================================================
   5 · FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.faq__item.is-open { border-color: var(--primary-tint-2); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); text-align: left;
  transition: color 0.25s var(--ease);
}
.faq__q:hover { color: var(--primary-deep); }
.faq__chevron { width: 22px; height: 22px; flex-shrink: 0; color: var(--primary); transition: transform 0.35s var(--ease); }
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }
.faq__panel { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__panel p { padding: 0 24px 24px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* ============================================================
   6 · CTA
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 55%, var(--primary-deep) 100%);
  color: #fff; text-align: center;
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}
.cta::before { width: 460px; height: 460px; top: -180px; left: -120px; }
.cta::after  { width: 520px; height: 520px; bottom: -260px; right: -140px; }
.cta__inner { position: relative; z-index: 2; padding: 96px 0; max-width: 720px; }
.cta__title { font-size: clamp(28px, 4.4vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.cta__text { margin-top: 16px; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.9); }
.cta__actions { margin-top: 36px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-animate] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
.help-cards [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.help-cards [data-animate]:nth-child(3) { transition-delay: 0.16s; }
.studio__aside [data-animate]:nth-child(2) { transition-delay: 0.1s; }

.c-hero [data-animate] { transition-delay: 0.05s; }
.c-hero [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.c-hero [data-animate]:nth-child(3) { transition-delay: 0.25s; }
.c-hero [data-animate]:nth-child(4) { transition-delay: 0.35s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .studio__layout { grid-template-columns: 1fr; gap: 24px; }
  .help-cards { grid-template-columns: 1fr 1fr; }
  .help-cards [data-animate]:nth-child(3) { transition-delay: 0s; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .c-hero { min-height: 78vh; padding: 140px 0 100px; }
  .form-panel { padding: 26px 20px; }
  .reach, .hours-card { padding: 24px 20px; }
  .cform__row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .cform__row .ff { margin-bottom: 20px; }
  .help-cards { grid-template-columns: 1fr; }
  .mapcard__frame { height: 360px; }
  .mapcard__bar { flex-direction: column; align-items: stretch; }
  .mapcard__dir { justify-content: center; }
  .cta__inner { padding: 72px 0; }
  .btn { width: 100%; }
  .c-hero__actions .btn, .cta__actions .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .form-panel { padding: 22px 16px; }
  .form-panel__head { flex-direction: column; }
  .mapcard__badge { left: 12px; top: 12px; padding: 10px 14px 10px 12px; }
  .mapcard__frame { height: 300px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; }
  .c-hero__scroll-dot, .orb, .pulse-dot::after, .support__dot::after { animation: none; }
}
