/* =========================================================
   Zayd Operates — Shared Design System
   Matches zayd-operates.html (warm cream + cinematic gold)
   ========================================================= */

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

:root {
  --void: #0C0C0C;
  --obsidian: #141414;
  --warm-dark: #1E1C1A;
  --ivory: #F2EDE8;
  --stone: #8C8680;
  --smoke: #5A5652;
  --gold: #C9A96E;
  --champagne: #D4C5B0;

  --bg: #F2EDE8;
  --surface: #FFFFFF;
  --surface-alt: #E8E2DB;
  --text: #1E1C1A;
  --text-secondary: #4A4540;
  --text-muted: #8C8680;
  --accent: #C9A96E;
  --accent-hover: #B8994F;
  --accent-light: rgba(201, 169, 110, 0.1);
  --border: rgba(30, 28, 26, 0.1);
  --card-bg: #FFFFFF;
  --card-border: rgba(30, 28, 26, 0.08);
  --nav-bg: rgba(242, 237, 232, 0.92);
  --shadow: 0 2px 16px rgba(30, 28, 26, 0.06);
  --shadow-lg: 0 8px 32px rgba(30, 28, 26, 0.08);
  --shadow-hover: 0 16px 48px rgba(30, 28, 26, 0.12);

  --dark-bg: var(--warm-dark);
  --dark-text: var(--ivory);
  --dark-muted: var(--stone);
  --dark-border: #2A2724;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --font-display: 'Instrument Serif', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-width: 1200px;
  --text-width: 680px;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: background 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart), padding 0.3s var(--ease-out-quart);
}
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.5;
}
.nav.scrolled {
  background: rgba(242, 237, 232, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 24px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(242, 237, 232, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease-out-quart), opacity 0.25s var(--ease-out-quart);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---- LAYOUT ---- */
section { padding: 100px 24px; }
.container { max-width: var(--max-width); margin: 0 auto; }
.narrow { max-width: var(--text-width); }

@media (max-width: 768px) {
  section { padding: 64px 20px; }
}

/* ---- TYPOGRAPHY ---- */
.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  text-wrap: balance;
  color: var(--text);
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: var(--text-width);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease-out-quart), transform 0.2s var(--ease-out-quart), box-shadow 0.2s var(--ease-out-quart);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.2);
}
.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  background: transparent;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.02);
}
.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- HERO ---- */
.hero {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 15%, var(--accent) 50%, transparent 85%);
  opacity: 0.15;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin: 0 auto 18px;
  max-width: 900px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  background-image: linear-gradient(transparent 85%, rgba(201, 169, 110, 0.25) 85%);
  background-repeat: no-repeat;
  padding-bottom: 2px;
}
.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
  text-wrap: pretty;
}

/* ---- MARQUEE ---- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 22px 0;
  background: rgba(232, 226, 219, 0.4);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
}
.marquee-track span { white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- THREE-COL ---- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  .three-col { grid-template-columns: 1fr; gap: 20px; }
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-card .label { margin-bottom: 14px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- SECTION HEAD CENTER ---- */
.section-head {
  text-align: center;
  margin-bottom: 24px;
}
.section-head .section-subtitle {
  margin: 0 auto;
}

/* ---- VIDEO GRID ---- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  .video-grid { grid-template-columns: 1fr; gap: 24px; }
}
.video-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.35s var(--ease-out-quart), transform 0.35s var(--ease-out-quart);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--warm-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
}
.video-frame .play-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.video-frame:hover .play-btn {
  background: rgba(201,169,110,0.22);
  border-color: var(--accent);
  transform: scale(1.06);
}
.video-frame .play-btn svg {
  width: 22px; height: 22px;
  fill: var(--accent);
  margin-left: 3px;
}
.video-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.video-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 6px;
}
.video-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.video-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.video-card a.watch {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
.video-card a.watch:hover { color: var(--accent-hover); }

/* ---- DARK SECTION ---- */
.dark-section {
  background: var(--warm-dark);
  color: var(--ivory);
}
.dark-section .section-title { color: var(--ivory); }
.dark-section .section-subtitle { color: var(--stone); }
.dark-section .label { color: var(--accent); }

/* ---- RESOURCES ---- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  .resource-grid { grid-template-columns: 1fr; }
}
.resource-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.resource-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}
.resource-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.resource-card ul {
  list-style: none;
  margin-bottom: 24px;
}
.resource-card ul li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.55;
}
.resource-card ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: bold;
}
.resource-card form { margin-top: auto; }
.resource-card .form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.resource-card input {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s ease;
}
.resource-card input:focus {
  outline: none;
  border-color: var(--accent);
}
.resource-card .btn-primary {
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.thank-you {
  display: none;
  padding: 14px 16px;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 12px;
}
.thank-you.show { display: block; }
.thank-you strong { color: var(--accent); font-weight: 500; }

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  padding: 120px 24px;
}
.cta-section .section-title { margin-bottom: 14px; }
.cta-section .section-subtitle {
  margin: 0 auto 32px;
  text-align: center;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--surface-alt);
}
footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}
footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover { color: var(--accent); }

/* ---- AUDIT (quiz) ---- */
.audit-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.pip {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s var(--ease-out-quart);
}
.pip.done { background: var(--accent); }
.pip.current { background: var(--accent); }

.q-step {
  display: none;
  animation: fadeUp 0.5s var(--ease-out-quart);
}
.q-step.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.q-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.q-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 28px;
  text-wrap: balance;
}
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.option {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  font-family: var(--font-body);
  line-height: 1.5;
}
.option:hover {
  border-color: var(--accent);
  background: rgba(201,169,110,0.04);
}
.option.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--text);
}
.q-nav {
  display: flex;
  justify-content: flex-end;
}
.q-nav .btn-primary[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* ---- RESULT ---- */
.result {
  display: none;
  animation: fadeUp 0.6s var(--ease-out-quart);
  text-align: center;
}
.result.active { display: block; }
.score-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 24px;
  position: relative;
}
.score-ring::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--p) * 1%), var(--border) 0);
  z-index: 0;
  mask: radial-gradient(circle, transparent 78px, black 79px);
  -webkit-mask: radial-gradient(circle, transparent 78px, black 79px);
}
.score-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.score-num small {
  font-size: 22px;
  color: var(--text-muted);
}
.verdict {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
  text-wrap: balance;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.verdict-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.breakdown {
  text-align: left;
  max-width: 520px;
  margin: 0 auto 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 18px;
  box-shadow: var(--shadow);
}
.breakdown h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 400;
}
.bar-row {
  margin-bottom: 14px;
}
.bar-row:last-child { margin-bottom: 4px; }
.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}
.bar-label span:last-child {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  transition: width 0.8s var(--ease-out-quart);
}
.bar-fill.green { background: #6E9E6A; }
.bar-fill.amber { background: var(--accent); }
.bar-fill.red { background: #B5564A; }

.cta-card {
  background: var(--warm-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--ivory);
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 15%, var(--accent) 50%, transparent 85%);
}
.cta-card p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 22px;
  color: var(--ivory);
  text-wrap: balance;
}
.cta-card .btn-primary {
  background: var(--accent);
  color: var(--warm-dark);
  font-weight: 500;
}
.cta-card .btn-primary:hover {
  background: var(--champagne);
}

.result-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 16px;
}
.result-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.result-nav a:hover { color: var(--accent); }

/* ---- GUIDE PAGE ---- */
.guide-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 64px;
}
.guide-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.guide-item:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}
.guide-item:nth-child(even) .guide-video { order: 2; }
@media (max-width: 880px) {
  .guide-item, .guide-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .guide-item:nth-child(even) .guide-video { order: 0; }
}
.guide-video {
  aspect-ratio: 16 / 9;
  background: var(--warm-dark);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.guide-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.guide-video .play-btn {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.guide-video:hover .play-btn {
  background: rgba(201,169,110,0.22);
  border-color: var(--accent);
  transform: scale(1.06);
}
.guide-video .play-btn svg { width: 26px; height: 26px; fill: var(--accent); margin-left: 3px; }
.guide-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}
.guide-copy .video-meta { margin-bottom: 14px; }
.guide-copy > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}
.guide-copy ul {
  list-style: none;
}
.guide-copy ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.55;
}
.guide-copy ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: bold;
}

/* ---- REVEAL ON SCROLL ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-quart), transform 0.6s var(--ease-out-quart);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
