/* ============================================================
   MIPSS 2026 — Workshops Page  v2
   Typography: Cormorant Garamond (serif, titles) + Jost (sans, body)
   Palette: Lavender #E3D1E4 · Slate Blue #567AB8 · Off-White · Gold
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Core palette */
  --slate-dark:   #2A3D5C;   /* deep slate, headers, footer */
  --slate-mid:    #3D5A8C;   /* medium slate, dark backgrounds */
  --slate:        #567AB8;   /* primary accent, titles, icons */
  --slate-light:  #7A96C9;   /* lighter slate, hover states */
  --slate-pale:   #C5D3E8;   /* very pale slate, subtle borders */

  --lavender:     #E3D1E4;   /* primary soft color, backgrounds */
  --lavender-mid: #D9C5DB;   /* medium lavender, borders */
  --lavender-deep:#C4A8C8;   /* deeper lavender, hover */
  --lavender-pale:#F0E8F2;   /* very pale lavender, card bg */

  --gold:         #B8975A;   /* accent, CTA, decorative */
  --gold-light:   #D4B07A;   /* hover gold */

  --offwhite:     #FAFAF8;   /* main background */
  --cream:        #F5F3F0;   /* secondary background */
  --white:        #FFFFFF;

  --text-dark:    #2E2B28;   /* primary text */
  --text-mid:     #5A5650;   /* secondary text */
  --text-light:   #8B8680;   /* muted text */

  --border:       rgba(86,122,184,0.18);   /* slate-tinted border */
  --border-lav:   rgba(227,209,228,0.60);  /* lavender-tinted border */

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:    4px;
  --radius-md:    10px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 12px rgba(42,61,92,0.08);
  --shadow-md:    0 6px 30px rgba(42,61,92,0.14);
  --shadow-lg:    0 16px 60px rgba(42,61,92,0.20);

  --transition:   0.3s ease;
  --max-width:    1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--text-dark);
  background: var(--offwhite);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--slate-dark);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--gold);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept,
.btn-cookie-reject {
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition);
}
.btn-cookie-accept { background: var(--gold); color: var(--slate-dark); }
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,0.7); }
.btn-cookie-reject:hover { background: rgba(255,255,255,0.08); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.72);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-register {
  color: var(--gold-light);
  font-weight: 500;
  transition: color var(--transition);
}
.topbar-register:hover { color: var(--white); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-lav);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav ul li a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav ul li a:hover { color: var(--slate); background: var(--lavender-pale); }
.main-nav ul li a.active { color: var(--slate); background: var(--lavender-pale); }

.btn-register {
  margin-left: 16px;
  padding: 9px 22px;
  background: var(--slate);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate);
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.btn-register:hover { background: var(--gold); border-color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url('mipss_hero_bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42,61,92,0.88) 0%,
    rgba(61,90,140,0.72) 55%,
    rgba(86,122,184,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--lavender);
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  margin-bottom: 36px;
}
.hero-location strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.icon-pin { width: 16px; height: 16px; flex-shrink: 0; color: var(--lavender); }

.btn-hero {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--slate-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-hero:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ---------- Workshop Label Strip ---------- */
.workshop-label-strip {
  background: var(--slate-dark);
  padding: 36px 0;
  border-bottom: 1px solid rgba(227,209,228,0.2);
}
.workshop-label-strip .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.workshop-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--lavender);
  color: var(--slate-dark);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  flex-shrink: 0;
}
.workshop-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

/* ---------- Info Grid ---------- */
.info-grid-section {
  background: var(--offwhite);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-lav);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border-lav);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lavender-pale);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; color: var(--slate); }
.info-text { display: flex; flex-direction: column; gap: 4px; }
.info-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.info-value {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-dark);
  line-height: 1.4;
}

/* ---------- Section Headings ---------- */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400;
  color: var(--slate-dark);
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 16px;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--slate);
}
.section-heading--light { color: var(--white); }
.section-heading--light::after { background: var(--lavender); }

/* ---------- Pricing ---------- */
.pricing-section {
  padding: 80px 0;
  background: var(--lavender-pale);
  border-bottom: 1px solid var(--border-lav);
}
.pricing-note {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: -24px;
  margin-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-lav);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  background: var(--slate-dark);
  border-color: var(--slate);
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--slate-dark);
  letter-spacing: 0.01em;
}
.pricing-card--featured .pricing-badge { color: var(--lavender); }
.pricing-tiers { display: flex; flex-direction: column; gap: 0; }
.pricing-tier {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
}
.pricing-divider { height: 1px; background: var(--border-lav); }
.pricing-card--featured .pricing-divider { background: rgba(227,209,228,0.2); }
.tier-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.pricing-card--featured .tier-label { color: rgba(255,255,255,0.5); }
.tier-price {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--slate-dark);
  line-height: 1.1;
}
.pricing-card--featured .tier-price { color: var(--white); }
.tier-note {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
}
.pricing-card--featured .tier-note { color: rgba(255,255,255,0.5); }
.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px 24px;
  background: var(--lavender-pale);
  color: var(--slate-dark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--lavender-mid);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-pricing:hover { background: var(--slate); color: var(--white); border-color: var(--slate); }
.btn-pricing--featured {
  background: var(--gold);
  color: var(--slate-dark);
  border-color: var(--gold);
}
.btn-pricing--featured:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Schedule / Timeline ---------- */
.schedule-section {
  padding: 80px 0;
  background: var(--offwhite);
  border-bottom: 1px solid var(--border-lav);
}
.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--lavender-mid);
  padding-left: 32px;
  margin-left: 120px;
  position: relative;
}
.schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(227,209,228,0.4);
  position: relative;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate);
  border: 2px solid var(--offwhite);
  box-shadow: 0 0 0 2px var(--slate);
}
.schedule-item--break::before { background: var(--lavender-deep); box-shadow: 0 0 0 2px var(--lavender-deep); }
.schedule-item--handson::before { background: var(--slate-dark); box-shadow: 0 0 0 2px var(--slate-dark); }

.schedule-time {
  position: absolute;
  left: -152px;
  top: 20px;
  width: 110px;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
  line-height: 1.4;
  padding-right: 8px;
}
.schedule-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.schedule-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.55;
}
.schedule-speaker {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--slate);
}
.schedule-item--break .schedule-title { color: var(--text-light); font-style: italic; }
.schedule-item--handson {
  background: var(--lavender-pale);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 8px 0;
  border-bottom: none;
  border: 1px solid var(--lavender-mid);
}
.schedule-item--handson .schedule-title { color: var(--slate-dark); font-weight: 500; }
.schedule-item--handson .schedule-time { color: var(--slate-dark); font-weight: 600; }

/* ---------- About Section ---------- */
.about-section {
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
}
.about-bg-wrap {
  background: url('mipss_section_bg.jpg') center center / cover no-repeat;
  position: relative;
}
.about-bg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42,61,92,0.90);
}
.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.about-text p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--lavender); font-weight: 500; }
.about-audience {
  font-family: var(--font-serif) !important;
  font-size: 1.15rem !important;
  color: rgba(255,255,255,0.6) !important;
  font-style: italic;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(227,209,228,0.07);
  border: 1px solid rgba(227,209,228,0.22);
  border-radius: var(--radius-md);
}
.highlight-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--lavender);
  line-height: 1;
  min-width: 56px;
  text-align: center;
}
.highlight-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- CTA Strip ---------- */
.cta-section {
  background: var(--gold);
  padding: 56px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--slate-dark);
  margin-bottom: 6px;
}
.cta-text p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(42,61,92,0.75);
}
.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--slate-dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta:hover { background: var(--slate-mid); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate-dark);
  border-top: 1px solid rgba(227,209,228,0.18);
  padding: 72px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
}
.footer-col--brand { padding-right: 20px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.42);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.04em;
}
.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--lavender); }
.footer-address {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.9;
}
.footer-address strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.footer-address a { color: rgba(255,255,255,0.58); transition: color var(--transition); }
.footer-address a:hover { color: var(--lavender); }
.footer-map-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-legal a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ---------- Scroll Reveal ---------- */
.reveal-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-highlights { flex-direction: row; flex-wrap: wrap; }
  .highlight-item { flex: 1 1 calc(33% - 16px); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .schedule-timeline { margin-left: 90px; }
  .schedule-time { left: -122px; width: 80px; }
}

@media (max-width: 768px) {
  body { font-size: 1.05rem; }
  .topbar { font-size: 0.7rem; padding: 6px 20px; }
  .topbar-register { display: none; }

  .header-inner { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-lav);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li a { display: block; padding: 10px 12px; font-size: 0.82rem; }
  .btn-register { margin: 16px 0 0; text-align: center; padding: 12px; }

  .hero { min-height: 420px; }
  .hero-content { padding: 60px 20px; }
  .hero-title { font-size: 2.4rem; }

  .container { padding: 0 20px; }

  .info-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }

  .schedule-timeline { margin-left: 0; padding-left: 20px; border-left-width: 2px; }
  .schedule-time {
    position: static;
    width: auto;
    text-align: left;
    padding-right: 0;
    margin-bottom: 4px;
    font-size: 0.72rem;
  }
  .schedule-item { flex-direction: column; gap: 4px; }
  .schedule-item::before { left: -27px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-col--brand { padding-right: 0; }
}

@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .highlight-item { flex: 1 1 100%; }
  .workshop-label-strip .container { flex-direction: column; align-items: flex-start; gap: 12px; }
}
