/* ================================================================
   JN Entertainment — Shared Design System
   ================================================================ */

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  --c-bg:           #0A0A0A;
  --c-surface:      #111111;
  --c-surface-2:    #1A1A1A;
  --c-primary:      #E01212;
  --c-primary-dim:  #9B0D0D;
  --c-white:        #FFFFFF;
  --c-grey-1:       #CCCCCC;
  --c-grey-2:       #666666;
  --c-border:       #2A2A2A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;

  --section-py:    clamp(72px, 9vw, 130px);
  --container-max: 1600px;
  --container-px:  clamp(20px, 4vw, 60px);

  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  --glass-bg:     rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);

  --glow:        0 0 48px rgba(224,18,18,0.22);
  --glow-strong: 0 0 80px rgba(224,18,18,0.4);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.55);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--c-bg);
  color: var(--c-grey-1);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
svg { display: block; }

/* ── Aurora background ──────────────────────────────────────────── */
#aurora-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-pulse {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(224,18,18,0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(120,10,10,0.08) 0%, transparent 55%);
  animation: aurora-pulse 12s ease-in-out infinite;
}

@keyframes aurora-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.03); }
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  will-change: transform;
}

.aurora-blob-1 {
  width: clamp(140px, 18vw, 280px);
  height: clamp(140px, 18vw, 280px);
  top: -5%; left: -5%;
  background: rgba(224, 18, 18, 0.28);
  animation: blob1 30s ease-in-out infinite alternate;
}

.aurora-blob-2 {
  width: clamp(120px, 16vw, 240px);
  height: clamp(120px, 16vw, 240px);
  bottom: -5%; right: -5%;
  background: rgba(180, 10, 10, 0.22);
  animation: blob2 40s ease-in-out infinite alternate;
}

.aurora-blob-3 { display: none; }

@keyframes blob1 {
  0%   { transform: translate(0px, 0px)   scale(1); }
  33%  { transform: translate(60px,-30px) scale(1.15); }
  66%  { transform: translate(-40px,50px) scale(0.9); }
  100% { transform: translate(80px, 40px) scale(1.1); }
}

@keyframes blob2 {
  0%   { transform: translate(0px, 0px)    scale(1); }
  40%  { transform: translate(-80px,50px)  scale(1.2); }
  70%  { transform: translate(50px,-60px)  scale(0.88); }
  100% { transform: translate(-30px,30px)  scale(1.1); }
}

@keyframes blob3 {
  0%   { transform: translate(0px, 0px)   scale(1)   rotate(0deg); }
  50%  { transform: translate(100px,-20px) scale(0.95) rotate(180deg); }
  100% { transform: translate(-60px,60px) scale(1.12) rotate(360deg); }
}

.aurora-stars {
  position: absolute;
  inset: 0;
}

.aurora-star {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: white;
  animation: star-twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0; }
  50%       { opacity: var(--peak, 0.6); }
}

/* On mobile: kill expensive GPU effects */
@media (max-width: 767px) {
  .aurora-blob {
    filter: blur(40px);       /* cheaper than 90px */
    mix-blend-mode: normal;   /* blend modes are GPU killers on mobile */
    animation: none;          /* no movement on small screens */
  }
  .aurora-pulse { animation: none; }
  .aurora-star  { display: none; } /* JS still creates them but hidden cheaply */
}

@media (prefers-reduced-motion: reduce) {
  .aurora-pulse,
  .aurora-blob,
  .aurora-star { animation: none !important; }
}

/* ── Layout ────────────────────────────────────────────────────── */
main, footer { position: relative; z-index: 1; }

/* Skip rendering off-screen sections until near viewport */
section { content-visibility: auto; contain-intrinsic-size: 0 600px; }

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

section { padding-block: var(--section-py); }

/* ── Typography helpers ─────────────────────────────────────────── */
.t-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 0.95;
  margin-top: var(--sp-3);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--c-grey-1);
  line-height: 1.7;
  margin-top: var(--sp-4);
  max-width: 560px;
}

.section-sub--center { margin-inline: auto; text-align: center; }

/* ── Red accent line ────────────────────────────────────────────── */
.red-line {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--c-primary);
  border-radius: 2px;
  margin-bottom: var(--sp-4);
}

/* ── Divider ────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-border) 20%, var(--c-border) 80%, transparent 100%);
  margin-block: var(--sp-7);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
  min-height: 48px;
  transition:
    transform      150ms ease-out,
    background     180ms ease-out,
    color          180ms ease-out,
    border-color   180ms ease-out,
    box-shadow     180ms ease-out;
}

.btn:hover  { transform: scale(1.035); }
.btn:active { transform: scale(0.965); }
.btn:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn--primary:hover { background: var(--c-primary-dim); border-color: var(--c-primary-dim); }

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.2);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

.btn--outline-red {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline-red:hover { background: var(--c-primary); color: var(--c-white); }

.btn--lg { padding: 18px 48px; font-size: 0.9375rem; min-height: 56px; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ── Glass card ─────────────────────────────────────────────────── */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
}

@media (max-width: 767px) {
  .card-glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,0.06);
  }
}

/* ── Navbar ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition:
    background    220ms ease-out,
    border-color  220ms ease-out,
    backdrop-filter 220ms ease-out;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--c-border);
}

@media (max-width: 767px) {
  #navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10,10,10,0.98);
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 18px var(--container-px);
  gap: var(--sp-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img,
.nav-logo .logo-svg {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-7);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grey-1);
  position: relative;
  padding-bottom: 2px;
  transition: color 160ms ease-out;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--c-white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.78125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-primary);
  padding: 10px 24px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-primary);
  transition:
    background   180ms ease-out,
    border-color 180ms ease-out,
    transform    150ms ease-out;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover  { background: var(--c-primary-dim); border-color: var(--c-primary-dim); transform: scale(1.035); }
.nav-cta:active { transform: scale(0.965); }
.nav-cta:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.hamburger:focus-visible { outline: 2px solid var(--c-primary); border-radius: var(--r-sm); }

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 1px;
  transition:
    transform 260ms var(--ease-out),
    opacity   200ms ease-out,
    width     220ms ease-out;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  padding: 96px var(--container-px) 60px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 340ms var(--ease-drawer),
    opacity   300ms ease-out;
}

#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 4.5rem);
  letter-spacing: 0.02em;
  color: var(--c-grey-2);
  opacity: 0;
  transform: translateY(24px);
  transition:
    color     160ms ease-out,
    opacity   320ms var(--ease-out),
    transform 320ms var(--ease-out);
  line-height: 1.05;
}

#mobile-menu.open .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

#mobile-menu.open .mobile-nav-links a:nth-child(1) { transition-delay: 50ms; }
#mobile-menu.open .mobile-nav-links a:nth-child(2) { transition-delay: 95ms; }
#mobile-menu.open .mobile-nav-links a:nth-child(3) { transition-delay: 140ms; }
#mobile-menu.open .mobile-nav-links a:nth-child(4) { transition-delay: 185ms; }
#mobile-menu.open .mobile-nav-links a:nth-child(5) { transition-delay: 230ms; }
#mobile-menu.open .mobile-nav-links a:nth-child(6) { transition-delay: 275ms; }

.mobile-nav-links a:hover { color: var(--c-white); }
.mobile-nav-links a.active { color: var(--c-primary); }

.mobile-menu-footer {
  margin-top: auto;
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  border-top: 1px solid var(--c-border);
}

@media (min-width: 1024px) {
  .nav-links  { display: flex; }
  .hamburger  { display: none; }
}

/* ── Footer ─────────────────────────────────────────────────────── */
#footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-9) var(--sp-7);
}

.footer-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--sp-7);
}

.footer-brand .footer-logo img,
.footer-brand .footer-logo .logo-svg {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--c-grey-2);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--sp-5);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-grey-2);
  margin-bottom: var(--sp-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--c-grey-1);
  transition: color 150ms ease-out;
}
.footer-col ul a:hover { color: var(--c-white); }

.social-links { display: flex; gap: var(--sp-3); }

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-grey-2);
  transition:
    border-color 180ms ease-out,
    color        180ms ease-out,
    transform    150ms ease-out,
    background   180ms ease-out;
}
.social-btn:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: scale(1.08);
  background: rgba(224,18,18,0.08);
}
.social-btn:active { transform: scale(0.94); }
.social-btn:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; border-radius: 50%; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--c-grey-2);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── Ticker / Marquee ───────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
  padding-block: 13px;
  user-select: none;
}

.ticker-track {
  display: flex;
  gap: var(--sp-9);
  width: max-content;
  animation: marquee 36s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--sp-9);
  white-space: nowrap;
}

.ticker-item span {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-grey-2);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Page hero (non-home pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: clamp(110px, 14vw, 180px);
  padding-bottom: clamp(64px, 8vw, 110px);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(224,18,18,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 0.92;
  margin-top: var(--sp-3);
}

/* ── Scroll reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   420ms var(--ease-out),
    transform 420ms var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── View Transitions API (Chrome/Edge/Safari 18+) ──────────────── */
@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: vt-fade-out 220ms cubic-bezier(0.4,0,1,1) forwards;
}

::view-transition-new(root) {
  animation: vt-fade-in 380ms cubic-bezier(0,0,0.2,1) forwards;
}

@keyframes vt-fade-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

@keyframes vt-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Fallback loader (non-supporting browsers) ───────────────────── */
#page-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-bg);
  pointer-events: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 500ms cubic-bezier(0.23,1,0.32,1);
}

#page-overlay.is-hidden { opacity: 0; }

/* Hide overlay entirely when view transitions are supported */
@supports (view-transition-name: none) {
  #page-overlay { display: none !important; }
}

.pt-logo-text {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  letter-spacing: 0.06em;
  color: var(--c-white);
  line-height: 1;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity   380ms cubic-bezier(0.23,1,0.32,1),
    transform 380ms cubic-bezier(0.23,1,0.32,1);
}

.pt-logo-text .accent { color: var(--c-primary); }
.pt-logo-text.visible { opacity: 1; transform: translateY(0); }

.pt-loader {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 200ms ease;
}

.pt-loader.visible { opacity: 1; }

.pt-loader-bar {
  height: 100%;
  width: 0%;
  background: var(--c-primary);
  border-radius: 2px;
  transition: width 360ms cubic-bezier(0.23,1,0.32,1);
}

.pt-loader-bar.full { width: 100%; }

/* Page content entrance for fallback */
main {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity   600ms cubic-bezier(0.23,1,0.32,1) 80ms,
    transform 600ms cubic-bezier(0.23,1,0.32,1) 80ms;
}

main.page-ready { opacity: 1; transform: translateY(0); }

/* When view transitions are active, main is always visible */
@supports (view-transition-name: none) {
  main { opacity: 1; transform: none; transition: none; }
}

/* ── Accessibility ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Responsive overrides ───────────────────────────────────────── */
@media (max-width: 479px) {
  /* Typography scale-down on very small screens */
  .section-title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .section-sub   { font-size: 0.9375rem; }

  /* Buttons full-width on tiny screens */
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; text-align: center; justify-content: center; }

  /* Package tab buttons wrap */
  .pkg-tabs { flex-wrap: wrap; }
  .pkg-tab  { flex: 1 1 auto; text-align: center; }

  /* Contact form rows collapse to single col */
  .form-row { grid-template-columns: 1fr !important; }

  /* Ticker text smaller */
  .ticker-item { font-size: 0.7rem; }
}

@media (max-width: 767px) {
  /* Hide vinyl disc on small screens to avoid layout bleed */
  .hero-vinyl { display: none; }

  /* Hero text breathes with full width */
  .hero-sub { max-width: 100%; }

  /* Stats always 2-col on mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Service cards full width below 640 handled by grid; ensure readable text */
  .svc-icon { width: 40px; height: 40px; }

  /* Pull quote strip — smaller font */
  .pull-quote-text { font-size: clamp(1.35rem, 4.5vw, 2rem) !important; }

  /* CTA strip text stack */
  .cta-strip-inner { flex-direction: column; text-align: center; align-items: center; gap: 24px; }

  /* Footer brand blurb shorter */
  .footer-brand { max-width: 100%; }

  /* Page hero (inner pages) smaller heading */
  .page-hero-title { font-size: clamp(2.5rem, 10vw, 4.5rem) !important; }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* 2-col service cards on medium-small */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet: 2-col services, keep events 2-col */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid   { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid      { grid-template-columns: repeat(2, 1fr); }
}

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