/* ============================================================
   Into the Woods JR. — Coming Soon
   Clemson Area Youth Theatre · Clemson Little Theatre
   Brand tokens from CLT design system + accents pulled from
   the show poster (forest green, cape red, title gold).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rosario:ital,wght@0,300..700;1,300..700&family=Alfa+Slab+One&family=Allura&display=swap');

@font-face {
  /* LowCasat retired: free version is personal-use-only and stamps a
     "for personal use" watermark over every digit. Kept commented for reference. */
  font-family: 'LowCasatDisabled';
  src: url('./fonts/LowCasatLight.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* CLT brand */
  --clt-maroon: #6d3335;
  --clt-maroon-600: #854347;
  --clt-maroon-800: #5a2829;
  --clt-maroon-900: #4a1f21;
  --clt-rose: #cd9f9f;
  --clt-cream: #f7f1ea;
  --clt-paper: #ece4d7;
  --clt-graphite: #4c4c4c;

  /* Pulled from the poster artwork */
  --woods-deep: #21331f;
  --woods-night: #18261a;
  --woods-green: #3c5a34;
  --woods-mid: #5d7e49;
  --woods-lit: #8aa75f;
  --cape-red: #d83a2b;
  --cape-red-deep: #b22a20;
  --gold: #e9b73c;
  --gold-soft: #f6dc93;
  --gold-glow: rgba(233,183,60,0.55);

  /* type */
  --font-sans: 'Rosario', system-ui, sans-serif;
  --font-display: 'Alfa Slab One', Georgia, serif;
  --font-script: 'Allura', 'Brush Script MT', cursive;
  --font-playful: 'Rosario', system-ui, sans-serif;

  --tracking-wider: 0.22em;
  --tracking-wide: 0.08em;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--woods-night);
  color: var(--clt-graphite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.eyebrow {
  font-weight: 600;
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2.2vw, 30px) clamp(20px, 4vw, 56px);
  transition: background 0.4s var(--ease-standard), padding 0.4s var(--ease-standard);
}
.topbar.scrolled {
  background: rgba(24,38,26,0.82);
  backdrop-filter: blur(8px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 rgba(233,183,60,0.18);
}
.topbar__logo { height: clamp(52px, 5.6vw, 74px); width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.topbar__tag {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--gold);
  font-family: var(--font-playful);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.1vw, 0.86rem);
  letter-spacing: 0.18em;
}
.topbar__tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cape-red);
  box-shadow: 0 0 0 0 rgba(216,58,43,0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(216,58,43,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(216,58,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,58,43,0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(92px, 13vh, 140px) 20px clamp(60px, 9vh, 100px);
}
.hero__bg {
  position: absolute;
  inset: -8% 0 -8% 0;
  width: 100%;
  height: 116%;
  z-index: 0;
  will-change: transform;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
/* cinematic scrims to seat text + deepen the woods */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero__scrim.vignette {
  background:
    radial-gradient(120% 90% at 50% 32%, transparent 38%, rgba(20,32,20,0.55) 100%);
}
.hero__scrim.top {
  background: linear-gradient(to bottom, rgba(17,26,18,0.85) 0%, rgba(17,26,18,0) 26%);
}
.hero__scrim.bottom {
  background: linear-gradient(to top, var(--woods-night) 2%, rgba(24,38,26,0.5) 24%, transparent 55%);
}

/* drifting fog */
.fog {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.fog span {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.5;
  background: radial-gradient(circle, rgba(214,224,196,0.55), rgba(214,224,196,0) 70%);
}
.fog span:nth-child(1){ width: 60vw; height: 28vh; left:-20vw; top: 30%; animation: drift1 26s linear infinite; }
.fog span:nth-child(2){ width: 48vw; height: 22vh; right:-18vw; top: 52%; opacity:0.4; animation: drift2 34s linear infinite; }
.fog span:nth-child(3){ width: 38vw; height: 18vh; left: 18vw; top: 12%; opacity:0.3; animation: drift1 44s linear infinite; }
@keyframes drift1 { 0%{transform:translateX(-8vw)} 50%{transform:translateX(60vw)} 100%{transform:translateX(120vw)} }
@keyframes drift2 { 0%{transform:translateX(8vw)} 50%{transform:translateX(-50vw)} 100%{transform:translateX(-110vw)} }

.hero__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}

.hero__eyebrow {
  color: var(--gold-soft);
  margin-bottom: clamp(10px, 1.6vh, 20px);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero__eyebrow b { color: #fff; font-weight: 700; }

.hero__title {
  width: clamp(230px, 40vw, 430px);
  filter: drop-shadow(0 6px 22px rgba(0,0,0,0.55)) drop-shadow(0 0 30px var(--gold-glow));
}

.hero__present {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  color: #fff;
  line-height: 1;
  margin: clamp(2px,1vh,10px) 0 clamp(16px,2.2vh,26px);
  text-shadow: 0 3px 16px rgba(0,0,0,0.6);
}

/* date ribbon with marquee bulbs */
.hero__dates {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.8rem);
  color: #fff;
  letter-spacing: 0.01em;
  padding: 12px 30px;
  border-radius: 8px;
  background: rgba(74,31,33,0.66);
  border: 2px solid rgba(233,183,60,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.06);
  backdrop-filter: blur(3px);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero__dates .yr { color: var(--gold); }

.hero__sub {
  margin-top: clamp(18px, 2.6vh, 30px);
  color: rgba(255,255,255,0.86);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* scroll cue */
.scrollcue {
  position: absolute; left: 50%; bottom: clamp(20px, 4vh, 40px);
  transform: translateX(-50%);
  z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.scrollcue .mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.55); border-radius: 12px;
  position: relative;
}
.scrollcue .mouse::after {
  content:""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: var(--gold);
  animation: wheel 1.8s infinite;
}
@keyframes wheel { 0%{opacity:0; transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0; transform:translate(-50%,12px)} }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(10px, 2.2vw, 26px);
  margin-top: clamp(20px, 3vh, 36px);
}
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: clamp(56px, 9vw, 96px); }
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 3px 0 rgba(74,31,33,0.6), 0 6px 22px rgba(0,0,0,0.5);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  margin-top: 8px;
  font-size: clamp(0.6rem, 1vw, 0.78rem);
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.78);
}
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: rgba(233,183,60,0.5);
  line-height: 1.1;
  padding-top: clamp(2px,1vw,8px);
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.sec-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vh, 70px); }
.sec-eyebrow {
  display: inline-block;
  color: var(--cape-red);
  margin-bottom: 16px;
}
.sec-eyebrow.on-dark { color: var(--gold); }
.sec-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--clt-maroon);
  margin: 0;
  text-shadow: 0 3px 0 rgba(109,51,53,0.18);
}
.sec-title.on-dark { color: #fff; text-shadow: 0 3px 0 rgba(0,0,0,0.4); }
.sec-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--cape-red);
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.sec-script.on-dark { color: var(--gold); }

/* ============================================================
   ABOUT (cream/paper, storybook)
   ============================================================ */
.about {
  background: var(--clt-cream);
  background-image: radial-gradient(rgba(109,51,53,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: clamp(70px, 12vh, 150px) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.poster-frame {
  position: relative;
  justify-self: center;
  padding: 14px;
  background: linear-gradient(160deg, #fff, var(--clt-paper));
  border: 1px solid rgba(109,51,53,0.18);
  border-radius: 6px;
  box-shadow: 0 26px 60px rgba(74,31,33,0.28);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-out);
  max-width: 380px;
}
.poster-frame:hover { transform: rotate(0deg) scale(1.02); }
.poster-frame img { border-radius: 3px; }
.poster-frame::after {
  content: "Coming Soon · October 2026";
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--cape-red); color: #fff;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 18px rgba(178,42,32,0.4);
}
.about__body .lede {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--clt-maroon);
  line-height: 1.05;
  margin: 0 0 22px;
}
.about__body p {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
  color: var(--clt-graphite);
  margin: 0 0 18px;
}
.about__meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(109,51,53,0.16);
}
.about__meta .item .k {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--cape-red); font-weight: 600; margin-bottom: 4px;
}
.about__meta .item .v {
  font-family: var(--font-display); font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--clt-maroon);
}

/* ============================================================
   CHARACTERS (deep woods, immersive)
   ============================================================ */
.cast {
  position: relative;
  background:
    linear-gradient(180deg, var(--woods-night), var(--woods-deep) 40%, var(--woods-night));
  padding: clamp(80px, 13vh, 160px) 0;
  overflow: hidden;
}
.cast::before {
  /* faint tree silhouettes */
  content:""; position: absolute; inset: 0; pointer-events:none; opacity: 0.5;
  background:
    repeating-linear-gradient(90deg, transparent 0 8vw, rgba(0,0,0,0.18) 8vw 8.6vw);
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.cast__intro {
  text-align: center; max-width: 720px; margin: 0 auto clamp(40px,6vh,64px);
  color: rgba(255,255,255,0.82);
}
.cast__intro p { font-size: clamp(1rem,1.5vw,1.18rem); line-height: 1.7; }
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 26px);
  position: relative; z-index: 2;
}
.char {
  position: relative;
  background: linear-gradient(165deg, rgba(247,241,234,0.97), rgba(236,228,215,0.95));
  border-radius: 8px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(233,183,60,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.char:hover { transform: translateY(-8px); box-shadow: 0 26px 56px rgba(0,0,0,0.5); }
.char::before {
  content: attr(data-emblem);
  position: absolute; top: -14px; right: -6px;
  font-family: var(--font-script);
  font-size: 5.4rem;
  color: rgba(216,58,43,0.12);
  line-height: 1;
  pointer-events: none;
}
.char__no {
  font-family: var(--font-display);
  font-size: 0.85rem; color: var(--cape-red); letter-spacing: 0.1em;
}
.char__name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--clt-maroon); line-height: 1.05;
  margin: 6px 0 14px;
}
.char__wishlabel {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--woods-mid); font-weight: 700; margin-bottom: 4px;
}
.char__wish {
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  color: var(--clt-maroon-800);
  line-height: 1.1;
}
.cast__foot {
  text-align: center; margin-top: clamp(36px,5vh,52px);
  position: relative; z-index: 2;
  color: var(--gold-soft); font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

/* ============================================================
   GET INVOLVED — auditions + tickets teasers
   ============================================================ */
.involve {
  background: var(--clt-cream);
  padding: clamp(70px, 12vh, 150px) 0;
}
.teasers { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 34px); }
.teaser {
  position: relative;
  border-radius: 14px;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 340px;
}
.teaser.auditions {
  background: linear-gradient(165deg, var(--clt-maroon), var(--clt-maroon-900));
  color: #fff;
}
.teaser.tickets {
  background: linear-gradient(165deg, var(--woods-green), var(--woods-deep));
  color: #fff;
}
.teaser__badge {
  align-self: flex-start;
  white-space: nowrap;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.14); color: var(--gold-soft);
  border: 1px solid rgba(233,183,60,0.45);
}
.teaser__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.05;
  margin: 30px 0 12px;
}
.teaser__title .em { color: var(--gold); display: block; white-space: nowrap; }
.teaser p { color: rgba(255,255,255,0.85); font-size: clamp(0.98rem,1.4vw,1.12rem); line-height: 1.6; margin: 0 0 22px; }

/* compact auditions countdown */
.mini-cd {
  margin-top: auto;
  display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap;
  padding-top: 8px;
}
.mini-cd__unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(233,183,60,0.35);
  border-radius: 8px;
  padding: 8px 12px 6px;
  min-width: 56px;
}
.mini-cd__num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.mini-cd__lab {
  margin-top: 5px; font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.7);
}
.mini-cd__cap {
  font-family: var(--font-script); font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  color: var(--gold-soft); line-height: 1.1; padding-bottom: 6px;
}
.teaser__soon {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-playful);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  color: #fff;
}
.teaser__soon .bulb {
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold);
  box-shadow: var(--gold-glow) 0 0 14px; animation: bulb 1.6s ease-in-out infinite;
}
@keyframes bulb { 0%,100%{opacity:0.55} 50%{opacity:1} }
.involve__note {
  text-align: center; margin-top: clamp(40px,6vh,60px);
  color: var(--clt-maroon); font-size: clamp(1rem,1.5vw,1.2rem);
}
.involve__note .script { font-family: var(--font-script); color: var(--cape-red); font-size: 1.5em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background:
    radial-gradient(120% 140% at 50% 0%, var(--clt-maroon-800) 0%, var(--clt-maroon-900) 55%, #3c1719 100%);
  color: rgba(255,255,255,0.82);
  padding: clamp(56px, 8vh, 90px) 0 44px;
  text-align: center;
}
.footer__bulbs {
  height: 14px; width: 100%;
  background-image: radial-gradient(circle, var(--gold) 32%, transparent 38%);
  background-size: 26px 14px; background-repeat: repeat-x; background-position: center;
  opacity: 0.85; margin-bottom: clamp(40px,6vh,64px);
  animation: bulbrun 2.4s linear infinite;
}
@keyframes bulbrun { from{background-position-x:0} to{background-position-x:26px} }
.footer__inner { display: flex; flex-direction: column; align-items: center; }
.footer__title {
  font-family: var(--font-script); font-size: clamp(2.4rem,5.5vw,3.6rem); color: var(--gold);
  line-height: 1; margin: 0 0 14px; text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.footer__run {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem); letter-spacing: 0.03em; color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: clamp(34px, 5vh, 52px);
}
.footer__run-date {
  color: #fff; font-weight: 600; white-space: nowrap;
  font-size: clamp(1rem, 1.6vw, 1.2rem); letter-spacing: 0.04em;
}
.footer__run-venue { color: var(--gold-soft); white-space: nowrap; }
/* ---- "Presented by" — framed playbill credit ---- */
.presents {
  width: 100%;
  max-width: 720px;
  margin: 0 0 clamp(34px, 5vh, 50px);
}
.presents__head {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 20px;
}
.presents__rule {
  height: 1px; flex: 1; max-width: 150px;
  background: linear-gradient(to var(--dir, right), transparent, rgba(233,183,60,0.7));
  position: relative;
}
.presents__head .presents__rule:last-child { --dir: left; }
.presents__rule::after {
  content: ""; position: absolute; top: 50%; right: -1px; transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px; background: var(--gold);
}
.presents__head .presents__rule:last-child::after { right: auto; left: -1px; }
.presents__label {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.1vw, 0.82rem);
  text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--gold-soft); white-space: nowrap; padding-left: 0.32em;
}

.presents__panel {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(30px, 4vw, 46px) clamp(34px, 5vw, 66px);
  background:
    linear-gradient(165deg, #fffdf8 0%, var(--clt-cream) 60%, #efe5d4 100%);
  border-radius: 6px;
  box-shadow:
    0 26px 60px rgba(0,0,0,0.42),
    inset 0 0 0 1px rgba(255,255,255,0.7),
    inset 0 0 0 7px var(--clt-cream),
    inset 0 0 0 8px rgba(184,138,42,0.55);
}
/* gold corner flourishes */
.presents__corner {
  position: absolute; width: 20px; height: 20px; z-index: 2;
  border-color: var(--gold); border-style: solid; border-width: 0;
}
.presents__corner.tl { top: 13px; left: 13px; border-top-width: 2px; border-left-width: 2px; }
.presents__corner.tr { top: 13px; right: 13px; border-top-width: 2px; border-right-width: 2px; }
.presents__corner.bl { bottom: 13px; left: 13px; border-bottom-width: 2px; border-left-width: 2px; }
.presents__corner.br { bottom: 13px; right: 13px; border-bottom-width: 2px; border-right-width: 2px; }
.presents__corner::after {
  content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.presents__corner.tl::after { top: -3px; left: -3px; }
.presents__corner.tr::after { top: -3px; right: -3px; }
.presents__corner.bl::after { bottom: -3px; left: -3px; }
.presents__corner.br::after { bottom: -3px; right: -3px; }

.presents__logo { display: inline-flex; transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out); }
.presents__logo:hover { transform: translateY(-3px); filter: drop-shadow(0 8px 16px rgba(109,51,53,0.28)); }
.presents__logo img { display: block; width: auto; }
.presents__logo:first-of-type img { height: clamp(58px, 8vw, 90px); }   /* CLT */
.presents__logo:last-of-type img  { height: clamp(46px, 6.4vw, 72px); } /* CAYT (wider lockup) */

.presents__amp {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.8;
  color: var(--cape-red);
  position: relative;
  padding: 0 4px;
}
.presents__amp::before, .presents__amp::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 1px; height: clamp(18px, 3vw, 30px);
  background: linear-gradient(var(--g, to bottom), rgba(184,138,42,0.6), transparent);
}
.presents__amp::before { bottom: 100%; margin-bottom: 6px; }
.presents__amp::after { top: 100%; margin-top: 6px; --g: to top; }
.footer__follow {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: rgba(255,255,255,0.8); line-height: 1.7; margin: 0 0 6px;
}
.footer__follow-script {
  font-family: var(--font-script); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--gold);
  display: inline-block; margin-top: 4px;
}
.footer__legal {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.74rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 760px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* hero entrance */
.hero__inner > * { animation: rise 1.1s var(--ease-out) both; }
.hero__eyebrow { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.28s; }
.hero__present { animation-delay: 0.5s; }
.hero__dates { animation-delay: 0.66s; }
.countdown { animation-delay: 0.8s; }
.hero__sub { animation-delay: 0.92s; }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .poster-frame { transform: rotate(-1.5deg); margin-bottom: 26px; }
  .teasers { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cd-sep { display: none; }
  .countdown { gap: 14px; flex-wrap: wrap; }
  .hero__dates { font-size: 1rem; padding: 10px 18px; gap: 10px; flex-wrap: wrap; }
  .topbar__tag span.label { display: none; }
}
