/* Amy Young Media — new portfolio (standalone /new) */
:root {
  --bg: #070605;
  --bg-elevated: #0f0d0a;
  --surface: #16130f;
  --line: rgba(201, 169, 98, 0.22);
  --text: #e8e2d8;
  --muted: #9a8f7e;
  --accent: #d4b968;
  --accent-dim: #8a7344;
  --danger: #c45c5c;
  --ok: #6bbf8a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", var(--font);
  --step--1: clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --step-1: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  --step-2: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --step-3: clamp(2rem, 1.5rem + 2vw, 3rem);
  --step-4: clamp(2.75rem, 2rem + 3vw, 4.25rem);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 185, 104, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(80, 60, 30, 0.15), transparent 50%),
    linear-gradient(180deg, #0a0908 0%, var(--bg) 40%);
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #f0e6c8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #111;
  z-index: 100;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  left: 0.5rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 5, 0.72);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(100% - 2rem, calc(var(--max) + 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.site-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.site-logo:hover {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--step--1);
  padding: 0.35rem 0.2rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav__cta {
  border: 1px solid var(--line);
  padding: 0.45rem 1rem !important;
  background: linear-gradient(145deg, rgba(212, 185, 104, 0.12), transparent);
}

.site-nav__cta:hover {
  border-color: var(--accent-dim);
  background: rgba(212, 185, 104, 0.18);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-toggle__bar::before {
  top: 14px;
}

.nav-toggle__bar::after {
  bottom: 14px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(10, 9, 8, 0.96);
    border-bottom: 1px solid var(--line);
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-header__inner {
    position: relative;
  }

  body.nav-open .nav-toggle__bar {
    opacity: 0;
  }

  body.nav-open .nav-toggle__bar::before {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
  }

  body.nav-open .nav-toggle__bar::after {
    bottom: 21px;
    transform: translateX(-50%) rotate(-45deg);
  }
}

/* Hero */
.hero {
  padding-block: clamp(2rem, 6vw, 4rem) 3rem;
}

.hero--split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  /* row-gap: strip/showreel row → quote/CTA row; column-gap: between columns */
  gap: clamp(1rem, 2.5vw, 1.75rem) clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  width: min(100% - 2.5rem, calc(var(--max) + 80px));
  margin-inline: auto;
}

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

  .hero__strip {
    height: auto;
  }

  .hero__showreel-col .video-shell--hero,
  .hero__showreel-col .video-placeholder {
    margin-bottom: 1.75rem;
  }

  .hero__showreel-col {
    display: block;
    height: auto;
  }
}

/* Left column row 1: hero image strip only */
.hero__strip {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-self: start;
}

.hero__frame {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* DaVinci strip — tall box + object-fit:contain = full image visible (no crop) */
.hero__visual-fill {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  margin-top: clamp(0.5rem, 1.5vw, 0.85rem);
  width: 100%;
  min-height: clamp(14rem, 42vw, 26rem);
  height: clamp(14rem, 42vw, 26rem);
  max-height: 30rem;
  padding: 0.35rem 0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 169, 98, 0.2);
  background:
    repeating-linear-gradient(
      -28deg,
      rgba(212, 185, 104, 0.05) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(165deg, rgba(28, 24, 18, 0.95) 0%, rgba(10, 9, 7, 0.65) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hero__fill-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-sm) - 2px);
}

.hero__fill-davinci {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  /* Slight lift so the screenshot reads on dark UI */
  filter: brightness(1.06) contrast(1.05) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55));
}

.hero__panel {
  flex: 0 0 auto;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  position: relative;
  padding: 1rem 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(212, 185, 104, 0.07) 0%, transparent 42%),
    var(--surface);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero__film-edge {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0 8px,
    rgba(212, 185, 104, 0.35) 8px 9px,
    rgba(0, 0, 0, 0.35) 9px 17px,
    transparent 17px 22px
  );
  opacity: 0.85;
  border-radius: var(--radius) var(--radius) 0 0;
}

.hero__badge-row {
  list-style: none;
  margin: 0.35rem 0 0.65rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: rgba(0, 0, 0, 0.35);
}

.hero__panel-kicker {
  margin: 0;
  font-size: var(--step--1);
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  max-width: 28ch;
}

.hero__panel--roles .hero__panel-kicker {
  margin-top: 0.35rem;
}

.hero__panel--roles .hero__badge-row + .hero__panel-kicker {
  margin-top: 0;
}

/* Right column row 1: showreel + labels */
.hero__showreel-col {
  display: flex;
  flex-direction: column;
  align-self: start;
  min-width: 0;
  min-height: 0;
  padding-top: 0.5rem;
}

.hero--split > .hero__panel--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  min-width: 0;
  min-height: 0;
  padding: clamp(1.35rem, 3.2vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(201, 169, 98, 0.22);
  background:
    linear-gradient(155deg, rgba(212, 185, 104, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.85) 0%, rgba(8, 7, 6, 0.65) 100%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero__showreel-col .video-shell--hero,
.hero__showreel-col .video-placeholder {
  margin-bottom: 0;
}

.hero__cta-pills {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.15rem;
}

.hero__cta-pills .btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.78rem, 0.72rem + 0.2vw, 0.88rem);
  padding-block: 0.68rem;
  padding-inline: 0.45rem;
  min-height: 2.85rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero__cta-pills .btn--contact {
  padding-block: 0.68rem;
  padding-inline: 0.55rem;
  font-size: clamp(0.78rem, 0.72rem + 0.2vw, 0.88rem);
}

@media (max-width: 960px) {
  .hero__visual-fill {
    min-height: clamp(11rem, 55vw, 20rem);
    height: clamp(11rem, 55vw, 20rem);
    max-height: 24rem;
  }
}

.eyebrow {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--step-4);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__title--logo {
  line-height: 0;
}

.hero__logo-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hero__logo {
  width: min(100%, 520px);
  height: auto;
  display: block;
  object-fit: contain;
}

.hero__name {
  background: linear-gradient(120deg, #fff 0%, var(--accent) 55%, #c49a3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__showreel-label {
  margin: 0 0 1.25rem;
  font-size: var(--step-1);
  color: var(--muted);
}

.hero__year {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  background: rgba(212, 185, 104, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: var(--step--1);
}

.video-shell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16/9;
}

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

.video-shell--hero {
  margin-bottom: 1.75rem;
}

.video-placeholder {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.video-placeholder__label {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-dim);
}

.video-placeholder__slotid {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-family: ui-monospace, system-ui, monospace;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.video-placeholder__slotid strong {
  color: var(--accent);
  font-weight: 600;
}

.video-placeholder__hint {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.55;
}

.pullquote {
  margin: 0 0 1.75rem;
  padding: 0;
  border: none;
  font-size: var(--step-1);
  font-style: italic;
  color: #dcd4c4;
  line-height: 1.5;
}

.pullquote p {
  margin: 0;
}

/* Quote — grid row 2 col 1; stretches to match CTA in same row */
.hero__quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
  min-width: 0;
  min-height: 0;
  padding: clamp(1.35rem, 3.2vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(201, 169, 98, 0.22);
  background:
    linear-gradient(155deg, rgba(212, 185, 104, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.85) 0%, rgba(8, 7, 6, 0.65) 100%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pullquote--hero {
  margin: 0;
  padding: 0.15rem 0 0.15rem 1.15rem;
  border: none;
  border-left: 3px solid rgba(212, 185, 104, 0.55);
  box-shadow: inset 3px 0 12px -3px rgba(212, 185, 104, 0.12);
  font-family: var(--font);
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: #ebe4d8;
}

.pullquote--hero p {
  position: relative;
  padding-left: 0.35rem;
}

.pullquote--hero p::before {
  content: "\201C";
  position: absolute;
  left: -0.5rem;
  top: -0.35em;
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  color: rgba(212, 185, 104, 0.18);
  pointer-events: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0;
}

.btn--contact {
  padding-inline: 1.5rem;
  border-color: rgba(212, 185, 104, 0.35);
  background: rgba(212, 185, 104, 0.08);
}

.btn--contact:hover {
  border-color: var(--accent);
  background: rgba(212, 185, 104, 0.14);
  color: #faf6ee;
}

.social-row--hero {
  gap: 0.5rem 0.65rem;
  margin: 0;
}

.social-row--hero a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(201, 169, 98, 0.22);
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

.social-row--hero a:hover {
  color: var(--accent);
  border-color: rgba(212, 185, 104, 0.45);
  background: rgba(212, 185, 104, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 620px) {
  .hero__actions {
    justify-content: flex-start;
  }

  .social-row--hero {
    justify-content: flex-start;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step--1);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(145deg, #e8d4a0, #c9a24a);
  color: #1a1408;
  box-shadow: 0 12px 40px rgba(201, 162, 74, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 16px 48px rgba(201, 162, 74, 0.35);
  color: #120e06;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover {
  border-color: var(--accent-dim);
  background: rgba(212, 185, 104, 0.08);
}

.social-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.social-row:not(.social-row--hero) a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--step--1);
}

.social-row:not(.social-row--hero) a:hover {
  color: var(--accent);
}

/* Page sections */
.section-top {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: 4rem;
}

.page-head {
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.page-title {
  font-family: var(--display);
  font-size: var(--step-3);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: var(--step-1);
}

.section-title {
  font-family: var(--display);
  font-size: var(--step-2);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.section-y {
  margin-top: clamp(3rem, 8vw, 5rem);
}

/* Podcast */
.podcast-intro {
  max-width: 65ch;
}

.podcast-intro p {
  margin: 0 0 1.25rem;
  color: #d5cdc0;
}

.podcast-intro p:last-child {
  margin-bottom: 0;
}

.video-shell--playlist {
  max-width: min(100%, 960px);
  margin-inline: auto;
}

.podcast-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
}

.podcast-stage .video-shell--playlist {
  max-width: none;
  margin-inline: 0;
  width: 100%;
}

.podcast-stage__main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.podcast-stage__aside {
  min-width: 0;
}

.podcast-episodes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: min(72vh, 720px);
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
}

.podcast-episode {
  display: flex;
  width: 100%;
  text-align: left;
  gap: 0.65rem;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.podcast-episode:hover {
  border-color: rgba(212, 185, 104, 0.45);
  background: rgba(212, 185, 104, 0.08);
}

.podcast-episode.is-active {
  border-color: rgba(212, 185, 104, 0.55);
  background: rgba(212, 185, 104, 0.12);
}

.podcast-episode__thumb-wrap {
  flex: 0 0 auto;
  width: 104px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
  background: #000;
}

.podcast-episode__thumb {
  display: block;
  width: 104px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.podcast-episode__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.podcast-episode__num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-dim);
  letter-spacing: 0.04em;
}

.podcast-episode__title {
  font-size: var(--step--1);
  line-height: 1.4;
  color: #e4dcd0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-feed-hint {
  margin: 1rem 0 0;
  font-size: var(--step--1);
  color: var(--muted);
  max-width: 62ch;
}

.video-shell--playlist-fallback {
  max-width: min(100%, 960px);
}

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

  .podcast-episodes {
    max-height: none;
  }
}

/* Podcast — social icons under player */
.podcast-socials {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 1px solid rgba(201, 169, 98, 0.18);
  text-align: center;
}

.podcast-socials--under-player {
  margin-top: clamp(1rem, 2.8vw, 1.5rem);
  padding-top: 0;
  border-top: none;
  text-align: center;
}

.podcast-socials__title {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.podcast-socials__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.podcast-socials__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212, 185, 104, 0.45);
  color: var(--accent);
  background:
    radial-gradient(circle at 30% 25%, rgba(212, 185, 104, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(30, 26, 20, 0.95) 0%, rgba(10, 9, 7, 0.88) 100%);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
}

.podcast-socials__btn:hover {
  border-color: rgba(240, 214, 150, 0.65);
  color: #f5e6c8;
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.podcast-socials__glyph {
  width: 26px;
  height: 26px;
  display: block;
}

.podcast-playlist-placeholder {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.podcast-playlist-placeholder__label {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-dim);
}

.podcast-playlist-placeholder__hint {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.55;
  max-width: 48ch;
  margin-inline: auto;
}

/* Project grid */
.project-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.project-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent);
}

@media (max-width: 840px) {
  .project-card {
    grid-template-columns: 1fr;
  }
}

.project-card__media {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* SlotID labels — shared monospace strip (portfolio, home, footer, etc.) */
.slot-id-chip {
  margin: 0;
  padding: 0.4rem 0.5rem 0.45rem;
  font-size: 0.72rem;
  font-family: ui-monospace, system-ui, monospace;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.slot-id-chip strong {
  color: var(--accent);
  font-weight: 600;
}

.slot-id-chip--media {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.slot-id-chip--hero {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.slot-id-chip--davinci {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.slot-id-chip--logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0.62rem;
  padding: 0.25rem 0.35rem;
}

.site-footer__logo-wrap {
  position: relative;
  display: inline-block;
}

.slot-id-chip--footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0.58rem;
  padding: 0.2rem 0.3rem;
}

.project-card__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-shell--card {
  aspect-ratio: 16/9;
}

.project-card__role {
  margin: 0 0 0.35rem;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dim);
  font-weight: 600;
}

.project-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: var(--step-2);
}

.project-card__desc {
  margin: 0;
  color: var(--muted);
}

/* Photography / gallery — 3 columns on desktop (stable CSS Grid, not multi-column) */
.photo-masonry,
.photo-masonry--tight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

@media (max-width: 900px) {
  .photo-masonry,
  .photo-masonry--tight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .photo-masonry,
  .photo-masonry--tight {
    grid-template-columns: 1fr;
  }
}

.photo-tile {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.photo-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-tile:hover img {
  transform: scale(1.03);
}

.photo-tile__info {
  margin: 0;
  padding: 0.65rem 0.75rem 0.75rem;
  font-size: var(--step--1);
  line-height: 1.5;
  color: #c9bfb0;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  background: rgba(0, 0, 0, 0.22);
}

.photo-tile__slot-label {
  margin: 0;
  padding: 0.4rem 0.5rem 0.45rem;
  font-size: 0.72rem;
  font-family: ui-monospace, system-ui, monospace;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.photo-tile__slot-label strong {
  color: var(--accent);
  font-weight: 600;
}

/* About */
.about-layout {
  max-width: 65ch;
}

.prose p {
  margin: 0 0 1.25rem;
  color: #d5cdc0;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact-main {
  max-width: 640px;
}

.banner {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.banner--ok {
  background: rgba(107, 191, 138, 0.12);
  border: 1px solid rgba(107, 191, 138, 0.35);
  color: #b8e6c8;
}

.banner--err {
  background: rgba(196, 92, 92, 0.12);
  border: 1px solid rgba(196, 92, 92, 0.35);
  color: #f0b4b4;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: var(--step-0);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(212, 185, 104, 0.35);
  outline-offset: 2px;
  border-color: var(--accent-dim);
}

/* CV page — tall PDF embed (explicit height; flex % heights were collapsing the iframe) */
body.page-cv > .site-header {
  flex-shrink: 0;
}

body.page-cv > #main {
  flex: 1 1 auto;
}

body.page-cv > .site-footer {
  flex-shrink: 0;
}

.cv-page.section-top {
  padding-bottom: 1.25rem;
}

.page-head--cv {
  margin-bottom: 1rem;
}

.cv-viewer {
  width: 100%;
  /* Tall embed (~2× previous) so a full A4 page can show without clipping. */
  height: min(180vh, calc(200dvh - 17rem));
  min-height: 62.5rem;
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: #12100e;
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cv-viewer__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cv-toolbar {
  margin-top: 1.25rem;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.cv-viewer__fallback {
  margin: 0.85rem 0 0;
  font-size: var(--step--1);
  color: var(--muted);
  max-width: 52ch;
  flex-shrink: 0;
  text-align: center;
  margin-inline: auto;
}

.cv-viewer__fallback a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.cv-viewer__fallback a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: auto;
  padding: 0;
  border-top: 1px solid rgba(201, 169, 98, 0.18);
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(212, 185, 104, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(80, 55, 30, 0.12), transparent 50%),
    linear-gradient(180deg, #0c0a08 0%, #050403 55%, #030201 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 185, 104, 0.15) 20%,
    rgba(230, 205, 140, 0.55) 50%,
    rgba(212, 185, 104, 0.15) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 1.75rem 2.5rem;
  }

  .site-footer__base {
    grid-column: 1 / -1;
  }
}

.site-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.site-footer__logo-link {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.2s;
}

.site-footer__logo-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-footer__logo {
  width: auto;
  max-width: min(200px, 42vw);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

.site-footer__intro {
  flex: 1 1 12rem;
  min-width: 0;
}

.site-footer__brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #f5f0e6 0%, var(--accent) 45%, #c49a3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer__tag {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  max-width: 36ch;
  line-height: 1.5;
}

.site-footer__aside {
  justify-self: start;
}

@media (min-width: 720px) {
  .site-footer__aside {
    justify-self: end;
    text-align: right;
  }
}

.site-footer__social-label {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.site-footer__social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (min-width: 720px) {
  .site-footer__social {
    justify-content: flex-end;
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.28);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.social-link:hover {
  background: rgba(212, 185, 104, 0.14);
  border-color: rgba(212, 185, 104, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.site-footer__base {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
}

.site-footer__note {
  margin: 0;
  font-size: var(--step--1);
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
}

@media (min-width: 720px) {
  .site-footer__note {
    text-align: left;
  }
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --------------------------------------------------------------------------
   Home alternate layout — index2.php only (scoped to section.home-v2)
   Does not rely on body.page-home-v2 so styles always apply.
   -------------------------------------------------------------------------- */
section.home-v2 {
  position: relative;
  isolation: isolate;
  padding: clamp(2.25rem, 7vw, 5rem) 0 clamp(3rem, 10vw, 6rem);
  overflow: hidden;
}

.home-v2__ambient {
  pointer-events: none;
  position: absolute;
  inset: -35% -15% 20%;
  background:
    radial-gradient(ellipse 90% 70% at 18% 12%, rgba(212, 185, 104, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 55% at 88% 40%, rgba(100, 70, 40, 0.12), transparent 52%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(30, 26, 20, 0.5), transparent 55%);
  opacity: 0.95;
}

.home-v2__layout {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, calc(var(--max) + 100px));
  margin-inline: auto;
}

.home-v2__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

@media (max-width: 960px) {
  .home-v2__grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 3rem);
  }
}

/* Hero image */
.home-v2__shot {
  position: relative;
  margin: 0;
  border-radius: clamp(22px, 4vw, 36px);
  overflow: hidden;
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(212, 185, 104, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-v2__shot-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.home-v2__shot-shimmer {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 35%,
    rgba(255, 255, 255, 0.04) 48%,
    transparent 62%
  );
  mix-blend-mode: soft-light;
}

.home-v2__shot .slot-id-chip--hero {
  z-index: 2;
}

/* DaVinci — sized to image, not a tall empty box */
.home-v2__resolve {
  margin-top: clamp(1rem, 3vw, 1.75rem);
  border-radius: clamp(18px, 3vw, 26px);
  padding: clamp(0.75rem, 2vw, 1.15rem);
  background: linear-gradient(
    145deg,
    rgba(38, 32, 26, 0.55) 0%,
    rgba(14, 12, 10, 0.45) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.home-v2__resolve-inner {
  position: relative;
  width: 100%;
  min-height: 0;
  border-radius: calc(clamp(18px, 3vw, 26px) - 6px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0;
}

.home-v2__resolve-img {
  display: block;
  width: 100%;
  max-height: min(36vh, 300px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.05) contrast(1.04) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

@media (max-width: 960px) {
  .home-v2__resolve-img {
    max-height: min(32vh, 260px);
  }
}

.home-v2__resolve-inner .slot-id-chip--davinci {
  z-index: 1;
}

/* Meta */
.home-v2__meta {
  margin-top: clamp(1.35rem, 3.5vw, 2rem);
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
  border: none;
  background: none;
  box-shadow: none;
}

.home-v2__meta::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 185, 104, 0.28) 20%,
    rgba(212, 185, 104, 0.15) 80%,
    transparent
  );
}

.home-v2__pills {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
}

.home-v2__pill {
  display: inline-block;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(212, 185, 104, 0.08);
  border: 1px solid rgba(212, 185, 104, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.home-v2__kicker {
  margin: 0;
  font-size: var(--step--1);
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  max-width: 32ch;
}

/* Story column */
.home-v2__eyebrow {
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin: 0 0 0.85rem;
  font-weight: 500;
}

.home-v2__title {
  margin: 0 0 1.1rem;
  line-height: 0;
}

.home-v2__showreel-line {
  margin: 0 0 1.35rem;
  font-size: var(--step-1);
  color: var(--muted);
  line-height: 1.45;
}

.home-v2__year {
  display: inline-block;
  margin-right: 0.55rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(212, 185, 104, 0.1);
  color: var(--accent);
  font-weight: 600;
  font-size: var(--step--1);
}

.home-v2__video .video-shell {
  border: none;
  border-radius: clamp(16px, 2.5vw, 22px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 185, 104, 0.08);
}

.home-v2__video .video-shell--hero {
  margin-bottom: 1.5rem;
}

.home-v2__placeholder .video-placeholder {
  border: none;
  border-radius: clamp(16px, 2.5vw, 22px);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(212, 185, 104, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Quote — full styles here (no pullquote--hero conflict) */
.home-v2__engage {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2__engage::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(
    90deg,
    rgba(212, 185, 104, 0.35) 0%,
    rgba(212, 185, 104, 0.06) 45%,
    transparent 85%
  );
}

.home-v2 .pullquote--home-v2 {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  padding: 0;
  border: none;
  box-shadow: none;
  font-family: var(--font);
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.01em;
  color: #ebe4d8;
}

.home-v2 .pullquote--home-v2 p {
  margin: 0;
  padding: 0.15rem 0 0 0.5rem;
  position: relative;
}

.home-v2 .pullquote--home-v2 p::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.05em;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1;
  color: rgba(212, 185, 104, 0.22);
  pointer-events: none;
}

.home-v2__engage-row {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

@media (min-width: 520px) {
  .home-v2__engage-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
  }

  .home-v2__engage-row .social-row--hero {
    margin-bottom: 0;
  }
}

.home-v2__engage .btn--primary {
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
}

.home-v2__engage .btn--ghost {
  border-radius: 999px;
}

/* Image lightbox — click any img.ay-lightbox to enlarge (overlay is #ay-lightbox only; never share class with imgs) */
img.ay-lightbox {
  cursor: zoom-in;
}

#ay-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 2rem);
  margin: 0;
  border: 0;
  background: rgba(5, 4, 3, 0.92);
  cursor: zoom-out;
}

#ay-lightbox[hidden] {
  display: none !important;
}

#ay-lightbox .ay-lightbox__img {
  display: block;
  max-width: min(96vw, 1600px);
  max-height: min(92vh, 1400px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

body.ay-lightbox-open {
  overflow: hidden;
}
