/* ============================================================
   TRES GUITAR ACADEMY — vintage Cuban / Habana Vieja
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --cream:        #F2E6CC;
  --cream-2:      #EAD9B8;
  --cream-paper:  #F6ECD2;
  --wine:         #8B2A2A;
  --wine-deep:    #6F1E1E;
  --gold:         #D4A24A;
  --gold-light:   #E8C77B;
  --gold-deep:    #B0822F;
  --olive:        #4A5A3E;
  --olive-deep:   #3A4730;
  --wood:         #6B4423;
  --wood-deep:    #4A2E16;
  --tile-blue:    #3C5A7A;
  --tile-blue-2:  #2D4360;
  --ink:          #2A1810;
  --ink-soft:     #4A3022;

  --shadow-warm:  0 8px 24px rgba(42,24,16,.18);
  --shadow-deep:  0 20px 60px rgba(42,24,16,.35);
  --shadow-paper: 0 2px 0 rgba(42,24,16,.05), 0 12px 28px rgba(42,24,16,.18);

  --radius-sm: 4px;
  --radius:    8px;

  --container: 1180px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font: inherit; color: inherit; }

/* ---------- BASE ---------- */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

/* ---------- AGED PAPER TEXTURE (body-wide) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(212,162,74,.07), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(139,42,42,.05), transparent 55%);
}

/* ---------- FILM GRAIN OVERLAY ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .12;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.09 0 0 0 0 0.06 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.script-headline,
.section-script,
.brand-script,
.final-script,
.footer-script {
  font-family: 'Yellowtail', cursive;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
}

.slab,
.hero-slab,
.final-slab,
.eyebrow,
.trust-line,
.ticket-stub,
.ribbon-text,
.poster-sub,
.poster-foot,
.testi-stamp,
.card-num,
.brand-slab,
.caption-sub,
.btn-stamp,
.btn-youtube,
.nav-cta,
.faq-q {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  color: var(--ink);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242,230,204,.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(74,90,62,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 4px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold), 0 4px 12px rgba(42,24,16,.25);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.brand-script {
  font-family: 'Alfa Slab One', serif;
  font-size: 18px;
  color: var(--wine);
  letter-spacing: .01em;
  line-height: 1;
}
.brand-slab {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--olive);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s var(--ease);
}
.site-nav a:hover { color: var(--wine); }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--wine);
  color: var(--cream) !important;
  padding: 10px 18px;
  border-radius: 2px;
  letter-spacing: .14em;
  box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 0 var(--wine-deep), 0 8px 18px rgba(42,24,16,.22);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--gold-light) inset, 0 5px 0 var(--wine-deep), 0 12px 22px rgba(42,24,16,.28);
}

@media (max-width: 760px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: min(960px, 100vh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(40px, 7vh, 80px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.85) contrast(.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42,24,16,.45) 0%, rgba(42,24,16,.65) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(42,24,16,.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  width: 100%;
}

.hero-logo img {
  width: clamp(150px, 20vw, 220px);
  height: auto;
  border-radius: 6px;
  box-shadow:
    0 0 0 3px rgba(212,162,74,.6),
    0 0 0 4px rgba(42,24,16,.3),
    0 18px 50px rgba(0,0,0,.55),
    0 0 80px rgba(232,199,123,.25);
  transform: rotate(-1.5deg);
}

.hero-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .26em;
  color: var(--gold-light);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.star {
  color: var(--gold);
  font-size: 1em;
}

.hero-headline {
  font-family: 'Yellowtail', cursive;
  color: var(--cream-paper);
  font-size: clamp(48px, 7vw, 88px);
  line-height: .9;
  text-shadow:
    0 2px 0 rgba(42,24,16,.4),
    0 6px 24px rgba(0,0,0,.6),
    0 0 60px rgba(232,199,123,.25);
}
.script-headline {
  display: block;
}
.script-headline.accent {
  color: var(--gold-light);
  font-size: 1.3em;
  margin-top: -.08em;
}

.hero-slab {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: .08em;
  color: var(--cream);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  max-width: 32ch;
  line-height: 1.25;
}

.trust-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--cream);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  margin-top: 4px;
}

/* ---------- VINTAGE TICKET FORM ---------- */
.ticket-form {
  width: 100%;
  max-width: 580px;
  margin-top: 8px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}
.ticket {
  display: flex;
  background: var(--cream-paper);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  text-align: left;
  /* paper texture */
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(212,162,74,.10), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(139,42,42,.06), transparent 60%);
}
/* perforated edge between stub and body */
.ticket::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 130px;
  width: 2px;
  background-image: radial-gradient(circle, var(--cream) 2px, transparent 2.5px);
  background-size: 6px 10px;
  background-repeat: repeat-y;
  background-position: center;
}
/* notches on top/bottom of perf line */
.ticket::after {
  content: "";
  position: absolute;
  left: 124px;
  top: -8px;
  width: 16px;
  height: 16px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: 0 calc(100% + 8px) 0 var(--cream);
}

.ticket-stub {
  width: 130px;
  flex-shrink: 0;
  background:
    repeating-linear-gradient(135deg, rgba(139,42,42,.08) 0 8px, transparent 8px 16px),
    var(--wine);
  color: var(--cream-paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-family: 'Bebas Neue', sans-serif;
  text-align: center;
  letter-spacing: .14em;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  border-right: 2px dashed rgba(242,230,204,.35);
  position: relative;
}
.ticket-stub .big {
  font-family: 'Alfa Slab One', serif;
  font-size: 28px;
  color: var(--gold-light);
  letter-spacing: .04em;
  line-height: 1;
}

.ticket-body {
  flex: 1;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ticket-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--olive);
  text-transform: uppercase;
}
.ticket-body input {
  width: 100%;
  padding: 10px 0 8px;
  border: 0;
  border-bottom: 1.5px solid rgba(74,90,62,.35);
  background: transparent;
  color: var(--ink);
  margin-bottom: 8px;
  outline: none;
  transition: border-color .2s var(--ease);
}
.ticket-body input::placeholder { color: rgba(74,48,34,.45); }
.ticket-body input:focus { border-bottom-color: var(--wine); }
.ticket-body input.invalid { border-bottom-color: var(--wine); }

.btn-stamp {
  margin-top: 12px;
  background: var(--wine);
  color: var(--cream-paper);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .16em;
  padding: 14px 18px;
  border-radius: 2px;
  position: relative;
  text-transform: uppercase;
  box-shadow:
    0 0 0 2px var(--cream-paper),
    0 0 0 3px var(--gold),
    0 4px 0 var(--wine-deep),
    0 10px 24px rgba(42,24,16,.3);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.btn-stamp:hover {
  transform: translateY(-2px) rotate(-.5deg);
  box-shadow:
    0 0 0 2px var(--cream-paper),
    0 0 0 3px var(--gold-light),
    0 6px 0 var(--wine-deep),
    0 14px 30px rgba(42,24,16,.35);
}
.btn-stamp:active { transform: translateY(1px); }

.form-message {
  margin: 8px 0 0;
  font-size: 13px;
  min-height: 18px;
  color: var(--olive);
}
.form-message.error { color: var(--wine); }
.form-message.success { color: var(--olive-deep); font-weight: 600; }

/* ticket on light backgrounds */
.ticket.light {
  background-color: var(--cream-paper);
}

/* responsive ticket */
@media (max-width: 560px) {
  .ticket { flex-direction: column; }
  .ticket-stub {
    width: 100%;
    flex-direction: row;
    border-right: 0;
    border-bottom: 2px dashed rgba(242,230,204,.35);
    padding: 10px 12px;
  }
  .ticket-stub .big { font-size: 22px; }
  .ticket::before {
    top: 78px;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 2px;
    background-image: radial-gradient(circle, var(--cream) 2px, transparent 2.5px);
    background-size: 10px 6px;
    background-repeat: repeat-x;
  }
  .ticket::after {
    left: -8px;
    right: auto;
    top: 70px;
    box-shadow: calc(100% + 8px) 0 0 var(--cream);
  }
}

/* ---------- AZULEJO TILE PATTERN ---------- */
.azulejo-band {
  height: 64px;
  background-color: var(--cream);
  background-image:
    /* central diamond */
    radial-gradient(circle at 50% 50%, var(--tile-blue) 6px, transparent 6.5px),
    /* corner dots */
    radial-gradient(circle at 0% 0%, var(--tile-blue) 4px, transparent 4.5px),
    radial-gradient(circle at 100% 0%, var(--tile-blue) 4px, transparent 4.5px),
    radial-gradient(circle at 0% 100%, var(--tile-blue) 4px, transparent 4.5px),
    radial-gradient(circle at 100% 100%, var(--tile-blue) 4px, transparent 4.5px),
    /* inner gold dots */
    radial-gradient(circle at 25% 50%, var(--gold) 2px, transparent 2.5px),
    radial-gradient(circle at 75% 50%, var(--gold) 2px, transparent 2.5px),
    radial-gradient(circle at 50% 25%, var(--gold) 2px, transparent 2.5px),
    radial-gradient(circle at 50% 75%, var(--gold) 2px, transparent 2.5px),
    /* cross lines */
    linear-gradient(0deg, transparent 48%, rgba(60,90,122,.4) 48% 52%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(60,90,122,.4) 48% 52%, transparent 52%),
    /* subtle warm tile fill */
    linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  background-size: 56px 56px;
  background-position: center;
  border-top: 4px solid var(--wine);
  border-bottom: 4px solid var(--wine);
  box-shadow:
    inset 0 4px 0 var(--gold),
    inset 0 -4px 0 var(--gold);
  position: relative;
}
.azulejo-band.tall { height: 96px; }

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  padding-block: clamp(60px, 8vw, 100px);
}

/* paper texture sections */
.guide-section,
.who-section,
.faq-section {
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 10% 10%, rgba(212,162,74,.08), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(139,42,42,.05), transparent 55%),
    repeating-linear-gradient(90deg, rgba(106,68,35,.015) 0 2px, transparent 2px 6px);
}

.about-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(212,162,74,.10), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(74,90,62,.08), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.testimonials-section {
  background-color: var(--olive-deep);
  background-image:
    /* faint tile pattern over olive */
    radial-gradient(circle at 50% 50%, rgba(212,162,74,.10) 4px, transparent 4.5px),
    radial-gradient(circle at 0 0, rgba(212,162,74,.06) 3px, transparent 3.5px),
    radial-gradient(circle at 100% 100%, rgba(212,162,74,.06) 3px, transparent 3.5px),
    linear-gradient(135deg, var(--olive-deep) 0%, var(--olive) 100%);
  background-size: 48px 48px, 48px 48px, 48px 48px, 100% 100%;
  color: var(--cream-paper);
}
.testimonials-section .section-script { color: var(--gold-light); }
.testimonials-section .ribbon-text { background: var(--wine); }

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.section-script {
  font-size: clamp(44px, 7vw, 84px);
  color: var(--wine);
  line-height: .9;
  text-shadow: 0 2px 0 rgba(212,162,74,.25);
}

.section-sub {
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 17px;
  margin-top: 4px;
}

/* ---------- RIBBON BANNER ---------- */
.ribbon-banner {
  display: inline-flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.ribbon-text {
  background: var(--wine);
  color: var(--cream-paper);
  padding: 8px 28px 9px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  box-shadow:
    inset 0 0 0 2px var(--gold),
    inset 0 0 0 4px var(--wine),
    inset 0 0 0 5px rgba(212,162,74,.5);
}
.ribbon-tail {
  width: 14px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ribbon-tail.left {
  background: var(--wine-deep);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  margin-right: -2px;
}
.ribbon-tail.right {
  background: var(--wine-deep);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin-left: -2px;
}
.ribbon-banner.alt .ribbon-text { background: var(--olive); }
.ribbon-banner.alt .ribbon-tail.left,
.ribbon-banner.alt .ribbon-tail.right { background: var(--olive-deep); }

.ribbon-banner.gold .ribbon-text {
  background: var(--gold);
  color: var(--ink);
  box-shadow:
    inset 0 0 0 2px var(--wine),
    inset 0 0 0 4px var(--gold),
    inset 0 0 0 5px rgba(139,42,42,.5);
}
.ribbon-banner.gold .ribbon-tail.left,
.ribbon-banner.gold .ribbon-tail.right { background: var(--gold-deep); }

.ribbon-banner.small .ribbon-text {
  padding: 6px 18px 7px;
  font-size: 13px;
}

/* ---------- POSTCARDS (guide cards) ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.postcard {
  position: relative;
  background: var(--cream-paper);
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(212,162,74,.10), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(139,42,42,.06), transparent 55%);
  padding: 28px 26px 26px;
  border: 1px solid rgba(106,68,35,.18);
  box-shadow: var(--shadow-paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.postcard:hover {
  transform: translateY(-4px) rotate(-.3deg);
  box-shadow: 0 4px 0 rgba(42,24,16,.06), 0 22px 44px rgba(42,24,16,.22);
}
.postcard-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
}
.postcard-corner.tl { top: 8px; left: 8px;  border-right: 0; border-bottom: 0; }
.postcard-corner.tr { top: 8px; right: 8px; border-left: 0;  border-bottom: 0; }
.postcard-corner.bl { bottom: 8px; left: 8px;  border-right: 0; border-top: 0; }
.postcard-corner.br { bottom: 8px; right: 8px; border-left: 0;  border-top: 0; }

.postcard-head {
  border-bottom: 1.5px solid rgba(139,42,42,.25);
  padding-bottom: 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.card-num {
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold-deep);
}
.postcard h3 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--wine);
  letter-spacing: .01em;
  line-height: 1.1;
}

.postcard p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 14px;
}

.star-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.star-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14.5px;
}
.star-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 13px;
  top: 1px;
}

/* ---------- WHO IT'S FOR — POSTERS ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.poster {
  position: relative;
}
.poster-frame {
  background: var(--cream-paper);
  background-image:
    radial-gradient(ellipse at 30% 10%, rgba(212,162,74,.12), transparent 60%),
    radial-gradient(ellipse at 70% 90%, rgba(139,42,42,.08), transparent 60%);
  padding: 36px 32px 32px;
  border: 2px solid var(--wine);
  position: relative;
  box-shadow:
    inset 0 0 0 1px var(--gold),
    inset 0 0 0 8px var(--cream-paper),
    inset 0 0 0 9px var(--gold),
    var(--shadow-paper);
  text-align: center;
  transition: transform .3s var(--ease);
}
.poster:nth-child(1) .poster-frame { transform: rotate(-.6deg); }
.poster:nth-child(2) .poster-frame { transform: rotate(.4deg); }
.poster:hover .poster-frame { transform: rotate(0); }

.poster-stars {
  font-size: 18px;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 16px;
}
.poster-title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--wine);
  line-height: .95;
  letter-spacing: .01em;
}
.poster-rule {
  width: 56px;
  height: 4px;
  background: var(--gold);
  margin: 18px auto;
  position: relative;
}
.poster-rule::before,
.poster-rule::after {
  content: "★";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 14px;
}
.poster-rule::before { left: -22px; }
.poster-rule::after  { right: -22px; }

.poster-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .14em;
  color: var(--olive);
  margin-bottom: 18px;
}
.poster-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.poster-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.5;
}
.poster-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--wine);
  font-size: 14px;
}
.poster-foot {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .18em;
  color: var(--gold-deep);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}

.polaroid {
  background: var(--cream-paper);
  padding: 18px 18px 70px;
  box-shadow: var(--shadow-deep);
  transform: rotate(-2deg);
  position: relative;
  max-width: 560px;
  margin-inline: auto;
  transition: transform .4s var(--ease);
}
.polaroid:hover { transform: rotate(-1deg) translateY(-4px); }
.polaroid img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.92) contrast(.98);
}
.polaroid::after {
  /* tape */
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 110px;
  height: 22px;
  background: rgba(212,162,74,.55);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.polaroid-caption {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align: center;
  padding-top: 6px;
}
.script-tiny {
  font-family: 'Yellowtail', cursive;
  font-size: 26px;
  color: var(--wine);
  display: block;
  line-height: 1;
}
.caption-sub {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--olive);
}

.about-copy { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.about-copy .section-script { font-size: clamp(36px, 5vw, 64px); text-align: left; }
.about-copy p { color: var(--ink-soft); font-size: 17px; }

.stat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-block: 16px;
  width: 100%;
  border-top: 1.5px solid rgba(139,42,42,.25);
  border-bottom: 1.5px solid rgba(139,42,42,.25);
  padding-block: 18px;
}
.stat-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.stat-num {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--wine);
  line-height: 1;
}
.stat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--olive);
  text-transform: uppercase;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wine);
  color: var(--cream-paper);
  padding: 14px 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .14em;
  border-radius: 2px;
  box-shadow:
    0 0 0 2px var(--gold),
    0 4px 0 var(--wine-deep),
    0 12px 24px rgba(42,24,16,.25);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.btn-youtube:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px var(--gold-light),
    0 6px 0 var(--wine-deep),
    0 16px 32px rgba(42,24,16,.3);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.testi-card {
  position: relative;
  background: var(--cream-paper);
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(212,162,74,.10), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(139,42,42,.06), transparent 55%);
  padding: 30px 26px 26px;
  border: 1px solid rgba(106,68,35,.2);
  box-shadow: var(--shadow-paper);
  transform: rotate(-.4deg);
  transition: transform .3s var(--ease);
}
.testi-card:nth-child(2) { transform: rotate(.5deg); }
.testi-card:nth-child(3) { transform: rotate(-.2deg); }
.testi-card:hover { transform: rotate(0) translateY(-3px); }

.testi-quote {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-quote::before {
  content: "“";
  font-family: 'Yellowtail', cursive;
  font-size: 60px;
  color: var(--gold);
  display: block;
  line-height: .5;
  margin: 8px 0 8px;
}

.testi-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed rgba(74,90,62,.4);
}
.testi-name {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .14em;
  color: var(--wine);
  font-size: 15px;
}
.testi-stamp {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--cream-paper);
  background: var(--olive);
  padding: 4px 10px;
  border: 1px dashed rgba(242,230,204,.6);
  transform: rotate(-3deg);
}

/* ---------- FAQ ---------- */
.faq-container { max-width: 820px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--cream-paper);
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(212,162,74,.08), transparent 60%);
  border: 1px solid rgba(106,68,35,.2);
  box-shadow: var(--shadow-paper);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(212,162,74,.1); }

.faq-q {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: .01em;
  text-transform: none;
  color: var(--ink);
  line-height: 1.3;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream-paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alfa Slab One', serif;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .25s var(--ease), background .2s var(--ease);
  box-shadow: 0 0 0 2px var(--gold);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--olive);
}
.faq-a {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 15.5px;
  border-top: 1px dashed rgba(139,42,42,.25);
  margin-top: 0;
  padding-top: 16px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background-color: var(--wine);
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(212,162,74,.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(0,0,0,.25), transparent 55%),
    repeating-linear-gradient(135deg, rgba(212,162,74,.04) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: var(--cream-paper);
  padding-block: clamp(70px, 10vw, 120px);
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
  position: relative;
  overflow: hidden;
}
/* gold rays radiating from center, like the logo */
.final-cta::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  transform: translateX(-50%);
  background:
    repeating-conic-gradient(from 0deg, rgba(212,162,74,.1) 0 4deg, transparent 4deg 14deg);
  pointer-events: none;
  opacity: .5;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.final-script {
  font-size: clamp(56px, 9vw, 110px);
  color: var(--gold-light);
  text-shadow: 0 4px 0 var(--wine-deep), 0 0 40px rgba(232,199,123,.3);
}

.final-slab {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: .06em;
  color: var(--cream-paper);
  text-transform: uppercase;
  max-width: 38ch;
  line-height: 1.3;
}

.gold-trust { color: var(--gold-light); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--olive-deep);
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(212,162,74,.08), transparent 60%),
    linear-gradient(180deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: var(--cream-paper);
  padding-block: 40px;
  border-top: 4px solid var(--gold);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold), 0 6px 18px rgba(0,0,0,.4);
}
.footer-text {
  display: flex;
  flex-direction: column;
}
.footer-script {
  font-family: 'Yellowtail', cursive;
  font-size: 30px;
  color: var(--gold-light);
  line-height: 1;
}
.footer-meta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--cream-paper);
  opacity: .8;
  margin-top: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .14em;
  color: var(--gold-light);
  padding: 10px 16px;
  border: 1px solid rgba(212,162,74,.4);
  border-radius: 2px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
}
.copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  letter-spacing: .14em;
  font-family: 'Bebas Neue', sans-serif;
  color: rgba(242,230,204,.5);
  border-top: 1px dashed rgba(212,162,74,.25);
  padding-top: 18px;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- FOCUS STATES ---------- */
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- HERO LOGO TEXT (replaces image in hero) ---------- */
.hero-logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 40px 14px;
  border-radius: 6px;
  box-shadow:
    0 0 0 3px rgba(212,162,74,.6),
    0 0 0 5px rgba(42,24,16,.3),
    0 18px 50px rgba(0,0,0,.55),
    0 0 80px rgba(232,199,123,.25);
  transform: rotate(-1.5deg);
  background: rgba(42,24,16,.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-logo-name {
  font-family: 'Yellowtail', cursive;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--gold-light);
  line-height: 1.15;
  letter-spacing: .02em;
}
.hero-logo-brand {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(30px, 4.8vw, 56px);
  color: var(--cream-paper);
  letter-spacing: .05em;
  line-height: 1.05;
  text-transform: uppercase;
}

/* ---------- HERO PERSONAL LINE ---------- */
.hero-personal {
  font-family: 'Yellowtail', cursive;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--gold-light);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  max-width: 38ch;
  text-align: center;
  line-height: 1.3;
}

/* ---------- ANCHOR BUTTONS (resource / course CTAs inside poster/postcard) ---------- */
a.btn-stamp,
a.resource-btn,
a.course-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-top: 18px;
  width: 100%;
}

/* ---------- COURSE GRID (single centered card) ---------- */
.course-grid {
  max-width: 680px;
  margin-inline: auto;
}

/* ---------- BUY / INSTRUMENTS SECTION ---------- */
.buy-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  background-image:
    radial-gradient(ellipse at 10% 10%, rgba(212,162,74,.08), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(139,42,42,.05), transparent 55%);
}
.buy-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.buy-note {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}
.buy-cta a.btn-stamp {
  width: auto;
  padding-inline: 28px;
}
