@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto-condensed-latin-800-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #07090c;
  --ink-soft: #11151b;
  --paper: #ffffff;
  --mist: #f3f6f9;
  --line: #dce4ec;
  --muted: #5d6670;
  --blue: #078ee8;
  --cyan: #05c6df;
  --max: 1240px;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(4, 16, 28, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
[hidden] { display: none !important; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--soft { background: var(--mist); }
.section--dark { color: var(--paper); background: var(--ink); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section--dark .eyebrow { color: var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
h1 { max-width: 890px; margin-bottom: 24px; font-size: clamp(3.2rem, 8.5vw, 7.9rem); text-transform: uppercase; }
h2 { max-width: 840px; margin-bottom: 24px; font-size: clamp(2.5rem, 5vw, 5rem); text-transform: uppercase; }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2.4vw, 2rem); }
h1, h2 { text-wrap: balance; overflow-wrap: break-word; }
p { text-wrap: pretty; }
.lede { max-width: 770px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.55; }
.section--dark .lede { color: #bfc9d3; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker::before { width: 42px; height: 2px; background: var(--cyan); content: ""; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  transition: background 220ms ease, box-shadow 220ms ease;
}
.site-header:not(.scrolled) { background: linear-gradient(180deg, rgba(3,6,10,.58), rgba(3,6,10,.18) 68%, transparent); }
.site-header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 8px 36px rgba(4,16,28,.09); }
.site-header:not(.scrolled) .site-nav:not(.open) a:not(.nav-cta) { color: var(--paper); text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.site-header:not(.scrolled) .menu-toggle span { background: var(--paper); }
.menu-open .menu-toggle span { background: var(--ink) !important; }
.nav-wrap { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { position: relative; z-index: 1002; width: min(260px, 38vw); }
.brand img { width: 100%; height: auto; }
.brand, .footer-brand { aspect-ratio: 680 / 252; }
.site-nav { display: flex; align-items: center; gap: clamp(12px, 1.7vw, 28px); }
.site-nav a {
  position: relative;
  padding: 29px 0 26px;
  color: #2b333d;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a::after { position: absolute; right: 0; bottom: 19px; left: 0; height: 2px; background: var(--blue); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { padding: 12px 17px !important; color: var(--paper) !important; background: var(--ink); border-radius: 999px; }
.nav-cta::after { display: none; }
.header-phone {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding-left: 17px;
  border-left: 1px solid rgba(255,255,255,.42);
  color: var(--paper);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .06em;
  line-height: 1.15;
  transition: color 180ms ease;
}
.header-phone svg { width: 19px; height: 19px; fill: currentColor; }
.header-phone-copy { white-space: nowrap; }
.header-phone small { display: block; margin-bottom: 3px; font-size: .57rem; letter-spacing: .15em; text-transform: uppercase; opacity: .72; }
.site-header.scrolled .header-phone { border-left-color: var(--line); color: var(--ink); }
.header-phone:hover { color: var(--cyan); }
.menu-toggle { display: none; position: relative; z-index: 1002; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 6px auto; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero--inner { min-height: 72vh; }
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); animation: hero-in 1.3s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-media::after { background: linear-gradient(90deg, rgba(3,6,10,.88) 0%, rgba(3,6,10,.58) 48%, rgba(3,6,10,.14) 100%), linear-gradient(0deg, rgba(3,6,10,.68), transparent 48%); content: ""; }
.hero-content { position: relative; z-index: 2; min-width: 0; padding: 180px 0 80px; }
.hero h1 span { color: var(--cyan); }
.hero-copy { max-width: 700px; margin-bottom: 32px; color: #e2e8ef; font-size: clamp(1.08rem, 2vw, 1.34rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-phone {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 10px 8px;
  color: var(--paper);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-phone:hover { color: var(--cyan); }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--ink); background: var(--cyan); }
.btn--primary:hover { background: #7ce8f4; }
.btn--ghost { color: var(--paper); border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.14); }
.btn--ghost:hover { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.btn--dark { color: var(--paper); background: var(--ink); }
.btn--dark:hover, .nav-cta:hover { background: #203647; }

.proof-bar { color: var(--paper); background: var(--blue); }
.proof-grid { display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; }
.proof-grid span { padding: 22px 10px; text-align: center; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.service-grid--three { grid-template-columns: repeat(3, 1fr); }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 16px 55px rgba(13,32,52,.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.service-card::before { position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--cyan), var(--blue)); content: ""; }
.service-card::after { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(5,198,223,.08) 50%, transparent 70%); content: ""; pointer-events: none; transform: translateX(-120%); transition: transform 650ms cubic-bezier(.2,.75,.2,1); }
.service-card:hover { border-color: #b7dcef; box-shadow: var(--shadow); transform: translateY(-6px); }
.service-card:hover::after { transform: translateX(120%); }
.service-card .number { color: var(--blue); font-family: "Arial Narrow", Impact, sans-serif; font-size: 1rem; font-weight: 900; }
.service-card h3 { margin-top: 58px; font-size: clamp(2rem, 3vw, 3.2rem); text-transform: uppercase; }
.service-card p { max-width: 520px; color: var(--muted); }
.service-card .text-link { margin-top: auto; align-self: flex-start; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: .8rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.text-link::after { content: "→"; transition: transform 180ms ease; }
.text-link:hover::after { transform: translateX(5px); }
.related-services { max-width: 930px; margin: 34px 0 0; }
.related-services a, .section p:not(.eyebrow) > a:not(.btn):not(.text-link) { color: var(--blue); font-weight: 750; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.section--dark p:not(.eyebrow) > a:not(.btn):not(.text-link) { color: var(--cyan); }

.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(42px, 7vw, 110px); align-items: center; }
.split > *, .contact-grid > *, .cta-panel > *, .field { min-width: 0; }
.split-media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media img { width: 100%; height: auto; transition: transform 600ms ease; }
.split-media:not(.split-media--full):hover img { transform: scale(1.02); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.stat { padding-top: 18px; border-top: 2px solid var(--blue); }
.stat strong { display: block; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2rem, 4vw, 4rem); line-height: 1; }
.stat span { color: var(--muted); font-size: .8rem; font-weight: 750; text-transform: uppercase; }

.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { min-height: 44px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: #44505d; background: var(--paper); cursor: pointer; font-size: .76rem; font-weight: 800; text-transform: uppercase; transition: background 180ms ease, border-color 180ms ease, color 180ms ease; }
.filter-button:hover, .filter-button.active { border-color: var(--blue); color: var(--paper); background: var(--blue); }
.gallery { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 14px; }
.gallery-item { position: relative; flex: 0 0 var(--gallery-width, 100%); min-width: 0; padding: 0; aspect-ratio: var(--image-ratio); overflow: hidden; border: 0; border-radius: 10px; background: #dfe6ec; cursor: zoom-in; opacity: 0; transform: translateY(22px); transition: opacity 560ms ease var(--gallery-delay, 0ms), transform 650ms cubic-bezier(.2,.75,.2,1) var(--gallery-delay, 0ms), box-shadow 220ms ease; }
.gallery-item.visible { opacity: 1; transform: none; }
.gallery-item img { width: 100%; height: auto; }
.gallery-item:hover { box-shadow: 0 18px 44px rgba(4,16,28,.18); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 44px 20px 18px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.85)); text-align: left; opacity: 0; transform: translateY(8px); transition: opacity 200ms ease, transform 200ms ease; }
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption strong { display: block; font-size: 1rem; }
.gallery-caption span { color: #d3dde5; font-size: .78rem; text-transform: uppercase; }

.lightbox { position: fixed; z-index: 2000; inset: 0; display: none; place-items: center; padding: 32px; background: rgba(0,0,0,.94); }
.lightbox.open { display: grid; }
.lightbox img { width: auto; height: auto; max-width: min(94vw, 1500px); max-height: 86vh; object-fit: contain; box-shadow: 0 30px 90px #000; }
.lightbox button { position: fixed; top: 20px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: white; background: transparent; cursor: pointer; font-size: 1.7rem; }

.client-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 0; padding: 0; list-style: none; }
.client-list li { padding: 10px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: #dbe4eb; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.process-step { padding: 28px 0; border-top: 2px solid var(--blue); }
.process-step span { color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.process-step h3 { margin-top: 34px; }
.process-step p { color: var(--muted); }

.quote { padding: 70px; border-radius: var(--radius); background: var(--ink); color: var(--paper); }
.quote blockquote { max-width: 980px; margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.1rem, 4.8vw, 5.2rem); line-height: 1.03; text-transform: uppercase; }
.quote cite { display: block; margin-top: 24px; color: var(--cyan); font-style: normal; font-weight: 800; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; padding: clamp(38px, 7vw, 84px); border-radius: var(--radius); background: linear-gradient(130deg, var(--blue), #045fa8); color: var(--paper); }
.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p { max-width: 680px; margin-bottom: 0; color: #e6f5ff; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(42px, 8vw, 110px); align-items: start; }
.contact-direct { padding: 32px; border-radius: var(--radius); background: var(--mist); }
.contact-direct a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--blue); font-weight: 800; overflow-wrap: anywhere; }
.investment-card { padding: clamp(30px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.investment-card ul { margin: 24px 0; padding-left: 20px; color: var(--muted); }
.availability-note { padding-top: 18px; border-top: 1px solid var(--line); font-weight: 750; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .77rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 15px; border: 1px solid #cbd6df; border-radius: 10px; color: var(--ink); background: var(--paper); }
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--blue); outline-offset: 2px; }
.botcheck { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.form-submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-submit-row .btn[disabled] { cursor: wait; opacity: .62; transform: none; }
.form-status { flex: 1 1 280px; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.form-status.is-sending { color: var(--blue); }
.form-status.is-success { color: #08783e; font-weight: 750; }
.form-status.is-error { color: #a62222; font-weight: 750; }

.breadcrumb { margin-bottom: 20px; color: #dce7ef; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a { color: var(--cyan); }
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.market-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 14px 45px rgba(13,32,52,.06); }
.market-card h3 { margin-bottom: 14px; }
.market-card p { color: var(--muted); }
.market-card .text-link { margin-top: 6px; }
.route-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.route-list li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #475360; background: var(--paper); font-size: .76rem; font-weight: 750; }
.form-intro { max-width: 850px; margin-bottom: 38px; }
.design-form { padding: clamp(26px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.design-form .contact-form { margin-top: 28px; }
.conditional-fields { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 4px 0; padding: 24px; border: 1px solid var(--line); border-radius: 13px; background: var(--mist); }
.conditional-fields legend { padding: 0 8px; color: var(--blue); font-size: .8rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.rights-note { margin: 20px 0 0; padding: 18px 20px; border-left: 4px solid var(--cyan); background: #eefaff; color: #354452; }
.hero-media--home img { object-position: center 32%; }
.hero-media--events img { object-position: center 40%; }
.hero-media--motorsports img { object-position: center 46%; }
.hero-media--food img { object-position: center 48%; }
.hero-media--disc img { object-position: center 48%; }
.hero-media--about img { object-position: center 45%; }

.site-footer { padding: 56px 0 30px; color: #bac5ce; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(2, .7fr); gap: 40px; }
.footer-brand { width: 250px; height: auto; margin-bottom: 22px; padding: 10px; border-radius: 8px; background: white; }
.footer-nav { display: grid; align-content: start; gap: 7px; }
.footer-nav strong { margin-bottom: 6px; color: var(--paper); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--cyan); }
.footer-nav a { width: fit-content; transition: color 180ms ease; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.75,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.split-media.reveal { clip-path: inset(0 0 9% 0 round var(--radius)); transition: opacity 650ms ease, transform 750ms cubic-bezier(.2,.75,.2,1), clip-path 850ms cubic-bezier(.2,.75,.2,1); }
.split-media.reveal.visible { clip-path: inset(0 0 0 0 round var(--radius)); }
@keyframes hero-in { to { transform: scale(1); } }

@media (min-width: 1281px) {
  .nav-wrap { gap: 16px; }
  .site-nav { gap: clamp(10px, 1.1vw, 17px); }
}

@media (max-width: 1280px) {
  .menu-toggle { display: block; }
  .nav-wrap { gap: 12px; }
  .header-phone {
    width: 44px;
    height: 44px;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
  }
  .header-phone-copy { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .site-header.scrolled .header-phone { border-color: var(--line); }
  .site-nav { position: fixed; inset: 0; display: grid; align-content: safe center; justify-items: center; gap: 4px; padding: 110px 30px 30px; background: rgba(255,255,255,.98); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-20px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; overflow-y: auto; }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 7px 10px; font-size: 1.05rem; }
  .site-nav.open a { animation: mobile-nav-in 360ms both; }
  .site-nav a::after { bottom: 2px; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 980px) {
  .site-nav { gap: 8px; padding: 90px 30px 40px; }
  .site-nav a { padding: 10px; font-size: 1.2rem; }
  .site-nav.open a:nth-child(2) { animation-delay: 35ms; }
  .site-nav.open a:nth-child(3) { animation-delay: 70ms; }
  .site-nav.open a:nth-child(4) { animation-delay: 105ms; }
  .site-nav.open a:nth-child(5) { animation-delay: 140ms; }
  .site-nav.open a:nth-child(6) { animation-delay: 175ms; }
  .site-nav.open a:nth-child(7) { animation-delay: 210ms; }
  .site-nav a::after { bottom: 4px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; }
  .service-grid--three { grid-template-columns: repeat(2, 1fr); }
}

@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (hover: none), (pointer: coarse) {
  .service-card:hover { border-color: var(--line); box-shadow: 0 16px 55px rgba(13,32,52,.06); transform: none; }
  .service-card:hover::after { transform: translateX(-120%); }
  .service-card:active { transform: scale(.985); }
  .gallery-item:hover { box-shadow: none; }
  .gallery-item:hover img { filter: none; transform: none; }
  .gallery-caption { opacity: 1; transform: none; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 26px), var(--max)); }
  .section { padding: 74px 0; }
  .nav-wrap { min-height: 72px; }
  .brand { width: 210px; }
  .hero, .hero--inner { min-height: 82vh; }
  .hero-content { padding: 150px 0 60px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .hero-copy { font-size: 1.05rem; }
  .hero-media--about img { object-position: 76% 45%; }
  .hero-media--events img { object-position: 82% 40%; }
  .hero-media--disc img { object-position: 27% 48%; }
  .hero-media::after { background: linear-gradient(90deg, rgba(3,6,10,.88), rgba(3,6,10,.34)), linear-gradient(0deg, rgba(3,6,10,.78), transparent 65%); }
  .hero--home { display: flex; min-height: 0; flex-direction: column; align-items: stretch; }
  .hero--home .hero-media { position: relative; height: 50vh; min-height: 330px; margin-top: 78px; }
  .hero--home .hero-media img { object-position: 95% 32%; }
  .hero--home .hero-media::after { background: linear-gradient(0deg, rgba(3,6,10,.42), transparent 42%); }
  .hero--home .hero-content { padding: 38px 0 58px; }
  .hero--home h1 { max-width: none; font-size: clamp(2.55rem, 12vw, 4.2rem); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid span { padding: 16px 7px; font-size: .67rem; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .market-grid, .conditional-fields { grid-template-columns: 1fr; }
  .service-card { min-height: 265px; padding: 26px; }
  .service-card h3 { margin-top: 34px; }
  .gallery-head { display: block; }
  .filters { margin-top: 22px; }
  .gallery { gap: 9px; }
  .gallery-item { aspect-ratio: auto; }
  .gallery-caption { position: static; display: block; padding: 14px 16px; background: var(--ink); opacity: 1; transform: none; }
  .stat-grid { grid-template-columns: 1fr; }
  .quote { padding: 42px 26px; }
  .contact-form { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .cta-panel { padding: 32px 24px; }
  .design-form { padding: 24px 18px; }
  .conditional-fields { padding: 18px 12px; min-width: 0; }
  .lightbox { padding: 16px; }
  .footer-nav { gap: 0; }
  .footer-nav a { padding: 8px 0; }
}

@media (max-width: 370px) {
  .brand { width: 174px; }
  .header-phone, .menu-toggle { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .gallery-item { opacity: 1; transform: none; }
  .split-media.reveal { clip-path: none; }
}
