/* =========================================================================
   Sound Level Events & Productions: Design System
   Dark stage aesthetic: black bands, white Oswald caps, green accent (#39B54A).
   Body sections on white. Tokens first, then base, then components.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --color-ink: #0a0a0a;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: #222222;
  --color-text-muted: #5a5a5a;
  --color-accent: #39b54a;
  --color-accent-dark: #2c8f3a;
  --color-accent-tint: #e9f7ec;
  --color-border: #e4e4e4;
  --color-border-dark: #2a2a2a;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f7f7;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Arimo", Arial, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --space-8: 8rem;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  --container: 1280px;
  --header-height: 76px;
  --measure: 65ch;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.22);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
ul[class], ol[class] { padding: 0; margin: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-head); text-wrap: balance; }
p { margin: 0; }
p + p { margin-top: var(--space-2); }

/* ---------- Focus rings ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--color-accent);
  color: var(--color-black);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
}
@media (min-width: 640px) {
  .container { padding-inline: var(--space-4); }
}
.section { padding-block: var(--space-6); }
.section--tight { padding-block: var(--space-5); }
.section--band {
  background: var(--color-ink);
  color: var(--color-white);
}
.section--alt { background: var(--color-surface-alt); }
.measure { max-width: var(--measure); }
.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;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.section-title {
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.section-lede {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: var(--measure);
  margin-top: var(--space-2);
}
.section--band .section-lede { color: rgba(255, 255, 255, 0.72); }
.accent { color: var(--color-accent); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
}
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.btn-dark:hover { background: #1c1c1c; }
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--color-white); }
.btn-outline-dark {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn-outline-dark:hover { background: var(--color-black); color: var(--color-white); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--color-accent);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.link-arrow:hover { border-color: var(--color-accent); }
.section--band .link-arrow { color: var(--color-accent); }

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.card--shadow { box-shadow: var(--shadow-sm); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-3); }
.field label {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
.field input,
.field textarea,
.field select {
  padding: 0.85rem 1rem;
  border: 1.5px solid #cfcfcf;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.15s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-accent);
}
.field-hint { font-size: 0.85rem; color: var(--color-text-muted); }
.field-error { font-size: 0.85rem; color: #b3261e; }

/* ---------- Fade-up reveal ----------
   Gotcha: html.js must gate BOTH the hide rule and the reveal rule
   at matching specificity, or a no-JS visitor gets permanently hidden content. */
html.js .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================================
   Header / Navigation
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-black);
  border-bottom: 1px solid var(--color-border-dark);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: 100%;
}
.site-header__logo { display: flex; align-items: center; height: 100%; flex-shrink: 0; }
.site-header__logo img { height: 52px; width: auto; }

.primary-nav { display: none; }
@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    height: 100%;
    flex: 1;
  }
}
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-item__trigger {
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  height: 100%;
  padding: 0 0.15rem;
  cursor: pointer;
}
.nav-item__trigger svg { width: 11px; height: 11px; transition: transform 0.2s var(--ease); }
.nav-item.is-open .nav-item__trigger svg { transform: rotate(180deg); }
.nav-item__trigger:hover, .nav-link:hover { color: var(--color-accent); }
.nav-link {
  color: var(--color-white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  z-index: 210;
}
.nav-item.is-open .nav-panel { display: block; }

.nav-panel--mega {
  width: min(900px, 90vw);
  left: 0;
  transform: none;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.nav-item.is-open .nav-panel--mega { display: grid; }
.mega-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  transition: background-color 0.15s var(--ease);
}
.mega-item:hover { background: var(--color-surface-alt); }
.mega-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.mega-item span {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.nav-panel--list {
  min-width: 240px;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-item.is-open .nav-panel--list { display: flex; }
.nav-panel--list a {
  font-size: 0.92rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s var(--ease);
}
.nav-panel--list a:hover { background: var(--color-surface-alt); color: var(--color-accent); }

.site-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.cart-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  cursor: pointer;
}
.cart-trigger:hover { border-color: var(--color-accent); }
.cart-trigger svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  background: var(--color-accent);
  color: var(--color-black);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge[hidden] { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.menu-toggle svg { width: 20px; height: 20px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
}
.mobile-drawer.is-open { visibility: visible; }
.mobile-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.mobile-drawer.is-open .mobile-drawer__scrim { opacity: 1; }
.mobile-drawer__panel {
  position: absolute;
  top: 0; left: 0;
  width: min(340px, 86vw);
  height: 100%;
  background: var(--color-black);
  color: var(--color-white);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
  padding: var(--space-3);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .mobile-drawer__panel, .mobile-drawer__scrim { transition: none; }
}
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}
.mobile-drawer__header img { height: 40px; width: auto; }
.mobile-drawer__close {
  background: none;
  border: none;
  color: var(--color-white);
  width: 36px; height: 36px;
  cursor: pointer;
}
.mobile-drawer details { border-bottom: 1px solid var(--color-border-dark); }
.mobile-drawer summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 0.2rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-drawer summary::-webkit-details-marker { display: none; }
.mobile-drawer summary svg { width: 12px; height: 12px; transition: transform 0.2s var(--ease); }
.mobile-drawer details[open] summary svg { transform: rotate(180deg); }
.mobile-drawer .sub-list { padding: 0 0.2rem 0.9rem; display: flex; flex-direction: column; gap: 0.6rem; }
.mobile-drawer .sub-list a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); }
.mobile-drawer .sub-list a:hover { color: var(--color-accent); }
.mobile-drawer__top-link {
  display: block;
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid var(--color-border-dark);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
}
.mobile-drawer__cta { margin-top: var(--space-3); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
  overflow: hidden;
  background: var(--color-ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.92) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-6) var(--space-5);
  max-width: 780px;
}
.hero__eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.hero__title {
  font-size: clamp(2.25rem, 1.4rem + 4vw, 4rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.005em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}
.hero__actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* =========================================================================
   Positioning block (Event Engineers)
   ========================================================================= */
.positioning {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}
.positioning .section-title { margin-bottom: var(--space-3); }
.positioning p { color: var(--color-text-muted); font-size: 1.08rem; }

/* =========================================================================
   Service tiles (bento, 8 items, asymmetric)
   ========================================================================= */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.tile {
  position: relative;
  grid-column: span 2;
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.25s var(--ease);
}
.tile:hover { transform: translateY(-4px); }
.tile__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s var(--ease);
}
.tile:hover .tile__media { transform: scale(1.04); }
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1) 30%, rgba(10, 10, 10, 0.88) 82%),
    radial-gradient(circle at 15% 0%, rgba(57, 181, 74, 0.25), transparent 55%);
}
.tile__title, .tile__teaser, .tile__link { z-index: 2; }
.tile--wide { grid-column: span 4; min-height: 260px; }
.tile__title {
  position: relative;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.tile__teaser {
  position: relative;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.8rem;
}
.tile__link {
  position: relative;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}
@media (max-width: 900px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .tile-grid { grid-template-columns: 1fr; }
  .tile, .tile--wide { grid-column: span 1; }
}

/* =========================================================================
   Featured favorites
   ========================================================================= */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.favorite-card { display: flex; flex-direction: column; }
.favorite-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
}
.favorite-card__media img { width: 100%; height: 100%; object-fit: cover; }
.favorite-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.favorite-card p { font-size: 0.95rem; color: var(--color-text-muted); }
@media (max-width: 860px) {
  .favorites-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars { color: var(--color-accent); font-size: 0.9rem; margin-bottom: 0.6rem; letter-spacing: 0.1em; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  flex: 1;
}
.testimonial-card__name {
  margin-top: var(--space-2);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Project grid
   ========================================================================= */
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.project-grid a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.project-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.project-grid a:hover img { transform: scale(1.05); }
.project-grid li:nth-child(6n+1) { grid-row: span 2; }
.project-grid li:nth-child(6n+1) a { aspect-ratio: 4 / 6.2; }
@media (max-width: 900px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid li:nth-child(6n+1) { grid-row: span 1; }
  .project-grid li:nth-child(6n+1) a { aspect-ratio: 4/3; }
}

/* =========================================================================
   Blog teaser
   ========================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.blog-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s var(--ease);
}
.blog-card:hover { border-color: var(--color-accent); }
.blog-card__date {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 1.05rem; text-transform: capitalize; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card p { font-size: 0.9rem; color: var(--color-text-muted); flex: 1; }
.blog-card .link-arrow { margin-top: var(--space-2); color: var(--color-text); border-color: transparent; }
.blog-card:hover .link-arrow { color: var(--color-accent); }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Quote CTA band
   ========================================================================= */
.quote-band {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding-block: var(--space-6);
}
.quote-band .section-title { max-width: 700px; margin-inline: auto; }
.quote-band__actions { margin-top: var(--space-4); display: flex; justify-content: center; gap: var(--space-2); flex-wrap: wrap; }

/* =========================================================================
   FAQ accordion
   ========================================================================= */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: var(--space-4); }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-size: 1.02rem;
  text-transform: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-accent);
}
.faq-item summary .faq-icon::before { width: 10px; height: 2px; }
.faq-item summary .faq-icon::after { width: 2px; height: 10px; transition: transform 0.2s var(--ease); }
.faq-item[open] summary .faq-icon::after { transform: rotate(90deg) scaleY(0); }
.faq-item .faq-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--color-text-muted);
  max-width: var(--measure);
}
.faq-item .faq-body ul { list-style: disc; padding-left: 1.2rem; margin-top: 0.5rem; }
.faq-item .faq-body ul li { margin-bottom: 0.3rem; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.85);
  padding-block: var(--space-6) var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-4);
}
.footer-brand img { height: 60px; margin-bottom: var(--space-2); }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); max-width: 32ch; }
.footer-social { display: flex; gap: 0.7rem; margin-top: var(--space-2); }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.footer-social a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; }
.footer-col a:hover { color: var(--color-accent); }
.footer-cities {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-cities h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-1);
}
.footer-cities p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); line-height: 1.8; }
.footer-legal {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* =========================================================================
   Cart drawer
   ========================================================================= */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 400;
  visibility: hidden;
}
.cart-drawer.is-open { visibility: visible; }
.cart-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.cart-drawer.is-open .cart-drawer__scrim { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: var(--color-white);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .cart-drawer__panel, .cart-drawer__scrim { transition: none; }
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer__header h2 {
  font-size: 1.15rem;
  text-transform: uppercase;
}
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.cart-drawer__body { flex: 1; overflow-y: auto; padding: var(--space-3); }
.cart-drawer__footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-3);
}
.cart-line {
  display: flex;
  gap: var(--space-2);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}
.cart-line:last-child { border-bottom: none; }
.cart-line__thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-surface-alt);
}
.cart-line__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__info { flex: 1; min-width: 0; }
.cart-line__title { font-family: var(--font-head); font-size: 0.92rem; text-transform: uppercase; margin-bottom: 0.2rem; }
.cart-line__price { font-size: 0.85rem; color: var(--color-text-muted); }
.cart-line__controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); }
.qty-stepper button {
  width: 28px; height: 28px;
  background: none; border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.qty-stepper span { min-width: 24px; text-align: center; font-size: 0.9rem; }
.cart-line__remove {
  background: none; border: none;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
}
.cart-line__remove:hover { color: #b3261e; }
.cart-empty { text-align: center; padding: var(--space-5) var(--space-2); }
.cart-empty p { color: var(--color-text-muted); margin-bottom: var(--space-3); }
.cart-empty ul { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.cart-subtotal { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 1.05rem; text-transform: uppercase; margin-bottom: 0.4rem; }
.cart-drawer__note { font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: var(--space-2); }
.cart-recs { margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px dashed var(--color-border); }
.cart-recs h3 { font-size: 0.85rem; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 0.6rem; }

/* =========================================================================
   Consent banner
   ========================================================================= */
.consent-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 500;
  max-width: 420px;
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  display: none;
}
.consent-banner.is-visible { display: block; }
.consent-banner p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); }
.consent-banner__actions { display: flex; gap: 0.6rem; margin-top: var(--space-2); }
@media (max-width: 480px) {
  .consent-banner { left: 0.5rem; right: 0.5rem; max-width: none; }
}

/* =========================================================================
   Accessibility widget
   ========================================================================= */
.a11y-widget { position: fixed; right: 1rem; bottom: 1rem; z-index: 500; }
.a11y-widget__toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.a11y-widget__toggle svg { width: 26px; height: 26px; }
.a11y-widget__panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 280px;
  background: var(--color-white);
  color: var(--color-text);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  display: none;
}
.a11y-widget.is-open .a11y-widget__panel { display: block; }
.a11y-widget__panel h2 { font-size: 1rem; text-transform: uppercase; margin-bottom: var(--space-2); }
.a11y-row { display: flex; align-items: center; justify-content: space-between; padding-block: 0.5rem; border-top: 1px solid var(--color-border); }
.a11y-row:first-of-type { border-top: none; }
.a11y-row span { font-size: 0.88rem; }
.a11y-row .a11y-btns { display: flex; gap: 0.35rem; }
.a11y-row button {
  width: 30px; height: 30px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
}
.a11y-row button[aria-pressed="true"] { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-black); }
.a11y-reset { margin-top: var(--space-2); width: 100%; }

/* a11y states applied to <html> */
html.a11y-underline a { text-decoration: underline !important; }
html.a11y-contrast body { background: #000; color: #fff; }
html.a11y-contrast .section--alt,
html.a11y-contrast .card,
html.a11y-contrast .site-header,
html.a11y-contrast .testimonial-card,
html.a11y-contrast .blog-card { background: #000 !important; color: #fff !important; border-color: #fff !important; }
html.a11y-contrast a { color: #ffd400 !important; }
html.a11y-reduced-motion *, html.a11y-reduced-motion *::before, html.a11y-reduced-motion *::after {
  animation: none !important;
  transition: none !important;
}
html.a11y-font-lg body { font-size: 112.5%; }
html.a11y-font-xl body { font-size: 125%; }

/* =========================================================================
   404
   ========================================================================= */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--space-7);
}
.error-page__code {
  font-family: var(--font-head);
  font-size: clamp(4rem, 3rem + 5vw, 7rem);
  color: var(--color-accent);
  line-height: 1;
}
.error-page__actions { display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; margin-top: var(--space-4); }

/* =========================================================================
   About / Contact simple content pages
   ========================================================================= */
.content-hero {
  background: var(--color-ink);
  color: var(--color-white);
  text-align: center;
  padding-block: var(--space-6);
}
.content-hero .section-title { max-width: 760px; margin-inline: auto; }
.prose { max-width: var(--measure); margin-inline: auto; }
.prose p { font-size: 1.05rem; color: var(--color-text); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
}
.info-list { display: flex; flex-direction: column; gap: var(--space-3); }
.info-list dt {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}
.info-list dd { font-size: 1.02rem; }
.info-list dd a:hover { color: var(--color-accent); }
.payment-note {
  margin-top: var(--space-2);
  padding: var(--space-2);
  background: var(--color-accent-tint);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

@media print {
  .site-header, .site-footer, .cart-drawer, .consent-banner, .a11y-widget, .mobile-drawer { display: none !important; }
}
