/* ===== Sewing Arts Lab — Main Stylesheet ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #FFAA00;
  --gold-bright: #FFBE33;
  --violet: #6B2D8B;
  --violet-electric: #9B4DCA;
  --hot-red: #E02020;
  --black: #0A0A0A;
  --off-black: #151515;
  --charcoal: #222;
  --chalk: #EDEDED;
  --cream: #F8F4EC;
  --raw-white: #FFFDF8;
  --font-shout: 'Bebas Neue', Impact, sans-serif;
  --font-liz: 'Instrument Serif', Georgia, serif;
  --font-punk: 'JetBrains Mono', 'Courier New', monospace;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max-width: 1240px;
}
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 80px; }
body {
  font-family: var(--font-punk); font-size: 0.9rem; line-height: 1.7;
  color: var(--black); background: var(--raw-white);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }

/* ========== GOLD THREAD STITCH — animated SVG ========== */
.gold-stitch {
  width: 100%; height: 40px; display: block; overflow: visible;
  opacity: 0; transition: opacity 0.3s;
}
.gold-stitch.sewn { opacity: 1; }
.gold-stitch path {
  stroke: var(--gold); stroke-width: 2.5; fill: none;
  stroke-dasharray: 4000; stroke-dashoffset: 4000;
}
.gold-stitch.sewn path { animation: sew 4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards; }
@keyframes sew { to { stroke-dashoffset: 0; } }

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter);
}
.logo-link img { height: 44px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.main-nav a {
  text-decoration: none; font-family: var(--font-shout); font-size: 1rem;
  letter-spacing: 0.08em; color: var(--chalk); transition: color 0.15s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); }
.nav-cta {
  padding: 0.45rem 1.2rem; background: var(--gold); color: var(--black) !important;
  font-family: var(--font-shout); font-size: 1rem; letter-spacing: 0.08em;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-bright); }
.nav-cart { position: relative; }
.cart-badge {
  position: absolute; top: -8px; right: -12px; background: var(--hot-red);
  color: #fff; font-family: var(--font-punk); font-size: 0.6rem;
  font-weight: 700; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.header-bar { height: 3px; background: linear-gradient(90deg, var(--gold), var(--violet), var(--hot-red), var(--gold)); }
.menu-toggle { display: none; background: none; border: none; padding: 0.5rem; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--chalk); transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ========== BUTTONS ========== */
.btn-glam {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem; font-family: var(--font-shout); font-size: 1.1rem;
  letter-spacing: 0.06em; text-decoration: none; transition: all 0.2s;
  border: none; position: relative;
}
.btn-gold {
  background: var(--gold); color: var(--black);
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateX(3px); }
.btn-ghost {
  background: transparent; color: var(--chalk);
  border: 1px solid rgba(255,255,255,0.25);
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark {
  background: transparent; color: var(--black);
  border: 1px solid rgba(0,0,0,0.25);
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.btn-ghost-dark:hover { border-color: var(--violet); color: var(--violet); }

/* ========== HERO ========== */
.hero {
  margin-top: 67px; min-height: 95vh;
  background: var(--black); position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -20%; right: -5%; width: 45%; height: 140%;
  background: var(--gold); transform: skewX(-8deg); opacity: 0.07;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -10%; left: 30%; width: 30%; height: 120%;
  background: var(--violet); transform: skewX(12deg); opacity: 0.06;
}
.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: center; width: 100%;
}
.hero-text { padding: 3rem 0; }
.hero-overline {
  font-family: var(--font-punk); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-overline::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-shout); font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88; color: var(--chalk);
  letter-spacing: 0.02em; margin-bottom: 1.5rem;
}
.hero h1 .liz {
  display: block; font-family: var(--font-liz); font-style: italic;
  font-size: 0.55em; letter-spacing: -0.01em; line-height: 1.3;
  color: var(--gold-bright);
}
.hero-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem;
  max-width: 400px; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-photo { position: relative; }
.hero-photo-main {
  clip-path: polygon(0% 3%, 97% 0%, 100% 96%, 2% 100%);
  overflow: hidden;
}
.hero-photo-main img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 25%;
}
.hero-accent {
  position: absolute; top: -15px; right: -15px;
  width: 60%; height: 30px;
  background: var(--hot-red); transform: rotate(-2deg);
  clip-path: polygon(0% 20%, 5% 80%, 10% 10%, 15% 70%, 20% 15%, 25% 85%, 30% 20%, 35% 75%, 40% 10%, 45% 80%, 50% 25%, 55% 70%, 60% 15%, 65% 85%, 70% 20%, 75% 75%, 80% 10%, 85% 80%, 90% 25%, 95% 70%, 100% 20%);
}
.hero-caption {
  font-family: var(--font-punk); font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-top: 1rem; text-align: right;
}

/* ========== EXPLOSION BREAK ========== */
.explosion {
  padding: 2.5rem 0; text-align: center;
  background: var(--gold);
  clip-path: polygon(0% 15%, 100% 0%, 100% 85%, 0% 100%);
  margin: -2rem 0; position: relative; z-index: 3;
}
.explosion-text {
  font-family: var(--font-shout); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.15em; color: var(--black);
}
.explosion-text span { color: var(--violet); }

/* ========== SECTION HEADERS ========== */
.section-split {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 3rem; border-bottom: 1px solid var(--chalk);
  padding-bottom: 1rem;
}
.section-split h2 {
  font-family: var(--font-shout); font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em; line-height: 1;
}
.section-split h2 .accent { color: var(--violet); }
.section-split .tag {
  font-family: var(--font-punk); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}

/* ========== SERVICES GRID ========== */
.services { padding: 5rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.svc-card {
  display: grid; grid-template-columns: 1fr 1fr;
  text-decoration: none; overflow: hidden;
  background: var(--off-black); color: var(--chalk);
  transition: transform 0.2s; position: relative;
}
.svc-card:hover { transform: translate(-4px, -4px); }
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
}
.svc-card:nth-child(1)::before { background: var(--hot-red); }
.svc-card:nth-child(2)::before { background: var(--gold); }
.svc-card:nth-child(3)::before { background: var(--violet); }
.svc-card:nth-child(4)::before { background: var(--hot-red); }
.svc-card-img { overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform 0.4s; filter: contrast(1.05); }
.svc-card:hover .svc-card-img img { transform: scale(1.08); }
.svc-card-body { padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.svc-card h3 {
  font-family: var(--font-shout); font-size: 1.6rem; letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.svc-card:nth-child(1) h3 { color: var(--hot-red); }
.svc-card:nth-child(2) h3 { color: var(--gold); }
.svc-card:nth-child(3) h3 { color: var(--violet-electric); }
.svc-card:nth-child(4) h3 { color: var(--hot-red); }
.svc-card p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.svc-card .svc-go {
  margin-top: auto; padding-top: 1rem;
  font-family: var(--font-shout); font-size: 0.9rem;
  letter-spacing: 0.1em; color: var(--gold);
  display: flex; align-items: center; gap: 0.4rem;
}
.svc-card .svc-go svg { transition: transform 0.2s; }
.svc-card:hover .svc-go svg { transform: translateX(6px); }
.svc-card:nth-child(even) { direction: rtl; }
.svc-card:nth-child(even) > * { direction: ltr; }

/* ========== ABOUT SECTION ========== */
.about { padding: 5rem 0; background: var(--cream); position: relative; }
.about-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.about-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.about-gallery .ag-wrap { overflow: hidden; }
.about-gallery .ag-wrap:nth-child(1) {
  grid-row: span 2;
  clip-path: polygon(0% 2%, 98% 0%, 100% 97%, 1% 100%);
}
.about-gallery .ag-wrap:nth-child(2) {
  clip-path: polygon(2% 0%, 100% 3%, 97% 100%, 0% 98%);
}
.about-gallery .ag-wrap:nth-child(3) {
  clip-path: polygon(0% 0%, 100% 2%, 98% 100%, 3% 97%);
}
.about-gallery .ag-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 {
  font-family: var(--font-shout); font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em; line-height: 0.95; margin-bottom: 1.25rem;
}
.about-text h2 .liz-accent {
  display: block; font-family: var(--font-liz); font-style: italic;
  font-size: 0.6em; letter-spacing: 0; color: var(--violet); line-height: 1.4;
}
.about-text p { color: #555; margin-bottom: 0.75rem; font-size: 0.88rem; }
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 3px solid var(--black);
}
.about-stats .s-num { font-family: var(--font-shout); font-size: 2.5rem; line-height: 1; }
.about-stats div:nth-child(1) .s-num { color: var(--hot-red); }
.about-stats div:nth-child(2) .s-num { color: var(--violet); }
.about-stats div:nth-child(3) .s-num { color: var(--gold); }
.about-stats .s-label {
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #999; margin-top: 0.2rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 5rem 0; background: var(--off-black); color: var(--chalk); }
.testi-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 3rem;
}
.testi-header h2 {
  font-family: var(--font-shout); font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
}
.testi-header h2 .glow { color: var(--gold); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--raw-white); color: var(--black); padding: 2rem;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 93%, 95% 95%, 90% 92%, 85% 96%, 80% 93%, 75% 97%, 70% 92%, 65% 95%, 60% 93%, 55% 96%, 50% 92%, 45% 95%, 40% 93%, 35% 97%, 30% 92%, 25% 95%, 20% 93%, 15% 96%, 10% 92%, 5% 95%, 0% 93%);
}
.testi-card .t-stars { letter-spacing: 2px; margin-bottom: 0.75rem; }
.testi-card:nth-child(1) .t-stars { color: var(--hot-red); }
.testi-card:nth-child(2) .t-stars { color: var(--gold); }
.testi-card:nth-child(3) .t-stars { color: var(--violet); }
.testi-card blockquote {
  font-family: var(--font-liz); font-style: italic; font-size: 1.05rem;
  line-height: 1.6; color: #333;
}
.testi-card .t-who {
  margin-top: 1.25rem; font-family: var(--font-punk); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.testi-card .t-ctx { font-size: 0.65rem; color: #999; letter-spacing: 0.08em; text-transform: uppercase; }

/* ========== CTA CLASH ========== */
.cta-clash {
  margin: 4rem var(--gutter); position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; min-height: 350px;
}
.cta-liz {
  background: var(--black); padding: 4rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.cta-liz::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 4px; background: var(--gold);
}
.cta-liz h2 {
  font-family: var(--font-liz); font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--gold-bright);
  line-height: 1.2; margin-bottom: 0.75rem;
}
.cta-liz p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.cta-liz .btn-gold { display: inline-flex; }
.cta-kid {
  background: var(--violet); padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cta-kid-text {
  font-family: var(--font-shout); font-size: clamp(3rem, 6vw, 5rem);
  color: var(--raw-white); letter-spacing: 0.06em; line-height: 0.9;
  text-align: center; transform: rotate(-3deg);
}
.cta-kid-text .small {
  display: block; font-family: var(--font-punk); font-size: 0.7rem;
  letter-spacing: 0.15em; transform: rotate(3deg);
  margin-top: 1rem; opacity: 0.7;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  margin-top: 67px; padding: 5rem 0 4rem;
  background: var(--black); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -20%; right: -5%; width: 45%; height: 140%;
  background: var(--gold); transform: skewX(-8deg); opacity: 0.07;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-overline {
  font-family: var(--font-punk); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.page-hero .hero-overline::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--font-shout); font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9; color: var(--chalk); letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.page-hero h1 .liz {
  display: block; font-family: var(--font-liz); font-style: italic;
  font-size: 0.45em; letter-spacing: -0.01em; line-height: 1.4;
  color: var(--gold-bright);
}
.page-hero .page-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.45); max-width: 550px; line-height: 1.8;
}

/* ========== PAGE CONTENT ========== */
.page-content { padding: 4rem 0; }
.page-content h2 {
  font-family: var(--font-shout); font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em; line-height: 1; margin-bottom: 1.5rem;
}
.page-content h2 .accent { color: var(--violet); }
.page-content h3 {
  font-family: var(--font-shout); font-size: 1.4rem; letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.page-content p { color: #555; margin-bottom: 1rem; font-size: 0.88rem; }

/* ========== CLASSES PAGE ========== */
.class-filters {
  display: flex; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.5rem; font-family: var(--font-shout); font-size: 0.95rem;
  letter-spacing: 0.08em; border: 1px solid var(--chalk); background: transparent;
  color: var(--charcoal); transition: all 0.2s;
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--black); color: var(--chalk); border-color: var(--black);
}
.class-list { display: grid; gap: 1.5rem; }
.class-card {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 1.5rem;
  padding: 1.5rem; background: var(--cream); align-items: center;
  border-left: 5px solid var(--gold); transition: transform 0.2s;
}
.class-card:hover { transform: translateX(4px); }
.class-card:nth-child(3n+1) { border-left-color: var(--hot-red); }
.class-card:nth-child(3n+2) { border-left-color: var(--gold); }
.class-card:nth-child(3n+3) { border-left-color: var(--violet); }
.class-card-img {
  overflow: hidden;
  clip-path: polygon(0% 2%, 98% 0%, 100% 97%, 1% 100%);
}
.class-card-img img { width: 100%; height: 150px; object-fit: cover; }
.class-card-body h3 { margin-bottom: 0.25rem; }
.class-card-meta {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #999; margin-bottom: 0.5rem;
}
.class-card-body p { font-size: 0.82rem; color: #555; margin-bottom: 0; }
.class-card-action { text-align: right; }
.class-card-price {
  font-family: var(--font-shout); font-size: 1.8rem; color: var(--black);
  line-height: 1; margin-bottom: 0.25rem;
}
.class-card-price .per { font-size: 0.5em; color: #999; }
.class-card-ages {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #999; margin-bottom: 0.75rem;
}

/* ========== GALLERY PAGE ========== */
.gallery-section { margin-bottom: 3rem; }
.gallery-section h3 {
  font-family: var(--font-shout); font-size: 1.6rem; letter-spacing: 0.06em;
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--chalk);
}
.gallery-tabs {
  display: flex; gap: 0; margin-bottom: 2rem; border-bottom: 2px solid var(--chalk);
}
.gallery-tab {
  flex: 1; padding: 0.8rem 1rem; background: none; border: none;
  font-family: var(--font-shout); font-size: 1.1rem; letter-spacing: 0.08em;
  color: rgba(0,0,0,0.35); position: relative; cursor: pointer; transition: color 0.2s;
}
.gallery-tab::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s;
}
.gallery-tab:hover { color: var(--black); }
.gallery-tab.active { color: var(--black); }
.gallery-tab.active::after { transform: scaleX(1); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}
.gallery-grid a {
  overflow: hidden; display: block;
  clip-path: polygon(0% 1%, 99% 0%, 100% 98%, 1% 100%);
}
.gallery-grid img {
  width: 100%; height: 250px; object-fit: cover;
  transition: transform 0.4s; filter: contrast(1.05);
}
.gallery-grid a:hover img { transform: scale(1.06); }
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem; margin-top: 1.5rem;
}
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  background: var(--black);
}
.video-wrap iframe, .video-wrap video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}

/* ========== CONTACT PAGE ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { color: var(--black); }
.contact-detail {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem;
}
.contact-detail svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.contact-detail a { text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--violet); }
.contact-hours { margin-top: 2rem; }
.contact-hours dt {
  font-family: var(--font-shout); font-size: 1rem; letter-spacing: 0.06em;
  color: var(--black); margin-bottom: 0.15rem;
}
.contact-hours dd { font-size: 0.82rem; color: #555; margin-bottom: 0.75rem; }
.map-embed {
  margin-top: 2rem; overflow: hidden;
  clip-path: polygon(0% 1%, 99% 0%, 100% 98%, 1% 100%);
}
.map-embed iframe { width: 100%; height: 300px; border: none; }

/* ========== INLINE NEWSLETTER (contact page) ========== */
.nl-inline {
  margin-top: 2.5rem; padding: 1.5rem; background: var(--cream);
  border-top: 3px solid var(--gold); border-left: 3px solid var(--violet);
}
.nl-inline-header {
  font-family: var(--font-shout); font-size: 1.1rem; letter-spacing: 0.08em;
  color: var(--violet); margin-bottom: 0.2rem;
}
.nl-inline-sub {
  font-family: var(--font-liz); font-style: italic; font-size: 0.85rem;
  color: rgba(0,0,0,0.45); margin-bottom: 0.6rem;
}
.nl-inline-pitch {
  font-size: 0.78rem; line-height: 1.6; color: rgba(0,0,0,0.6); margin-bottom: 1rem;
}
.nl-inline-label { font-size: 0.78rem !important; }
.nl-inline-input { background: var(--raw-white) !important; }
.nl-inline-checks {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; margin-top: 0.3rem;
}
.nl-inline-checks label {
  display: flex; align-items: center; gap: 0.3rem; font-size: 0.78rem !important;
  cursor: pointer;
}
.nl-inline-checks input[type="checkbox"] { accent-color: var(--violet); }
.nl-inline-btn {
  width: 100%; padding: 0.6rem; background: var(--gold); color: var(--black);
  border: none; cursor: pointer; font-family: var(--font-shout); font-size: 0.95rem;
  letter-spacing: 0.06em; transition: background 0.2s;
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
}
.nl-inline-btn:hover { background: var(--gold-bright); }
.nl-inline-fine {
  font-size: 0.62rem; color: rgba(0,0,0,0.3); margin-top: 0.6rem;
  text-align: center; line-height: 1.5;
}
.nl-inline-success {
  font-family: var(--font-shout); font-size: 1.1rem; color: var(--violet);
  text-align: center; padding: 1.5rem 0;
}

/* ========== FORMS ========== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: var(--font-shout); font-size: 0.85rem;
  letter-spacing: 0.08em; margin-bottom: 0.35rem; color: var(--black);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.7rem 1rem; font-family: var(--font-punk);
  font-size: 0.82rem; border: 1px solid var(--chalk); background: var(--raw-white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem;
  font-size: 0.82rem;
}
.form-check input[type="checkbox"] { width: auto; accent-color: var(--violet); }
.form-message {
  padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.82rem;
}
.form-message.success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.form-message.error { background: #fce4ec; color: #c62828; border-left: 4px solid #e53935; }

/* ========== CAMP PAGE ========== */
.camp-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 3rem 0;
}
.camp-highlight {
  text-align: center; padding: 2rem 1.5rem; background: var(--cream);
  border-top: 4px solid var(--gold);
}
.camp-highlight:nth-child(2) { border-top-color: var(--violet); }
.camp-highlight:nth-child(3) { border-top-color: var(--hot-red); }
.camp-highlight .ch-icon {
  font-size: 2rem; margin-bottom: 0.75rem;
}
.camp-highlight h3 { margin-bottom: 0.5rem; }
.camp-highlight p { font-size: 0.82rem; color: #555; margin-bottom: 0; }

.camp-schedule { margin: 3rem 0; }
.camp-week {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem;
  padding: 1.5rem; align-items: center;
  border-bottom: 1px solid var(--chalk);
}
.camp-week:last-child { border-bottom: none; }
.camp-week-num {
  font-family: var(--font-shout); font-size: 2.5rem; color: var(--gold);
  line-height: 1; min-width: 80px; text-align: center;
}
.camp-week-info h3 { margin-bottom: 0.15rem; }
.camp-week-dates {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #999;
}
.camp-daily {
  margin: 3rem 0; padding: 2.5rem; background: var(--off-black); color: var(--chalk);
}
.camp-daily h3 { color: var(--gold); margin-bottom: 1.5rem; }
.camp-daily-schedule {
  display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.5rem;
}
.camp-daily-schedule .time {
  font-family: var(--font-shout); font-size: 1rem; letter-spacing: 0.04em;
  color: var(--gold); white-space: nowrap;
}
.camp-daily-schedule .activity { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ========== FAQ PAGE ========== */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--chalk); padding: 1.25rem 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none; text-align: left;
  font-family: var(--font-shout); font-size: 1.15rem; letter-spacing: 0.04em;
  color: var(--black); padding: 0.5rem 0; cursor: pointer;
}
.faq-question::after {
  content: '+'; font-family: var(--font-shout); font-size: 1.5rem;
  color: var(--gold); transition: transform 0.3s;
}
.faq-item.open .faq-question::after { content: '-'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0.75rem 0 0.5rem; }
.faq-answer-inner p { font-size: 0.85rem; color: #555; }

/* ========== POLICIES PAGE ========== */
.policy-section { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--chalk); }
.policy-section:last-child { border-bottom: none; }
.policy-section h3 { color: var(--violet); }
.policy-section ul {
  list-style: none; padding: 0;
}
.policy-section li {
  padding: 0.4rem 0 0.4rem 1.25rem; font-size: 0.85rem; color: #555;
  position: relative;
}
.policy-section li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem;
  width: 6px; height: 6px; background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ========== FOOTER ========== */
.site-footer { padding: 3rem 0 1.5rem; background: var(--black); color: rgba(255,255,255,0.45); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 42px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.78rem; line-height: 1.8; max-width: 260px; }
.footer-col h4 { color: var(--gold); font-family: var(--font-shout); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.78rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; opacity: 0.3; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; font-size: 0.65rem; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; text-transform: uppercase; }

/* ========== ANIMATIONS ========== */
.slam { opacity: 0; transform: translateX(-120px) rotate(-1.5deg); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.slam.visible { opacity: 1; transform: translateX(0) rotate(0deg); }
.slam-r { opacity: 0; transform: translateX(120px) rotate(1.5deg); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.slam-r.visible { opacity: 1; transform: translateX(0) rotate(0deg); }
.stagger-s .slam:nth-child(1), .stagger-s .slam-r:nth-child(1) { transition-delay: 0s; }
.stagger-s .slam:nth-child(2), .stagger-s .slam-r:nth-child(2) { transition-delay: 0.1s; }
.stagger-s .slam:nth-child(3), .stagger-s .slam-r:nth-child(3) { transition-delay: 0.2s; }
.stagger-s .slam:nth-child(4), .stagger-s .slam-r:nth-child(4) { transition-delay: 0.3s; }

/* ========== REGISTRATION PAGE ========== */
.reg-tabs {
  display: flex; gap: 0; margin-bottom: 2.5rem; border-bottom: 2px solid var(--chalk);
}
.reg-tab-btn {
  flex: 1; padding: 0.9rem 1rem; background: none; border: none;
  font-family: var(--font-shout); font-size: 1.1rem; letter-spacing: 0.08em;
  color: rgba(0,0,0,0.35); position: relative; transition: color 0.2s;
}
.reg-tab-btn::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s;
}
.reg-tab-btn:hover { color: var(--black); }
.reg-tab-btn.active { color: var(--black); }
.reg-tab-btn.active::after { transform: scaleX(1); }
.reg-tab-panel { display: none; }
.reg-tab-panel.active { display: block; }

.form-section-title {
  font-family: var(--font-shout); font-size: 1rem; letter-spacing: 0.1em;
  color: var(--violet); margin: 2rem 0 1rem; padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--chalk);
}
.form-section-title:first-child { margin-top: 0; }

.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-half { flex: 1 1 calc(50% - 0.5rem); min-width: 200px; }
.form-third { flex: 1 1 calc(33.33% - 0.67rem); min-width: 160px; }
.form-quarter { flex: 1 1 calc(25% - 0.75rem); min-width: 120px; }
.form-hint { font-size: 0.78rem; color: rgba(0,0,0,0.5); margin-bottom: 1rem; }
.form-radio-row { display: flex; gap: 1.5rem; margin-top: 0.3rem; }

.toggle-link-wrap { margin-bottom: 1.25rem; }
.toggle-link {
  font-family: var(--font-punk); font-size: 0.78rem;
  color: var(--violet); text-decoration: none; cursor: pointer;
}
.toggle-link:hover { text-decoration: underline; }

/* Week selection grid */
.week-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.week-option { display: block; cursor: pointer; }
.week-option input { position: absolute; opacity: 0; pointer-events: none; }
.week-option-inner {
  display: flex; align-items: center; gap: 1rem; padding: 0.8rem 1rem;
  border: 2px solid var(--chalk); transition: border-color 0.2s, background 0.2s;
}
.week-option input:checked + .week-option-inner {
  border-color: var(--gold); background: rgba(255,170,0,0.06);
}
.week-option:hover .week-option-inner { border-color: var(--gold-bright); }
.week-num {
  font-family: var(--font-shout); font-size: 1.1rem; letter-spacing: 0.06em;
  color: var(--violet); min-width: 3rem;
}
.week-dates { font-size: 0.82rem; }

/* Coupon */
.coupon-row { display: flex; gap: 0.75rem; align-items: flex-end; margin-bottom: 0.5rem; }
.coupon-row .btn-ghost {
  padding: 0.7rem 1.5rem; font-size: 0.85rem; height: fit-content;
  color: var(--black); border-color: var(--chalk);
}
.coupon-result { font-size: 0.78rem; margin-bottom: 1.5rem; min-height: 1.2em; }
.coupon-result.success { color: #2e7d32; }
.coupon-result.error { color: #c62828; }

/* Payment method selector */
.payment-methods { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.payment-option { flex: 1; min-width: 160px; cursor: pointer; display: block; }
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.payment-option-inner {
  display: flex; flex-direction: column; gap: 0.15rem; padding: 1rem;
  border: 2px solid var(--chalk); transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.payment-option input:checked + .payment-option-inner,
.payment-option.selected .payment-option-inner {
  border-color: var(--gold); background: rgba(255,170,0,0.06);
}
.payment-option:hover .payment-option-inner { border-color: var(--gold-bright); }
.payment-option-name {
  font-family: var(--font-shout); font-size: 1.1rem; letter-spacing: 0.06em;
}
.payment-option-desc { font-size: 0.72rem; color: rgba(0,0,0,0.45); }

/* Square card container */
.card-container {
  margin-bottom: 1.5rem; padding: 1.25rem; border: 1px solid var(--chalk);
  background: var(--raw-white); min-height: 60px;
}

/* Pricing summary */
.pricing-summary {
  margin: 2rem 0; padding: 1.25rem 1.5rem; background: var(--cream);
  border-top: 3px solid var(--gold);
}
.pricing-line {
  display: flex; justify-content: space-between; font-size: 0.85rem;
  padding: 0.3rem 0; color: rgba(0,0,0,0.6);
}
.pricing-total {
  display: flex; justify-content: space-between; font-family: var(--font-shout);
  font-size: 1.4rem; letter-spacing: 0.04em; padding-top: 0.6rem;
  margin-top: 0.4rem; border-top: 1px solid rgba(0,0,0,0.1);
}
.btn-submit {
  width: 100%; justify-content: center; font-size: 1.2rem; padding: 1rem;
  margin-top: 0.5rem;
}
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Form check grid */
.form-check-grid { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 0.3rem; }

/* ========== CONFIRMATION PAGE ========== */
.confirm-card {
  max-width: 640px; margin: 0 auto; padding: 2rem; background: var(--cream);
  border-top: 4px solid var(--gold);
}
.confirm-card h2 { font-family: var(--font-shout); font-size: 1.6rem; margin-bottom: 1rem; }
.confirm-detail { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.85rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.confirm-detail:last-child { border-bottom: none; }
.confirm-detail .label { color: rgba(0,0,0,0.5); }
.confirm-instructions {
  margin-top: 1.5rem; padding: 1.25rem; background: var(--raw-white);
  border: 2px solid var(--gold); font-size: 0.85rem;
}
.confirm-instructions strong { display: block; font-family: var(--font-shout); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.confirm-ref {
  display: inline-block; font-family: var(--font-punk); font-size: 1.3rem;
  font-weight: 700; color: var(--violet); background: rgba(107,45,139,0.08);
  padding: 0.3rem 0.8rem; margin: 0.5rem 0;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: var(--gutter);
}
.modal-card {
  background: var(--raw-white); padding: 2rem; max-width: 520px; width: 100%;
  position: relative; border-top: 4px solid var(--gold);
}
.modal-close {
  position: absolute; top: 0.75rem; right: 1rem; background: none; border: none;
  font-size: 1.5rem; color: rgba(0,0,0,0.3); cursor: pointer;
}
.modal-close:hover { color: var(--hot-red); }

/* ========== CAMP BADGES ========== */
.camp-badge {
  display: inline-block; font-family: var(--font-shout); font-size: 0.75rem;
  letter-spacing: 0.08em; padding: 0.2rem 0.6rem; margin-top: 0.3rem;
}
.camp-badge.sold-out { background: var(--hot-red); color: #fff; }
.camp-badge.low-spots { background: var(--gold); color: var(--black); }

/* ========== CART PAGE ========== */
.cart-item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--chalk);
}
.cart-item-info { flex: 1; }
.cart-item-type {
  display: inline-block; font-family: var(--font-shout); font-size: 0.7rem;
  letter-spacing: 0.08em; background: var(--off-black); color: var(--chalk);
  padding: 0.15rem 0.5rem; margin-bottom: 0.25rem;
}
.cart-item-label { display: block; font-size: 0.9rem; font-weight: 500; margin-top: 0.2rem; }
.cart-item-detail { display: block; font-size: 0.75rem; color: rgba(0,0,0,0.45); }
.cart-item-price { font-family: var(--font-shout); font-size: 1.1rem; min-width: 80px; text-align: right; }
.cart-item-remove {
  background: none; border: none; font-size: 1.4rem; color: rgba(0,0,0,0.25);
  cursor: pointer; padding: 0.5rem; transition: color 0.15s;
}
.cart-item-remove:hover { color: var(--hot-red); }

/* Add-to-cart button states */
.btn-added { background: #2e7d32 !important; color: #fff !important; }
.cart-bottom-links {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem; padding-top: 1rem;
}
.cart-link {
  font-family: var(--font-punk); font-size: 0.78rem; color: rgba(0,0,0,0.45);
  text-decoration: none; background: none; border: none; cursor: pointer;
  transition: color 0.15s;
}
.cart-link:hover { color: var(--violet); }

/* ========== CHECKOUT PAGE ========== */
.checkout-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }
.checkout-summary-col { position: sticky; top: 80px; }

/* ========== STUDENT BLOCKS ========== */
.student-block {
  padding: 1.5rem; margin-bottom: 1.5rem; border: 2px solid var(--chalk);
  background: var(--raw-white); position: relative;
}
.student-block-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.student-block-num {
  font-family: var(--font-shout); font-size: 1rem; letter-spacing: 0.08em;
  color: var(--violet);
}
.student-remove {
  background: none; border: none; font-size: 1.4rem; color: rgba(0,0,0,0.25);
  cursor: pointer; transition: color 0.15s;
}
.student-remove:hover { color: var(--hot-red); }
.item-assignment { display: flex; flex-direction: column; gap: 0.4rem; }
.policy-check { margin-bottom: 0.75rem; font-size: 0.82rem; line-height: 1.5; }
.policy-check a { color: var(--violet); text-decoration: underline; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .camp-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav { display: contents; }
  .main-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black); flex-direction: column;
    justify-content: center; align-items: center;
    gap: 2rem; transform: translateX(100%); opacity: 0;
    pointer-events: none; transition: transform 0.3s, opacity 0.3s; z-index: 98;
  }
  .main-nav.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.5rem !important; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 360px; margin: 0 auto; }
  .hero h1 { font-size: clamp(3.5rem, 12vw, 5rem); }
  .explosion { clip-path: none; margin: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { grid-template-columns: 1fr; }
  .svc-card:nth-child(even) { direction: ltr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-gallery { order: -1; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-clash { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .class-card { grid-template-columns: 1fr; }
  .class-card-action { text-align: left; }
  .camp-week { grid-template-columns: 1fr; text-align: center; }
  .camp-week-num { min-width: auto; }
  .camp-daily-schedule { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .reg-tabs { flex-direction: column; }
  .payment-methods { flex-direction: column; }
  .form-row { flex-direction: column; gap: 0; }
  .form-half, .form-third, .form-quarter { flex: 1 1 100%; min-width: 0; }
  .week-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-glam { text-align: center; justify-content: center; }
  .about-stats { flex-direction: column; gap: 1rem; }
  .cta-liz, .cta-kid { padding: 3rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
