/* ============================
   MODEL-VATION V2 — LUXURY CSS
   ============================ */

:root {
  --pink: #FF1C7A;
  --pink-light: #ff6eb0;
  --pink-glow: rgba(255, 28, 122, 0.15);
  --black: #000000;
  --near-black: #080808;
  --dark: #111111;
  --dark-mid: #181818;
  --dark-card: #141414;
  --gray: #777777;
  --mid-gray: #444;
  --light-gray: #cccccc;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================
   NAV
   ============================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(255,28,122,0.2);
}
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-text { font-family: var(--font-body); font-weight: 900; font-size: 15px; letter-spacing: 3px; display: flex; align-items: center; gap: 4px; }
.nav-logo-main { color: var(--white); }
.nav-logo-dash { color: var(--pink); font-weight: 300; }
.nav-logo-accent { color: var(--pink); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--light-gray); text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--pink); }
.nav-links .nav-cta {
  color: var(--white); background: var(--pink);
  padding: 11px 24px; letter-spacing: 2px;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { background: #d80060; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--black); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu a { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--white); text-decoration: none; letter-spacing: 2px; transition: color var(--transition); }
.mobile-menu a:hover, .mobile-menu .mobile-cta { color: var(--pink); }
.close-menu { position: absolute; top: 28px; right: 32px; background: none; border: none; color: var(--white); font-size: 30px; cursor: pointer; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  animation: fadeUp 1.2s ease both;
}
.hero-logo-wrap { margin-bottom: 32px; }
.hero-logo { height: 100px; width: auto; filter: drop-shadow(0 0 24px rgba(255,28,122,0.4)); }
.hero-title-wrap { margin-bottom: 28px; }
.hero-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(60px, 11vw, 130px);
  line-height: 0.9;
  letter-spacing: -3px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-shadow: 0 0 60px rgba(255,28,122,0.25);
}
.title-main { color: var(--white); }
.title-dash { color: var(--pink); font-weight: 300; font-size: 0.75em; }
.title-accent { color: var(--pink); }
.hero-tagline {
  font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px);
  font-weight: 300; font-style: italic; color: var(--light-gray);
  letter-spacing: 1px; margin-bottom: 16px;
}
.hero-sub {
  font-size: 13px; font-weight: 300; letter-spacing: 0.5px;
  color: var(--gray); line-height: 2; max-width: 560px; margin: 0 auto 40px;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; padding: 16px 44px;
  background: var(--pink); color: var(--white);
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { background: #d80060; transform: translateY(-2px); box-shadow: 0 16px 48px rgba(255,28,122,0.4); }
.btn-primary.large { padding: 20px 60px; font-size: 11px; letter-spacing: 5px; }
.btn-outline {
  display: inline-block; padding: 16px 44px;
  background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,28,122,0.05); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeIn 2s ease 1.5s both;
}
.hero-scroll span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gray); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--pink), transparent); animation: scrollPulse 2s ease infinite; }

/* ============================
   MARQUEE STRIP
   ============================ */
.marquee-strip { overflow: hidden; background: var(--pink); padding: 14px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 40px; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--white); flex-shrink: 0; }
.marquee-track .dot { color: rgba(255,255,255,0.45); letter-spacing: 0; }

/* ============================
   SHARED TYPOGRAPHY
   ============================ */
.section-label {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 6px; text-transform: uppercase; color: var(--pink); margin-bottom: 16px;
  display: block;
}
.section-label.light { color: var(--pink-light); }
.section-label.center { text-align: center; }
.section-heading {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px);
  font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 28px;
}
.section-heading.center { text-align: center; }
.section-heading em { color: var(--pink); font-style: italic; }
.body-text { font-size: 14px; font-weight: 300; line-height: 2; color: var(--light-gray); margin-bottom: 20px; }

/* ============================
   BRAND SECTION
   ============================ */
.brand { padding: 120px 48px; background: var(--near-black); }
.brand-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.brand-pillars { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; border-left: 2px solid var(--pink);
  background: var(--dark-card);
}
.pillar-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.pillar p { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.7; }
.brand-image-col { position: relative; }
.brand-image-wrap { position: relative; }
.brand-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--dark-mid); border: 1px solid #1e1e1e;
  overflow: hidden; position: relative;
}
.brand-img-placeholder span { font-size: 11px; letter-spacing: 3px; color: #333; text-transform: uppercase; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.brand-img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-logo-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--pink); padding: 14px; width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.brand-logo-badge img { width: 60px; height: 60px; object-fit: contain; filter: brightness(0) invert(1); }
.badge-text { display: flex; align-items: center; gap: 1px; }
.badge-main, .badge-accent { font-family: var(--font-body); font-weight: 900; font-size: 22px; color: var(--white); letter-spacing: -1px; }
.badge-dash { color: rgba(255,255,255,0.7); font-size: 16px; font-weight: 300; margin: 0 1px; }

/* ============================
   SECTION DIVIDER
   ============================ */
.section-divider {
  display: flex; align-items: center; gap: 24px;
  padding: 40px 48px; background: var(--dark);
}
.divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--pink), transparent); }
.divider-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 900;
  letter-spacing: 8px; text-transform: uppercase; color: var(--pink);
  white-space: nowrap;
}

/* ============================
   WORKSHOP HERO
   ============================ */
.workshop-hero {
  padding: 100px 48px; background: var(--dark);
  position: relative; overflow: hidden;
}
.workshop-hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 65%);
  pointer-events: none;
}
.workshop-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start;
}
.workshop-hero-title {
  display: flex; flex-direction: column; line-height: 1;
  margin-bottom: 12px;
}
.wh-brand {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; color: var(--white); letter-spacing: 2px;
}
.wh-number {
  font-family: var(--font-body); font-size: clamp(80px, 12vw, 160px);
  font-weight: 900; line-height: 0.85; color: var(--pink);
  letter-spacing: -4px;
}
.workshop-hero-subtitle {
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  font-style: italic; color: var(--light-gray); margin-bottom: 24px; letter-spacing: 1px;
}
.workshop-hero-desc {
  font-size: 14px; font-weight: 300; line-height: 2; color: var(--gray);
  margin-bottom: 36px; max-width: 480px;
}
.quicklook { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.ql-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--dark-mid); border-left: 2px solid var(--pink);
}
.ql-label { font-size: 8px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--pink); background: rgba(255,28,122,0.1); border: 1px solid rgba(255,28,122,0.3); padding: 5px 10px; flex-shrink: 0; white-space: nowrap; align-self: center; }
.ql-item div { display: flex; flex-direction: column; gap: 3px; }
.ql-item strong { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.5px; }
.ql-item span { font-size: 12px; font-weight: 300; color: var(--gray); }

/* PRICING */
.pricing-block {
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid #2a2a2a; overflow: hidden; margin-bottom: 36px;
}
.price-tier {
  flex: 1; padding: 28px 32px; text-align: center;
  display: flex; flex-direction: column; gap: 6px; background: var(--dark-mid);
}
.price-tier.early { border-right: 1px solid #2a2a2a; }
.price-divider { display: none; }
.price-tag { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gray); }
.price-amount { font-family: var(--font-display); font-size: 52px; font-weight: 600; color: var(--pink); line-height: 1; }
.price-tier.early .price-amount { color: var(--white); }
.price-note { font-size: 11px; font-weight: 300; color: var(--gray); }
.spots-warning { margin-top: 16px; font-size: 11px; letter-spacing: 2px; color: var(--pink); text-transform: uppercase; }

/* FLYER */
.workshop-hero-flyer { position: sticky; top: 100px; }
.flyer-img {
  width: 100%; max-width: 420px; border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,28,122,0.12);
  display: block; margin: 0 auto;
}

/* ============================
   LEARN SECTION
   ============================ */
.learn { padding: 100px 48px; background: var(--near-black); }
.learn-inner { max-width: 1100px; margin: 0 auto; }
.learn-intro {
  font-family: var(--font-display); font-size: 20px; font-weight: 300; font-style: italic;
  color: var(--light-gray); max-width: 600px; margin: 0 auto 64px; text-align: center; line-height: 1.8;
}
.learn-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-bottom: 64px;
}
.learn-grid-5 { grid-template-columns: repeat(5,1fr); }
.learn-card {
  background: var(--dark-card); padding: 48px 28px;
  border: 1px solid #1a1a1a; position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.learn-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--pink); transform: scaleX(0); transition: transform var(--transition);
}
.learn-card:hover { border-color: #2a2a2a; transform: translateY(-5px); }
.learn-card:hover::after { transform: scaleX(1); }
.learn-number {
  font-family: var(--font-display); font-size: 64px; font-weight: 700;
  color: rgba(255,28,122,0.38); line-height: 1; margin-bottom: 16px;
}
.learn-card h3 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.learn-card p { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.8; }
.learn-cta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 32px; background: var(--dark-mid); border: 1px solid #222;
}
.learn-cta-text { font-family: var(--font-display); font-size: 18px; font-weight: 300; font-style: italic; color: var(--light-gray); }

/* ============================
   WHAT TO BRING
   ============================ */
.bring { padding: 100px 48px; background: var(--dark); }
.bring-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.bring-img-wrap { position: relative; }
.bring-img-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--dark-mid);
  border: 1px solid #1e1e1e; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.bring-img-placeholder span { font-size: 11px; letter-spacing: 3px; color: #333; text-transform: uppercase; }
.bring-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.bring-tag {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--pink); padding: 14px 20px;
  font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white);
}
.bring-list { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.bring-list li {
  display: flex; align-items: flex-start; gap: 18px;
  padding-bottom: 24px; border-bottom: 1px solid #1a1a1a;
}
.bring-list li:last-child { border-bottom: none; }
.bring-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.bring-list strong { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 5px; font-weight: 700; }
.bring-list p { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray); }

/* ============================
   INSTRUCTOR
   ============================ */
.instructor { padding: 100px 48px; background: var(--near-black); }
.instructor-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center;
}
.instructor-img-wrap { position: relative; }
.instructor-img-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--dark-mid);
  border: 1px solid #1e1e1e; position: relative; overflow: hidden;
}
.instructor-img-placeholder span { font-size: 11px; letter-spacing: 3px; color: #333; text-transform: uppercase; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.instructor-img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.instructor-role {
  font-family: var(--font-display); font-size: 18px; font-weight: 300; font-style: italic;
  color: var(--pink); margin-bottom: 28px; letter-spacing: 0.5px;
}
.instructor-bio-quote {
  font-family: var(--font-display); font-size: 22px; font-weight: 400; font-style: italic;
  color: var(--white); border-left: 3px solid var(--pink); padding-left: 20px; margin: 28px 0;
  line-height: 1.5;
}
.instructor-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.instructor-creds span {
  font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pink); border: 1px solid var(--pink); padding: 8px 16px;
}

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
  position: relative; min-height: 620px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, rgba(255,28,122,0.2) 0%, transparent 70%), var(--dark);
}
.final-cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.final-cta-content { position: relative; z-index: 2; padding: 80px 24px; }
.final-cta-heading {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 100px);
  font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 24px;
}
.final-cta-heading em { color: var(--pink); font-style: italic; }
.final-cta-sub { font-size: 14px; font-weight: 300; color: var(--light-gray); max-width: 460px; margin: 0 auto 32px; line-height: 2; }
.final-price-row { display: flex; justify-content: center; align-items: center; gap: 20px; margin-bottom: 36px; }
.fp-tag { font-size: 13px; font-weight: 300; color: var(--light-gray); letter-spacing: 1px; }
.fp-tag strong { color: var(--pink); font-size: 22px; font-family: var(--font-display); font-weight: 600; }
.fp-div { color: var(--mid-gray); }
.final-cta-fine { margin-top: 24px; font-size: 10px; letter-spacing: 3px; color: var(--gray); text-transform: uppercase; }
.final-cta-insta { margin-top: 12px; font-size: 13px; letter-spacing: 2px; color: var(--pink); }

/* ============================
   GUIDE SECTION
   ============================ */
.guide { padding: 120px 48px; background: var(--near-black); }
.guide-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center;
}
.guide-book { display: flex; align-items: center; justify-content: center; }
.guide-img-link { display: block; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.guide-img-link:hover { transform: translateY(-6px); }
.guide-cover-img {
  width: 100%; max-width: 220px; display: block;
  box-shadow: 8px 8px 0 rgba(255,28,122,0.2), 0 32px 64px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,28,122,0.2);
}
.guide-subtitle { font-family: var(--font-display); font-size: 20px; font-weight: 300; font-style: italic; color: var(--light-gray); margin-bottom: 24px; }
.guide-features { list-style: none; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; }
.guide-features li { font-size: 13px; font-weight: 300; color: var(--light-gray); padding-left: 20px; position: relative; line-height: 1.6; }
.guide-features li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--pink); }

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--black); border-top: 1px solid #111; padding: 64px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo-img { height: 64px; width: auto; opacity: 0.85; }
.footer-logo-text { display: flex; align-items: center; gap: 6px; }
.footer-logo-main { font-family: var(--font-body); font-weight: 900; font-size: 22px; letter-spacing: 4px; color: var(--white); }
.footer-logo-dash { color: var(--pink); font-weight: 300; font-size: 18px; }
.footer-logo-accent { font-family: var(--font-body); font-weight: 900; font-size: 22px; letter-spacing: 4px; color: var(--pink); }
.footer-tagline { font-family: var(--font-display); font-size: 17px; font-weight: 300; font-style: italic; color: var(--gray); }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--pink); }
.footer-copy { font-size: 11px; color: #2a2a2a; letter-spacing: 1px; margin-top: 16px; }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}
@keyframes marquee {
  0% { transform: translateX(0); } 100% { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .brand-inner, .workshop-hero-inner, .bring-inner, .instructor-inner { grid-template-columns: 1fr; gap: 56px; }
  .workshop-hero-flyer { position: static; }
  .flyer-img { max-width: 360px; }
  .learn-grid { grid-template-columns: repeat(2,1fr); }
  .brand-image-col, .bring-image-col { max-width: 420px; margin: 0 auto; }
  .learn-cta-row { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .brand, .workshop-hero, .learn, .bring, .instructor, .footer { padding: 72px 20px; }
  .section-divider { padding: 32px 20px; }
  .learn-grid { grid-template-columns: 1fr; }
  .pricing-block { flex-direction: column; }
  .price-tier.early { border-right: none; border-bottom: 1px solid #2a2a2a; }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; }
  .final-price-row { flex-direction: column; gap: 8px; }
  .footer-links { gap: 20px; }
}
