:root {
  --red: #BF0A30;
  --red-dark: #8C0721;
  --gold: #C9A656;
  --gold-dark: #9C7E35;
  --navy: #0A2E5E;
  --navy-deep: #061E3F;
  --ink: #0F0F0F;
  --concrete: #1A1A1A;
  --muted: #6B6B6B;
  --bone: #F5EEDC;
  --bone-dark: #E8DFC7;
  --line-dark: #1E3A6B;
  --line-light: #D6C9A8;
  --font-display: 'Anton', 'Impact', sans-serif;
  --font-condensed: 'Oswald', 'Arial Narrow', sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  background: var(--bone);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.stripe {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--navy) 0 14px, var(--gold) 14px 28px);
  width: 100%;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 44px;
  background: transparent;
  transition: background 280ms ease, padding 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
  border-bottom: 1px solid transparent;
}
.nav-logo { display: flex; align-items: center; gap: 14px; line-height: 0; }
.nav-logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,0.55)) drop-shadow(0 0 20px rgba(0,0,0,0.35));
  transition: height 280ms ease, filter 280ms ease;
}

nav ul { display: flex; gap: 24px; align-items: center; list-style: none; }
nav ul a:not(.nav-cta) {
  position: relative;
  color: white;
  font-family: var(--font-condensed);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}
nav ul a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
nav ul a:not(.nav-cta):hover::after,
nav ul a:not(.nav-cta).active::after {
  transform: scaleX(1);
  transform-origin: left center;
}
nav ul a:not(.nav-cta).active { color: var(--gold); }

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 11px 20px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--red-dark);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.nav-cta .cta-short { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  position: relative;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 220ms ease, background 220ms ease;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.7));
}
nav.scrolled .nav-toggle span { background: var(--ink); filter: none; }
.nav-toggle[aria-expanded="true"] span { background: white; filter: none; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

nav.scrolled {
  padding: 10px 44px;
  background: var(--bone);
  border-bottom-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
nav.scrolled .nav-logo img { height: 50px; filter: none; }
nav.scrolled ul a:not(.nav-cta) { color: var(--ink); text-shadow: none; }
nav.scrolled ul a:not(.nav-cta).active { color: var(--red); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
  text-align: center;
}
.btn-lg { padding: 17px 30px; font-size: 15px; box-shadow: 5px 5px 0 var(--ink); }
.btn-md { padding: 13px 22px; font-size: 13.5px; box-shadow: 4px 4px 0 var(--ink); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn-outline-light {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: 5px 5px 0 rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: white;
  color: var(--ink);
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(255,255,255,0.35);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: white; transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--gold); }
.btn-arrow::after {
  content: '→';
  font-size: 1.15em;
  font-weight: 900;
  transition: transform 180ms ease;
}
.btn:hover.btn-arrow::after { transform: translateX(5px); }

/* REVEALS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-32px); }
.reveal-left.in { transform: translateX(0); }
.reveal-right { transform: translateX(32px); }
.reveal-right.in { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

section[id] { scroll-margin-top: 80px; }
@media (max-width: 767px) { section[id] { scroll-margin-top: 68px; } }

#contact .reveal,
#contact .reveal-left,
#contact .reveal-right,
.quote .reveal,
.quote .reveal-left,
.quote .reveal-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* HERO (homepage + page variants) */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 150px 48px 140px;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201,166,86,0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 55%, #030f24 100%);
}
.hero.hero-sm {
  min-height: 58vh;
  padding: 150px 48px 90px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: scale(1.02);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(110deg, rgba(10,46,94,0.85) 0%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.35) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 18%, transparent 60%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

.hero-inner { max-width: 1260px; width: 100%; margin: 0 auto; color: white; position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-condensed);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
}
.hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 3px;
  background: var(--gold);
}

.hero-mark {
  font-family: var(--font-display);
  font-size: clamp(62px, 10.5vw, 168px);
  font-weight: 400;
  line-height: 1.02;
  color: white;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.8);
  max-width: 1000px;
}
.hero-sm .hero-mark { font-size: clamp(52px, 8vw, 118px); margin-bottom: 22px; }
.hero-mark .hero-line { display: block; }
.hero-mark .hero-line.accent { margin-top: 10px; }
.hero-mark .accent { color: var(--gold); }
.hero-mark .red { color: var(--red); }

.hero-tagline {
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.3;
  color: white;
  max-width: 720px;
  margin-bottom: 20px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-tagline .dot { color: var(--gold); font-weight: 700; padding: 0 8px; }

.hero-sub {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-pills {
  position: absolute;
  bottom: 36px;
  left: 48px;
  right: 48px;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 2;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,166,86,0.5);
  font-family: var(--font-condensed);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}
.hero-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,166,86,0.9);
}

/* SECTIONS */
section { padding: 110px 48px; }
.container { max-width: 1260px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.section-eyebrow::before { content: ''; width: 36px; height: 3px; background: var(--red); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--ink);
}
.section-title .accent { color: var(--red); }
.section-title .gold { color: var(--gold); }
.section-title .outline { color: transparent; -webkit-text-stroke: 2px var(--ink); }

.section-intro {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
  max-width: 620px;
  margin-bottom: 56px;
}

/* SERVICES */
.services { background: var(--bone); }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}
.services-head .intro-right {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 6px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.service-card {
  padding: 34px 26px 34px;
  background: var(--bone);
  position: relative;
  transition: background 280ms ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 440ms cubic-bezier(.2,.7,.2,1);
}
.service-card:hover { background: var(--ink); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-num { color: var(--gold); }
.service-card:hover .service-title { color: white; }
.service-card:hover .service-list li { color: rgba(255,255,255,0.85); }
.service-card:hover .service-list li::before { background: var(--gold); }

.service-num {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 18px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  transition: color 200ms ease;
}
.service-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 200ms ease;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-list li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  transition: color 200ms ease;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--red);
  transition: background 200ms ease;
}

/* CUSTOM BAND */
.custom-band {
  background: var(--navy);
  color: white;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.custom-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 60px, rgba(201,166,86,0.06) 60px 62px);
  pointer-events: none;
}
.custom-band-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
}
.custom-band-text h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0;
}
.custom-band-text h3 .accent { color: var(--gold); }
.custom-band-text p {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.78);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 560px;
}
.custom-band .btn { border-color: white; box-shadow: 5px 5px 0 white; }
.custom-band .btn:hover { box-shadow: 2px 2px 0 white; }

/* WHO WE SERVE */
.serve { background: var(--navy-deep); color: white; position: relative; overflow: hidden; }
.serve::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 90px, rgba(201,166,86,0.035) 90px 92px);
  pointer-events: none;
}
.serve .section-title { color: white; }
.serve .section-title .outline { -webkit-text-stroke: 2px white; }
.serve .section-eyebrow { color: var(--gold); }
.serve .section-eyebrow::before { background: var(--gold); }
.serve .section-intro { color: rgba(255,255,255,0.78); }
.serve-head { position: relative; text-align: center; margin-bottom: 60px; }
.serve-head .section-eyebrow { justify-content: center; }
.serve-head .section-intro { margin: 0 auto; }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}
.serve-card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px 32px;
  background: rgba(255,255,255,0.03);
  border: 2px solid var(--gold);
  color: white;
  transition: background 250ms ease, transform 250ms cubic-bezier(.2,.7,.2,1), box-shadow 250ms ease;
  position: relative;
  overflow: hidden;
}
.serve-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.serve-card:hover {
  background: rgba(191,10,48,0.12);
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--gold);
}
.serve-card:hover::before { transform: scaleY(1); }
.serve-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.9;
  color: var(--gold);
  margin-bottom: 16px;
}
.serve-card h3 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.98;
  color: white;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.serve-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
  flex: 1;
}
.serve-card ul li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.serve-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}
.serve-cta {
  font-family: var(--font-condensed);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 18px;
  border-top: 1px solid rgba(201,166,86,0.3);
  transition: color 200ms ease, letter-spacing 200ms ease;
}
.serve-card:hover .serve-cta { color: white; letter-spacing: 2.6px; }

/* GALLERY */
.gallery { background: var(--bone-dark); position: relative; }
.gallery-head { text-align: center; margin-bottom: 50px; }
.gallery-head .section-eyebrow { justify-content: center; }
.gallery-head .section-intro { margin: 0 auto 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1260px;
  margin: 0 auto;
}
.gallery-card {
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--red);
  transition: transform 260ms ease, box-shadow 260ms ease;
  overflow: hidden;
}
.gallery-card:hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--gold); }
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ink);
}
.gallery-half {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(201,166,86,0.07) 14px 15px),
    linear-gradient(160deg, var(--concrete) 0%, var(--ink) 100%);
}
.gallery-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-card:hover .gallery-half img { transform: scale(1.04); }
.gallery-half::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 35%, transparent 70%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.gallery-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  background: var(--ink);
  padding: 6px 12px;
  z-index: 2;
  line-height: 1;
}
.gallery-label.after { background: var(--red); }
.gallery-caption {
  padding: 18px 20px;
  font-family: var(--font-condensed);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.gallery-caption .loc { color: var(--gold); }
.gallery-footer { margin-top: 56px; text-align: center; }
.gallery-footer p {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* REELS (Instagram videos grid) */
.reels { background: var(--ink); color: white; }
.reels .section-title { color: white; }
.reels .section-eyebrow { color: var(--gold); }
.reels .section-eyebrow::before { background: var(--gold); }
.reels .section-intro { color: rgba(255,255,255,0.78); }
.reels-head { text-align: center; margin-bottom: 50px; }
.reels-head .section-eyebrow { justify-content: center; }
.reels-head .section-intro { margin: 0 auto; }
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1260px;
  margin: 0 auto;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--concrete);
  border: 2px solid var(--gold);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms ease, box-shadow 280ms ease;
}
.reel-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }

/* SITE IMAGES (non before/after single-image gallery) */
.site-images { background: var(--bone); }
.site-images-head { text-align: center; margin-bottom: 46px; }
.site-images-head .section-eyebrow { justify-content: center; }
.site-images-head .section-intro { margin: 0 auto; }
.site-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.site-image-card {
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
  display: block;
}
.site-image-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--red); }
.site-image-card .img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--concrete);
}
.site-image-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.site-image-card:hover .img-wrap img { transform: scale(1.03); }
.site-image-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.site-image-card .img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  background: var(--ink);
  padding: 5px 10px;
  z-index: 2;
  line-height: 1;
}
.site-image-card .img-caption {
  padding: 16px 20px;
  font-family: var(--font-condensed);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.site-image-card .img-caption .loc { color: var(--gold); }
@media (max-width: 767px) {
  .site-images-grid { grid-template-columns: 1fr; gap: 18px; }
  .site-image-card { box-shadow: 4px 4px 0 var(--gold); }
}
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.reel-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--red);
  color: white;
  padding: 5px 10px;
  z-index: 2;
  line-height: 1;
}

/* WHO WE ARE */
.who { background: var(--navy); color: white; position: relative; overflow: hidden; }
.who::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 80px, rgba(201,166,86,0.035) 80px 82px);
  pointer-events: none;
}
.who-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.who-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,166,86,0.3) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--ink) 100%);
  border: 2px solid var(--gold);
  box-shadow: -12px 12px 0 var(--red);
}
.who-media video,
.who-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.who .section-title { color: white; }
.who .section-title .outline { -webkit-text-stroke: 2px white; }
.who .section-eyebrow { color: var(--gold); }
.who .section-eyebrow::before { background: var(--gold); }
.who .section-intro { color: rgba(255,255,255,0.78); max-width: 540px; margin-bottom: 0; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  transition: padding 280ms ease, background 280ms ease;
}
.why-item:last-child { border-bottom: 1px solid var(--line-dark); }
.why-item:hover { padding-left: 8px; background: rgba(201,166,86,0.05); }
.why-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
}
.why-text h4 {
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.why-text p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* SERVICE AREAS */
.areas { background: var(--bone); }
.areas-head { text-align: center; margin-bottom: 54px; }
.areas-head .section-eyebrow { justify-content: center; }
.areas-head .section-intro { margin: 0 auto; }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.area-cell {
  padding: 11px 22px;
  background: white;
  border: 2px solid var(--ink);
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.area-cell:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); transform: translateY(-2px); }
.areas-footer { margin-top: 56px; text-align: center; }
.areas-footer p {
  font-family: var(--font-condensed);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* AREA DETAIL CARDS (service-areas page) */
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1260px;
  margin: 48px auto 0;
}
.area-card {
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 24px 22px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.area-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--red); }
.area-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1;
  text-transform: uppercase;
}
.area-card .area-sub {
  font-family: var(--font-condensed);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.area-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}

/* REVIEWS */
.reviews { background: var(--bone-dark); }
.reviews-head { text-align: center; margin-bottom: 54px; }
.reviews-head .section-eyebrow { justify-content: center; }
.reviews-head .section-title { max-width: 900px; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
}
.review-card {
  background: var(--bone);
  padding: 36px 30px 26px;
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  position: relative;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease;
}
.review-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--red); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--red);
  opacity: 0.22;
  font-weight: 400;
}
.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.review-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 500;
}
.reviewer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
}
.reviewer-name {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.reviewer-meta {
  font-family: var(--font-condensed);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* PROCESS (steps) */
.process { background: var(--bone); }
.process-head { text-align: center; margin-bottom: 54px; }
.process-head .section-eyebrow { justify-content: center; }
.process-head .section-intro { margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1260px;
  margin: 0 auto;
}
.process-step {
  background: white;
  padding: 28px 24px 28px;
  border: 2px solid var(--ink);
  position: relative;
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h4 {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.process-step p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}

/* QUOTE FORM */
.quote { background: var(--navy); color: white; padding: 110px 48px; position: relative; overflow: hidden; }
.quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 40%, rgba(201,166,86,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 100px, rgba(255,255,255,0.02) 100px 102px);
  pointer-events: none;
}
.quote-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  position: relative;
  align-items: start;
  z-index: 1;
}
.quote-left .section-eyebrow { color: var(--gold); }
.quote-left .section-eyebrow::before { background: var(--gold); }
.quote-left .section-title { color: white; }
.quote-left .section-title .accent { color: var(--gold); }
.quote-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 460px;
}
.quote-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.contact-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-value {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: white;
  text-decoration: none;
  transition: color 200ms ease;
}
a.contact-value:hover { color: var(--gold); }

.quote-form-card {
  background: var(--bone);
  color: var(--ink);
  padding: 38px 34px;
  border: 2px solid var(--gold);
  box-shadow: 10px 10px 0 var(--red);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-field label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.form-field .req { color: var(--red); margin-left: 3px; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  background: white;
  color: var(--ink);
  width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 4px 4px 0 var(--red);
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230F0F0F' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-submit { margin-top: 6px; align-self: flex-start; }
.form-disclaimer {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.5;
}

/* FOOTER */
footer { background: var(--ink); color: #888; padding: 68px 48px 22px; border-top: 4px solid var(--gold); }
.footer-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
}
.footer-logo { margin-bottom: 20px; display: block; line-height: 0; }
.footer-logo img {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(201,166,86,0.15));
}
.footer-brand p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: #8a8a8a;
  max-width: 380px;
  margin-bottom: 22px;
}
.footer-contact a {
  display: block;
  font-family: var(--font-condensed);
  color: #ccc;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  transition: color 200ms ease;
}
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 2px solid #333;
  font-family: var(--font-condensed);
  color: #bbb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 180ms, color 180ms, background 180ms;
}
.footer-social a:hover { border-color: var(--gold); color: var(--ink); background: var(--gold); }
.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-family: var(--font-condensed);
  color: #999;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 200ms;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  max-width: 1260px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  flex-wrap: wrap;
  gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 1279px) {
  nav ul { gap: 20px; }
  nav ul a:not(.nav-cta) { font-size: 13px; letter-spacing: 1.8px; }
}

@media (max-width: 1140px) {
  nav ul { gap: 16px; }
  nav ul a:not(.nav-cta) { font-size: 12.5px; letter-spacing: 1.5px; }
  .nav-cta { padding: 10px 16px; font-size: 12.5px; letter-spacing: 1.4px; }
}

@media (max-width: 1023px) {
  nav { padding: 12px 28px; }
  nav.scrolled { padding: 9px 28px; }
  .nav-logo img { height: 54px; }
  nav.scrolled .nav-logo img { height: 44px; }
  .nav-toggle { display: block; }

  nav ul {
    position: fixed;
    top: 74px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 22px;
    background: var(--ink);
    border-top: 3px solid var(--gold);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease, visibility 240ms;
  }
  nav.scrolled ul { top: 64px; }
  nav ul.open { transform: translateY(0); opacity: 1; visibility: visible; }
  nav ul li { display: block !important; width: 100%; }
  nav ul li:not(:last-child) { border-bottom: 1px solid rgba(201,166,86,0.2); }
  nav ul a:not(.nav-cta) {
    display: block;
    padding: 14px 8px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 2.5px;
    color: white !important;
    text-shadow: none !important;
  }
  nav ul a:not(.nav-cta).active { color: var(--gold) !important; }
  nav ul a:not(.nav-cta)::after { display: none; }
  nav ul li:last-child { padding-top: 16px; text-align: center; }
  .nav-cta {
    padding: 13px 26px !important;
    font-size: 13px !important;
    letter-spacing: 1.6px !important;
    box-shadow: 4px 4px 0 var(--gold) !important;
  }
  .nav-cta .cta-long { display: inline; }
  .nav-cta .cta-short { display: none; }

  section { padding: 84px 32px; }
  .hero { padding: 130px 32px 130px; }
  .hero.hero-sm { padding: 130px 32px 70px; min-height: auto; }
  .hero-pills { left: 32px; right: 32px; bottom: 28px; }
  .services-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-band { padding: 52px 32px; }
  .serve-grid { grid-template-columns: 1fr; gap: 20px; max-width: 640px; }
  .gallery-grid { gap: 24px; }
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .who-inner { grid-template-columns: 1fr 1fr; gap: 44px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .area-cards { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .quote { padding: 80px 32px; }
  .quote-inner { grid-template-columns: 1fr; gap: 44px; }
  .quote-form-card { order: -1; padding: 30px 22px; box-shadow: 8px 8px 0 var(--red); }
}

@media (max-width: 900px) {
  .who-inner { grid-template-columns: 1fr; gap: 36px; }
  .who-media { aspect-ratio: 16 / 10; max-width: 680px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  nav { padding: 9px 16px; }
  nav.scrolled { padding: 7px 16px; }
  .nav-logo img { height: 46px; }
  nav.scrolled .nav-logo img { height: 40px; }
  nav ul { top: 64px; padding: 16px 20px 22px; }
  nav.scrolled ul { top: 58px; }
  .nav-cta {
    padding: 12px 22px !important;
    font-size: 12.5px !important;
    letter-spacing: 1.4px !important;
  }
  .nav-cta .cta-long { display: none; }
  .nav-cta .cta-short { display: inline; }

  section { padding: 56px 18px; }

  .hero { min-height: auto; padding: 100px 18px 110px; }
  .hero.hero-sm { padding: 100px 18px 50px; }
  .hero-mark { font-size: clamp(46px, 13vw, 76px); letter-spacing: 0; margin-bottom: 18px; }
  .hero-sm .hero-mark { font-size: clamp(40px, 11vw, 56px); margin-bottom: 14px; }
  .hero-eyebrow { font-size: 12px; letter-spacing: 2.8px; gap: 10px; margin-bottom: 16px; }
  .hero-eyebrow::before { width: 28px; height: 2px; }
  .hero-tagline { font-size: 14.5px; letter-spacing: 1px; margin-bottom: 14px; }
  .hero-sub { font-size: 14px; line-height: 1.55; margin-bottom: 26px; max-width: 460px; }
  .hero-btns { gap: 10px; flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .btn-lg { padding: 14px 22px; font-size: 14px; box-shadow: 4px 4px 0 var(--ink); }
  .hero-pills { left: 18px; right: 18px; bottom: 18px; gap: 6px; }
  .hero-pill { padding: 6px 12px; font-size: 11px; letter-spacing: 1.2px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); border: 2px solid var(--ink); }
  .service-card { padding: 22px 14px 22px; }
  .service-title { font-size: 22px; line-height: 0.96; margin-bottom: 12px; }
  .service-num { font-size: 10.5px; letter-spacing: 1.4px; margin-bottom: 12px; }
  .service-list { gap: 6px; }
  .service-list li { font-size: 12px; padding-left: 14px; line-height: 1.35; }
  .service-list li::before { top: 6px; width: 6px; height: 2px; }

  .custom-band { padding: 42px 18px; }
  .custom-band-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .custom-band .btn { width: 100%; }

  .serve-grid { grid-template-columns: 1fr; gap: 18px; }
  .serve-card { padding: 32px 22px 26px; }
  .serve-card h3 { font-size: 36px; }
  .serve-num { font-size: 52px; margin-bottom: 12px; }

  .gallery-grid { gap: 20px; }
  .gallery-card { box-shadow: 5px 5px 0 var(--red); }
  .gallery-caption { padding: 14px 16px; font-size: 12px; letter-spacing: 1.5px; }
  .gallery-label { font-size: 12px; letter-spacing: 2px; padding: 5px 10px; }
  .reels-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .reel-card { box-shadow: 4px 4px 0 var(--red); }

  .areas-grid { gap: 8px; max-width: 100%; }
  .area-cell { padding: 8px 14px; font-size: 13px; letter-spacing: 1.5px; }
  .area-cards { grid-template-columns: 1fr; gap: 14px; }
  .process-grid { grid-template-columns: 1fr; gap: 14px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
  .review-card { padding: 28px 22px 20px; box-shadow: 5px 5px 0 var(--ink); }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  footer { padding: 50px 18px 18px; }
  .footer-logo img { height: 88px; }

  .quote { padding: 56px 18px; }
  .quote-contact { grid-template-columns: 1fr 1fr; gap: 16px; }
  .quote-form-card { order: -1; padding: 22px 16px; box-shadow: 5px 5px 0 var(--red); gap: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .form-field { gap: 7px; }
  .form-field label { font-size: 11.5px; letter-spacing: 1.8px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; padding: 14px 14px; min-height: 48px; }
  .form-field textarea { min-height: 130px; }
  .form-submit { width: 100%; align-self: stretch; margin-top: 4px; }
}

@media (max-width: 400px) {
  .quote-contact { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: 1fr; }
}
