/* Ripple Effect — main stylesheet.
   Ported from the approved design reference (index.html). Custom properties
   mirror theme.json tokens so hand-written sections and block styles agree.
   Motion contract: transform/opacity only; the breath orb is the ONLY
   looping animation on the site (DESIGN-SPEC §3). */

:root {
  --moss: #1B2418;
  --moss-deep: #151D13;
  --moss-card: #232E1F;
  --cream: #F1E9DA;
  --sage: #A7B294;
  --copper: #C9764A;
  --line: #2E3A28;
  --muted: #7E8A6C;
  --sage-deep: #5C6B4D;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Karla", -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--moss);
  color: var(--sage);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
}

:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--copper); color: var(--moss);
  padding: 10px 18px; border-radius: 0 0 8px 0; z-index: 100;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.logo-svg { height: 46px; width: auto; display: block; }
.logo-word { font-family: var(--sans); font-weight: 800; fill: var(--cream); letter-spacing: 2px; }
@media (max-width: 760px) { .logo-svg { height: 40px; } }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 15px; color: var(--sage); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }

.btn {
  display: inline-block; text-decoration: none; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 26px; transition: transform 0.3s ease, background 0.3s ease;
}
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: #D88A5E; transform: translateY(-1px); color: #fff; }
.btn-ghost { color: var(--cream); border: 1px solid var(--sage-deep); }
.btn-ghost:hover { border-color: var(--sage); color: var(--cream); }
.btn-sm { font-size: 14px; padding: 10px 20px; }

.nav-toggle { display: none; }
.mobile-menu {
  display: none; border-bottom: 1px solid var(--line);
  background: var(--moss-deep);
}
.mobile-menu ul { list-style: none; margin: 0; padding: 12px 24px 20px; display: grid; gap: 4px; }
.mobile-menu a {
  display: block; padding: 10px 0; font-size: 17px;
  color: var(--sage); text-decoration: none;
}
.mobile-menu a:hover { color: var(--cream); }
.mobile-menu.is-open { display: block; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 72px 0 0; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--copper); margin: 0 0 20px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(38px, 5.5vw, 64px); line-height: 1.12;
  letter-spacing: -0.01em; max-width: 16ch; margin: 0 auto 18px;
}
.hero-sub { max-width: 46ch; margin: 0 auto; font-size: 18px; }

/* ---------- Breath orb (reference implementation, ported unchanged) ---------- */
.orb-stage { position: relative; width: 320px; height: 320px; margin: 28px auto 8px; }
.orb-stage svg { display: block; width: 100%; height: 100%; }
@keyframes breath {
  0%   { transform: scale(0.8); }
  40%  { transform: scale(1.1); }
  100% { transform: scale(0.8); }
}
@keyframes core-glow {
  0%   { opacity: 0.45; }
  40%  { opacity: 1; }
  100% { opacity: 0.45; }
}
@keyframes exhale-ring {
  0%, 39% { transform: scale(0.42); opacity: 0; }
  42%     { opacity: 0.4; }
  100%    { transform: scale(1.5); opacity: 0; }
}
.breath { animation: breath 10s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.core { animation: breath 10s ease-in-out infinite, core-glow 10s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.ring { animation: exhale-ring 10s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.ring-2 { animation-delay: 1.4s; }
.orb-text {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; padding-top: 36%;
  pointer-events: none;
}
.orb-cue { font-family: var(--serif); font-size: 18px; color: var(--cream); letter-spacing: 0.01em; }
.orb-caption {
  font-size: 13px; color: var(--muted); text-align: center;
  margin: 2px 0 0; letter-spacing: 0.06em;
}
@media (prefers-reduced-motion: reduce) {
  .breath, .core, .ring { animation: none; }
  .ring { opacity: 0.15; }
  .core { opacity: 1; }
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-top: 10px; padding-bottom: 48px;
}
.pause-pill {
  font-size: 13px; color: var(--muted); background: none;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; cursor: pointer; font-family: var(--sans);
}
.pause-pill:hover { color: var(--sage); border-color: var(--sage-deep); }

/* ---------- Trust strip ---------- */
.trust {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding: 22px 24px; margin: 0;
  background: var(--moss-deep); border-top: 1px solid var(--line);
  font-size: 14px; color: var(--muted); text-align: center;
}
.trust span::after { content: "·"; margin-left: 14px; color: var(--line); }
.trust span:last-child::after { content: ""; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--moss-deep); }
.section h2 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.2; margin: 0 0 16px;
}
.section-intro { max-width: 62ch; margin: 0 0 24px; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

.placeholder {
  border: 1px dashed var(--line); border-radius: 16px;
  padding: 36px; color: var(--muted); font-size: 15px; margin-top: 24px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line); padding: 56px 0 96px;
  font-size: 14px; color: var(--muted);
}
.site-footer .wrap { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.site-footer a { color: var(--sage); text-decoration: none; }
.site-footer a:hover { color: var(--cream); }
.site-footer ul { list-style: none; display: grid; gap: 8px; margin: 0; padding: 0; }
.site-footer address { font-style: normal; line-height: 1.9; }
.footer-name {
  color: var(--cream); font-family: var(--serif); font-weight: 400; font-size: 17px;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--moss-deep); border-top: 1px solid var(--line);
}
.sticky-cta .btn { display: block; text-align: center; }

@media (max-width: 760px) {
  .nav-links, .site-nav .btn { display: none; }
  .nav-toggle {
    display: block; background: none; border: 1px solid var(--line);
    border-radius: 8px; color: var(--cream); font-size: 15px;
    padding: 8px 14px; font-family: var(--sans); cursor: pointer;
  }
  .sticky-cta { display: block; }
  .hero { padding-top: 48px; }
  .orb-stage { width: 260px; height: 260px; }
  .section { padding: 64px 0; }
  /* Roomier side gutters on phones so content isn't tight to the edges */
  .wrap { padding-left: 30px; padding-right: 30px; }
}

/* ---------- Stage 2: homepage sections ---------- */

/* Recognition cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.card {
  background: var(--moss-card); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px 26px 24px;
  display: flex; flex-direction: column;
}
.card h3 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: 22px; line-height: 1.25; margin: 0 0 10px;
}
.card p { margin: 0 0 16px; font-size: 15.5px; flex: 1; }
.card-link { color: var(--cream); text-decoration: none; font-weight: 600; font-size: 15px; }
.card-link::after { content: " \2192"; color: var(--sage-deep); }
.card-link:hover { color: var(--copper); }

/* Clinical services grid (doorway cards) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.svc-card {
  position: relative; display: block; text-decoration: none;
  background: var(--moss-card); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px 22px 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover { transform: translateY(-2px); border-color: var(--sage-deep); }
.svc-card h3 {
  font-family: var(--sans); font-weight: 600; color: var(--cream);
  font-size: 17px; margin: 0 0 6px;
}
.svc-card p { margin: 0; font-size: 14.5px; color: var(--sage); }
.svc-more {
  position: absolute; top: 20px; right: 20px;
  color: var(--sage-deep); transition: color 0.3s ease;
}
.svc-card:hover .svc-more { color: var(--cream); }

/* What to expect steps */
.steps {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  counter-reset: none;
}
.steps li {
  border-top: 1px solid var(--line); padding-top: 20px; position: relative;
}
.step-num {
  font-family: var(--serif); font-size: 32px; color: var(--sage-deep);
  line-height: 1; display: block; margin-bottom: 10px;
}
.steps h3 {
  font-family: var(--sans); font-weight: 600; color: var(--cream);
  font-size: 17px; margin: 0 0 8px;
}
.steps p { margin: 0; font-size: 15.5px; }

/* Our clinical approach */
.approach { display: flex; gap: 48px; align-items: center; }
.approach img {
  width: min(380px, 40%); height: auto; border-radius: 16px;
  border: 1px solid var(--line); flex-shrink: 0;
}
.approach-text { max-width: 56ch; }
.approach-text p { margin: 0 0 16px; }
.approach-text .btn { margin-top: 6px; }

/* Fees */
.fees-list { list-style: none; margin: 8px 0 0; padding: 0; max-width: 62ch; }
.fees-list li { border-bottom: 1px solid var(--line); padding: 14px 0; }
.fees-list li:last-child { border-bottom: 0; }
.fees-list strong { color: var(--cream); font-weight: 600; }
.fees-list a { color: var(--sage); }
.fees-list a:hover { color: var(--cream); }

/* FAQ (native details/summary; content in DOM at load) */
.faq-wrap { max-width: 62ch; }
.faq-wrap details { border-bottom: 1px solid var(--line); }
.faq-wrap summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 18px 36px 18px 0; color: var(--cream);
  font-weight: 600; font-size: 17px;
}
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%); color: var(--sage-deep);
  font-size: 22px; font-weight: 400;
}
.faq-wrap details[open] summary::after { content: "\2212"; }
.faq-wrap details p { margin: 0 0 18px; font-size: 16px; }
.faq-wrap details a { color: var(--sage); }
.faq-wrap details a:hover { color: var(--cream); }

/* Recent clinical insights (query loop) */
.insights .wp-block-post-template {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  list-style: none; margin: 8px 0 0; padding: 0;
}
.insights .wp-block-post {
  background: var(--moss-card); border: 1px solid var(--line);
  border-radius: 16px; padding: 24px 22px 20px;
}
.insights .wp-block-post-title {
  font-family: var(--serif); font-weight: 400; font-size: 20px;
  line-height: 1.3; margin: 0 0 8px;
}
.insights .wp-block-post-title a { color: var(--cream); text-decoration: none; }
.insights .wp-block-post-title a:hover { color: var(--copper); }
.insights .insight-date { font-size: 13px; color: var(--muted); margin: 0 0 10px; }
.insights .wp-block-post-excerpt { font-size: 15px; }
.insights .wp-block-post-excerpt__more-link { color: var(--sage); }
.insights-all { margin-top: 22px; }
.insights-all a { color: var(--sage); text-decoration: none; font-weight: 600; }
.insights-all a::after { content: " \2192"; color: var(--sage-deep); }
.insights-all a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .cards-3, .svc-grid, .steps, .insights .wp-block-post-template { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards-3, .svc-grid, .steps, .insights .wp-block-post-template { grid-template-columns: 1fr; }
  .approach { flex-direction: column; align-items: flex-start; gap: 28px; }
  .approach img { width: 100%; max-width: 420px; }
}

/* ---------- Stage 3: one-shot page motifs (approved gallery v2) ----------
   Each motif plays ONCE on page load and rests. The breath orb remains the
   only looping animation site-wide. Markup coordinates = final resting
   state, so reduced-motion (and no-CSS-animation) visitors see the calm
   finished image. */
.motif { max-width: 420px; margin: 26px auto 6px; }
.motif svg { display: block; width: 100%; height: auto; }
.motif-caption {
  font-size: 13px; color: var(--muted); text-align: center;
  margin: 6px 0 0;
}

.draw { stroke-dasharray: 1; stroke-dashoffset: 0; }
@keyframes draw-in { from { stroke-dashoffset: 1; opacity: 0; } 10% { opacity: 1; } to { stroke-dashoffset: 0; opacity: 1; } }
@keyframes fade-firm { from { opacity: .15; } to { opacity: 1; } }
@keyframes settle-in { from { transform: scale(.55); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* EMDR — bilateral sweep, then stillness */
#m-emdr .dot { transform: translateX(0); animation: emdr-sweep 7s cubic-bezier(.45,0,.55,1) forwards; }
@keyframes emdr-sweep {
  0% { transform: translateX(-84px); opacity: .4; }
  16% { transform: translateX(84px); }
  32% { transform: translateX(-64px); }
  47% { transform: translateX(44px); }
  61% { transform: translateX(-26px); }
  73% { transform: translateX(12px); }
  100% { transform: translateX(0); opacity: 1; }
}
#m-emdr .ring { animation: draw-in 2.6s ease-out 5.2s backwards; }

/* Somatic — the knot loosens */
#m-som .knot { animation: draw-in 6s cubic-bezier(.35,0,.35,1) .3s backwards; }
#m-som .end { transform: scale(1); transform-origin: center; transform-box: fill-box; animation: settle-in 2s ease-out 5.4s backwards; }

/* IFS — parts coming home */
#m-ifs .part { transform: translate(0,0); opacity: .9; animation: come-home 3.6s cubic-bezier(.25,0,.3,1) forwards; }
#m-ifs .part:nth-of-type(2) { animation-delay: .15s; }
#m-ifs .part:nth-of-type(3) { animation-delay: .3s; }
#m-ifs .part:nth-of-type(4) { animation-delay: .45s; }
#m-ifs .part:nth-of-type(5) { animation-delay: .6s; }
#m-ifs .part:nth-of-type(6) { animation-delay: .75s; }
@keyframes come-home { from { transform: translate(var(--tx), var(--ty)); opacity: .35; } to { transform: translate(0,0); opacity: .9; } }
#m-ifs .self { animation: fade-firm 3.2s ease 1s backwards; }

/* Anxiety — jittery lines, then quiet */
#m-anx .tick { opacity: .18; transform: translate(0,0); animation: jitter-out 3.4s ease-out forwards; }
#m-anx .tick:nth-of-type(2) { animation-delay: .08s; }
#m-anx .tick:nth-of-type(3) { animation-delay: .16s; }
#m-anx .tick:nth-of-type(4) { animation-delay: .05s; }
#m-anx .tick:nth-of-type(5) { animation-delay: .12s; }
#m-anx .tick:nth-of-type(6) { animation-delay: .2s; }
#m-anx .tick:nth-of-type(7) { animation-delay: .1s; }
@keyframes jitter-out {
  0% { transform: translate(0,0); opacity: .9; }
  8% { transform: translate(3px,-2px); }
  16% { transform: translate(-3px,2px); }
  24% { transform: translate(2px,2px); }
  32% { transform: translate(-2px,-2px); }
  42% { transform: translate(2px,-1px); }
  54% { transform: translate(-1px,1px); }
  68% { transform: translate(1px,0); }
  82% { transform: translate(0,0); opacity: .55; }
  100% { transform: translate(0,0); opacity: .18; }
}
#m-anx .calm { transform: scale(1); transform-origin: center; transform-box: fill-box; animation: settle-in 2.4s ease-out 2.8s backwards; }

/* Couples — two circles, one meeting place */
#m-cpl .c1 { animation: draw-in 3.6s ease-in-out .2s backwards; }
#m-cpl .c2 { animation: draw-in 3.6s ease-in-out .9s backwards; }
#m-cpl .meet { opacity: 1; animation: fade-firm 2.4s ease 3.8s backwards; }

/* Counselling — one ripple, drawn once */
#m-cns .ring { animation: draw-in 3.2s ease-out .3s backwards; }
#m-cns .core { opacity: 1; animation: fade-firm 2.4s ease .6s backwards; }

/* Virtual — a line across the province */
#m-vrt .arc { animation: draw-in 4s cubic-bezier(.4,0,.3,1) .4s backwards; }
#m-vrt .far { opacity: 1; animation: fade-firm 2s ease 3.6s backwards; }

/* Team — two paths, one direction */
#m-team .p1 { animation: draw-in 4.5s cubic-bezier(.35,0,.35,1) .2s backwards; }
#m-team .p2 { animation: draw-in 4.5s cubic-bezier(.35,0,.35,1) .7s backwards; }
#m-team .walker { transform: scale(1); transform-origin: center; transform-box: fill-box; }
#m-team .w1 { animation: settle-in 1.8s ease-out 4s backwards; }
#m-team .w2 { animation: settle-in 1.8s ease-out 4.5s backwards; }

/* Contact — the pebble */
#m-ctc .pebble { transform: translateY(0); animation: pebble-drop 2.4s cubic-bezier(.3,0,.2,1) forwards; }
@keyframes pebble-drop { from { transform: translateY(-52px); opacity: 0; } 40% { opacity: 1; } to { transform: translateY(0); opacity: 1; } }
#m-ctc .splash { transform: scale(1.35); opacity: 0; transform-origin: center; transform-box: fill-box; animation: splash-out 2.8s ease-out 2s backwards forwards; }
@keyframes splash-out { from { transform: scale(.35); opacity: .5; } to { transform: scale(1.35); opacity: 0; } }
#m-ctc .rest { opacity: .25; animation: fade-rest 2s ease 3.4s backwards; }
@keyframes fade-rest { from { opacity: 0; } to { opacity: .25; } }

@media (prefers-reduced-motion: reduce) {
  .motif svg, .motif svg * { animation: none !important; }
}

/* ---------- Stage 3: interior page chrome ---------- */
.page-hero { text-align: center; padding: 64px 0 40px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.12;
  letter-spacing: -0.01em; max-width: 22ch; margin: 0 auto 14px;
}
.page-hero .hero-styled-sub {
  font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px);
  color: var(--sage); margin: 0 auto 16px; max-width: 30ch;
}
.page-hero .hero-sub { margin-bottom: 8px; }
.page-hero .hero-actions { padding-bottom: 8px; }

.article { max-width: 62ch; margin: 0 auto; padding: 56px 24px 80px; }
.article .eyebrow { margin-bottom: 14px; }
.article h1 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(30px, 4vw, 44px); line-height: 1.16;
  letter-spacing: -0.01em; margin: 0 0 12px;
}
.byline { font-size: 13px; color: var(--muted); margin: 0 0 36px; }
.byline .wp-block-post-date { display: inline; }
.article-body h2, .entry-content h2 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(24px, 3vw, 32px); line-height: 1.25; margin: 44px 0 14px;
}
.entry-content h3 { color: var(--cream); font-weight: 600; font-size: 19px; margin: 32px 0 10px; }
.entry-content a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--cream); }
.entry-content ul, .entry-content ol { padding-left: 22px; }
.entry-content li { margin-bottom: 8px; }
.back-link { font-size: 14px; }
.back-link a { color: var(--muted); text-decoration: none; }
.back-link a:hover { color: var(--sage); }

.blog-hero { text-align: center; padding: 64px 0 24px; }
.blog-hero h1 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(32px, 4.4vw, 52px); line-height: 1.14; margin: 0 0 12px;
}
.error-page { text-align: center; padding: 110px 24px 130px; }
.error-page h1 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(32px, 4.4vw, 52px); margin: 0 0 14px;
}
.error-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Nav dropdowns (desktop + mobile) ---------- */
.has-submenu { position: relative; }
.nav-links .has-submenu { display: flex; align-items: center; gap: 2px; }
.submenu-toggle {
  background: none; border: 0; color: var(--sage); cursor: pointer;
  font-size: 12px; line-height: 1; padding: 6px 4px; font-family: var(--sans);
  transition: color 0.3s ease, transform 0.3s ease;
}
.submenu-toggle:hover { color: var(--cream); }
.has-submenu[data-open="true"] .submenu-toggle span { transform: rotate(180deg); display: inline-block; }

.nav-links .submenu {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 60;
  min-width: 248px; list-style: none; margin: 0; padding: 8px;
  background: var(--moss-card); border: 1px solid var(--line);
  border-radius: 14px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.nav-links .has-submenu:hover > .submenu,
.nav-links .has-submenu:focus-within > .submenu,
.nav-links .has-submenu[data-open="true"] > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-links .submenu a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 14.5px; color: var(--sage); white-space: nowrap;
}
.nav-links .submenu a:hover { color: var(--cream); background: var(--moss-deep); }

@media (prefers-reduced-motion: reduce) {
  .nav-links .submenu { transition: none; }
}

/* Mobile menu submenus (accordion) */
.mobile-menu .has-submenu { display: block; }
.mobile-menu .submenu-toggle { float: right; color: var(--sage); font-size: 14px; padding: 10px 4px; }
.mobile-menu .submenu {
  list-style: none; margin: 0 0 4px; padding: 0 0 0 14px;
  display: none; border-left: 1px solid var(--line);
}
.mobile-menu .has-submenu[data-open="true"] .submenu { display: grid; gap: 2px; }
.mobile-menu .submenu a { font-size: 15px; padding: 8px 0; color: var(--muted); }
.mobile-menu .submenu a:hover { color: var(--cream); }

/* ---------- Office photo figure ---------- */
.office-figure { margin: 48px auto 0; max-width: 560px; }
.office-figure img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 16px; border: 1px solid var(--line); display: block;
}
.office-figure figcaption {
  font-size: 13px; color: var(--muted); margin-top: 10px; text-align: center;
}

/* ---------- Team card portraits ---------- */
.team-cards .card { align-items: flex-start; }
.card-portrait {
  width: 96px; height: 96px; border-radius: 999px; object-fit: cover;
  border: 1px solid var(--line); margin-bottom: 14px;
}
.card-portrait-link { display: inline-block; line-height: 0; }
.card-portrait-link img { transition: opacity 0.3s ease; }
.card-portrait-link:hover img { opacity: 0.88; }
.team-cards h3 a { color: inherit; text-decoration: none; }
.team-cards h3 a:hover { color: var(--copper); }

/* ---------- Contact columns ---------- */
.contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 820px; }
.contact-cols h2 { font-size: 22px; margin-bottom: 10px; }
.contact-note { font-size: 14px; color: var(--muted); margin-top: 14px; }
.contact-figure { margin: 44px auto 0; max-width: 520px; }
.contact-figure img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; border: 1px solid var(--line); display: block; }
@media (max-width: 640px) { .contact-cols { grid-template-columns: 1fr; } }

/* Secure contact form */
.contact-form-block { max-width: 620px; }
.contact-form-block h2 { margin-bottom: 8px; }
.contact-form p { margin: 0 0 18px; }
.contact-form label { display: block; font-size: 14px; color: var(--sage); margin-bottom: 6px; }
.contact-form label .opt { color: var(--muted); }
.contact-form input, .contact-form textarea {
	width: 100%; box-sizing: border-box; padding: 12px 14px;
	background: var(--moss-card); color: var(--cream);
	border: 1px solid var(--line); border-radius: 10px;
	font: inherit; font-size: 16px;
}
.contact-form input:focus, .contact-form textarea:focus {
	outline: none; border-color: var(--copper);
}
.contact-form textarea { resize: vertical; }
.contact-form .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .contact-note { margin-bottom: 18px; }
.form-banner { padding: 12px 16px; border-radius: 10px; font-size: 15px; margin-bottom: 22px; }
.form-ok { background: rgba(167, 178, 148, 0.14); border: 1px solid var(--sage-deep); color: var(--cream); }
.form-err { background: rgba(201, 118, 74, 0.12); border: 1px solid var(--copper); color: var(--cream); }
