/* ==========================================================================
   Sally Fell Catering, Design System
   Typography: Cormorant Garamond (display) + Work Sans (body)
   Palette: warm linen paper, warm ink, deep olive accent, muted gold trim
   ========================================================================== */

:root {
  /* Colour tokens */
  --paper: #F6F3EC;
  --paper-soft: #EFEAE0;
  --white: #FFFFFF;
  --ink: #2B2823;
  --stone: #6B6459;
  --stone-light: #948C7E;
  --line: #E1DACB;
  --olive: #4B5940;
  --olive-dark: #37402F;
  --olive-tint: #E7E9DF;
  --gold: #A98C5C;
  --gold-light: #C9B48D;

  /* Type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 2px;
  --radius-soft: 6px;
  --nav-height: 76px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;

  color-scheme: light;
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------------------------
   Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 3.4vw, 3.1rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }

em, .italic { font-style: italic; line-height: 1.15; padding-bottom: 0.15em; display: inline-block; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.9rem;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--stone);
  max-width: 62ch;
  line-height: 1.7;
}

p { color: var(--stone); max-width: 65ch; }
p.on-dark { color: rgba(255,255,255,0.88); }

.text-center { text-align: center; }
.max-w-prose { max-width: 62ch; margin-left: auto; margin-right: auto; }

/* -------------------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

section { position: relative; }
.section-pad { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-pad-sm { padding: clamp(3rem, 5vw, 4.5rem) 0; }

.grid { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.95rem 1.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn-primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }

.btn-on-olive {
  background: var(--white);
  color: var(--olive-dark);
  border-color: var(--white);
}
.btn-on-olive:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav.is-scrolled,
.nav.is-solid {
  background: rgba(246, 243, 236, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
  height: 68px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.35s var(--ease);
}
.nav.is-scrolled .nav-logo,
.nav.is-solid .nav-logo { color: var(--ink); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.1rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color 0.3s var(--ease);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav.is-scrolled .nav-links a,
.nav.is-solid .nav-links a { color: var(--ink); }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.nav.is-scrolled .btn-outline-light,
.nav.is-solid .btn-outline-light {
  color: var(--ink);
  border-color: var(--ink);
}
.nav.is-scrolled .btn-outline-light:hover,
.nav.is-solid .btn-outline-light:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}
.nav.is-scrolled .nav-toggle,
.nav.is-solid .nav-toggle { color: var(--ink); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height) + 1rem) 24px 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,28,22,0.35) 0%, rgba(24,22,17,0.45) 55%, rgba(18,17,13,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px clamp(3.5rem, 8vw, 6rem);
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .hero-content { padding-left: 40px; padding-right: 40px; } }
.hero-content h1 {
  color: var(--white);
  max-width: 15ch;
}
.hero-content .lede {
  color: rgba(255,255,255,0.9);
  margin-top: 1.4rem;
  max-width: 48ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hero-page {
  min-height: 62vh;
  align-items: center;
  padding-top: var(--nav-height);
}
.hero-page .hero-content { padding-top: 2rem; padding-bottom: 2rem; }

/* -------------------------------------------------------------------------
   Cards & components
   ------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.service-bento {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .service-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
  }
  .service-bento .service-tile.is-featured {
    grid-column: span 4;
    grid-row: span 2;
  }
  .service-bento .service-tile.is-standard {
    grid-column: span 2;
    grid-row: span 1;
  }
}
.service-tile {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  color: var(--white);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}
.service-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-tile:hover img { transform: scale(1.05); }
.service-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,19,15,0) 30%, rgba(18,17,13,0.85) 100%);
}
.service-tile-body {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}
.service-tile-body h3 { color: var(--white); font-size: 1.4rem; }
.service-tile-body p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-top: 0.4rem; }
.service-tile-body a { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-light); margin-top: 0.7rem; display: inline-block; }

.icon-list {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .icon-list { grid-template-columns: 1fr 1fr; } }
.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.icon-list-item i {
  font-size: 1.4rem;
  color: var(--olive);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.icon-list-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink); }
.icon-list-item p { font-size: 0.9rem; margin-top: 0.2rem; }

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split img { border-radius: var(--radius-soft); }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.quote-mark { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold); line-height: 1; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card p { color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.testimonial-attrib { font-size: 0.82rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.04em; margin-top: auto; }

/* CTA band */
.cta-band {
  background: var(--olive);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); margin: 1.1rem auto 0; }

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  background: var(--white);
  color: var(--stone);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--olive); color: var(--olive); }
.filter-btn.is-active { background: var(--olive); border-color: var(--olive); color: var(--white); }
.filter-btn:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; }

.masonry {
  columns: 1;
  column-gap: 18px;
}
@media (min-width: 640px) { .masonry { columns: 2; } }
@media (min-width: 1024px) { .masonry { columns: 3; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.masonry-item img { width: 100%; transition: transform 0.5s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item.is-hidden { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18,17,13,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; border-radius: var(--radius-soft); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}
.lightbox-close:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }

/* Forms */
.form-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.form-field .hint { font-size: 0.78rem; color: var(--stone-light); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--stone-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px var(--olive-tint);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-error {
  font-size: 0.8rem;
  color: #9A3B2E;
  display: none;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #9A3B2E;
}
.form-field.has-error .form-error { display: block; }

.consent-row { display: flex; align-items: flex-start; gap: 0.7rem; }
.consent-row input { margin-top: 0.3rem; width: 18px; height: 18px; accent-color: var(--olive); }
.consent-row label { font-size: 0.85rem; color: var(--stone); }

.form-success {
  display: none;
  background: var(--olive-tint);
  border: 1px solid var(--olive);
  border-radius: var(--radius-soft);
  padding: 2rem;
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success h3 { color: var(--olive-dark); }

/* Contact details */
.contact-detail-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-detail-list i { color: var(--olive); font-size: 1.2rem; margin-top: 0.2rem; }
.contact-detail-list a { color: var(--ink); }
.contact-detail-list a:hover { color: var(--olive); }

/* Process steps */
.process-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
@media (min-width: 900px) { .process-list { grid-template-columns: repeat(4, 1fr); } }
.process-list h3 { font-size: 1.15rem; }
.process-list .step-index {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

/* Feature pill lists inside service sections */
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.3rem; }
.feature-tags span {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--stone);
}

/* Values grid */
.values-grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.values-grid .value-item { border-top: 2px solid var(--olive); padding-top: 1rem; }
.values-grid h3 { font-size: 1.2rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.footer-grid p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-top: 0.9rem; }
.footer-heading { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.78); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: var(--white);
}
.footer-social a:hover { background: var(--white); color: var(--ink); }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* Mobile sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(246,243,236,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.mobile-sticky-cta .btn { width: 100%; }
@media (min-width: 1024px) { .mobile-sticky-cta { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 1023px) { body.has-sticky-cta { padding-bottom: 74px; } }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Privacy modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18,17,13,0.6);
  display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.is-open { display: flex; }
.modal-panel {
  background: var(--paper);
  border-radius: var(--radius-soft);
  max-width: 480px;
  padding: 2.2rem;
  position: relative;
}
.modal-panel h3 { margin-bottom: 0.9rem; }
.modal-panel p { font-size: 0.92rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.4rem; color: var(--stone);
}

/* Quick-jump pill nav */
.quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.quick-nav a {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--stone);
  transition: all 0.25s var(--ease);
}
.quick-nav a:hover,
.quick-nav a:focus-visible {
  border-color: var(--olive);
  color: var(--olive);
  outline: none;
}

/* Sample menu cards */
.menu-grid {
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
.menu-card { border-top: 2px solid var(--gold); padding-top: 1.1rem; }
.menu-card h3 { font-size: 1.25rem; }
.menu-card ul { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0; }
.menu-card li {
  font-size: 0.95rem;
  color: var(--stone);
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-card li:last-child { border-bottom: none; }

/* FAQ accordion */
.faq-list { border-top: 1px solid var(--line); max-width: 74ch; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-question:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }
.faq-question i { color: var(--olive); flex-shrink: 0; font-size: 1.2rem; transition: transform 0.3s var(--ease); }
.faq-question[aria-expanded="true"] i { transform: rotate(135deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-answer.is-open { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; min-height: 0; }
.faq-answer p { font-size: 0.95rem; padding-bottom: 1.4rem; max-width: 68ch; }

/* Utility */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--ink); color: var(--white);
  padding: 0.7rem 1.1rem;
  z-index: 300;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }
