/* =========================================================
   jewelsgzm — "It's a Guy Thing" brand system
   Palette: navy · lime · orange-red · lavender · cream · brown · black/white
   Type: Bodoni Moda (didone, bold/regular/italic) + Archivo (grotesque)
   Color pairings per the brand style guide.
   ========================================================= */

:root {
  /* Brand palette */
  --navy: #2b2a60;
  --navy-deep: #1d1c44;
  --lime: #cbe84f;
  --orange: #ef4a23;
  --lavender: #cbc8ec;
  --cream: #ece3d2;
  --cream-deep: #e1d6bf;
  --brown: #5e4327;
  --black: #141318;
  --white: #ffffff;

  /* Roles */
  --bg: var(--cream);
  --surface: var(--white);
  --text: #26244f;        /* deep navy ink */
  --text-dim: #6a6480;    /* muted navy-gray */
  --ink: var(--navy-deep);
  --line: rgba(43, 42, 96, 0.16);
  --accent: var(--orange);

  /* Type — three-font brand system (per the logo) */
  --font-primary: "Helvetica Neue", Helvetica, Arial, sans-serif;          /* 1 — primary, bold */
  --font-secondary: "Bodoni Moda", Didot, "Times New Roman", serif;        /* 2 — Bodoni */
  --font-script: "Snell Roundhand", "Apple Chancery", "Pinyon Script", cursive; /* 3 — Snell */
  --font-display: var(--font-secondary);  /* Bodoni: numerals, tagline, marquee */
  --font-body: var(--font-primary);       /* Helvetica Neue for body + headings */

  /* Spacing & motion */
  --maxw: 1200px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -24px rgba(29, 28, 68, 0.4);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(55% 45% at 84% 0%, rgba(239, 74, 35, 0.10), transparent 62%),
    radial-gradient(50% 55% at 2% 98%, rgba(203, 200, 236, 0.28), transparent 60%),
    radial-gradient(40% 40% at 100% 100%, rgba(203, 232, 79, 0.12), transparent 60%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; position: relative; z-index: 1; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; z-index: 1; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); display: inline-block; }

h1, h2, h3 { font-family: var(--font-primary); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; color: var(--navy); }
.display { font-size: clamp(3rem, 11vw, 8.5rem); line-height: 0.92; padding-bottom: 0.08em; font-weight: 700; }
.h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--text-dim); max-width: 52ch; }

/* Script accent — Snell Roundhand, the "It's a" treatment */
.serif-italic {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--orange);
  font-size: 1.16em;
  line-height: 0.85;
}

/* "It's a Guy Thing" logo lockup — three fonts, exactly like the brand mark */
.logo-igt { font-style: normal; line-height: 1; }
.logo-igt .igt-its {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  font-size: 0.82em;
  padding-right: 0.06em;
}
.logo-igt .igt-guy {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.logo-igt .igt-thing {
  font-family: var(--font-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
/* stacked variant for hero usage (echoes the primary logo) */
.logo-igt--stack { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 0.88; }
.logo-igt--stack .igt-its { font-size: 0.46em; margin-bottom: -0.04em; color: var(--orange); }

/* Image version of the "It's a Guy Thing" logo (drops in over the text lockup) */
.igt { display: inline-block; }
.igt-logo { display: block; height: auto; max-width: 100%; }
.igt-logo--hero { width: min(540px, 82vw); margin: 0.1rem 0 0.3rem; }
.igt-logo--teaser { width: min(230px, 56vw); }
.igt-logo--inline { display: inline-block; height: 2.1em; width: auto; vertical-align: -0.62em; margin: 0 0.12em; }

/* ---------- Top nav (centered tabs) ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(236, 227, 210, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(29, 28, 68, 0.35);
  padding-block: 0.8rem;
}
.brand {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  z-index: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.nav-links a {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--navy); background: var(--lime); font-weight: 600; }
.nav-cta {
  margin-left: 0.4rem;
  border-radius: 999px;
  padding: 0.5rem 1.1rem !important;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--navy); color: var(--white) !important; }
.nav-cta.active { background: var(--orange) !important; color: var(--white) !important; }

.nav-toggle { display: none; background: none; border: 0; color: var(--navy); font-size: 1.6rem; line-height: 1; z-index: 2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 14px 34px -14px rgba(239, 74, 35, 0.7); }
.btn-primary:hover { background: var(--navy); color: var(--white); box-shadow: 0 20px 44px -14px rgba(43, 42, 96, 0.6); }
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; }
.hero .display { text-shadow: 0 24px 60px rgba(29, 28, 68, 0.12); }
.hero-tag {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: var(--brown);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-hint span { width: 2px; height: 38px; background: linear-gradient(var(--orange), transparent); animation: drip 2s infinite; }
@keyframes drip { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }

/* ---------- Marquee (navy stripe + lime type) ---------- */
.marquee {
  background: var(--navy);
  overflow: hidden;
  white-space: nowrap;
  padding: 1.1rem 0;
}
.marquee-track { display: inline-flex; gap: 3rem; animation: scroll-x 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-track span::after { content: "✦"; color: var(--orange); font-style: normal; font-family: var(--font-body); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow); }
.card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; }
.card .num { font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: var(--orange); letter-spacing: 0.05em; }

/* Color-pairing card variants (from the style guide) */
.card--lime { background: var(--lime); border-color: transparent; }
.card--lime h3, .card--lime .num { color: var(--navy); }
.card--lime p { color: rgba(43, 42, 96, 0.78); }

.card--lavender { background: var(--lavender); border-color: transparent; }
.card--lavender h3, .card--lavender .num { color: var(--navy); }
.card--lavender p { color: rgba(43, 42, 96, 0.72); }

.card--orange { background: var(--orange); border-color: transparent; }
.card--orange h3, .card--orange .num { color: var(--cream); }
.card--orange p { color: rgba(255, 255, 255, 0.88); }

.card--navy { background: var(--navy); border-color: transparent; }
.card--navy h3 { color: var(--cream); }
.card--navy .num { color: var(--lime); }
.card--navy p { color: rgba(236, 227, 210, 0.82); }

/* Tilt cards */
.tilt { transform-style: preserve-3d; transition: transform 0.15s var(--ease); will-change: transform; }

/* Work tiles — colorful brand gradients */
.work-grid { grid-template-columns: repeat(3, 1fr); }
.work-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy), var(--orange));
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.work-tile:nth-child(6n+1) { background: linear-gradient(160deg, var(--navy), var(--orange)); }
.work-tile:nth-child(6n+2) { background: linear-gradient(160deg, var(--orange), var(--lime)); }
.work-tile:nth-child(6n+3) { background: linear-gradient(160deg, var(--lavender), var(--navy)); }
.work-tile:nth-child(6n+4) { background: linear-gradient(160deg, var(--lime), var(--navy)); }
.work-tile:nth-child(6n+5) { background: linear-gradient(160deg, var(--brown), var(--orange)); }
.work-tile:nth-child(6n+6) { background: linear-gradient(160deg, var(--navy), var(--lavender)); }
.work-tile .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.4);
}
.work-tile .meta {
  position: relative; z-index: 2;
  padding: 1.2rem;
  width: 100%;
  background: linear-gradient(transparent, rgba(20, 19, 24, 0.85));
  color: var(--cream);
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.work-tile:hover .meta { transform: translateY(0); opacity: 1; }
.work-tile .tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); }
.work-tile h4 { font-family: var(--font-primary); font-weight: 700; font-size: 1.3rem; margin-top: 0.2rem; color: var(--cream); }

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.chip {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
}
.chip:hover { background: var(--lavender); }
.chip.active { background: var(--lime); color: var(--navy); border-color: var(--lime); font-weight: 700; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat .big { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 6vw, 4rem); color: var(--orange); line-height: 1; }
.stat .lbl { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-top: 0.5rem; }

/* Brands & collaborations */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1rem; }
.brand-item {
  text-align: center;
  padding: 1.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  display: flex; flex-direction: column; justify-content: center; gap: 0.35rem;
  box-shadow: 0 8px 24px -20px rgba(29, 28, 68, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.brand-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-item span { font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }

/* Podcast teaser photo */
.podcast-teaser-photo { display: flex; }
.podcast-teaser-photo img { width: 100%; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.podcast-teaser > div:first-child { text-align: center; }
.podcast-teaser > div:first-child .eyebrow { justify-content: center; }
.podcast-teaser > div:first-child .lead { margin-inline: auto; }
.podcast-teaser .igt-logo { margin-inline: auto; }

/* ---------- Podcast ---------- */
.episode {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.episode:hover { border-color: var(--orange); transform: translateX(6px); box-shadow: var(--shadow); }
.episode .ep-num { font-family: var(--font-display); font-weight: 900; font-size: 2.2rem; color: var(--orange); width: 3.4rem; text-align: center; }
.episode h4 { font-family: var(--font-primary); font-weight: 700; font-size: 1.4rem; }
.episode p { color: var(--text-dim); font-size: 0.9rem; }
.episode .play {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.episode:hover .play { transform: scale(1.1); background: var(--navy); }

.platforms { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.platform {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.platform:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }

/* Podcast hero + episodes */
.podcast-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.podcast-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.episode-list { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.episode-embed { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.5rem 0.9rem; box-shadow: 0 8px 24px -18px rgba(29, 28, 68, 0.45); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: sticky; top: 6rem; align-self: start; }
.about-photos .fashion-item img { aspect-ratio: 3 / 4; object-fit: cover; }
.about-bio p { color: var(--text-dim); margin-top: 1.1rem; line-height: 1.7; }
.about-bio p.lead { color: var(--text); margin-top: 0; max-width: none; }
.about-bio em { font-style: italic; color: var(--navy); font-weight: 500; }
.about-bio .about-closer { font-family: var(--font-secondary); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--orange); line-height: 1.3; margin-top: 1.6rem; }
.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--orange), var(--navy));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait::after {
  content: "your photo here";
  position: absolute; bottom: 1rem;
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait.has-photo::after { content: none; }
.fact-list { display: grid; gap: 1rem; margin-top: 2rem; }
.fact { display: flex; gap: 1rem; align-items: baseline; }
.fact .k { font-family: var(--font-display); font-weight: 700; color: var(--orange); min-width: 7rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); font-weight: 600; margin-bottom: 0.5rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(106, 100, 128, 0.7); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(239, 74, 35, 0.16);
}
.field textarea { min-height: 140px; resize: vertical; }
.contact-aside .card { margin-bottom: 1.2rem; }
.big-email { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 3vw, 2.1rem); color: var(--orange); word-break: break-word; }

/* ---------- CTA band (navy pop) ---------- */
.cta-band {
  text-align: center;
  color: var(--cream);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(203, 232, 79, 0.16), transparent 60%),
    var(--navy-deep);
}
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4.5rem); color: var(--cream); }
.cta-band .serif-italic { color: var(--lime); }
.cta-band .eyebrow { color: var(--lime); }
.cta-band .eyebrow::before { background: var(--lime); }
.cta-band .lead { color: rgba(236, 227, 210, 0.82); }
.cta-band .btn-ghost { border-color: var(--cream); color: var(--cream); }
.cta-band .btn-ghost:hover { background: var(--cream); color: var(--navy); }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer (dark anchor + brand swatch strip) ---------- */
.footer {
  position: relative;
  background: var(--black);
  color: var(--cream);
  padding: 3.5rem 0 2rem;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg,
    var(--navy) 0 16.66%, var(--lime) 16.66% 33.33%, var(--orange) 33.33% 50%,
    var(--lavender) 50% 66.66%, var(--cream) 66.66% 83.33%, var(--brown) 83.33% 100%);
}
.footer .brand { font-size: 2rem; color: var(--cream); }
.footer p { color: rgba(236, 227, 210, 0.7); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.footer-soc { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-soc a { color: rgba(236, 227, 210, 0.8); font-weight: 500; transition: color 0.25s var(--ease); }
.footer-soc a:hover { color: var(--lime); }
.footer-left { display: flex; flex-direction: column; gap: 1rem; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 1.2rem; }
.footer-logos { display: flex; align-items: center; gap: 1.3rem; }
.footer-logos .brand { font-size: 1.6rem; }
.footer-igt { height: 24px; width: auto; opacity: 0.92; }
.footer-copy, .footer-made { font-size: 0.78rem; color: rgba(236, 227, 210, 0.55); }
@media (max-width: 640px) { .footer-right { align-items: flex-start; text-align: left; } }

/* ---------- Fashion gallery (masonry) ---------- */
.fashion-masonry { column-count: 3; column-gap: 1.3rem; }
.fashion-item {
  break-inside: avoid;
  margin-bottom: 1.3rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--lavender), var(--navy));
}
.fashion-item img { width: 100%; display: block; transition: transform 0.55s var(--ease); }
.fashion-item:hover img { transform: scale(1.04); }
.fashion-ph { display: none; }
.fashion-item.empty { aspect-ratio: 4 / 5; display: grid; place-items: center; cursor: default; }
.fashion-item.empty .fashion-ph {
  display: block;
  color: var(--cream);
  font-family: var(--font-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
@media (max-width: 900px) { .fashion-masonry { column-count: 2; } }
@media (max-width: 560px) { .fashion-masonry { column-count: 1; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 19, 24, 0.93);
  display: none; align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 1.1rem; right: 1.4rem;
  background: none; border: 0; color: var(--cream);
  font-size: 2rem; line-height: 1; cursor: pointer;
}

/* ---------- TikTok embed grid ---------- */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: start;
}
.tiktok-grid .tiktok-embed { width: 100%; margin: 0 !important; }

/* Self-hosted video cards (reliable native playback) */
.video-card {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  display: flex;
  flex-direction: column;
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.85rem;
}
.video-card figcaption .vc-likes { font-family: var(--font-secondary); font-weight: 500; }
.video-card figcaption a { color: var(--lime); font-weight: 600; white-space: nowrap; }
.video-card figcaption a:hover { color: var(--white); }

/* ---------- Page header (inner pages) ---------- */
.page-head { padding: clamp(8rem, 16vw, 12rem) 0 clamp(2rem, 5vw, 4rem); position: relative; }
.page-head h1 { font-size: clamp(2.8rem, 9vw, 6.5rem); font-weight: 700; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photos { position: static; }
  .podcast-hero { grid-template-columns: 1fr; }
  .podcast-photo { max-width: 440px; }
  .podcast-teaser { grid-template-columns: 1fr !important; }
  #hero-canvas { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    left: auto; top: 0;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    padding: 2rem;
    background: var(--cream);
    box-shadow: -20px 0 60px -20px rgba(29, 28, 68, 0.4);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; width: 100%; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
  .episode { grid-template-columns: auto 1fr; }
  .episode .play { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
