/* =========================================================
   Perform Unbound — Neurodiversity
   Design system + components
   Built for legibility and accessibility (the audience is
   neurodivergent): high contrast, generous spacing,
   left-aligned text, clear focus, reduced-motion support.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Colour — soft sage + warm clay. Calm, low-intensity, AA-checked. */
  --ink:        #242b27;   /* primary text (soft green-charcoal) */
  --ink-soft:   #47514b;   /* secondary text */
  --muted:      #5c655e;   /* muted text, captions (AA on --bg) */
  --bg:         #f5f6f2;   /* soft, calm off-white */
  --surface:    #ffffff;   /* cards / panels */
  --surface-2:  #e9ede7;   /* soft sage-grey alt panel */
  --primary:    #3f5d51;   /* soft, desaturated sage-forest — dark bands */
  --primary-700:#334b41;   /* deeper sage — gradients / footer */
  --primary-300:#557564;   /* mid sage — eyebrows / accents (AA on --bg) */
  --accent:     #b15c43;   /* soft terracotta clay — CTAs (AA on white text) */
  --accent-700: #95472f;   /* CTA hover */
  --line:       #e3e3da;   /* hairline borders */
  --line-dark:  #4a6358;   /* borders on dark bands */
  --warm:       #f1cba8;   /* soft apricot — accents on dark bands */
  --focus:      #e3a97f;   /* focus ring (warm, visible on dark + light) */

  /* Type — warm reading serif + readability-optimised sans (for neurodiverse readers) */
  --font-display: "Literata", Georgia, "Times New Roman", serif;
  --font-body: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing / layout */
  --container: 1120px;
  --container-narrow: 760px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(22,32,28,.06), 0 12px 32px -12px rgba(22,32,28,.18);
  --shadow-sm: 0 1px 2px rgba(22,32,28,.06), 0 6px 18px -10px rgba(22,32,28,.16);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.04rem;           /* Lexend runs a touch large; ~16.6px */
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.6rem); }
h4 { font-size: 1.12rem; font-family: var(--font-body); font-weight: 700; }

p { margin: 0 0 1.15rem; max-width: 68ch; }
.prose { max-width: 68ch; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.2rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .5rem; }

a { color: var(--accent-700); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

strong { font-weight: 700; }

/* ---------- Accessibility helpers ---------- */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem;
  border-radius: 8px; z-index: 200; transition: top .15s ease; font-weight: 700;
}
.skip-link:focus { top: 12px; color: #fff; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }
.section--tight { padding-block: clamp(2.2rem, 1.5rem + 3vw, 3.6rem); }
.section--paper { background: var(--bg); }
.section--surface { background: var(--surface-2); }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; font-size: .8rem; color: var(--primary-300);
  margin: 0 0 .8rem;
}
.lead { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem); color: var(--ink-soft); line-height: 1.55; }
.center { text-align: center; }
.center p, .center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1.1;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-700); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--on-dark { background: #fff; color: var(--primary-700); }
.btn--on-dark:hover { background: #f0ece3; color: var(--primary-700); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color:#fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn-row.center { justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,245,.86);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; color: var(--ink); }
.brand b { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -.01em; }
.brand span { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .34em; font-size: .66rem; color: var(--primary-300); margin-top: .18em; padding-left: .5em; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: .55rem .8rem; border-radius: 999px;
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1rem;
}
.nav-links a:hover { background: var(--surface-2); color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--primary); box-shadow: inset 0 -2px 0 var(--accent); border-radius: 0; }
.nav-cta { margin-left: .4rem; }
.nav-toggle {
  display: none; background: transparent; border: 2px solid var(--ink);
  border-radius: 10px; padding: .5rem .7rem; cursor: pointer; color: var(--ink);
  font: inherit; font-weight: 700; align-items: center; gap: .5rem;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .8rem clamp(1.1rem, 4vw, 2rem) 1.2rem;
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .85rem .8rem; font-size: 1.1rem; }
  .nav-links a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--accent); border-radius: 8px; }
  .nav-cta { margin: .4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, rgba(33,49,42,.86) 0%, rgba(33,49,42,.66) 40%, rgba(33,49,42,.34) 70%, rgba(33,49,42,.18) 100%),
    linear-gradient(180deg, rgba(33,49,42,.12) 0%, rgba(33,49,42,.30) 100%),
    var(--hero-img, var(--primary)) center/cover no-repeat;
}
.hero-inner { padding-block: clamp(4rem, 3rem + 10vw, 9rem); max-width: 760px; }
.hero h1 { color: #fff; text-wrap: balance; }
.hero .lead { color: rgba(255,255,255,.92); }
.hero .eyebrow { color: var(--warm); }
.hero .btn-row { margin-top: 1.6rem; }

/* page hero (smaller, for interior pages) */
.pagehero { background: var(--primary); color: #fff; }
.pagehero .container { padding-block: clamp(2.6rem, 2rem + 4vw, 4.5rem); }
.pagehero h1 { color: #fff; }
.pagehero .lead { color: rgba(255,255,255,.9); }
.pagehero .eyebrow { color: var(--warm); }
.pagehero .breadcrumb { color: rgba(255,255,255,.7); font-weight:700; font-size:.85rem; margin-bottom:.8rem; }
.pagehero .breadcrumb a { color: rgba(255,255,255,.85); }

/* ---------- Generic blocks ---------- */
.grid { display: grid; gap: clamp(1.2rem, 1rem + 1.5vw, 2rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
}
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
/* Neurodiversity service-section images: identical height regardless of column width or photo orientation */
#business .media-frame,
#workshops .media-frame,
#coaching .media-frame { height: clamp(300px, 34vw, 480px); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; height: 100%;
}
.card .card-img { overflow: hidden; }
/* aspect-ratio on the image itself reliably equalises height regardless of source ratio */
.card .card-img img { display: block; width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; }
.card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin-bottom: .35rem; }
.card .who { font-weight: 700; color: var(--primary); font-size: .92rem; margin: 0 0 .8rem; }
.card ul { padding-left: 1.1rem; margin: 0 0 1.2rem; }
.card li { margin-bottom: .4rem; }
.card .card-foot { margin-top: auto; }
.card .text-link { font-weight: 700; text-decoration: none; display:inline-flex; align-items:center; gap:.35rem; }
.card .text-link::after { content: "\2192"; transition: transform .15s ease; }
.card .text-link:hover::after { transform: translateX(3px); }

/* feature list (checkmarks) */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 2rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .12em;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.55 17.4 4.2 12.05l1.4-1.4 3.95 3.9 8.85-8.85 1.4 1.45z'/%3E%3C/svg%3E") center/1.4rem no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.55 17.4 4.2 12.05l1.4-1.4 3.95 3.9 8.85-8.85 1.4 1.45z'/%3E%3C/svg%3E") center/1.4rem no-repeat;
}

/* ---------- Dark feature band ---------- */
.band { background: var(--primary); color: #fff; }
.band h2, .band h3 { color: #fff; }
.band .eyebrow { color: var(--warm); }
.band p { color: rgba(255,255,255,.9); }
.band--gradient { background: linear-gradient(160deg, var(--primary) 0%, var(--primary-700) 100%); }
.reframe-quote { font-family: var(--font-display); font-size: clamp(1.9rem, 1.3rem + 2.8vw, 3rem); line-height: 1.1; display: flex; flex-direction: column; align-items: flex-start; gap: .15em; }
.reframe-quote .from { color: #fff; text-decoration: line-through; text-decoration-color: var(--warm); text-decoration-thickness: 3px; }
.reframe-quote .becomes { font-family: var(--font-body); font-size: .34em; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--warm); padding: .25em 0; }
.reframe-quote .to { color: #fff; font-weight: 600; }

/* ---------- Quotes / testimonials ---------- */
.quote {
  background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--accent);
  border-radius: var(--radius); padding: 1.6rem 1.6rem 1.4rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; height: 100%;
}
.quote blockquote { margin: 0 0 1rem; font-size: 1.12rem; line-height: 1.6; color: var(--ink); }
.quote blockquote p { font-size: inherit; }
.quote figcaption { margin-top: auto; font-weight: 700; color: var(--ink); }
.quote figcaption span { display: block; font-weight: 400; color: var(--muted); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(160deg, var(--primary) 0%, var(--primary-700) 100%); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-inline: auto; }
.contact-quick { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: center; margin-top: 1.4rem; font-weight: 700; }
.contact-quick a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.contact-quick a:hover { color: var(--warm); }

/* ---------- Stories list ---------- */
.story-list { display: grid; gap: clamp(1.2rem,1rem+1.5vw,2rem); grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px){ .story-list { grid-template-columns: 1fr; } }
.story-card { display:flex; flex-direction:column; height:100%; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.story-card .card-img { display: block; overflow: hidden; height: clamp(200px, 19vw, 240px); }
.story-card .card-img img { display:block; width:100%; height:100%; object-fit:cover; }
.story-card .card-body { padding: 1.3rem 1.3rem 1.5rem; }
.story-card .tag { font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--primary-300); }
.story-card h3 a { color: var(--ink); text-decoration: none; }
.story-card h3 a:hover { color: var(--accent-700); }
.story-card .excerpt { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Events ---------- */
.events-head { margin-bottom: 1.6rem; }
.events-head .eyebrow { margin: 0 0 .25rem; }
.events-head h2 { margin: 0; }

.event-list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(.9rem, .7rem + .7vw, 1.4rem); }
.event {
  display: grid; grid-template-columns: auto 1fr; align-items: start;
  gap: clamp(1.1rem, .7rem + 1.6vw, 2rem);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.2rem, .9rem + 1.1vw, 1.8rem); box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.event:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.event-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 98px; padding: .9rem .7rem; line-height: 1;
  background: var(--primary); color: #fff; border-radius: var(--radius-sm);
}
.event-date .mon { text-transform: uppercase; letter-spacing: .14em; font-weight: 700; font-size: .8rem; color: var(--warm); }
.event-date .day { font-family: var(--font-display); font-size: 2.3rem; font-weight: 600; margin: .18rem 0; }
.event-date .yr { font-size: .8rem; color: rgba(255,255,255,.82); font-variant-numeric: tabular-nums; }

.event-main { min-width: 0; }
.event-kicker { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--primary-300); margin: 0 0 .35rem; }
.event-main h3 { margin: 0 0 .5rem; font-size: clamp(1.2rem, 1.05rem + .5vw, 1.45rem); }
.event-main p { color: var(--ink-soft); margin: 0; max-width: 60ch; }
.event-foot { margin-top: .95rem; }
.event-foot a { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--accent-700); text-decoration: none; }
.event-foot a::after { content: "\2192"; transition: transform .15s ease; }
.event-foot a:hover { color: var(--accent); }
.event-foot a:hover::after { transform: translateX(3px); }

@media (max-width: 540px) {
  .event { grid-template-columns: 1fr; gap: .9rem; }
  .event-date { flex-direction: row; align-items: baseline; gap: .45rem; min-width: 0; width: max-content; padding: .5rem .9rem; }
  .event-date .day { font-size: 1.5rem; margin: 0; }
}

/* Past events */
.past-list { list-style: none; margin: 0; padding: 0; }
.past-list li { display: grid; grid-template-columns: 96px 1fr; gap: .9rem 1.4rem; align-items: baseline; padding: 1.05rem .3rem; border-bottom: 1px solid var(--line); }
.past-list li:first-child { border-top: 1px solid var(--line); }
.past-when { font-weight: 700; color: var(--primary); font-variant-numeric: tabular-nums; }
.past-what { color: var(--ink-soft); }
.past-what strong { color: var(--ink); font-weight: 600; }
@media (max-width: 480px) { .past-list li { grid-template-columns: 1fr; gap: .2rem; } }

.events-empty { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 1rem + 1vw, 1.9rem); color: var(--ink-soft); }
.events-empty a { font-weight: 700; }

/* Featured event */
.feature-callout { background: var(--surface-2); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1rem 1.2rem; margin-top: 1.4rem; }
.feature-callout .eyebrow { color: var(--accent-700); margin: 0; }
.feature-callout p { color: var(--ink-soft); margin: .4rem 0 0; }
.feature-callout a { font-weight: 700; }
.btn.is-soon { opacity: .6; pointer-events: none; cursor: default; }

/* Partners */
.partner-row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(.9rem, 1.6vw, 1.6rem); }
.partner-row a { display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; width: clamp(148px, 20vw, 188px); height: 104px; padding: 1.1rem 1.3rem; transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, opacity .15s ease; filter: grayscale(.2); opacity: .9; }
.partner-row a:hover, .partner-row a:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow); filter: none; opacity: 1; }
.partner-row img { max-width: 100%; max-height: 62px; width: auto; height: auto; object-fit: contain; display: block; }
.partner-row .logo-invert { filter: invert(1); }

/* ---------- Article (blog post) ---------- */
.article { max-width: 720px; margin-inline: auto; }
.article .article-meta { color: var(--muted); font-weight:700; font-size:.9rem; margin-bottom: 1.4rem; }
.article figure { margin: 2rem 0; }
.article figure img { border-radius: var(--radius); }
.article figcaption { color: var(--muted); font-size:.9rem; margin-top:.5rem; }
.article h2 { margin-top: 2.2rem; }
.article blockquote {
  margin: 1.8rem 0; padding: .4rem 0 .4rem 1.4rem; border-left: 4px solid var(--accent);
  font-family: var(--font-display); font-size: 1.3rem; line-height: 1.4; color: var(--primary);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,1rem+3vw,3.5rem); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 1rem + 1.5vw, 2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-weight:700; margin-bottom: .4rem; }
.field .hint { font-weight: 400; color: var(--muted); font-size: .88rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem .9rem; border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--primary-300); outline: 3px solid var(--focus); outline-offset:1px; }
.field textarea { min-height: 140px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }
.form-note { font-size: .9rem; color: var(--muted); margin-top: .9rem; }
.hp { position:absolute; left:-9999px; top:-9999px; }  /* honeypot */

.form-status { border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1.1rem; font-weight: 600; display: none; }
.form-status.is-shown { display: block; }
.form-status.ok { background: #e7f3ec; color: #14532d; border: 1px solid #9bd1ad; }
.form-status.err { background: #fbe9e4; color: #7a2410; border: 1px solid #e6a892; }

.contact-aside { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem,1rem+1.5vw,2rem); }
.contact-aside h3 { margin-bottom: 1rem; }
.detail-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.detail-list li { display: flex; gap: .9rem; align-items: center; padding: .55rem .55rem; border-radius: var(--radius-sm); transition: background-color .15s ease; }
.detail-list li:hover { background: rgba(255,255,255,.65); }
.detail-list .ic {
  flex: none; width: 42px; height: 42px; padding: 10px; box-sizing: border-box;
  background: var(--surface); border: 1px solid var(--line); border-radius: 50%;
  color: var(--primary); box-shadow: var(--shadow-sm);
}
.detail-list a { color: var(--ink); text-decoration: none; font-weight: 700; }
.detail-list a:hover { color: var(--accent-700); }
.detail-list .hint { display: block; font-weight: 400; color: var(--muted); font-size: .9rem; }
.hours { margin-top: .4rem; }
.hours div { display:flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: .65rem .55rem; border-bottom: 1px solid var(--line); }
.hours div:last-child { border-bottom: none; }
.hours div span:first-child { color: var(--ink-soft); font-weight: 600; }
.hours div span:last-child { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-700); color: rgba(255,255,255,.82); }
.site-footer .container { padding-block: clamp(2.6rem, 2rem + 3vw, 3.6rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.86); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand b { font-family: var(--font-display); color:#fff; font-size: 1.5rem; display:block; }
.footer-brand span { text-transform: uppercase; letter-spacing:.3em; font-size:.66rem; color:#9fc3b6; font-weight:700;}
.footer-nav { list-style:none; margin:0; padding:0; display:grid; gap:.55rem; }
.footer-contact { list-style:none; margin:0; padding:0; display:grid; gap:.6rem; }
.footer-other { border-top: 1px solid var(--line-dark); margin-top: 2.2rem; padding-top: 1.4rem; font-size: .92rem; color: rgba(255,255,255,.7); display:flex; flex-wrap:wrap; gap:.4rem 1.2rem; justify-content: space-between; align-items:center;}
.social-row { display:flex; gap:.8rem; margin-top:1rem; }
.social-row a { display:inline-flex; width:42px; height:42px; align-items:center; justify-content:center; border:1px solid var(--line-dark); border-radius:50%; }
.social-row svg { width:20px; height:20px; }

/* ---------- Misc utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1rem; }
.pill { display:inline-block; background: var(--surface-2); color: var(--primary); font-weight:700; font-size:.85rem; padding:.3rem .8rem; border-radius:999px; border:1px solid var(--line); }
.divider-note { color: var(--muted); font-size: .95rem; }
