/* =========================================================
   DESIGN TOKENS
========================================================= */
:root {
  /* Base colors */
  --white: #ffffff;
  --black: #000000;
  --gray-414: #414141;

  /* Backgrounds */
  --bg: var(--white);
  --bg-soft: #f5f5f7;
  --bg-card: var(--white);

  /* Lines / borders */
  --line: rgba(0, 0, 0, 0.08);

  /* Text */
  --text: var(--black);
  --text-muted: var(--gray-414);

  /* Accents */
  --accent: #5d3a8d;
  --accent-hover: #6c42c2;

  --accent-2: #b07a95;
  --accent-2-hover: #c488a5;

  --accent-light: #e8d7f0;
  --accent-dark: #414141;

  /* Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "Questrial", sans-serif;

  /* Type scale */
  --h1: clamp(2rem, 3vw, 2.8rem);
  --h2: clamp(1.6rem, 2.6vw, 2.3rem);
  --h3: 1.25rem;
  --body: 1.125rem;
  --small: 1rem;

  /* Spacing / layout */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;

  --radius: 16px;
  --maxw: 1100px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Accessibility */
  --focus-ring: 3px solid var(--accent-light);
}

/* =========================================================
   BASE / RESET
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 var(--space-2);
  color: var(--text-muted);
}

small {
  font-size: var(--small);
  color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin: 0 0 var(--space-2);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

/* Utility: visually hidden (for accessible headings/labels) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Only fade normal text links, not nav/buttons */
main a:hover,
footer a:hover {
  opacity: 0.9;
}

a.btn:hover,
.nav a:hover,
.footer-social a:hover {
  opacity: 1;
}

/* GLOBAL REVEAL SYSTEM – DISABLED */
[data-reveal],
[data-stagger],
[data-stagger] > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* =========================================================
   FOCUS STYLES (ADA/WCAG)
========================================================= */
.nav-links a:focus-visible,
.btn:focus-visible,
.footer-social a:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.nav-toggle:focus-visible,
.mobile-menu__close:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 4px;
}

/* =========================================================
   LAYOUT HELPERS
========================================================= */
.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.section {
  padding: var(--space-5) 0;
}

.section-contrast {
  background: var(--bg-soft);
}

.card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: var(--space-3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =========================================================
   NAVIGATION
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 0.75rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
  min-width: 0;
}

.logo img {
  height: 65px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.22s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Support BOTH patterns: class="active" and aria-current="page" */
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}


/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border-radius: 0; /* square corners */
  font-weight: 700;
  font-family: var(--font-heading);
  border: 1px solid transparent;
  transition: transform 0.08s ease, background 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.99);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

/* =========================================================
   WHY CARDS (clickable + hover)
========================================================= */
.why-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.why-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.why-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  border-color: var(--accent);
  background: #fff;
}

/* =========================================================
   HERO (Full-bleed video + split bar)
========================================================= */
.hero-bleed {
  position: relative;
  background: var(--bg);
}

.hero-bleed-media {
  position: relative;
  height: clamp(600px, 100vh, 1050px);
  min-height: 600px;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.hero-bleed-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 60%;
}

.hero-bleed-bar {
  position: relative;
  width: 100%;
  margin-top: -4px;
  background: #050506;
  padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1.6rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.35);

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: center;
}

.hero-bleed-title-inbar {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  font-size: clamp(1.7rem, 2.9vw, 2.35rem);
}

.hero-bleed-services {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  align-items: start;
}

.hero-bleed-services li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.hero-bleed-services li::before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex: 0 0 auto;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .hero-bleed-media {
    height: clamp(380px, 65vh, 650px);
    min-height: 380px;
  }

  .hero-bleed-bar {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hero-bleed-services {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

@media (max-width: 600px) {
  .hero-bleed-bar {
    padding: 1.1rem 1rem;
  }
}

/* =========================================================
   BRANDS MARQUEE
========================================================= */
.brands {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  background: var(--bg);
  overflow: hidden;
}

.brands-title {
  text-align: center;
  margin-bottom: var(--space-3);
}

.brands-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brands-marquee::before,
.brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(40px, 8vw, 140px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  width: max-content;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  animation: brands-scroll 45s linear infinite;
  will-change: transform;
  contain: content;
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

.brand-logo-img {
  height: clamp(88px, 10vw, 160px);
  width: auto;
  opacity: 1;
  filter: none;
  flex: 0 0 auto;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
}

.brand-logo-img:hover {
  filter: grayscale(100%);
  opacity: 0.7;
  transform: translateY(-2px);
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .brands-marquee::before,
  .brands-marquee::after {
    display: none;
  }
}

/* =========================================================
   PITCH / TWO-COLUMN SECTIONS
========================================================= */
.pitch-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.pitch-text p {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: var(--space-3);
}

.pitch-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.fullscale,
.business-video {
  background: var(--bg);
}

.business-video p {
  font-size: 1.125rem;
  max-width: 620px;
  margin-bottom: var(--space-3);
}

.business-video .pitch-text {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.business-video .pitch-text .btn {
  margin-top: 0.5rem;
}

.pitch-media {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-soft);
  min-width: 0;
}

.pitch-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.pitch-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .pitch-grid { grid-template-columns: 1fr; }
  .business-video .pitch-text {
    text-align: left;
    align-items: flex-start;
  }
}

/* =========================================================
   WHY CHOOSE / SERVICES OVERVIEW
========================================================= */
.why {
  background: var(--bg-soft);
}

.why-title {
  text-align: center;
  margin-bottom: var(--space-1);
}

.why-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4);
  font-size: 1.125rem;
}

.why-link {
  display: inline-block;
  margin-top: var(--space-2);
  font-weight: 700;
  color: var(--accent);
}

.why-link:hover {
  color: var(--accent-hover);
  opacity: 1;
}

.local-service-areas p {
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 720px;
  }
/* =========================================================
   FORMS
========================================================= */
.contact-form {
  display: grid;
  gap: var(--space-2);
  max-width: 520px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form select {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
}

.contact-form .btn {
  margin-top: 0.6rem;
  width: fit-content;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
}

.contact-media {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.contact-content {
  max-width: 520px;
}

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

  .contact-content {
    margin: 0 auto;
    text-align: center;
  }

  .contact-form { margin: 0 auto; }

  .contact-form .form-row { grid-template-columns: 1fr; }

  .contact-form .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--accent);
  color: var(--white);
  padding: 1.75rem 0 1.25rem;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: 1.25rem;
}

.footer-logo img {
  height: 150px;
  width: auto;
  display: block;
}

.footer-contact {
  font-size: 1.25rem;
  line-height: 1.9;
  text-align: center;
  justify-self: center;
}

.footer-contact p {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact a {
  color: inherit;
}

.footer-contact a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
  align-items: center;
}

.footer-social a {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.footer-social svg {
  width: 36px;
  height: 36px;
  display: block;
}

.footer-social svg path {
  fill: var(--white) !important;
}

.footer-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0.6rem 0 0.35rem;
}

.footer-bottom {
  grid-column: 2 / 3;
  justify-self: center;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer-bottom--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-intern-link {
  font-size: 0.95rem;
  text-decoration: underline;
  white-space: nowrap;
}

/* Stack nicely on very small screens */
@media (max-width: 480px) {
  .footer-bottom--split {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    text-align: center;
    justify-items: center;
  }

  .footer-social { justify-content: center; }
  .footer-divider { grid-column: 1 / -1; }
  .footer-bottom { grid-column: 1 / -1; }
}

/* =========================================================
   PHOTOGRAPHY GALLERY
========================================================= */
.photo-gallery {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.photo-item {
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  position: relative;
  box-shadow: var(--shadow);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   LIGHTBOX FOR PHOTO GALLERY
========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  cursor: zoom-out;
  padding: 2rem;
}

body.lightbox-open { overflow: hidden; }

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.gallery-img {
  cursor: zoom-in;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: var(--radius);
}

.gallery-img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* =========================================================
   OVERLAY EVENT SECTION
========================================================= */
.event-overlay-section {
  position: relative;
  width: 100%;
  padding: 0 0 var(--space-5);
  margin: 0;
}

.event-bg {
  position: relative;
}

.event-bg img {
  width: 100%;
  max-height: 750px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.event-overlay-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.event-overlay-content {
  pointer-events: auto;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.94);
  padding: var(--space-4);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-list {
  margin-top: var(--space-2);
  padding-left: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 820px) {
  .event-overlay-card {
    position: static;
    transform: none;
    margin-top: -60px;
    width: auto;
    pointer-events: auto;
  }

  .event-overlay-content {
    max-width: 100%;
    padding: var(--space-3);
  }
}

/* =========================================================
   MASONRY-STYLE PHOTO GRID
========================================================= */
.photo-grid {
  column-count: 3;
  column-gap: 0.75rem;
}

.photo-grid img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
  break-inside: avoid;
  border-radius: var(--radius);
  object-fit: cover;
}

@media (max-width: 900px) {
  .photo-grid { column-count: 2; }
}

@media (max-width: 600px) {
  .photo-grid { column-count: 1; }
}

/* =========================================================
   VIDEO PAGE
========================================================= */
.page-video main {
  background: var(--bg);
}

.video-hero {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
  background: linear-gradient(135deg, #f7f4fb, #ffffff);
  border-bottom: 1px solid var(--line);
}

.video-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--space-4);
  align-items: center;
}

.video-hero-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.video-hero-text h1 {
  margin-bottom: 0.8rem;
}

.video-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.video-hero-pills span {
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  background: #fff;
}

.video-hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

@media (max-width: 900px) {
  .video-hero-grid { grid-template-columns: 1fr; }
}

/* Split containers */
.video-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4);
  border-radius: var(--radius);
  margin-top: 0.75rem;
}

.video-split--purple {
  background: linear-gradient(135deg, var(--accent-light), #ffffff);
  border: 1px solid rgba(93, 58, 141, 0.25);
}

.video-split--light {
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.video-split-text h2 {
  margin-bottom: 0.75rem;
}

.video-split-text ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.8;
}

.video-split-media img {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .video-split { grid-template-columns: 1fr; }
}

/* Black band */
.video-band {
  background: #050506;
  color: #ffffff;
  padding: var(--space-4) 0;
}

.video-band .why-title,
.video-band h2,
.video-band h3 {
  color: #ffffff;
}

.video-band p,
.video-band li {
  color: rgba(255, 255, 255, 0.86);
}

.video-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-4);
  align-items: flex-start;
}

.video-band-grid ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .video-band-grid { grid-template-columns: 1fr; }
}

.video-usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.video-usp {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: var(--space-3);
  box-shadow: var(--shadow);
}

.video-gallery-title {
  text-align: center;
  margin-bottom: var(--space-3);
}

.video-gallery {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.video-gallery-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Two-up layout */
.video-two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}

@media (max-width: 900px) {
  .video-two-up { grid-template-columns: 1fr; }
}

.video-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.video-block-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.video-block-text {
  padding: var(--space-3);
}

.video-block-text h2 {
  margin-bottom: var(--space-2);
}

.video-block-text ul {
  margin: 0;
  padding-left: 1.2rem;
}

.video-block-text li {
  margin-bottom: 0.5rem;
}

.video-band-image {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* =========================================================
   MOBILE NAV (Hamburger + Overlay Drawer)
========================================================= */

/* Hide hamburger on desktop */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* When menu is open -> transform into X */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile behavior */
@media (max-width: 820px) {
  .nav-links--desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 420px) {
  .nav-left { gap: 1rem; }
  .logo img { height: 54px; }
}

/* Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: flex-end;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu[hidden] {
  display: none !important;
}

body.menu-open {
  overflow: hidden;
}

/* Right-side drawer */
.mobile-menu__panel {
  width: min(92vw, 360px);
  height: 100%;
  background: var(--white);
  padding: 1.25rem 1.1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.nav-links--mobile {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
}

.nav-links--mobile a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.6rem 0.5rem;
  border-radius: 10px;
}

.nav-links--mobile a:hover {
  background: var(--bg-soft);
  opacity: 1;
}

.mobile-menu__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Hide header CTA on mobile only */
@media (max-width: 820px) {
  .nav-cta {
    display: none;
  }
}
