/* ════════════════════════════════════════════════════
   VDW · ABOUT PAGE STYLES
   Depends on: /assets/css/main.css (design tokens)
   CSS file location: /about/about.css
   Image paths: relative to /about/ → ../assets/images/
   ════════════════════════════════════════════════════ */

/* ── hidden attribute override ── */
[hidden] { display: none !important; }

/* ── Nav active state ── */
.nav-current {
  color: var(--gold-light) !important;
}
.nav-current::after {
  transform: scaleX(1) !important;
}

/* ── Scroll-margin offset for nav ── */
#destinations-strip, #local-mexican-team, #about-gallery, #who-we-are,
#the-vdw-advantage, #meet-the-team-section, #faq, #begin {
  scroll-margin-top: 72px;
}

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--oyster);
  background: var(--jungle);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  background: var(--jungle-mid) url('../assets/images/about/via-destination-weddings-team-cancun.webp') center 40% / cover no-repeat;
  will-change: transform;
  transform: scale(1.06);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(26,46,37,0.55) 0%, rgba(26,46,37,0.10) 70%),
    linear-gradient(180deg, rgba(26,46,37,0.15) 0%, rgba(26,46,37,0.90) 100%);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 48px);
}

.about-hero-eyebrow {
  font-size: clamp(8px, 1.4vw, 10px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 32px;
}

.about-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--oyster);
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
  margin-bottom: 36px;
}

.about-hero-line { display: block; }
.about-hero-h1 em { color: var(--gold-light); font-style: italic; font-weight: 300; }

.about-hero-sub {
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.9;
  color: rgba(249,248,246,0.80);
  max-width: 540px;
  margin: 0 auto 44px;
}

.about-hero-ctas {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .about-hero-ctas { gap: 20px; }
}

/* Hero line animation initial state */
.about-hero-line {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.about-hero-line.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════
   DESTINATIONS STRIP
   ════════════════════════════════════════════════════ */
.about-destinations {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--oyster);
  border-bottom: 1px solid rgba(184,150,12,0.12);
}

.about-dest-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.about-dest-header .label { margin-bottom: 0; }

.about-dest-tagline {
  font-family: var(--serif);
  font-size: clamp(13px, 1.5vw, 16px);
  font-style: italic;
  color: var(--muted);
  max-width: 480px;
  text-align: right;
  line-height: 1.5;
}

.about-dest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.2vw, 12px);
}

.about-dest-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid rgba(184,150,12,0.32);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jungle);
  text-decoration: none;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), color 0.4s ease, transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.about-dest-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--jungle);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: 0;
}

.about-dest-chip span,
.about-dest-chip { position: relative; z-index: 1; }

.about-dest-chip:hover {
  color: var(--gold-light);
  border-color: var(--jungle);
}

.about-dest-chip:hover::before { transform: scaleX(1); }

.about-dest-chip:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .about-dest-header { flex-direction: column; }
  .about-dest-tagline { text-align: left; }
  .about-dest-chip { font-size: 9px; padding: 8px 16px; }
}

/* ════════════════════════════════════════════════════
   EDITORIAL GALLERY
   ════════════════════════════════════════════════════ */
/* Interactive local team tour */
.about-virtual-team {
  padding: clamp(76px, 10vw, 128px) 0;
  background: var(--jungle);
  color: var(--oyster);
  overflow: hidden;
}

.about-virtual-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.about-virtual-team .label {
  color: var(--gold-light);
  margin-bottom: 22px;
}

.about-virtual-title {
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--oyster);
}

.about-virtual-copy {
  color: rgba(249,248,246,0.66);
  font-size: clamp(13px, 1.35vw, 14.5px);
  line-height: 1.9;
}

.about-tour-shell {
  border: 1px solid rgba(212,174,48,0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(212,174,48,0.12), transparent 38%),
    rgba(15,28,22,0.72);
  box-shadow: 0 28px 90px rgba(0,0,0,0.22);
}

.about-tour-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15,28,22,0.34), rgba(15,28,22,0.94)),
    url('../assets/images/services/full-service-wedding-vdw.jpg') center / cover no-repeat;
}

.about-tour-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 500ms var(--ease);
}

.about-tour-shell.is-active .about-tour-frame {
  opacity: 1;
}

.about-tour-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 54px);
  background:
    radial-gradient(circle at 50% 44%, rgba(212,174,48,0.18), transparent 38%),
    linear-gradient(180deg, rgba(15,28,22,0.24), rgba(15,28,22,0.84));
  text-align: center;
  transition: opacity 450ms var(--ease), visibility 450ms var(--ease);
  z-index: 2;
}

.about-tour-shell.is-active .about-tour-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-tour-cover-inner {
  max-width: 440px;
}

.about-tour-play {
  width: clamp(72px, 8vw, 96px);
  height: clamp(72px, 8vw, 96px);
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,238,174,0.72);
  background: rgba(184,150,12,0.88);
  color: var(--oyster);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 9px rgba(212,174,48,0.10), 0 20px 45px rgba(0,0,0,0.26);
  transition: transform 350ms var(--ease), background 350ms ease, box-shadow 350ms ease;
}

.about-tour-play:hover {
  transform: scale(1.06);
  background: var(--gold-light);
  color: var(--jungle);
  box-shadow: 0 0 0 12px rgba(212,174,48,0.12), 0 24px 54px rgba(0,0,0,0.30);
}

.about-tour-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid currentColor;
}

.about-tour-kicker {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-tour-instruction {
  color: rgba(249,248,246,0.72);
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-style: italic;
  line-height: 1.55;
}

.about-tour-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: clamp(14px, 2vw, 20px);
  border-top: 1px solid rgba(212,174,48,0.18);
}

.about-tour-control {
  min-height: 40px;
  border: 1px solid rgba(212,174,48,0.34);
  padding: 12px 16px;
  color: rgba(249,248,246,0.74);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 260ms ease, color 260ms ease, background 260ms ease, transform 260ms var(--ease);
}

.about-tour-control:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.about-tour-control--primary {
  border-color: var(--gold);
  background: rgba(184,150,12,0.18);
  color: var(--gold-light);
}

@media (max-width: 860px) {
  .about-virtual-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .about-tour-stage {
    aspect-ratio: 4 / 5;
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .about-tour-shell,
  .about-tour-stage,
  .about-tour-frame,
  .about-tour-cover {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-tour-controls {
    display: grid;
    grid-template-columns: 1fr;
  }
  .about-tour-control {
    text-align: center;
  }
  .about-tour-stage {
    min-height: 470px;
  }
}

.about-gallery {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--sand);
  overflow: hidden;
}

.about-gallery .section-head {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 72px);
}

/* 6-column grid, portrait items */
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(6px, 0.8vw, 10px);
  padding: 0 clamp(12px, 2vw, 24px);
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .about-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
}

/* Gallery item */
.about-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--jungle-mid);
}

/* Photo */
.about-gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.8s var(--ease);
  will-change: transform;
}
.about-gallery-photo:hover img { transform: scale(1.06); }

/* Video */
.about-gallery-video .about-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.8s var(--ease);
  will-change: transform;
}
.about-gallery-video.is-playing .about-vid { transform: none; }

/* Fallback poster background (CSS) */
.about-gallery-video {
  background: var(--jungle-mid);
}

/* Gradient veil */
.about-gallery-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,28,22,0.05) 0%,
    rgba(15,28,22,0.45) 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}
.about-gallery-video.is-playing .about-gallery-veil { opacity: 0; pointer-events: none; }

/* Play button */
.about-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(184,150,12,0.88);
  border: 1.5px solid var(--gold-light);
  color: var(--oyster);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s var(--ease), opacity 0.4s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding-left: 3px; /* optical centering for triangle */
}

.about-play-btn:hover {
  background: var(--gold-light);
  transform: translate(-50%, -50%) scale(1.1);
}

.about-play-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.about-gallery-video.is-playing .about-play-btn { opacity: 0; pointer-events: none; }

/* Gold top-line on hover */
.about-gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.7s var(--ease);
  z-index: 4;
}
.about-gallery-item:hover::before { width: 100%; }

/* ════════════════════════════════════════════════════
   WHO WE ARE
   ════════════════════════════════════════════════════ */
.about-who {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--oyster);
}

.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 96px);
}

@media (max-width: 860px) {
  .about-who-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-who-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--jungle);
  line-height: 1.1;
  margin: 24px 0 28px;
}
.about-who-h2 em { color: var(--gold); font-style: italic; font-weight: 400; }

.about-who-body {
  font-size: clamp(13px, 1.4vw, 14.5px);
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-who-visual {
  position: relative;
}

.about-who-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: clamp(420px, 44vw, 560px);
  border: 1px solid rgba(184,150,12,0.25);
  background: var(--sand);
}

.about-who-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s var(--ease);
}

.about-who-photo:hover img {
  transform: scale(1.035);
}

.about-who-photo::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(15,28,22,0.76));
  pointer-events: none;
}

.about-who-photo figcaption {
  position: absolute;
  left: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 1;
  color: rgba(249,248,246,0.84);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-style: italic;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0,0,0,0.36);
}

.about-since-block,
.about-since-year,
.about-since-divider,
.about-since-label {
  display: none;
}

@media (max-width: 860px) {
  .about-who-photo {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .about-who-photo {
    min-height: 360px;
  }

  .about-who-photo img {
    object-position: center top;
  }
}

/* Feature cards */
.about-who-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  border-top: 1px solid rgba(184,150,12,0.15);
  padding-top: clamp(40px, 5vw, 60px);
}

@media (max-width: 900px)  { .about-who-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .about-who-cards { grid-template-columns: 1fr; } }

.about-who-card {
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
  border: 1px solid rgba(184,150,12,0.15);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}

.about-who-card:hover {
  border-color: rgba(184,150,12,0.4);
  transform: translateY(-3px);
}

.about-who-card-icon {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 14px;
}

.about-who-card-title {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--jungle);
  font-weight: 400;
  margin-bottom: 10px;
}

.about-who-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

/* ════════════════════════════════════════════════════
   WHAT YOU ACTUALLY GET (ADVANTAGE)
   ════════════════════════════════════════════════════ */
.about-advantage {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--sand);
}

.about-advantage .section-h2 em { color: var(--gold); }

/* YouTube embed */
.about-yt-wrap {
  max-width: 800px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  border: 1px solid rgba(184,150,12,0.2);
}

.about-yt-inner {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.about-yt-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Benefit cards */
.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}

@media (max-width: 1000px) { .about-benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .about-benefit-grid { grid-template-columns: 1fr; } }

.about-benefit-card {
  background: var(--oyster);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}

.about-benefit-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
}

/* Wide card spans 2 columns at desktop */
.about-benefit-card--wide {
  grid-column: span 2;
}

@media (max-width: 1000px) {
  .about-benefit-card--wide { grid-column: span 2; }
}

@media (max-width: 520px) {
  .about-benefit-card--wide { grid-column: span 1; }
}

.about-benefit-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 12px;
  opacity: 0.6;
  line-height: 1;
}

.about-benefit-title {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--jungle);
  font-weight: 400;
  margin-bottom: 12px;
}

.about-benefit-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}

/* ════════════════════════════════════════════════════
   MEET YOUR TEAM
   ════════════════════════════════════════════════════ */
.about-team {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--oyster);
}

.about-team-head {
  max-width: 820px;
  margin: 0 auto clamp(42px, 6vw, 74px);
  text-align: center;
}

.about-team-head .label {
  display: block;
}

.about-team-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--jungle);
  line-height: 1.1;
  margin: 24px auto 28px;
}
.about-team-h2 em { color: var(--gold); font-style: italic; font-weight: 400; }

.about-team-body {
  max-width: 690px;
  margin: 0 auto;
  font-size: clamp(13px, 1.4vw, 14.5px);
  color: var(--muted);
  line-height: 1.9;
}

.about-team-directory {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.about-team-card {
  position: relative;
  grid-column: span 2;
  min-height: clamp(440px, 48vw, 560px);
  overflow: hidden;
  background: var(--jungle);
  border: 1px solid rgba(184,150,12,0.18);
  color: var(--oyster);
  isolation: isolate;
}

.about-team-card--founder {
  grid-column: span 3;
}

.about-team-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(0.98);
  transition: transform 1.3s var(--ease), filter 1.3s var(--ease);
}

.about-team-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,28,22,0.04) 0%, rgba(15,28,22,0.24) 44%, rgba(15,28,22,0.9) 100%),
    linear-gradient(90deg, rgba(15,28,22,0.54), rgba(15,28,22,0.06) 58%);
  transition: background 0.65s var(--ease);
}

.about-team-card-copy {
  position: absolute;
  left: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  bottom: clamp(20px, 3vw, 30px);
  z-index: 2;
  transform: translateY(calc(100% - 76px));
  transition: transform 0.72s var(--ease);
}

.about-team-card-role {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.55;
  text-transform: uppercase;
}

.about-team-card h3 {
  margin: 0 0 18px;
  color: var(--oyster);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 300;
  line-height: 0.98;
}

.about-team-card-copy p:last-child {
  margin: 0;
  max-width: 560px;
  color: rgba(249,248,246,0.78);
  font-size: 12.5px;
  line-height: 1.82;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s var(--ease);
}

.about-team-card:hover img,
.about-team-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.02);
}

.about-team-card:hover .about-team-card-shade,
.about-team-card:focus-visible .about-team-card-shade {
  background:
    linear-gradient(180deg, rgba(15,28,22,0.16) 0%, rgba(15,28,22,0.5) 36%, rgba(15,28,22,0.96) 100%),
    linear-gradient(90deg, rgba(15,28,22,0.7), rgba(15,28,22,0.22) 62%);
}

.about-team-card:hover .about-team-card-copy,
.about-team-card:focus-visible .about-team-card-copy {
  transform: translateY(0);
}

.about-team-card:hover .about-team-card-copy p:last-child,
.about-team-card:focus-visible .about-team-card-copy p:last-child {
  opacity: 1;
  transform: translateY(0);
}

.about-team-card:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .about-team-card,
  .about-team-card--founder {
    grid-column: span 3;
  }
}

@media (max-width: 680px) {
  .about-team-head {
    text-align: left;
  }

  .about-team-directory {
    grid-template-columns: 1fr;
  }

  .about-team-card,
  .about-team-card--founder {
    grid-column: auto;
    min-height: 560px;
  }

  .about-team-card-copy {
    transform: none;
  }

  .about-team-card-copy p:last-child {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 460px) {
  .about-team-card,
  .about-team-card--founder {
    min-height: 620px;
  }
}

/* ════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════ */
/* Couple reviews */
.about-reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 12vw, 148px) 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(212,174,48,0.12), transparent 28rem),
    linear-gradient(180deg, var(--oyster), #f2ede3 58%, var(--oyster));
}

.about-reviews::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(184,150,12,0.14);
  pointer-events: none;
}

.about-reviews-head {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  text-align: center;
}

.about-reviews-head .label {
  display: block;
}

.about-reviews-h2 {
  margin: 22px 0 24px;
  color: var(--jungle);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  font-weight: 300;
  line-height: 1.04;
}

.about-reviews-h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.about-reviews-body {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(13px, 1.3vw, 14.5px);
  line-height: 1.9;
}

.about-reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.about-review-shorts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  width: 100%;
}

.review-video-card {
  min-width: 0;
}

.review-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--jungle-deep);
  border: 1px solid rgba(184,150,12,0.24);
  box-shadow: 0 28px 72px rgba(15,28,22,0.16);
  isolation: isolate;
}

.review-video-frame iframe,
.review-video-loader,
.review-video-loader img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.review-video-frame iframe {
  border: 0;
}

.review-video-loader {
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--jungle-deep);
  color: var(--oyster);
}

.review-video-loader img {
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.94) contrast(1.02);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.review-video-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(212,174,48,0.18), transparent 28%),
    linear-gradient(180deg, rgba(15,28,22,0.05), rgba(15,28,22,0.84));
}

.review-video-play {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vw, 38px);
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(240,228,168,0.72);
  border-radius: 999px;
  background: rgba(15,28,22,0.46);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(212,174,48,0.22);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease, background 0.45s ease;
}

.review-video-loader:hover img,
.review-video-loader:focus-visible img {
  transform: scale(1.1);
  filter: saturate(1.02) contrast(1.05);
}

.review-video-loader:hover .review-video-play,
.review-video-loader:focus-visible .review-video-play {
  transform: translateX(-50%) translateY(-4px);
  background: rgba(184,150,12,0.2);
  box-shadow: 0 0 46px rgba(212,174,48,0.42);
}

.review-video-loader:focus-visible,
.review-video-controls button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.review-video-controls {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.review-video-controls button {
  flex: 1 1 0;
  min-height: 42px;
  border: 1px solid rgba(184,150,12,0.24);
  background: rgba(255,255,255,0.74);
  color: var(--jungle);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.review-video-controls button:hover:not(:disabled) {
  border-color: rgba(184,150,12,0.5);
  background: var(--jungle);
  color: var(--gold-light);
}

.review-video-controls button:disabled {
  opacity: 0.48;
}

.review-video-card.is-native-fallback .review-video-controls {
  display: none;
}

.review-video-status {
  min-height: 18px;
  margin: 9px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.45;
}

.about-weddingwire-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  min-width: 0;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(212,174,48,0.14), transparent 58%),
    rgba(255,255,255,0.84);
  border: 1px solid rgba(184,150,12,0.18);
  box-shadow: 0 30px 80px rgba(15,28,22,0.09);
}

.about-weddingwire-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-weddingwire-panel h3 {
  margin: 0 0 16px;
  color: var(--jungle);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 300;
  line-height: 1.04;
}

.about-weddingwire-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.about-weddingwire-widget {
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  overflow: hidden;
}

#wp-widget-reviews,
#wp-widget-preview,
#wp-widget-reviews * {
  max-width: 100%;
  box-sizing: border-box;
}

#wp-widget-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

#wp-widget-preview a {
  color: var(--jungle);
  border-bottom: 1px solid rgba(184,150,12,0.42);
}

#wp-widget-preview img {
  width: auto;
  max-width: 150px;
  height: 20px;
}

#wp-widget-reviews iframe,
.about-weddingwire-widget iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.about-weddingwire-note {
  margin-top: 18px;
  color: rgba(26,46,37,0.58) !important;
  font-size: 11px !important;
  font-style: italic;
}

@media (max-width: 1080px) {
  .about-reviews-layout {
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 28px;
  }

  .about-weddingwire-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .about-reviews-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-review-shorts {
    max-width: 430px;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .about-reviews::before {
    inset: 14px;
  }

  .about-reviews-head {
    text-align: left;
  }

  .about-review-shorts {
    grid-template-columns: minmax(0, 1fr);
    max-width: 430px;
    margin-inline: auto;
  }

  .about-weddingwire-panel {
    padding: 24px;
  }
}

.about-faq {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--jungle-deep);
}

.about-faq .section-h2 { color: var(--oyster); }
.about-faq .section-h2 em { color: var(--gold-light); }
.about-faq .section-sub { color: rgba(249,248,246,0.60); }
.about-faq .label { color: var(--gold-light); }

.about-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.about-faq-item {
  border-bottom: 1px solid rgba(212,174,48,0.15);
}

.about-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--oyster);
  line-height: 1.4;
  transition: color 0.4s ease;
}

.about-faq-q:hover { color: var(--gold-light); }

.about-faq-q:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* Plus/minus icon */
.about-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(212,174,48,0.35);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.about-faq-icon::before,
.about-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.4s ease;
}

.about-faq-icon::before { width: 8px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.about-faq-icon::after  { width: 1px; height: 8px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.about-faq-q[aria-expanded="true"] .about-faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.about-faq-q[aria-expanded="true"] .about-faq-icon::before,
.about-faq-q[aria-expanded="true"] .about-faq-icon::after { background: var(--jungle); }
.about-faq-q[aria-expanded="true"] .about-faq-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }

.about-faq-a {
  padding-bottom: 22px;
  animation: aboutFadeIn 0.35s ease;
}

.about-faq-a p {
  font-size: clamp(13px, 1.3vw, 14px);
  color: rgba(249,248,246,0.68);
  line-height: 1.9;
}

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

/* ════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════ */
.about-cta-final {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--jungle);
  color: var(--oyster);
  text-align: center;
  overflow: hidden;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(184,150,12,0.07), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(36,61,49,0.55), transparent 55%);
}

.about-cta-bg::before, .about-cta-bg::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  background: rgba(184,150,12,0.5);
  transform: translateX(-50%);
}
.about-cta-bg::before { top: 0; height: 72px; }
.about-cta-bg::after  { bottom: 0; height: 72px; }

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.about-cta-content .label {
  display: block;
  margin-bottom: 32px;
  color: var(--gold-light);
}

.about-cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 300;
  color: var(--oyster);
  line-height: 1.12;
  margin-bottom: 32px;
}
.about-cta-h2 em { color: var(--gold-light); font-style: italic; }

.about-cta-body {
  font-size: clamp(13px, 1.5vw, 14.5px);
  color: rgba(249,248,246,0.68);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto 44px;
}

.about-cta-trust {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
}

/* ════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .about-hero-bg              { transition: none !important; }
  .about-gallery-photo img,
  .about-gallery-video .about-vid { transition: none !important; }
  .about-who-card,
  .about-benefit-card         { transition: none !important; }
  .about-dest-chip::before    { transition: none !important; }
  .about-hero-line            { transition: none !important; }
  @keyframes aboutFadeIn      { from {} to {} }
}

/* About experience refresh */
.about-gallery {
  background:
    radial-gradient(circle at 14% 10%, rgba(184,150,12,0.08), transparent 34%),
    linear-gradient(180deg, var(--sand) 0%, #f8f5ef 100%);
}

.about-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  max-width: min(1280px, calc(100% - 32px));
  padding: 0;
}

.about-gallery-item {
  aspect-ratio: 4 / 5;
  min-height: clamp(430px, 42vw, 640px);
  border: 1px solid rgba(184,150,12,0.22);
  border-radius: 2px;
  box-shadow: 0 24px 70px rgba(15,28,22,0.12);
  isolation: isolate;
}

.about-gallery-item::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(249,248,246,0.22);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.about-gallery-item:hover::after,
.about-gallery-item:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.about-gallery-video .about-vid,
.about-gallery-photo img {
  object-position: center;
}

.about-gallery-video.is-playing .about-gallery-veil {
  opacity: 0.25;
}

.about-play-btn {
  box-shadow: 0 16px 44px rgba(0,0,0,0.22), inset 0 0 0 8px rgba(249,248,246,0.08);
}

.about-gallery-video.is-playing .about-play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.about-video-controls {
  position: absolute;
  left: clamp(12px, 2vw, 18px);
  right: clamp(12px, 2vw, 18px);
  bottom: clamp(12px, 2vw, 18px);
  z-index: 5;
  display: grid;
  grid-template-columns: auto auto minmax(120px, 1fr);
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(249,248,246,0.24);
  background: rgba(15,28,22,0.62);
  color: var(--oyster);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}

.about-gallery-video:hover .about-video-controls,
.about-gallery-video:focus-within .about-video-controls,
.about-gallery-video.is-playing .about-video-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.about-video-toggle,
.about-video-mute {
  appearance: none;
  border: 1px solid rgba(212,174,48,0.42);
  background: rgba(249,248,246,0.08);
  color: var(--oyster);
  cursor: pointer;
  min-height: 34px;
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.about-video-toggle:hover,
.about-video-toggle:focus-visible,
.about-video-mute:hover,
.about-video-mute:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--jungle);
  outline: none;
}

.about-video-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.about-video-volume span {
  color: rgba(249,248,246,0.74);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-video-range {
  width: 100%;
  min-width: 78px;
  accent-color: var(--gold-light);
  cursor: pointer;
}

.about-video-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 72px;
  z-index: 5;
  margin: 0;
  color: var(--oyster);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  pointer-events: none;
}

.about-gallery-video.is-error .about-video-status {
  padding: 8px 10px;
  border: 1px solid rgba(212,174,48,0.35);
  background: rgba(15,28,22,0.72);
}

.about-who {
  position: relative;
  background:
    radial-gradient(circle at 92% 12%, rgba(184,150,12,0.08), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, var(--oyster) 100%);
  overflow: hidden;
}

.about-who::before {
  content: "";
  position: absolute;
  inset: 42px clamp(18px, 5vw, 72px);
  border: 1px solid rgba(184,150,12,0.10);
  pointer-events: none;
}

.about-who .container {
  position: relative;
  z-index: 1;
}

.about-who-h2 {
  max-width: 680px;
}

.about-who-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(184,150,12,0.18);
  background: rgba(184,150,12,0.18);
  box-shadow: 0 22px 50px rgba(15,28,22,0.08);
}

.about-who-signal {
  min-height: 124px;
  padding: clamp(18px, 2.2vw, 26px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(249,248,246,0.82)),
    var(--oyster);
}

.about-who-signal strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 300;
  color: var(--jungle);
  line-height: 1;
}

.about-who-signal span {
  display: block;
  max-width: 180px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-who-photo {
  aspect-ratio: 4 / 5;
  min-height: auto;
  box-shadow: 0 30px 80px rgba(15,28,22,0.18);
}

.about-who-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(249,248,246,0.28);
  z-index: 1;
  pointer-events: none;
}

.about-who-photo img {
  min-height: 0;
}

.about-who-cards {
  border-top: 0;
  padding-top: 0;
}

.about-who-card {
  position: relative;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,248,246,0.84)),
    var(--oyster);
  box-shadow: 0 18px 48px rgba(15,28,22,0.07);
  overflow: hidden;
}

.about-who-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: translateX(-35%);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s ease;
}

.about-who-card:hover::before,
.about-who-card:focus-within::before {
  transform: translateX(0);
  opacity: 1;
}

.about-faq {
  background:
    radial-gradient(circle at 10% 0%, rgba(212,174,48,0.12), transparent 32%),
    radial-gradient(circle at 88% 72%, rgba(212,174,48,0.08), transparent 30%),
    var(--jungle-deep);
}

.about-faq-list {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-faq-item {
  border: 1px solid rgba(212,174,48,0.16);
  background: rgba(249,248,246,0.035);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease);
}

.about-faq-item:hover,
.about-faq-item:focus-within {
  background: rgba(249,248,246,0.065);
  border-color: rgba(212,174,48,0.34);
  transform: translateY(-2px);
}

.about-faq-q {
  padding: clamp(18px, 2vw, 24px);
}

.about-faq-a {
  padding: 0 clamp(18px, 2vw, 24px) 24px;
}

@media (max-width: 1100px) {
  .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-gallery-grid,
  .about-faq-list {
    grid-template-columns: 1fr;
  }

  .about-gallery-item {
    min-height: min(560px, 118vw);
  }

  .about-video-controls {
    grid-template-columns: 1fr 1fr;
  }

  .about-video-volume {
    grid-column: 1 / -1;
  }

  .about-who-signals {
    grid-template-columns: 1fr;
  }

  .about-who::before {
    inset: 24px 14px;
  }
}

@media (hover: none) {
  .about-video-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-gallery-item::after,
  .about-video-controls,
  .about-video-toggle,
  .about-video-mute,
  .about-who-card::before,
  .about-faq-item {
    transition: none !important;
  }
}

/* Vertical video handling */
.about-gallery-video {
  --about-video-frame-gap: clamp(20px, 2.6vw, 36px);
  background:
    linear-gradient(180deg, rgba(15,28,22,0.28), rgba(15,28,22,0.58)),
    var(--about-video-poster, none) center / cover no-repeat,
    var(--jungle-mid);
}

.about-gallery-video .about-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: calc(100% - var(--about-video-frame-gap));
  height: calc(100% - var(--about-video-frame-gap));
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: rgba(15,28,22,0.28);
  border: 1px solid rgba(249,248,246,0.18);
  box-shadow: 0 18px 54px rgba(0,0,0,0.22);
  transform: translate(-50%, -50%);
}

.about-gallery-video.is-playing .about-vid,
.about-gallery-video:hover .about-vid {
  transform: translate(-50%, -50%);
}

.about-gallery-video .about-gallery-veil {
  z-index: 3;
  background:
    radial-gradient(circle at 50% 44%, transparent 0 34%, rgba(15,28,22,0.22) 70%),
    linear-gradient(180deg, rgba(15,28,22,0.04) 0%, rgba(15,28,22,0.40) 100%);
}

.about-gallery-video.is-playing .about-gallery-veil {
  opacity: 0.12;
}

.about-gallery-video .about-play-btn {
  z-index: 5;
}

.about-gallery-video .about-video-controls,
.about-gallery-video .about-video-status {
  z-index: 6;
}

@media (max-width: 760px) {
  .about-gallery-video {
    --about-video-frame-gap: 18px;
  }
}

/* Gallery layout hardening: prevents media cards from outgrowing CSS grid tracks. */
.about-gallery-grid {
  width: min(1280px, calc(100vw - clamp(32px, 7vw, 96px)));
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
  justify-items: stretch;
}

.about-gallery-item {
  width: 100%;
  min-width: 0;
  min-height: 0 !important;
  height: auto;
  aspect-ratio: 4 / 5;
  contain: layout paint;
}

.about-gallery-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-gallery-video .about-vid {
  width: calc(100% - var(--about-video-frame-gap));
  height: calc(100% - var(--about-video-frame-gap));
}

@media (max-width: 1180px) {
  .about-gallery-grid {
    width: min(980px, calc(100vw - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-gallery-grid {
    width: min(460px, calc(100vw - 32px));
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}
