
:root {
  --bg: #071410;
  --bg-soft: #0e201a;
  --gold: #d4a62b;
  --gold-deep: #b78b18;
  --white: #ffffff;
  --ink: #10271f;
  --text: #26302d;
  --muted: #5f6865;
  --line: rgba(212,166,43,.38);
  --shadow: 0 18px 45px rgba(0,0,0,.18);
  --radius: 18px;
  --container: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip: rect(0,0,0,0); white-space:nowrap; border:0; }

.site-header {
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  z-index: 30;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { width: 190px; height: auto; }
.desktop-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(212,166,43,.85);
  background: rgba(7, 20, 16, .72);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links .with-caret::after { content: '▾'; margin-left: 6px; font-size: .85em; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold {
  background: linear-gradient(180deg, #e3b83e, #cf9e1d);
  color: #111;
  box-shadow: 0 12px 25px rgba(207, 158, 29, .24);
}
.button-gold:hover { background: linear-gradient(180deg, #ecc453, #d8a928); }
.button-outline {
  color: #fff;
  background: rgba(7,20,16,.72);
  border-color: rgba(212,166,43,.85);
}
.button-outline:hover { color: var(--gold); }
.menu-button {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212,166,43,.85);
  background: rgba(7,20,16,.8);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 999px;
}
.mobile-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 20px;
  width: min(320px, calc(100vw - 40px));
  border-radius: 24px;
  background: rgba(7,20,16,.96);
  border: 1px solid rgba(212,166,43,.85);
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
  padding: 20px;
}
.mobile-panel.is-open { display: block; }
.mobile-panel nav { display: grid; gap: 12px; }
.mobile-panel a { color: #fff; font-weight: 700; padding: 10px 4px; }
.mobile-panel .mobile-actions { display: grid; gap: 12px; margin-top: 16px; }

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #091410;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,12,10,.25) 0%, rgba(4,8,7,.48) 36%, rgba(4,8,7,.72) 100%),
              radial-gradient(circle at center, rgba(212,166,43,.12), transparent 34%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.png') center center / cover no-repeat;
  transform: scale(1.03);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 170px 0 160px;
}
.hero-content {
  width: min(100%, 1000px);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: -.03em;
  margin: 0 auto 30px;
  font-weight: 900;
  text-wrap: balance;
}
.underline {
  position: relative;
  display: inline-block;
}
.underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: .02em;
  height: .16em;
  background: linear-gradient(90deg, #deb438, #c69820);
  border-radius: 999px;
  transform: translateY(120%);
}
.watch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 20px auto 28px;
  flex-wrap: wrap;
}
.video-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}
.play-disc {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid rgba(255,255,255,.15);
  box-shadow: 0 18px 35px rgba(0,0,0,.35);
  position: relative;
  flex: 0 0 auto;
}
.play-disc::before {
  content: '';
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-43%, -50%);
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 34px solid #101010;
}
.watch-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
}
.watch-scribble {
  color: #ebb736;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-family: "Segoe Print", "Bradley Hand", cursive;
}
.watch-copy strong {
  font-size: 1.1rem;
  letter-spacing: .01em;
}
.watch-copy span { color: rgba(255,255,255,.86); }
.hero-cta { margin-top: 8px; }
.hero-rule {
  position: absolute;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  width: min(1000px, calc(100% - 100px));
  height: 2px;
  background: rgba(212,166,43,.8);
  z-index: 2;
}
.hero-divider {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 88px solid transparent;
  border-right: 88px solid transparent;
  border-top: 54px solid #071410;
  z-index: 2;
}

.section {
  padding: 100px 0;
}
.section-about {
  background: #fff;
  position: relative;
}
.section-heading {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 52px;
}
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 900;
}
.section-heading .mini-underline {
  width: 96px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #deb438, #c69820);
  margin: 18px auto 0;
}
.section-heading p {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}
.features-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 10px 18px;
}
.feature-icon {
  width: 124px;
  height: 124px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 118px;
  height: 118px;
}
.icon-black * { stroke: #111; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.icon-black-fill .fill { fill: #111; stroke: none; }
.icon-gold * { stroke: var(--gold); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.icon-gold-fill .fill { fill: var(--gold); stroke: none; }
.feature h3 {
  margin: 6px 0 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
}
.feature p {
  margin: 0 auto;
  color: var(--text);
  line-height: 1.75;
  font-size: 1.06rem;
  max-width: 330px;
}
.section-cta {
  text-align: center;
  margin-top: 44px;
}
.section-cta .button { min-width: 290px; }

.page-hero {
  padding: 170px 0 90px;
  background: linear-gradient(180deg, #0c1713, #11221c);
  color: #fff;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
}
.page-hero p {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-size: 1.08rem;
}
.cards, .content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid rgba(16,39,31,.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 12px; color: var(--ink); font-size: 1.4rem; }
.card p, .card li { color: var(--text); line-height: 1.7; }
.card ul { padding-left: 18px; margin: 14px 0 0; }
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.field label { display:block; font-weight:700; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; border-radius: 14px; border: 1px solid rgba(16,39,31,.16);
  padding: 14px 16px; background: #fff; color: #111;
}
.field textarea { min-height: 160px; resize: vertical; }
.note-box {
  border-radius: 20px;
  background: #fff9ea;
  border: 1px solid rgba(212,166,43,.28);
  padding: 18px 20px;
  color: #5e4b1a;
  line-height: 1.7;
}
.site-footer {
  background: #030805;
  color: rgba(255,255,255,.92);
  padding: 28px 0 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  font-size: 15px;
}
.footer-nav a { color: #fff; }
.footer-nav a:hover { color: var(--gold); }
.footer-disclaimer, .copyright {
  text-align: center;
  max-width: 900px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  font-size: .98rem;
}
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.74);
  z-index: 100;
}
.video-modal.is-open { display: flex; }
.video-dialog {
  width: min(860px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef2f1;
  font-size: 1.8rem;
  cursor: pointer;
}
.video-dialog h2 { margin: 0 0 12px; color: var(--ink); }
.video-dialog p { margin: 0 0 18px; color: var(--muted); line-height: 1.75; }
.video-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b1914, #13251e);
  color: #fff;
  border: 1px solid rgba(212,166,43,.28);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.video-placeholder strong { display:block; font-size: 1.2rem; margin-bottom: 10px; }
.video-placeholder code { display:block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #e8ca73; }

@media (max-width: 1024px) {
  .hero-inner { padding-top: 160px; }
  .features-3, .cards, .content-grid, .split { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .desktop-actions { display: none; }
  .menu-button { display: inline-flex; }
  .site-header { top: 16px; }
  .brand img { width: 160px; }
  .hero h1 { max-width: 760px; }
  .hero-rule { width: calc(100% - 40px); bottom: 74px; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero-inner { padding: 150px 0 130px; }
  .play-disc { width: 112px; height: 112px; }
  .play-disc::before { border-top-width: 20px; border-bottom-width: 20px; border-left-width: 28px; }
  .watch-row { gap: 18px; }
  .watch-copy { align-items: center; text-align: center; }
  .button { width: 100%; }
  .hero-cta { max-width: 320px; margin: 12px auto 0; }
  .hero-divider { border-left-width: 62px; border-right-width: 62px; border-top-width: 38px; }
  .section { padding: 74px 0; }
  .feature-icon { width: 100px; height: 100px; }
  .feature-icon svg { width: 96px; height: 96px; }
  .feature h3 { font-size: 1.3rem; }
  .footer-nav { gap: 14px 18px; }
}
