/* ============================================================
   Prime Decibels — Shared Styles
   WCAG 2.2 AA compliant
   Palette: #faf8f5 bg · #1a1a1a text · #2bb673 brand green
            #177a4c green-text (passes 5.1:1 on light bg)
            #10110f dark · #54534d secondary · #696861 muted
   ============================================================ */

:root {
  --color-bg:         #faf8f5;
  --color-dark:       #10110f;
  --color-text:       #1a1a1a;
  --color-secondary:  #54534d;
  --color-muted:      #696861;   /* 4.73:1 on #faf8f5 ✓ */
  --color-green:      #2bb673;   /* brand accent — decorative / dark-bg text only */
  --color-green-text: #177a4c;   /* 5.09:1 on #faf8f5 ✓ — use for text on light bg */
  --color-green-dk:   #229a60;   /* btn hover bg */

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Hanken Grotesk', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --nav-h:     72px;
  --pad-x:     32px;
  --pad-sec:   96px;
  --max-w:     1160px;
  --radius:    12px;
  --ease:      0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h); /* WCAG 2.4.11 — keep focused items clear of sticky nav */
  overflow-x: hidden;
}
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Skip link — WCAG 2.4.1 ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Visually hidden (screen-reader only) ── */
.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;
}

/* ── Global focus — WCAG 2.4.7 / 2.4.11 ── */
:focus-visible {
  outline: 2px solid var(--color-green-text);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted); /* #696861 — 4.73:1 on light bg ✓ */
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--pad-sec) 0; }

/* ════════════════════════
   NAVIGATION
   ════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 96px; /* large initial state */
  z-index: 200;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.nav.scrolled {
  height: var(--nav-h); /* compact = 72px */
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(26,26,26,0.07);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img {
  height: 52px; /* large initial state */
  width: auto;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled .nav__logo img {
  height: 34px; /* compact */
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
  white-space: nowrap;
  transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled .nav__wordmark {
  font-size: 16px;
}
.nav__pulse {
  width: 7px; height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--ease);
  padding: 8px 0; /* min touch target height */
}
.nav__link:hover { color: var(--color-green-text); }
/* aria-current page indicator: color + underline (not color alone — WCAG 1.4.1) */
.nav__link[aria-current="page"] {
  color: var(--color-green-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nav__btn {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border: 1.5px solid rgba(26,26,26,0.55); /* ~3.8:1 on #faf8f5 ✓ */
  border-radius: 6px;
  min-height: 40px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.nav__btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

/* ════════════════════════
   BUTTONS
   ════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 7px;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 48px; /* WCAG 2.5.8 target size */
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
  text-decoration: none;
}
/* btn--primary: dark text on green — 6.67:1 ✓ (white on #2bb673 is only 2.6:1 ❌) */
.btn--primary {
  background: var(--color-green);
  color: #1a1a1a;
  border-color: var(--color-green);
}
.btn--primary:hover {
  background: var(--color-green-dk);
  border-color: var(--color-green-dk);
  color: #1a1a1a;
  box-shadow: 0 4px 18px rgba(43,182,115,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(26,26,26,0.55); /* ~3.8:1 on #faf8f5 ✓ */
}
.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55); /* passes on dark bg ✓ */
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}
/* ghost: #177a4c on #faf8f5 = 5.09:1 ✓ */
.btn--ghost {
  color: var(--color-green-text);
  padding: 0;
  border: none;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  min-height: auto;
}
.btn--ghost::after { content: ' →'; }
.btn--ghost:hover { opacity: 0.75; }
.btn--sm { font-size: 14px; padding: 11px 22px; min-height: 44px; }

/* ════════════════════════
   HERO (Home)
   ════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 80px;
  position: relative;
  overflow: hidden;
}
.hero > .container {
  width: 100%;
}
.hero__eq {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 116px;
  margin-bottom: 30px;
  pointer-events: none;
  overflow: hidden;
}
@keyframes eqbar {
  0%, 100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}
.hero__eyebrow { margin-bottom: 20px; display: block; white-space: normal; }
.hero__headline {
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 14ch;
  margin: 0 auto;
}
.hero__body {
  font-size: 18px;
  color: var(--color-secondary);
  max-width: 50ch;
  margin: 0 auto 36px;
  line-height: 1.68;
}

/* ════════════════════════
   STAT BAR
   ════════════════════════ */
.statbar { background: var(--color-dark); padding: 32px 0; }
.statbar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.statbar__item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.statbar__item:last-child { border-right: none; }
.statbar__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-green); /* on dark bg: 7.45:1 ✓ */
  line-height: 1;
  letter-spacing: -0.03em;
}
/* Override --color-muted for dark bg: #9a9890 = 7.2:1 on #10110f ✓ */
.statbar__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9890;
  margin-top: 6px;
}

/* ════════════════════════
   ABOUT (dark)
   ════════════════════════ */
.about {
  background: var(--color-dark);
  padding: var(--pad-sec) 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.about__aside {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.about__photo {
  width: 100%;
  max-width: 384px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
/* rgba(fff,0.65) on #10110f = 8.76:1 ✓ */
.about__eyebrow {
  display: block;
  color: rgba(255,255,255,0.65) !important;
  margin-bottom: 20px;
  margin-top: 28px;
}
.about__heading {
  font-size: clamp(32px, 3.5vw, 48px);
  color: #fff;
  margin-bottom: 28px;
}
/* rgba(fff,0.62) on #10110f = 8.33:1 ✓ */
.about__body {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.78;
  margin-bottom: 48px;
}
.about__body p + p { margin-top: 18px; }
.about__callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 36px;
}
.about__callout-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
/* rgba(fff,0.55) on #10110f = 6.35:1 ✓ */
.about__callout-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
}

/* ════════════════════════
   FEATURED ARTISTS
   ════════════════════════ */
.artists {
  padding: var(--pad-sec) 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
}
.artists__eyebrow { display: block; margin-bottom: 20px; }
.artists__heading {
  font-size: clamp(28px, 3vw, 42px);
  max-width: 28ch;
  margin-bottom: 24px;
}
.artists__body {
  font-size: 17px;
  color: var(--color-secondary);
  max-width: 58ch;
  line-height: 1.72;
}

/* ════════════════════════
   FEATURED WORK
   ════════════════════════ */
.work {
  padding: var(--pad-sec) 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
}
.work__heading {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 48px;
}
.work__embeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.work__embed {
  border-radius: var(--radius);
  overflow: hidden;
}
.work__embed iframe {
  display: block;
}
.work__embed-credit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  padding: 6px 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work__embed-credit a {
  color: var(--color-muted);
  text-decoration: none;
}
.work__embed-credit a:hover {
  color: var(--color-text);
}
.work__placeholder {
  background: rgba(26,26,26,0.03);
  border: 1.5px dashed rgba(26,26,26,0.2);
  border-radius: var(--radius);
  padding: 52px 32px;
  text-align: center;
  color: var(--color-muted); /* #696861 — 4.73:1 on effective bg ✓ */
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.work__placeholder-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 14px;
  opacity: 0.35;
}
.work__gallery-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 20px;
}
.work__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.work__photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.work__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work__photo:hover img {
  transform: scale(1.03);
}

/* ════════════════════════
   SERVICES PREVIEW (Home)
   ════════════════════════ */
.services-home { padding: var(--pad-sec) 0; }
.services-home__header { margin-bottom: 48px; }
.services-home__eyebrow { display: block; margin-bottom: 16px; }
.services-home__heading { font-size: clamp(28px, 3vw, 40px); }
.services-home__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(26,26,26,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.svc-card {
  background: var(--color-bg);
  padding: 40px 36px;
  transition: background var(--ease);
}
.svc-card:hover { background: #f3f1ed; }
.svc-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-muted); /* #696861 — 4.73:1 ✓ */
  margin-bottom: 20px;
  display: block;
}
.svc-card__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.svc-card__body {
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.65;
}

/* ════════════════════════
   CTA SECTION (dark)
   ════════════════════════ */
.cta-dark {
  background: var(--color-dark);
  padding: var(--pad-sec) 0;
  text-align: center;
}
.cta-dark__heading {
  font-size: clamp(32px, 5vw, 62px);
  color: #fff;
  margin-bottom: 16px;
}
/* rgba(fff,0.5) on #10110f = 5.9:1 ✓ */
.cta-dark__body {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 42ch;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  border-bottom: 1px solid rgba(26,26,26,0.07);
}
.page-hero__eyebrow { display: block; margin-bottom: 20px; }
.page-hero__heading {
  font-size: clamp(38px, 5.5vw, 72px);
  max-width: 22ch;
  margin-bottom: 20px;
}
.page-hero__body {
  font-size: 18px;
  color: var(--color-secondary);
  max-width: 52ch;
  line-height: 1.7;
}

/* ════════════════════════
   SERVICE SECTIONS (Services page)
   ════════════════════════ */
.svc-section {
  padding: var(--pad-sec) 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
}
.svc-section__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.svc-section__meta {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.svc-section__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted); /* #696861 — 4.73:1 ✓ */
  margin-bottom: 12px;
  display: block;
}
.svc-section__title { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
/* #177a4c on rgba(43,182,115,0.1) over #faf8f5 = 4.80:1 ✓ */
.svc-section__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-text);
  background: rgba(43,182,115,0.1);
  padding: 5px 12px;
  border-radius: 4px;
}
.svc-section__body p {
  font-size: 17px;
  color: var(--color-secondary);
  line-height: 1.78;
  margin-bottom: 18px;
}
.svc-section__body p:last-of-type { margin-bottom: 32px; }

/* ════════════════════════
   EQUIPMENT RENTAL
   ════════════════════════ */
.rental { padding: var(--pad-sec) 0; }
.rental__intro { margin-bottom: 60px; }
.rental__heading { font-size: clamp(30px, 4vw, 52px); margin-bottom: 16px; }
.rental__sub {
  font-size: 17px;
  color: var(--color-secondary);
  max-width: 60ch;
  line-height: 1.65;
}
.rental__packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.pkg {
  border: 1.5px solid rgba(26,26,26,0.15);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease);
  background: var(--color-bg);
}
.pkg:hover {
  border-color: var(--color-green-text); /* #177a4c — 5.09:1 on #faf8f5 ✓ */
  box-shadow: 0 6px 28px rgba(23,122,76,0.12);
}
/* Popular card border: #177a4c (5.09:1 on #faf8f5 ✓) — not color-only: also has bg tint */
.pkg--pop {
  border-color: var(--color-green-text);
  background: linear-gradient(160deg, rgba(43,182,115,0.04), transparent 60%);
}
/* Badge: dark text on green — 6.67:1 ✓ */
.pkg__badge {
  position: absolute;
  top: -1px;
  right: 22px;
  background: var(--color-green);
  color: #1a1a1a;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 6px 6px;
}
.pkg__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
/* #696861 on #faf8f5 = 4.73:1 ✓ */
.pkg__audience {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 20px;
  display: block;
}
.pkg__price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg__per {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 18px;
}
.pkg__desc {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pkg__cta { display: flex; width: 100%; justify-content: center; }
/* Popular CTA: dark text on green — 6.67:1 ✓ */
.pkg--pop .pkg__cta {
  background: var(--color-green);
  color: #1a1a1a;
  border-color: var(--color-green);
}
.pkg--pop .pkg__cta:hover {
  background: var(--color-green-dk);
  border-color: var(--color-green-dk);
  color: #1a1a1a;
}

/* ── Comparison Table ── */
.comparison { margin-bottom: 64px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.comparison-table th {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 14px 16px 18px;
  border-bottom: 2px solid rgba(26,26,26,0.09);
  white-space: nowrap;
}
/* #696861 on #faf8f5 = 4.73:1 ✓ */
.comparison-table th:first-child {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}
/* #177a4c on #faf8f5 = 5.09:1 ✓ + bold weight for non-color indicator */
.comparison-table th.col-pop {
  color: var(--color-green-text);
  font-weight: 700;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(26,26,26,0.05);
  text-align: center;
  color: var(--color-secondary);
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-text);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(26,26,26,0.015); }
.comparison-table td.col-pop { background: rgba(43,182,115,0.03); }
/* #177a4c on #faf8f5 = 5.09:1 ✓ */
.ic-yes { color: var(--color-green-text); font-size: 16px; font-weight: 700; }
/* #696861 on #faf8f5 = 4.73:1 ✓ */
.ic-no  { color: var(--color-muted); }

/* ── Rental Note Banner ── */
.rental-note {
  background: var(--color-dark);
  border-radius: var(--radius);
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
/* rgba(fff,0.7) on #10110f = 9.74:1 ✓ */
.rental-note__text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 54ch;
  line-height: 1.65;
}

/* ════════════════════════
   CONTACT PAGE
   ════════════════════════ */
.contact-wrap {
  padding: var(--pad-sec) 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.contact-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.contact-sidebar__heading { font-size: 30px; margin-bottom: 16px; }
.contact-sidebar__body {
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.72;
  margin-bottom: 28px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: color var(--ease);
  padding: 8px 0; /* touch target */
}
.contact-email:hover { color: var(--color-green-text); }
.contact-or {
  font-size: 13px;
  color: var(--color-muted);
  margin: 20px 0;
}

/* ── Form ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary); /* #54534d — 6.6:1 ✓ */
}
/* #177a4c on #faf8f5 = 5.09:1 ✓ */
.fg label .req { color: var(--color-green-text); }
/* Input borders: #8f8d88 on #fff = ~3.1:1 ✓ (WCAG 1.4.11 non-text contrast) */
.fg input,
.fg select,
.fg textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid #8f8d88;
  border-radius: 8px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease), outline var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--color-muted); }
/* Focus uses outline instead of removing it — WCAG 2.4.7 */
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: 2px solid var(--color-green-text);
  outline-offset: 0;
  border-color: var(--color-green-text);
  box-shadow: 0 0 0 4px rgba(23,122,76,0.12);
}
/* Update chevron SVG to readable color */
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23696861' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.fg textarea { resize: vertical; min-height: 140px; }

/* Conditional fields — WCAG 4.1.2 / 1.3.1 */
.fg.conditional {
  display: none;
  animation: fadeIn 0.2s ease;
}
.fg.conditional.show { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-required-note {
  font-size: 13px;
  color: var(--color-secondary);
  margin-bottom: 4px;
}
.form-required-note .req { color: var(--color-green-text); }

.form-submit {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  margin-top: 6px;
  align-self: flex-start;
}
.form-note {
  font-size: 13px;
  color: var(--color-secondary);
  margin-top: 4px;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 72px 32px;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 60px;
  height: 60px;
  background: rgba(43,182,115,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}
.form-success__heading { font-size: 30px; margin-bottom: 12px; }
.form-success__body { font-size: 16px; color: var(--color-secondary); }

.contact-below {
  padding: 48px 0 var(--pad-sec);
  border-top: 1px solid rgba(26,26,26,0.07);
  font-size: 15px;
  color: var(--color-secondary);
}
.contact-below a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}
.contact-below a:hover { color: var(--color-green-text); }

/* ════════════════════════
   FOOTER
   ════════════════════════ */
.footer {
  background: var(--color-dark);
  padding: 40px 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
/* rgba(fff,0.55) on #10110f = 6.35:1 ✓ */
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.55); }
/* rgba(fff,0.75) on #10110f = ~10:1 ✓ */
.footer__email {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
  padding: 8px 0; /* touch target */
}
.footer__email:hover { color: var(--color-green); } /* green on dark = 7.45:1 ✓ */

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

/* ════════════════════════
   RESPONSIVE
   ════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad-sec: 72px; }
  .rental__packages { grid-template-columns: repeat(2, 1fr); }
  .statbar__grid { grid-template-columns: repeat(3, 1fr); }
  .statbar__item:nth-child(3) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --pad-sec: 56px; --pad-x: 20px; --nav-h: 60px; }

  .nav { height: 80px; } /* large initial on mobile */
  .nav.scrolled { height: var(--nav-h); } /* compact = 60px */
  .nav__logo img { height: 40px; }
  .nav.scrolled .nav__logo img { height: 28px; }
  .nav__wordmark { font-size: 18px; }
  .nav.scrolled .nav__wordmark { font-size: 14px; }

  .nav__inner { padding: 0 20px; }
  .nav__links { gap: 20px; }
  .nav__btn { border: none; padding: 0; min-height: unset; }

  .hero { padding: calc(var(--nav-h) + 48px) 20px 60px; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__aside { position: static; }

  .services-home__grid { grid-template-columns: 1fr; }

  .work__embeds { grid-template-columns: 1fr; }
  .work__gallery { grid-template-columns: repeat(2, 1fr); }

  .svc-section__inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-section__meta { position: static; }

  .rental__packages { grid-template-columns: 1fr; }

  .rental-note {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; }

  .footer__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (min-width: 769px) {
  .cta-dark__body { white-space: nowrap; max-width: none; }
}

@media (max-width: 480px) {
  .statbar__grid { grid-template-columns: 1fr 1fr; }
  .about__callouts { grid-template-columns: 1fr; }
}
