@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ═══════════════════════════
   TOKENS
═══════════════════════════ */
:root {
  --navy:       #0d1b2e;
  --navy-mid:   #152540;
  --navy-light: #1e3a5f;
  --red:        #d42b2b;
  --red-bright: #e63333;
  --white:      #ffffff;
  --off-white:  #f4f2ef;
  --text-dark:  #1a1a2e;
  --text-mid:   #3a3a4a;
  --text-muted: #6a6a7a;
}

/* ═══════════════════════════
   RESET & BASE
═══════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ═══════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════ */
.bebas     { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }
.condensed { font-family: 'Barlow Condensed', sans-serif; }
.sec-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 12px;
}
.sec-label.dark { color: var(--red); }
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 3px; line-height: 1;
  color: var(--white);
}
.sec-title.dark { color: var(--navy); }

/* ═══════════════════════════
   LAYOUT
═══════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

/* ═══════════════════════════
   BUTTONS
═══════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; border-radius: 2px; padding: 14px 32px;
  transition: background .2s, transform .15s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-red   { background: var(--red);   color: white; }
.btn-red:hover { background: var(--red-bright); }
.btn-navy  { background: var(--navy);  color: white; }
.btn-navy:hover { background: #0a1525; }
.btn-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: white; }
.btn-sm { font-size: 12px; padding: 11px 24px; }

/* ═══════════════════════════
   NAVIGATION
═══════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  background: rgba(10,15,30,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
@media (min-width: 768px)  { .nav { padding: 0 40px; } }
@media (min-width: 1100px) { .nav { padding: 0 60px; height: 72px; } }

.nav-logo img { height: 36px; }
@media (min-width: 768px) { .nav-logo img { height: 42px; } }

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px;
  background: white; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.nav-menu {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(7,12,24,.98);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 999;
}
.nav-menu.open { transform: translateX(0); }

.nav-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 12px 24px; width: 100%; text-align: center;
  transition: color .2s;
}
.nav-menu a:hover,
.nav-menu a.active { color: white; }
.nav-menu .nav-book {
  margin-top: 16px;
  background: var(--red); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; padding: 14px 40px; border-radius: 2px;
}

@media (min-width: 900px) {
  .nav-menu {
    position: static; transform: none;
    flex-direction: row; background: none;
    gap: 28px; align-items: center; justify-content: flex-end;
    flex: 1; padding-left: 32px;
  }
  .nav-menu a {
    font-size: 13px; padding: 0; width: auto; text-align: left;
  }
  .nav-menu .nav-book {
    font-size: 13px; padding: 10px 22px; margin-top: 0;
  }
  .nav-cta-desktop { display: flex !important; }
}

/* Desktop right-side CTA */
.nav-cta-desktop {
  display: none;
  margin-left: 12px;
}
@media (min-width: 900px) {
  .nav-cta-desktop { display: flex; }
}

/* ═══════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════ */
.page-hero {
  position: relative;
  height: clamp(320px, 50vw, 520px);
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
  filter: brightness(.5);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(13,27,46,.9) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 20px 40px;
  width: 100%;
}
@media (min-width: 768px) { .page-hero-content { padding: 0 40px 56px; } }
@media (min-width: 1100px) { .page-hero-content { padding: 0 80px 64px; max-width: 900px; } }

.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 12px;
  opacity: 0; animation: fUp .8s .2s forwards;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 96px);
  letter-spacing: 3px; line-height: .92; color: white;
  opacity: 0; animation: fUp .9s .35s forwards;
}
.page-title span { color: var(--red-bright); }
.page-subtitle {
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.75); margin-top: 14px;
  opacity: 0; animation: fUp .9s .5s forwards;
}

@keyframes fUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ═══════════════════════════
   HERO (homepage)
═══════════════════════════ */
.hero {
  position: relative;
  height: 100svh; min-height: 580px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: hZoom 20s ease-in-out infinite alternate;
}
@keyframes hZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,15,30,.5) 0%,
    rgba(10,15,30,.3) 40%,
    rgba(10,15,30,.78) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 24px;
  max-width: 900px; width: 100%;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(10px, 2vw, 13px); font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 14px;
  opacity: 0; animation: fUp .8s .3s forwards;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 12vw, 110px);
  letter-spacing: 3px; line-height: .92; color: white;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
  opacity: 0; animation: fUp .9s .5s forwards;
}
.hero-headline span { color: var(--red-bright); }
.hero-sub {
  font-size: clamp(14px, 2.5vw, 17px); font-weight: 300;
  color: rgba(255,255,255,.8); letter-spacing: .5px;
  margin-top: 18px; line-height: 1.65;
  opacity: 0; animation: fUp .9s .7s forwards;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 32px;
  opacity: 0; animation: fUp .9s .9s forwards;
}
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fUp .9s 1.2s forwards;
}
.hero-scroll span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.scroll-line {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.28);
  animation: sPulse 2s ease-in-out infinite;
}
@keyframes sPulse {
  0%,100% { opacity:.25; transform: scaleY(1); }
  50%      { opacity:.7;  transform: scaleY(.55); }
}

/* ═══════════════════════════
   TRUST BAR
═══════════════════════════ */
.trust-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px;
  flex: 1 1 200px; justify-content: center;
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 600px) {
  .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
  .trust-item { flex: 1 1 100%; }
}
.trust-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.trust-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.88);
}

/* ═══════════════════════════
   SECTION WRAPPERS
═══════════════════════════ */
.section { padding: 72px 0; }
@media (min-width: 768px)  { .section { padding: 88px 0; } }
@media (min-width: 1100px) { .section { padding: 108px 0; } }

.section-header { margin-bottom: 48px; }
@media (min-width: 768px) { .section-header { margin-bottom: 56px; } }

/* ═══════════════════════════
   SERVICES GRID
═══════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
@media (min-width: 600px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.svc-card {
  position: relative;
  height: clamp(160px, 25vw, 280px);
  overflow: hidden; cursor: pointer;
}
.svc-card:nth-child(n+5) { /* bottom row 3 items span full on small */}
@media (min-width: 900px) {
  /* 4+3 layout: last 3 items each take ~33% */
  .services-grid { display: block; }
  .svc-row-top {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-bottom: 3px;
  }
  .svc-row-bot {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  }
  .svc-card { height: 260px; }
}

.svc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.svc-card:hover .svc-bg { transform: scale(1.07); }
.svc-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(10,15,30,.92) 0%,rgba(10,15,30,.2) 60%,transparent 100%);
  transition: background .3s;
}
.svc-card:hover .svc-ov {
  background: linear-gradient(to top,rgba(10,15,30,.97) 0%,rgba(10,15,30,.5) 60%,rgba(10,15,30,.1) 100%);
}
.svc-con {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
}
@media (min-width: 768px) { .svc-con { padding: 20px 24px; } }
.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px; letter-spacing: 3px;
  color: var(--red-bright); margin-bottom: 4px;
}
.svc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(13px, 2.5vw, 18px);
  font-weight: 700; letter-spacing: 1px;
  color: white; text-transform: uppercase;
}
.svc-new {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}
.svc-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px;
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover .svc-arrow { opacity: 1; }

/* ═══════════════════════════
   PHOTO SCROLL (portfolio strip)
═══════════════════════════ */
.photo-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--navy-mid);
  -webkit-overflow-scrolling: touch;
}
.photo-scroll::-webkit-scrollbar { height: 4px; }
.photo-scroll::-webkit-scrollbar-track { background: var(--navy-mid); }
.photo-scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

.p-item {
  flex-shrink: 0;
  width: clamp(220px, 45vw, 320px);
  height: clamp(150px, 28vw, 220px);
  border-radius: 4px; overflow: hidden; position: relative; cursor: pointer;
}
.p-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.p-item:hover img { transform: scale(1.06); }
.p-lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  padding: 14px 12px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* ═══════════════════════════
   TESTIMONIAL CARDS
═══════════════════════════ */
.test-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .test-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px; padding: 28px 24px;
  position: relative; display: flex; flex-direction: column;
}
@media (min-width: 768px) { .test-card { padding: 36px 32px; } }
.test-card::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif; font-size: 80px;
  color: var(--red); opacity: .25;
  position: absolute; top: 12px; left: 20px; line-height: 1;
}
.test-project {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 14px;
}
.test-body {
  font-size: 14px; line-height: 1.8; font-style: italic;
  color: rgba(255,255,255,.75); margin: 16px 0 20px; flex: 1;
}
@media (min-width: 768px) { .test-body { font-size: 15px; } }
.test-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px;
}
.t-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--red-bright);
}
.t-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 1px; color: white;
}
.t-title { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 1px; }

/* ═══════════════════════════
   QUOTE FORM
═══════════════════════════ */
.quote-section {
  position: relative; overflow: hidden;
  background: var(--red); padding: 72px 0;
}
@media (min-width: 768px) { .quote-section { padding: 100px 0; } }
.quote-section::before {
  content: 'GET A QUOTE';
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 15vw, 200px);
  color: rgba(0,0,0,.07);
  position: absolute; right: -10px; top: -20px;
  letter-spacing: 6px; line-height: 1; pointer-events: none;
  white-space: nowrap;
}
.q-inner { max-width: 700px; position: relative; z-index: 2; }
.q-inner .sec-label { color: rgba(255,255,255,.7); }
.q-inner .sec-title { color: white; margin-bottom: 28px; }

.q-form { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .q-form { grid-template-columns: 1fr 1fr; } }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: 1 / -1; }
.fg label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.fg input, .fg textarea, .fg select {
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px; padding: 13px 16px;
  color: white; font-family: 'Barlow', sans-serif;
  font-size: 15px; outline: none;
  transition: border-color .2s;
  width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.35); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: rgba(255,255,255,.7); }
.fg select option { background: var(--navy); color: white; }
.fg textarea { resize: vertical; min-height: 110px; }
.q-submit {
  grid-column: 1 / -1;
  background: var(--navy); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; padding: 17px;
  border-radius: 3px; cursor: pointer;
  transition: background .2s;
}
.q-submit:hover { background: #0a1525; }
.q-note {
  grid-column: 1 / -1;
  font-size: 12px; color: rgba(255,255,255,.5);
  text-align: center; margin-top: -4px;
}

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.footer { background: #050a12; padding: 56px 0 28px; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }

.ft-logo img { height: 44px; margin-bottom: 14px; }
.ft-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 10px;
}
.ft-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; }
.ft-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 16px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col ul a {
  font-size: 13px; color: rgba(255,255,255,.42);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  transition: color .2s;
}
.ft-col ul a:hover { color: white; }
.ft-bottom {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ft-copy {
  font-size: 11px; color: rgba(255,255,255,.25); line-height: 1.6;
}
.ft-copy span { color: rgba(255,255,255,.38); }
.soc-row { display: flex; gap: 10px; }
.soc-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 11px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  transition: border-color .2s, color .2s;
}
.soc-btn:hover { border-color: var(--red-bright); color: var(--red-bright); }

/* ═══════════════════════════
   ABOUT PAGE SPECIFIC
═══════════════════════════ */
.intro-split {
  display: grid; grid-template-columns: 1fr;
  background: var(--off-white); color: var(--text-dark);
}
@media (min-width: 768px) {
  .intro-split { grid-template-columns: 1fr 1fr; }
}
.intro-photo { position: relative; overflow: hidden; min-height: 360px; }
@media (min-width: 768px) { .intro-photo { min-height: 540px; } }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-photo-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,46,.92), transparent);
  padding: 32px 24px 20px;
}
.intro-photo-badge .badge-line {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red-bright); margin-bottom: 4px;
}
.intro-photo-badge .badge-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 2px; color: white;
}
.intro-text {
  padding: 48px 24px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--off-white);
}
@media (min-width: 768px) { .intro-text { padding: 64px 56px; } }
.intro-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 2px; color: var(--navy); margin-bottom: 24px; line-height: 1;
}
.intro-text p {
  font-size: 15px; line-height: 1.85; color: var(--text-mid); margin-bottom: 18px;
}
.intro-text p strong { color: var(--navy); font-weight: 600; }

.timeline-section { background: var(--navy); }
.timeline-header { text-align: center; margin-bottom: 56px; }
.timeline {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute; left: 68px; top: 28px; bottom: 28px;
  width: 1px; background: rgba(255,255,255,.08);
}
@media (max-width: 600px) {
  .timeline::before { left: 52px; }
}
.tl-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
@media (min-width: 600px) { .tl-item { grid-template-columns: 100px 1fr; gap: 40px; } }
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 42px); letter-spacing: 2px;
  color: var(--red-bright); line-height: 1;
  text-align: right; align-self: flex-start; padding-top: 4px;
}
.tl-dot {
  position: absolute; left: 65px; top: 40px;
  width: 12px; height: 12px;
  background: var(--red); border-radius: 50%;
  border: 2px solid var(--navy);
}
@media (min-width: 600px) { .tl-dot { left: 93px; } }
.tl-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: white; margin-bottom: 10px;
}
.tl-body p {
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.6);
}
.tl-body p strong { color: rgba(255,255,255,.9); font-weight: 600; }

.mission-section {
  position: relative; overflow: hidden;
  background: var(--navy-mid);
}
.mission-section::before {
  content: 'MISSION';
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 18vw, 260px); letter-spacing: 8px;
  color: rgba(255,255,255,.025);
  position: absolute; right: -10px; top: -30px;
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.mission-inner { max-width: 860px; position: relative; z-index: 2; }
.mission-quote {
  font-size: clamp(18px, 3vw, 28px); font-weight: 300; font-style: italic;
  line-height: 1.55; color: white;
  border-left: 3px solid var(--red); padding-left: 24px;
  margin: 24px 0 36px;
}
.mission-body {
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .mission-body { grid-template-columns: 1fr 1fr; } }
.mission-body p {
  font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.62);
}
.mission-body p strong { color: white; font-weight: 600; }

.field-section { background: var(--off-white); color: var(--text-dark); }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .field-grid { grid-template-columns: repeat(3, 1fr); }
  .field-card.tall { grid-row: span 2; }
}
.field-card { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.field-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .5s;
}
@media (min-width: 768px) { .field-card img { height: 280px; } }
.field-card.tall img { height: 100%; min-height: 400px; }
.field-card:hover img { transform: scale(1.05); }
.field-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,.85), transparent);
  opacity: 0; transition: opacity .3s;
}
.field-card:hover .field-ov { opacity: 1; }
.field-lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 14px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  transform: translateY(4px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.field-card:hover .field-lbl { transform: translateY(0); opacity: 1; }

.stadium-section {
  position: relative; overflow: hidden;
  min-height: clamp(400px, 60vw, 560px);
  display: flex; align-items: center;
}
.stadium-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(.32);
}
.stadium-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,27,46,.92) 40%, transparent 100%);
}
.stadium-content {
  position: relative; z-index: 2;
  padding: 60px 24px;
  max-width: 640px;
}
@media (min-width: 768px) { .stadium-content { padding: 80px 60px; } }
.stadium-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 6vw, 60px); letter-spacing: 2px;
  color: white; line-height: 1.05; margin-bottom: 24px;
}
.stadium-content blockquote {
  font-size: 15px; font-style: italic; line-height: 1.8;
  color: rgba(255,255,255,.72);
  border-left: 3px solid var(--red); padding-left: 20px; margin-bottom: 16px;
}
.stadium-content .attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.stadium-content .attr strong { color: white; }

.creds-grid {
  display: grid; gap: 2px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) { .creds-grid { grid-template-columns: repeat(4, 1fr); } }
.cred-card {
  background: var(--navy-mid); padding: 32px 24px;
  border-top: 3px solid transparent;
  transition: border-color .25s;
}
.cred-card:hover { border-top-color: var(--red); }
.cred-icon {
  width: 44px; height: 44px; background: var(--red); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 18px;
}
.cred-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: white; margin-bottom: 10px;
}
.cred-body { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.52); }

.equip-inner {
  display: grid; gap: 48px; grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .equip-inner { grid-template-columns: 1fr 1fr; } }
.equip-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.equip-photo { border-radius: 4px; overflow: hidden; }
.equip-photo img { width: 100%; height: 180px; object-fit: cover; transition: transform .4s; }
@media (min-width: 768px) { .equip-photo img { height: 210px; } }
.equip-photo:hover img { transform: scale(1.05); }
.equip-photo.wide { grid-column: span 2; }
.equip-photo.wide img { height: 220px; }
@media (min-width: 768px) { .equip-photo.wide img { height: 260px; } }
.equip-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px); letter-spacing: 2px;
  color: white; margin-bottom: 24px; line-height: 1;
}
.equip-text p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.62); margin-bottom: 16px; }
.equip-text p strong { color: white; font-weight: 600; }
.spec-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.spec-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6;
}
.spec-list li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--red); border-radius: 2px; margin-top: 2px;
}
.spec-list li strong { color: rgba(255,255,255,.9); font-weight: 600; }

.philosophy-inner {
  display: grid; gap: 48px; grid-template-columns: 1fr;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) { .philosophy-inner { grid-template-columns: 1fr 2fr; } }
.philosophy-label h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px;
  color: var(--navy); line-height: 1;
}
.philosophy-body p {
  font-size: 15.5px; line-height: 1.9; color: var(--text-mid); margin-bottom: 22px;
}
.philosophy-body p strong { color: var(--navy); font-weight: 600; }
.pull-quote {
  font-size: clamp(16px, 2.5vw, 20px); font-style: italic; font-weight: 300;
  color: var(--navy); border-left: 3px solid var(--red);
  padding: 14px 0 14px 24px; margin: 28px 0; line-height: 1.6;
}

/* ═══════════════════════════
   SHOP PAGE
═══════════════════════════ */
.shop-banner {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: 24px 28px;
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.shop-banner-icon { font-size: 32px; flex-shrink: 0; }
.shop-banner-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  color: white; margin-bottom: 4px;
}
.shop-banner-text p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }
.shop-banner .btn { margin-left: auto; white-space: nowrap; }

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

.merch-card {
  background: var(--navy-mid);
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.merch-card:hover { transform: translateY(-4px); border-color: rgba(212,43,43,.35); }
.merch-img-wrap {
  background: white;
  aspect-ratio: 1 / 1;
  overflow: hidden; position: relative;
}
.merch-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 16px;
  transition: transform .4s;
}
.merch-card:hover .merch-img-wrap img { transform: scale(1.04); }
.merch-info { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.merch-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red-bright);
}
.merch-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(14px, 2.5vw, 16px); font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: white;
}
.merch-desc {
  font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; margin-top: 4px; flex: 1;
}
.merch-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--red-bright); letter-spacing: 1px; margin-top: 8px;
}
.merch-display-note {
  width: 100%; text-align: center; padding: 10px 16px;
  background: rgba(255,255,255,.04);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.06);
}

.shop-cta-strip {
  background: var(--navy-mid);
  border-radius: 8px; padding: 40px 32px;
  text-align: center; margin-top: 48px;
  border: 1px solid rgba(255,255,255,.07);
}
.shop-cta-strip h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 2px; color: white; margin-bottom: 12px;
}
.shop-cta-strip p { font-size: 15px; color: rgba(255,255,255,.55); margin-bottom: 24px; }

/* ═══════════════════════════
   BOOK SESSION CTA (services)
═══════════════════════════ */
.book-strip {
  background: var(--navy-mid);
  border-top: 3px solid var(--red);
  padding: 40px 0;
}
.book-strip-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 20px;
}
.book-strip-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 38px); letter-spacing: 2px; color: white;
}
.book-strip-text p { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ═══════════════════════════
   FLOATING BOOK BUTTON (mobile)
═══════════════════════════ */
.fab-book {
  position: fixed; bottom: 20px; right: 20px; z-index: 900;
  background: var(--red); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 22px; border-radius: 30px;
  box-shadow: 0 4px 20px rgba(212,43,43,.5);
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.fab-book:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(212,43,43,.6); }
.fab-book .fab-icon { font-size: 16px; }
@media (min-width: 900px) { .fab-book { display: none; } }

/* ═══════════════════════════
   UTILITY
═══════════════════════════ */
.bg-navy     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-dark     { background: #060c18; }
.bg-light    { background: var(--off-white); color: var(--text-dark); }
.text-center { text-align: center; }

/* ═══════════════════════════
   VIDEO ELEMENTS
═══════════════════════════ */

/* Hero video */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Fallback image shows until video loads */
.hero-video-fallback {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  transition: opacity 1.2s ease;
}
.hero-video-fallback.hidden { opacity: 0; }

/* Animated logo sting strip */
.logo-sting-strip {
  background: #000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  height: clamp(100px, 20vw, 180px);
}
.logo-sting-strip video {
  height: 100%; width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Reel section */
.reel-section {
  background: #000;
  position: relative; overflow: hidden;
}
.reel-inner {
  display: grid; gap: 0; grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .reel-inner { grid-template-columns: 1fr 1fr; min-height: 480px; }
}
.reel-video-wrap {
  position: relative; overflow: hidden;
  min-height: 260px;
}
@media (min-width: 900px) { .reel-video-wrap { min-height: 0; } }
.reel-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.reel-text {
  padding: 48px 32px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--navy);
}
@media (min-width: 768px) { .reel-text { padding: 64px 56px; } }
.reel-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 3px; color: white;
  line-height: 1; margin-bottom: 20px;
}
.reel-text p {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,.6); margin-bottom: 28px;
}

/* Portfolio video embed */
.port-reel-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
  border-radius: 4px; overflow: hidden;
  margin-bottom: 12px;
}
.port-reel-wrap video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.port-reel-controls {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35);
  cursor: pointer; transition: background .2s;
}
.port-reel-controls:hover { background: rgba(0,0,0,.15); }
.play-btn {
  width: 64px; height: 64px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: transform .2s, background .2s;
  pointer-events: none;
}
.port-reel-controls:hover .play-btn { transform: scale(1.1); background: var(--red-bright); }
.port-reel-controls.playing { background: transparent; }
.port-reel-controls.playing .play-btn { display: none; }
