/* ============================================================
   The Box Office — site styles
   Brand: black #0a0a0a · white #fff · green #6BC04F
   Type:  Archivo (heavy grotesk, echoes the logo wordmark)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #161616;
  --white: #ffffff;
  --green: #6BC04F;
  --green-dark: #59a840;
  --grey: #f4f5f3;
  --grey-2: #e7e8e4;
  --muted: #6b6f6a;
  --maxw: 1180px;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Headings ---- */
h1, h2, h3, h4 { font-weight: 900; line-height: 1.02; letter-spacing: -0.02em; text-transform: lowercase; }
h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem;
  font-weight: 800; color: var(--muted); margin-bottom: 1rem;
}
.eyebrow-green { color: var(--green-dark); }
.center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; text-decoration: none;
  padding: 0.85rem 1.9rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .2s ease, color .2s ease;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1.05rem; }
.btn-green { background: var(--green); color: var(--black); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1rem; }
.nav a:not(.btn):hover { color: var(--green-dark); }
.nav-cta { color: var(--black) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--black); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 25%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.64) 48%, rgba(0,0,0,.42) 100%); }
.hero-content { position: relative; z-index: 2; padding: 5rem 24px; max-width: 760px; }
.hero .eyebrow { color: var(--green); }
.hero h1 { margin-bottom: 1.4rem; font-size: clamp(3.1rem, 9vw, 6.3rem); letter-spacing: -0.035em; text-shadow: 0 2px 22px rgba(0,0,0,.5); }
.hero h1 .hl { color: var(--green); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 540px; color: #eceee9; margin-bottom: 2rem; text-shadow: 0 1px 14px rgba(0,0,0,.55); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-foot { font-size: .9rem; color: #cfd2cc; letter-spacing: .02em; }
.hero-rating { font-size: .95rem; color: #eceee9; margin-bottom: .55rem; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.hero-rating strong { color: #fff; }
.stars { color: #ffc83d; letter-spacing: 1px; }
.offer-rating { color: #44483f; font-weight: 700; margin-top: 1.4rem; }

/* ============ REVIEWS ============ */
.reviews { padding: 7rem 0; background: var(--grey); }
.reviews h2 { margin: .4rem 0 .6rem; }
.reviews-rating { text-align: center; color: var(--ink); margin: 0 auto 3rem; font-size: 1.1rem; }
.reviews-rating strong { font-weight: 800; }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 2.6rem; }
.review { background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 10px 30px rgba(0,0,0,.06); display: flex; flex-direction: column; gap: 1rem; }
.review blockquote { margin: 0; font-size: 1.02rem; line-height: 1.55; color: #2a2d27; }
.review figcaption { font-weight: 800; display: flex; flex-direction: column; }
.review figcaption span { font-weight: 600; font-size: .8rem; color: var(--muted); margin-top: .15rem; }

/* ============ FAQ ============ */
.faq { padding: 7rem 0; }
.faq h2 { margin: .4rem 0 2.6rem; }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: .8rem; }
.faq details { border: 1px solid var(--grey-2); border-radius: 8px; padding: 0 1.2rem; background: var(--white); }
.faq details[open] { border-color: var(--green); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; padding: 1.1rem 0; position: relative; padding-right: 2rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--green-dark); font-weight: 800; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 1.2rem; color: var(--muted); line-height: 1.6; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============ STICKY MOBILE CTA ============ */
.mobile-cta { display: none; }

/* ============ STRIP ============ */
.strip { background: var(--black); color: var(--white); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.2rem 24px; }
.strip-grid div { display: flex; flex-direction: column; }
.strip-grid strong { font-size: 1.15rem; font-weight: 800; }
.strip-grid span { color: #b8bcb4; font-size: .9rem; }

/* ============ TRIAL ============ */
.trial { background: var(--grey); padding: 7rem 0; }
.trial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.trial-copy { position: relative; }
.wraps-accent { float: right; width: 130px; height: auto; margin: 0 0 .5rem 1.2rem; transform: rotate(4deg); filter: drop-shadow(0 12px 22px rgba(0,0,0,.16)); }
.trial-copy h2 { margin-bottom: 1.2rem; }
.trial-copy > p { color: #44483f; font-size: 1.08rem; margin-bottom: 1.5rem; }
.ticks { list-style: none; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 2rem; font-weight: 600; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  background: var(--green); border-radius: 4px;
}
.ticks li::after { content: "✓"; position: absolute; left: 4px; top: 1px; color: #0a0a0a; font-weight: 900; font-size: .8rem; }
.trial-form { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: 0 18px 50px rgba(0,0,0,.10); }
.trial-form h3 { margin-bottom: 1.2rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }

/* ============ WHY ============ */
.why { padding: 7rem 0; }
.why-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }
.why-img img { border-radius: var(--radius); height: 100%; max-height: 560px; object-fit: cover; width: 100%; }
.why-copy h2 { margin-bottom: 1.2rem; }
.why-copy > p { color: #44483f; font-size: 1.08rem; margin-bottom: 2rem; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.point h4 { margin-bottom: .3rem; text-transform: none; }
.point p { color: var(--muted); font-size: .95rem; }
.point { border-left: 3px solid var(--green); padding-left: 1rem; }

/* ============ CLASSES ============ */
.classes { background: var(--black); color: var(--white); padding: 7rem 0; }
.classes h2 { margin: .4rem 0 3rem; }
.class-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card { background: #141414; border-radius: var(--radius); overflow: hidden; border: 1px solid #242424; }
.card img { height: 220px; width: 100%; object-fit: cover; }
.card-body { padding: 1.4rem; }
.card-body h3 { text-transform: none; margin-bottom: .5rem; }
.card-body p { color: #b8bcb4; font-size: .95rem; }
.class-foot { color: #b8bcb4; margin-top: 2.5rem; }
.class-intro { color: #c2c6bd; max-width: 640px; margin: 0 auto 3rem; text-align: center; font-size: 1.05rem; }
.class-chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 2.8rem; }
.class-chips span { border: 1px solid #2f2f2f; color: #e7e8e4; padding: .45rem .95rem; border-radius: 999px; font-size: .85rem; font-weight: 600; }
.contact-list .cl-val { color: var(--ink); font-size: 1.15rem; font-weight: 600; }
.juniors-note { max-width: 760px; margin: 2.6rem auto 0; text-align: center; background: rgba(107,192,79,.12); border: 1px solid rgba(107,192,79,.45); border-radius: var(--radius); padding: 1.3rem 1.7rem; color: #e7e8e4; font-size: 1rem; }
.juniors-note strong { color: var(--green); }

/* ============ TIMETABLE ============ */
.timetable { padding: 7rem 0; background: var(--white); }
.timetable h2 { margin: .4rem 0 .8rem; }
.tt-intro { color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; }
.tt-embed { max-width: 1000px; margin: 0 auto; min-height: 200px; }
.tt-fallback { text-align: center; background: var(--grey); border: 1px dashed var(--grey-2); border-radius: var(--radius); padding: 2.6rem 1.5rem; }
.tt-fallback > p { color: var(--muted); margin-bottom: 1.4rem; }
.tt-fallback .app-badges { justify-content: center; }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gallery-grid img { height: 280px; width: 100%; object-fit: cover; filter: grayscale(15%); transition: filter .3s ease, transform .4s ease; }
.gallery-grid img:hover { filter: grayscale(0%); transform: scale(1.03); }

/* ============ APP ============ */
.app { padding: 6.5rem 0; background: var(--grey); }
.app-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.app-inner h2 { margin: .3rem 0 .8rem; }
.app-inner p { color: #44483f; max-width: 460px; }
.app-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.store-btn {
  display: flex; flex-direction: column; justify-content: center;
  background: var(--black); color: var(--white); text-decoration: none;
  padding: .7rem 1.4rem; border-radius: 8px; min-width: 165px; transition: background .2s, transform .12s;
}
.store-btn:hover { background: #2a2a2a; transform: translateY(-2px); }
.store-sub { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #c7cabf; }
.store-main { font-size: 1.25rem; font-weight: 800; }

/* ============ VISIT ============ */
.visit { padding: 7rem 0; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.visit-copy h2 { margin: .3rem 0 1.5rem; }
.contact-list { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list span { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; color: var(--muted); }
.contact-list a { color: var(--ink); text-decoration: none; font-size: 1.15rem; font-weight: 600; }
.contact-list a:hover { color: var(--green-dark); }
.socials { display: flex; gap: .8rem; }

/* ============ FOOTER ============ */
.site-footer { background: var(--black); color: var(--white); padding: 3rem 0; text-align: center; }
.footer-logo { height: 46px; margin: 0 auto 1rem; filter: brightness(0) invert(1); }
.footer-tag { font-weight: 700; }
.footer-legal { color: #8c9088; font-size: .85rem; margin-top: .6rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 72px 0 auto 0; background: var(--white); flex-direction: column; gap: 0; padding: 1rem 24px 1.5rem; border-bottom: 1px solid var(--grey-2); transform: translateY(-130%); transition: transform .28s ease; }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--grey-2); }
  .nav-cta { margin-top: .8rem; }
  .nav-toggle { display: flex; }
  /* On phones the photo fills the screen and text is full-width — use a stronger vertical overlay */
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.72) 55%, rgba(0,0,0,.84) 100%); }
  .review-cards { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; align-items: center; justify-content: center; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; background: var(--green); color: var(--black); font-weight: 800; padding: 1rem; border-radius: 999px; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,.28); }
  body { padding-bottom: 78px; }
  .trial-grid, .why-grid, .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-points { grid-template-columns: 1fr 1fr; }
  .class-cards { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-img { order: -1; }
}
@media (max-width: 480px) {
  .why-points { grid-template-columns: 1fr; }
  .gallery-grid img { height: 200px; }
  .hero { min-height: 80vh; }
}
