/* ==========================================================================
   The Art of Not Acting — artofnotacting.com
   Design thesis: Tadao Ando church built from program notes. Darkness is
   the material, text is the light cut into it, the reader sits in the
   cross-shaped silence where acting used to be.
   References: Ando Church of the Light, ECM Records covers, Peter
   Lindbergh B&W editorial, A24 film marketing restraint.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* === Color tokens === */
  --void:        #0C0B0A;
  --surface:     #161412;
  --lamp:        #EAE5DC;
  --ash:         #7A7570;
  --rule:        rgba(234, 229, 220, 0.08);
  --ember:       #2BADA8;
  --ember-glow:  rgba(43, 173, 168, 0.12);

  /* === Typography tokens === */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Familjen Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* === Type scale (fluid) === */
  --text-xs:    clamp(0.72rem, 0.8vw, 0.78rem);
  --text-sm:    clamp(0.82rem, 0.9vw, 0.88rem);
  --text-base:  clamp(1rem, 1.1vw, 1.1rem);
  --text-lg:    clamp(1.1rem, 1.3vw, 1.2rem);
  --text-xl:    clamp(1.2rem, 2vw, 1.6rem);
  --text-2xl:   clamp(1.5rem, 2.5vw, 2rem);
  --text-3xl:   clamp(1.8rem, 3.5vw, 2.8rem);
  --text-4xl:   clamp(2.8rem, 6vw, 5rem);
  --text-hero:  clamp(3.2rem, 9vw, 8rem);

  /* === Layout tokens === */
  --container-max:     1080px;
  --container-padding: clamp(24px, 5vw, 48px);
  --reading-width:     62ch;
  --section-gap:       clamp(80px, 12vw, 140px);
  --subsection-gap:    clamp(40px, 6vw, 64px);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--ash);
  background-color: var(--void);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--ember);
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   3. Skip Link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--lamp);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 8px;
}

/* --------------------------------------------------------------------------
   4. Container
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* --------------------------------------------------------------------------
   5. Film Grain — SVG feTurbulence, screen blend on dark = light noise
   -------------------------------------------------------------------------- */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: screen;
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.scrolled {
  background-color: rgba(12, 11, 10, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px var(--container-padding);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--lamp);
  text-decoration: none;
  margin-right: auto;
}
.nav-brand:hover {
  text-decoration: none;
  color: var(--lamp);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 200ms ease;
}
.nav-links a:hover {
  color: var(--lamp);
  text-decoration: none;
}
.nav-links a.active {
  color: var(--lamp);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lamp);
  margin: 5px 0;
  transition: transform 300ms ease, opacity 300ms ease;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Hero — A24 poster: ghost photo, oversized title, cruciform silence
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--void);
}

.hero-ghost {
  position: absolute;
  inset: 0;
  background-image: url('assets/robert-colt-stage-bw.webp');
  background-size: cover;
  background-position: center 25%;
  opacity: 0.14;
  filter: grayscale(100%) contrast(1.1);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--void) 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: clamp(60px, 10vw, 100px);
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 20, 'WONK' 1;
  font-size: var(--text-hero);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--lamp);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(12px);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(12px);
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lamp);
  background-color: transparent;
  border: 1px solid rgba(234, 229, 220, 0.35);
  padding: 16px 52px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 250ms ease, background-color 250ms ease;
  opacity: 0;
  transform: translateY(12px);
}
.hero-cta:hover {
  border-color: var(--ember);
  background-color: var(--ember-glow);
  text-decoration: none;
  color: var(--lamp);
}

/* Animation states */
.hero-eyebrow.animate-in,
.hero-name.animate-in,
.hero-subtitle.animate-in,
.hero-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   8. Sections
   -------------------------------------------------------------------------- */
.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 72, 'SOFT' 50, 'WONK' 1;
  font-size: var(--text-3xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--lamp);
  margin-bottom: var(--subsection-gap);
}

.body-text {
  max-width: var(--reading-width);
  margin-left: auto;
  margin-right: auto;
}
.body-text p {
  margin-bottom: 1.5em;
}

/* --------------------------------------------------------------------------
   9. Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   10. Pull Quotes — the crosses of light in the concrete wall
   -------------------------------------------------------------------------- */
blockquote.pull-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 36, 'SOFT' 100, 'WONK' 0;
  font-size: var(--text-xl);
  line-height: 1.5;
  color: var(--lamp);
  max-width: 720px;
  margin: 56px auto;
  padding: 40px;
  border: 1px solid rgba(200, 73, 28, 0.2);
  text-align: center;
}
blockquote.pull-quote p {
  margin: 0;
}
blockquote.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ash);
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   11. Figures — Lindbergh editorial treatment
   -------------------------------------------------------------------------- */
figure {
  margin: 0;
}
figure img {
  width: 100%;
  border: 1px solid var(--rule);
  filter: grayscale(30%);
}
figcaption {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--ash);
  margin-top: 12px;
}
.philosophy-photo {
  margin-bottom: 0;
}
.philosophy-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: var(--subsection-gap);
}
@media (max-width: 640px) {
  .philosophy-photo-pair { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   12. Page Header (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  padding-top: clamp(100px, 14vw, 160px);
  padding-bottom: clamp(32px, 4vw, 48px);
  text-align: center;
}

.page-header-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 24px;
}

.page-header-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 20, 'WONK' 1;
  font-size: var(--text-4xl);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--lamp);
  padding-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid rgba(200, 73, 28, 0.3);
  display: inline-block;
}

/* --------------------------------------------------------------------------
   13. Classes — two-column grid on desktop, single column mobile
   -------------------------------------------------------------------------- */
.classes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: var(--subsection-gap);
}

.class-block {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
}
.class-block:last-child {
  border-bottom: 1px solid var(--rule);
}

.class-block h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 72, 'SOFT' 30, 'WONK' 1;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--lamp);
  margin-bottom: 8px;
}

.class-detail {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 20px;
}

.class-block .body-text p {
  color: var(--ash);
}

.class-price {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 20px;
  border: 1px solid rgba(200, 73, 28, 0.3);
  padding: 6px 16px;
}

/* --------------------------------------------------------------------------
   14. Testimonial — left-border, Randy James
   -------------------------------------------------------------------------- */
.testimonial-block {
  border-left: 2px solid var(--ember);
  padding-left: clamp(24px, 4vw, 48px);
  margin: 0 auto;
  max-width: 760px;
}
.testimonial-body p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  line-height: 1.72;
  color: var(--ash);
  margin-bottom: 1.4em;
}
.testimonial-body p:last-child {
  margin-bottom: 1.6em;
}
.testimonial-cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--lamp);
}
.testimonial-role {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ash);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   15. Lineage — ECM sleeve credits
   -------------------------------------------------------------------------- */
.credentials-group {
  margin-bottom: var(--subsection-gap);
}

.credentials-group h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.credentials-list {
  list-style: none;
  padding: 0;
}
.credentials-list li {
  margin-bottom: 1em;
  line-height: 1.6;
}

.credentials-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--lamp);
}
.credentials-context {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1rem);
  color: var(--ash);
}

/* --------------------------------------------------------------------------
   16. FAQ — all answers visible, no accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--rule);
  padding: 32px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 72, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--lamp);
  margin-bottom: 16px;
}

.faq-answer p {
  margin-bottom: 1em;
  color: var(--ash);
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   17. Blog / Writing — literary journal
   -------------------------------------------------------------------------- */
.blog-post {
  max-width: 680px;
  padding: 56px 0;
  margin: 0 auto;
}
.blog-post:first-child {
  padding-top: 40px;
}

.blog-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 72, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--lamp);
  margin-bottom: 28px;
  text-align: center;
}

.blog-post .body-text p {
  color: var(--ash);
}
.blog-post .body-text p:first-child {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: rgba(234, 229, 220, 0.75);
}

.blog-rule {
  border: none;
  border-top: 1px solid rgba(234, 229, 220, 0.1);
  max-width: 480px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   18. Contact — form as professional instrument
   -------------------------------------------------------------------------- */
.contact-intro {
  max-width: var(--reading-width);
  margin-bottom: var(--subsection-gap);
}

.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--lamp);
  background-color: var(--surface);
  border: 1px solid rgba(234, 229, 220, 0.1);
  border-radius: 0;
  padding: 12px 16px;
  transition: border-color 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A7570' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background-color: var(--surface);
  color: var(--lamp);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ember);
  outline: none;
}

.form-submit {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lamp);
  background-color: transparent;
  border: 1px solid rgba(234, 229, 220, 0.25);
  padding: 14px 44px;
  cursor: pointer;
  transition: border-color 250ms ease, background-color 250ms ease;
}
.form-submit:hover {
  border-color: var(--ember);
  background-color: var(--ember-glow);
}

.contact-email-fallback {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--ash);
}

/* --------------------------------------------------------------------------
   19. Footer — program notes credits
   -------------------------------------------------------------------------- */
.site-footer {
  padding-top: var(--section-gap);
  padding-bottom: 48px;
  text-align: center;
}

.footer-rule {
  border: none;
  border-top: 1px solid var(--rule);
  max-width: 200px;
  margin: 0 auto var(--subsection-gap) auto;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--lamp);
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ash);
  margin-bottom: 4px;
}

.footer-location {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ash);
  margin-bottom: 12px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ash);
  opacity: 0.5;
}

.footer-actor-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ash);
  margin-top: 12px;
  opacity: 0.5;
}
.footer-actor-link a {
  color: var(--ash);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-actor-link a:hover {
  color: var(--lamp);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   20. Home Page — manifesto, schedule, section nav (playbill)
   -------------------------------------------------------------------------- */
.home-manifesto {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 72, 'SOFT' 80, 'WONK' 0;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.5;
  color: var(--lamp);
  max-width: 680px;
  margin: 0 auto var(--subsection-gap) auto;
  text-align: center;
  border: none;
  padding: 0;
}
.home-manifesto p {
  margin: 0;
}
.home-manifesto em {
  color: var(--ember);
  font-style: italic;
}

.home-schedule {
  max-width: 560px;
  margin: 0 auto var(--subsection-gap) auto;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.home-schedule-line {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 36, 'SOFT' 20, 'WONK' 1;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--lamp);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.home-schedule-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 6px;
}

.home-schedule-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lamp);
  text-decoration: none;
  border: 1px solid rgba(234, 229, 220, 0.3);
  padding: 12px 32px;
  transition: border-color 250ms ease, background-color 250ms ease;
}
.home-schedule-cta:hover {
  color: var(--lamp);
  border-color: var(--ember);
  background-color: var(--ember-glow);
  text-decoration: none;
}

.home-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

.home-nav-item {
  flex: 1 1 33.333%;
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 36, 'SOFT' 20, 'WONK' 1;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--ash);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 200ms ease;
  letter-spacing: -0.01em;
  text-align: center;
}
.home-nav-item:hover {
  color: var(--lamp);
  text-decoration: none;
}

/* FAQ bottom CTA */
.faq-bottom-cta {
  margin-top: var(--subsection-gap);
  text-align: center;
}

/* --------------------------------------------------------------------------
   21. Desktop Breakpoint (1025px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
  .classes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
  }
  .class-block {
    border-bottom: none;
  }
  .class-block:last-child {
    border-bottom: none;
  }
}

/* --------------------------------------------------------------------------
   22. Mobile Breakpoint (640px and below)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--void);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 150;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--lamp);
  }
  .hamburger {
    display: block;
  }
  .film-grain {
    display: none;
  }
  .home-nav-item {
    flex: 1 1 50%;
  }
}

/* --------------------------------------------------------------------------
   23. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-eyebrow,
  .hero-name,
  .hero-subtitle,
  .hero-cta {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .film-grain {
    display: none;
  }
  * {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
