/* ============================================================
   Conch Relational Therapy — website chrome & layout
   Built on the design-system tokens (styles.css). This file adds
   the page-level pieces: nav, footer, hero, sections, cards,
   buttons-as-classes, and the gentle reveal motion.
   ============================================================ */

/* ---------- Reveal motion ----------
   Content is visible by default. The `motion` class (added synchronously in
   <head>) opts into the hide-then-fade-in entrance. site.js removes `motion`
   if it detects an environment where animation frames don't advance, so
   content is never left stuck hidden. */
.reveal { opacity: 1; transform: none; transition: none; }
html.motion .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); will-change: opacity, transform; }
html.motion .reveal.is-visible { opacity: 1; transform: none; }
/* directional & scale reveal variants */
html.motion .reveal--left  { transform: translateX(-30px); }
html.motion .reveal--right { transform: translateX(30px); }
html.motion .reveal--scale { transform: scale(0.93); }
html.motion .reveal--blur  { filter: blur(7px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out); }
html.motion .reveal--left.is-visible,
html.motion .reveal--right.is-visible,
html.motion .reveal--scale.is-visible { transform: none; }
html.motion .reveal--blur.is-visible { filter: none; }
/* split columns drift in from their respective sides — applies to every .split, all pages */
html.motion .split > .reveal:first-child  { transform: translateX(-28px); }
html.motion .split > .reveal:nth-child(2) { transform: translateX(28px); }
html.motion .split > .reveal:first-child.is-visible,
html.motion .split > .reveal:nth-child(2).is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) { html.motion .reveal { opacity: 1; transform: none; filter: none; transition: none; } }

/* eyebrow rule draws itself in as its line is revealed */
@media (prefers-reduced-motion: no-preference) {
  html.motion .eyebrow--rule.reveal::before { width: 0; transition: width 0.7s var(--ease-out) 0.25s; }
  html.motion .eyebrow--rule.reveal.is-visible::before { width: 24px; }
}

/* gentle slow zoom (ken burns) on the hero artwork */
@media (prefers-reduced-motion: no-preference) {
  html.motion .hero__media > img { animation: kenburns 22s ease-in-out infinite alternate; }
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.06); } }

/* In a frozen render context site.js adds html.static — disable transitions
   so reveal transforms settle instantly instead of freezing mid-tween. */
html.static .card, html.static .portrait, html.static .nav,
html.static .brand__mark, html.static .reveal { transition: none !important; }

/* Taller nav bar so the 52px brand mark breathes (menu position, hero height
   and the condense-on-scroll behaviour all follow this variable) */
:root { --nav-height: 76px; }

/* ---------- Layout primitives ---------- */
.container        { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--section-pad-x); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--section-pad-x); }
.section          { padding-block: var(--section-pad-y); }
/* collapse doubled gaps where two same-background sections meet */
main .section:not(.section--cream):not(.feature) + .section:not(.section--cream):not(.feature) { padding-top: calc(var(--section-pad-y) * 0.25); }
main .section--cream + .section--cream { padding-top: calc(var(--section-pad-y) * 0.25); }
.section--cream   { background: var(--bg-alt); }
.section--tight   { padding-block: clamp(2.5rem, 5vw, 4rem); }
.lead             { font-size: var(--text-lead); line-height: var(--leading-relaxed); color: var(--charcoal-mid); }
.prose p          { font-size: 1.05rem; line-height: var(--leading-relaxed); color: var(--charcoal-mid); margin-bottom: 1.4rem; max-width: 66ch; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- Skip link ---------- */
.skip { position: absolute; left: -9999px; top: 0; background: var(--charcoal); color: #fff; padding: 0.6rem 1rem; z-index: 200; }
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 250, 247, 0.86);
  backdrop-filter: var(--blur-nav); -webkit-backdrop-filter: var(--blur-nav);
  border-bottom: 1px solid var(--border-hairline);
  height: var(--nav-height);
  transition: height 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
/* condense on scroll */
.nav.is-scrolled { height: calc(var(--nav-height) - 12px); background: rgba(253, 250, 247, 0.94); box-shadow: 0 1px 14px rgba(44,44,42,0.07); }
.nav.is-scrolled .brand__mark { height: 36px; width: 36px; }
.brand__mark { transition: height 0.35s var(--ease-out), width 0.35s var(--ease-out); }
.nav__inner { height: 100%; max-width: 1320px; padding-inline: clamp(1.25rem, 3.5vw, 2.75rem); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand__name { white-space: nowrap; }
.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.brand__mark { height: 42px; width: 42px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-xs); flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 400; color: var(--charcoal); letter-spacing: 0.01em; line-height: 1.1; }
.brand__sub  { font-size: 0.6rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--clay); }

.nav__links { display: flex; align-items: center; gap: 1.35rem; list-style: none; }
.nav__link {
  font-size: 0.82rem; color: var(--charcoal-mid); text-decoration: none;
  letter-spacing: 0.01em; position: relative; padding-block: 0.4rem; white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--clay); transition: width var(--dur) var(--ease-out);
}
.nav__link:hover { color: var(--charcoal); }
.nav__link:hover::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--charcoal); }
.nav__link[aria-current="page"]::after { width: 100%; }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; color: var(--charcoal); padding: 0.4rem; }
.nav__toggle i, .nav__toggle svg { width: 24px; height: 24px; }

/* ---------- Nav dropdown ("Who I Work With") ---------- */
.nav__dropdown { position: relative; }
/* invisible hover bridge so the pointer can travel from the label to the menu without the menu closing */
.nav__dropdown::before { content: ""; position: absolute; top: 100%; left: -0.75rem; right: -0.75rem; height: 22px; }
.nav__dropdown-toggle { display: inline-flex; align-items: center; gap: 0.3rem; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: inherit; color: var(--charcoal-mid); letter-spacing: 0.01em;
  padding-block: 0.4rem; position: relative; transition: color var(--dur) var(--ease); }
.nav__dropdown-toggle::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--clay); transition: width var(--dur) var(--ease-out); }
.nav__dropdown-toggle:hover, .nav__dropdown-toggle:focus-visible, .nav__dropdown.is-current .nav__dropdown-toggle { color: var(--charcoal); }
.nav__dropdown:hover .nav__dropdown-toggle::after, .nav__dropdown.is-current .nav__dropdown-toggle::after { width: 100%; }
.nav__dropdown-toggle .chev { width: 13px; height: 13px; transition: transform var(--dur) var(--ease-out); }
.nav__dropdown:hover .nav__dropdown-toggle .chev, .nav__dropdown:focus-within .nav__dropdown-toggle .chev { transform: rotate(180deg); }

.nav__dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px); min-width: 15rem;
  background: var(--warm-white); border: 1px solid var(--border-hairline); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 0.5rem; list-style: none; z-index: 110;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease) 0.25s, transform var(--dur) var(--ease) 0.25s, visibility 0s linear 0.55s; }
.nav__dropdown:hover .nav__dropdown-menu, .nav__dropdown:focus-within .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 2px); transition-delay: 0s; }
.nav__dropdown-menu li + li { margin-top: 0.1rem; }
.nav__dropdown-menu a { display: block; padding: 0.6rem 0.85rem; border-radius: var(--radius-xs); font-size: 0.86rem;
  color: var(--charcoal-mid); text-decoration: none; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.nav__dropdown-menu a:hover, .nav__dropdown-menu a[aria-current="page"] { background: var(--theme-tint, var(--sage-light)); color: var(--charcoal); }

/* ---------- Buttons (mirror the Button component) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em;
  padding: 0.85rem 2.1rem; border-radius: var(--radius-xs);
  border: 1.5px solid var(--action); background: var(--action); color: #fff;
  text-decoration: none; cursor: pointer; line-height: 1; white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { background: var(--action-hover); border-color: var(--action-hover); color: #fff; transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--sage-dark); border-color: var(--sage); }
.btn--secondary:hover { background: var(--sage); color: #fff; }
.btn--on-dark { background: var(--clay); border-color: var(--clay); }
.btn--on-dark:hover { background: var(--clay-dark); border-color: var(--clay-dark); color: #fff; }
.btn--lg { padding: 1.05rem 2.6rem; font-size: 0.98rem; }
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.8rem; }
.link-quiet {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  color: var(--clay); text-decoration: none;
}
.link-quiet i, .link-quiet svg { width: 16px; height: 16px; }
.link-quiet:hover { color: var(--clay-dark); }
.link-quiet:hover i { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: calc(100svh - var(--nav-height)); }
.hero__copy { background: var(--cream); display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem); position: relative; overflow: hidden; }
/* decorative concentric rings — echo the conch artwork's sound waves */
.hero__copy > *:not(.hero-orbit) { position: relative; z-index: 1; }
.hero-orbit { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-orbit__center { position: absolute; top: 44%; left: 34%; width: min(42rem, 92%); aspect-ratio: 1; transform: translate(-50%, -50%); }
.hero-ring { position: absolute; inset: 0; border-radius: 50%; }
.hero-ring--1 { border: 1px solid rgba(176, 123, 94, 0.20); animation: ringBreathe 11s ease-in-out infinite; }
.hero-ring--2 { inset: 13%; border: 1px dashed rgba(115, 138, 128, 0.28); animation: ringSpin 64s linear infinite; }
.hero-ring--3 { inset: 27%; border: 1px solid rgba(176, 123, 94, 0.16); animation: ringBreathe 11s ease-in-out infinite 1.6s; }
.hero-ring--4 { inset: 42%; border: 1px solid rgba(115, 138, 128, 0.20); animation: ringBreathe 9s ease-in-out infinite 0.8s; }
.hero-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); opacity: 0.5; top: 50%; left: 0; transform: translate(-50%, -50%); }
@keyframes ringBreathe { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.035); opacity: 0.85; } }
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes ringOrbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-orbit__center--spin { position: absolute; top: 44%; left: 34%; width: min(42rem, 92%); aspect-ratio: 1; transform: translate(-50%, -50%); animation: ringOrbit 78s linear infinite; }
@media (prefers-reduced-motion: reduce) { .hero-ring, .hero-orbit__center--spin { animation: none; } }
.hero__media { position: relative; background: var(--deep); overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* HD square artwork: show the whole image (both faces), blend the surround into the artwork's paper tone */
.hero__media--contain { background: rgb(143,147,142); }
.hero__media--contain img { object-fit: contain; }
.hero__headline { font-size: var(--text-display-xl); font-weight: 300; line-height: 1.06; color: var(--charcoal); margin: 1.1rem 0 1.5rem; }
.hero__headline em { font-style: italic; color: var(--sage-dark); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.75rem; }
/* small circular selfie between the headline and the lead */
.hero__avatar { display: flex; align-items: center; gap: 0.85rem; margin: 1.5rem 0 0.25rem; }
.hero__avatar img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: center 22%; box-shadow: var(--shadow-sm); flex: none; }
.hero__avatar span { font-family: var(--font-body); font-size: 0.92rem; color: var(--charcoal-mid); line-height: 1.35; }
.hero__avatar span em { font-style: italic; font-family: var(--font-display); font-size: 1rem; color: var(--text-accent); }

/* floating caption over imagery */
.caption {
  position: absolute; left: clamp(0.75rem, 4%, 1.75rem); right: auto; bottom: clamp(0.75rem, 4%, 1.75rem); margin-inline: 0;
  width: min(80%, 21rem);
  background: rgba(253, 250, 247, 0.92); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border-left: 3px solid var(--clay); border-radius: var(--radius-xs);
  padding: 1rem 1.15rem; box-shadow: var(--shadow-md);
}
.caption__title { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--charcoal); line-height: 1.3; margin-bottom: 0.5rem; }
.caption__title em { font-style: italic; color: var(--sage-dark); }
.caption__quote { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: var(--sage-dark); line-height: 1.4; }

/* page hero (interior pages) */
.page-hero { background: var(--cream); padding-block: clamp(3rem, 6vw, 5.5rem); border-bottom: 1px solid var(--border-hairline); }
.page-hero h1 { font-size: var(--text-display-lg); font-weight: 300; margin: 0.9rem 0 1.1rem; }
.page-hero h1 em { font-style: italic; color: var(--sage-dark); }
.page-hero .lead { max-width: 56ch; }

/* ---------- Accreditation strip ---------- */
.accred { background: var(--charcoal); display: flex; align-items: stretch; flex-wrap: wrap; }
.accred__label { background: var(--clay); padding: 0.9rem 1.75rem; display: flex; align-items: center; }
.accred__label span { font-size: clamp(0.95rem, 1.1vw, 1.25rem); letter-spacing: 0.14em; text-transform: uppercase; color: #fff; font-weight: 700; white-space: nowrap; }
.accred__items { padding: 0.9rem 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem 2.5rem; flex: 1; }
.accred__item { font-family: var(--font-display); font-size: clamp(1.05rem, 1.15vw, 1.3rem); line-height: 1.3; color: rgba(255, 255, 255, 0.82); white-space: nowrap; }
.accred__item--wide { white-space: normal; flex-basis: 100%; text-align: center; font-size: clamp(1.05rem, 1.15vw, 1.3rem); line-height: 1.3; color: rgba(255, 255, 255, 0.7); padding-top: 0.55rem; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 0.55rem; }
/* dividers off: space-between distribution fills the line */
.accred__item:not(:last-child)::after { content: none; }
@media (max-width: 1250px) { .accred { flex-direction: column; } .accred__items { justify-content: center; gap: 0.4rem 2.5rem; } }

/* desktop-only column offset (aligns first lines beside a taller quote) */
.split__offset { padding-top: 2.5rem; }
@media (max-width: 920px) { .split__offset { padding-top: 0; } }

/* ---------- Cards ---------- */
.card { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); padding: var(--space-6); }
.card--tint { background: var(--surface-tint); border-color: transparent; box-shadow: none; }
.card--clay { background: var(--surface-tint-2); border-color: transparent; box-shadow: none; }
.card--credential { background: rgba(245, 242, 238, 0.92); border-color: var(--border-hairline); border-left: 3px solid var(--clay); box-shadow: none; }
.card h3 { font-family: var(--font-display); font-weight: 300; font-size: var(--text-display-sm); color: var(--charcoal); margin-bottom: 0.6rem; line-height: 1.25; }
.card h3 em { font-style: italic; color: var(--sage-dark); }
.card p { font-size: 0.96rem; line-height: 1.65; color: var(--charcoal-mid); }
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* every card lifts gently on hover */
.card { transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card--interactive { transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.card--interactive:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* numbered process card */
.step__num { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--clay); line-height: 1; margin-bottom: 0.8rem; display: block; }

/* ---------- Lists with clay markers ---------- */
.ticks { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.ticks li { position: relative; padding-left: 1.8rem; font-size: 1rem; line-height: 1.55; color: var(--charcoal-mid); }
.ticks li i, .ticks li svg { position: absolute; left: 0; top: 0.15rem; width: 18px; height: 18px; color: var(--sage); }

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tag { display: inline-flex; align-items: center; font-size: 0.8rem; line-height: 1; padding: 0.5rem 0.9rem; border-radius: var(--radius-pill); background: var(--cream); color: var(--charcoal-mid); border: 1px solid var(--border-hairline); }
.tag--sage { background: var(--sage-light); color: var(--sage-dark); border-color: transparent; }
.tag--clay { background: var(--clay-light); color: var(--clay-dark); border-color: transparent; }

/* ---------- Feature panels (deep / charcoal) ---------- */
.feature { background: var(--theme-feature); color: var(--text-on-dark); position: relative; overflow: hidden; }
.feature--charcoal { background: var(--charcoal); }
.feature h2 { color: #fff; font-weight: 300; }
.feature h2 em { color: #fff; opacity: 0.92; }
.feature p { color: rgba(255, 255, 255, 0.78); }
.feature .eyebrow { color: var(--clay); }
.feature .ticks li { color: rgba(255, 255, 255, 0.82); }
.feature .ticks li i, .feature .ticks li svg { color: var(--clay); }

/* pull quote */
.pullquote { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.3; color: var(--charcoal); max-width: 24ch; }
.pullquote em { font-style: italic; color: var(--sage-dark); }
.pullquote--on-dark { color: #fff; }
.pullquote--on-dark em { color: #fff; opacity: 0.9; }

/* ---------- Profile / split ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse { grid-template-columns: 1.1fr 0.9fr; }
.portrait { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-image); display: block; transition: transform 0.6s var(--ease-out), box-shadow 0.5s var(--ease-out); }
.portrait:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.portrait--round { border-radius: 50%; max-width: 320px; }

/* small profile photo (circular) */
.avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: center top; box-shadow: var(--shadow-sm); }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: rgba(255, 255, 255, 0.6); padding-block: clamp(3rem, 5vw, 4rem); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer .brand__name { color: rgba(255, 255, 255, 0.82); }
.footer__col h4 { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); margin-bottom: 1rem; font-weight: 600; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a, .footer__col span { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; transition: color var(--dur) var(--ease); overflow-wrap: anywhere; }
.footer__col a:hover { color: var(--clay); }
.footer__blurb { font-size: 0.92rem; line-height: 1.7; color: rgba(255, 255, 255, 0.5); max-width: 34ch; margin-top: 1rem; }
.footer__legal { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lead { margin-inline: auto; max-width: 48ch; margin-bottom: 2rem; }

/* ---------- Forms (contact) ---------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: block; }
.field > span { display: block; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; margin-bottom: 0.5rem; }
.field > span em { color: var(--clay); font-style: normal; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text-strong);
  background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-xs);
  padding: 0.72rem 0.95rem; line-height: 1.5; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--mid-grey); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--focus-ring); }
.form__note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-detail { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail i, .contact-detail svg { color: var(--clay); width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.15rem; }
.contact-detail h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 0.3rem; }
.contact-detail a, .contact-detail p { font-size: 0.98rem; color: var(--charcoal-mid); }
.contact-detail a { color: var(--sage-dark); overflow-wrap: anywhere; }

@media (max-width: 680px) {
  .form__row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; min-height: 46vh; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 1.75rem; }
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1040px) {
  .nav__links { position: fixed; inset: var(--nav-height) 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--warm-white); border-bottom: 1px solid var(--border-hairline);
    padding: 0.5rem 1.5rem 1.25rem; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links li { width: 100%; }
  .nav__link { display: block; width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--border-hairline); }
  .nav__link::after { display: none; }
  .nav__links li:last-child .nav__link { border-bottom: none; }
  .nav__cta-li { margin-top: 0.75rem; }
  .nav__cta-li .btn { width: 100%; }
  .nav__toggle { display: inline-flex; }
  /* dropdown becomes a plain expanded sub-list on mobile */
  .nav__dropdown-toggle { width: 100%; justify-content: space-between; padding: 0.85rem 0; border-bottom: 1px solid var(--border-hairline); }
  .nav__dropdown-toggle::after { display: none; }
  .nav__dropdown-toggle .chev { display: none; }
  .nav__dropdown::before { display: none; }
  .nav__dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none;
    border: none; background: none; padding: 0 0 0.25rem 1rem; margin: 0; min-width: 0; transition: none; }
  .nav__dropdown:hover .nav__dropdown-menu, .nav__dropdown:focus-within .nav__dropdown-menu { transform: none; }
  .nav__dropdown-menu a { padding: 0.7rem 0; border-radius: 0; }
}
@media (max-width: 680px) {
  .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .accred__item { font-size: 0.85rem; }
  /* tighter vertical rhythm so phones aren't endless scroll */
  .section { padding-block: clamp(2.75rem, 11vw, 4rem); }
  .hero__copy { padding: clamp(2.25rem, 9vw, 3.5rem) 1.5rem clamp(2.5rem, 9vw, 3.5rem); }
  .hero__media { min-height: 52vw; }
  /* accreditation strip stacks cleanly */
  .accred { flex-direction: column; }
  .accred__label { padding: 0.7rem 1.5rem; }
  .accred__items { padding: 0.9rem 1.5rem; gap: 0.5rem 0; }
  .accred__item { white-space: normal; flex: 1 1 100%; font-size: 1.2rem; }
  .accred__item:not(:last-child)::after { display: none; }
  .accred__item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 0.5rem; }
  /* two-column tick grids collapse to one readable column */
  .ticks { grid-template-columns: 1fr !important; }
  /* centre stacked portraits */
  .split .portrait, .split .portrait--round { margin-inline: auto; }
  .page-hero { padding-block: clamp(2.5rem, 10vw, 4rem); }
}
@media (max-width: 560px) {
  /* comfortable, full-width tap targets */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .btn { padding: 0.95rem 1.6rem; }
  .btn--lg { padding: 1.05rem 1.6rem; }
  /* keep the hero artwork clean — drop the floating caption on small phones */
  .hero .caption { display: none; }
  /* brand wordmark stays tidy in a narrow bar */
  .brand__name { font-size: 0.95rem; }
  .lead { font-size: 1.05rem; }
  .prose p { font-size: 1rem; }
  .pullquote { font-size: clamp(1.35rem, 6.5vw, 1.8rem); }
}

/* ============================================================
   Motion removed per request — keep the site fully static.
   ============================================================ */
*, *::before, *::after { animation: none !important; }
.reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
.hero__media > img { transform: none !important; }
.card:hover, .card--interactive:hover, .portrait:hover,
.btn:hover, .nav__cta-li .btn:hover, .link-quiet:hover i { transform: none !important; }
.nav, .brand__mark { transition: none !important; }
.nav.is-scrolled { height: var(--nav-height) !important; box-shadow: none !important; background: rgba(253, 250, 247, 0.86) !important; }
