/* event.css — MAE 2026 event/landing page
   Long-scroll marketing surface that flows into the registration checkout.
   Uses the Milan Art Institute design system + MAE cyan identity. */

@import url('colors_and_type.css');

/* Subtle Playfair italic accent — mirrors the breakthrough wordmark pattern
   (sans-bold + serif-italic) inside otherwise Poppins headings.
   Larger headings use bold italic; pull-quotes use regular weight. */
.accent-italic,
.section__title em,
.wk-card__title em,
.travel-card__name em,
.guarantee__title em,
.final-cta__title em,
.tier-card__name em,
.workshop-card__title em,
.reg-section__title em,
.sched__day-name,
.stay__name,
.footer__brand-line,
.speaker-name-italic {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}
/* Quote-style italics stay regular weight — they're voice, not headings */
.tm-card__quote,
.pitch__quote,
.pitch__sig {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  background: var(--mae-white);
  font-family: var(--font-body);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─────────── Buttons (extends colors_and_type.css base) ─────────── */
.btn-lg   { height: 58px; padding: 0 28px; font-size: 16px; }
.btn-sm   { height: 42px; padding: 0 16px; font-size: 13px; }
.btn-block{ display: flex; width: 100%; }
.btn-icon { display: inline-flex; align-items: center; gap: 10px; }

/* ─────────── Layout shells ─────────── */
.container {
  width: 100%; max-width: 1264px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow { max-width: 880px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.section {
  padding: 96px 0;
  position: relative;
}
.section-tight { padding: 64px 0; }
.section-soft  { background: #ffffff; }
.section-paper { background: var(--mae-neutral-50); }
.section-grey  { background: var(--mae-neutral-100); }

/* ─────────── Motion: elegant load + scroll reveals ───────────
   Gated behind html.reveal-ready (JS adds it only when motion is OK), so
   no-JS and reduced-motion users see everything immediately. Transform +
   opacity only → zero layout shift. The hero wordmark (.hero__lockup) is
   deliberately NOT animated so it paints instantly (it's the LCP element). */
@keyframes mae-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero load cascade — the signature "breakthrough" reveal */
html.reveal-ready .hero__top     { animation: mae-rise 0.85s cubic-bezier(0.16, 0.84, 0.3, 1) 0.15s both; }
html.reveal-ready .hero__tagline { animation: mae-rise 0.85s cubic-bezier(0.16, 0.84, 0.3, 1) 0.35s both; }
html.reveal-ready .hero__ctas    { animation: mae-rise 0.85s cubic-bezier(0.16, 0.84, 0.3, 1) 0.50s both; }
html.reveal-ready .hero__meta .item { animation: mae-rise 0.80s cubic-bezier(0.16, 0.84, 0.3, 1) both; }
html.reveal-ready .hero__meta .item:nth-child(1) { animation-delay: 0.62s; }
html.reveal-ready .hero__meta .item:nth-child(2) { animation-delay: 0.72s; }
html.reveal-ready .hero__meta .item:nth-child(3) { animation-delay: 0.82s; }

/* Sections gently rise + fade as they scroll into view */
html.reveal-ready .section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.16, 0.84, 0.3, 1);
}
html.reveal-ready .section.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .hero__top,
  html.reveal-ready .hero__tagline,
  html.reveal-ready .hero__ctas,
  html.reveal-ready .hero__meta .item,
  html.reveal-ready .section {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─────────── Countdown banner (sticky · persistent CTA) ─────────── */
.cdbar {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--mae-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 2px 0 var(--mae-cyan), 0 6px 20px rgba(0, 0, 0, 0.18);
  animation: cdbar-in 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes cdbar-in {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.cdbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cdbar__msg { display: flex; align-items: center; gap: 16px; min-width: 0; }
.cdbar__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--mae-red); flex: none;
  animation: cdbar-pulse 1.7s ease-in-out infinite;
}
@keyframes cdbar-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(253, 61, 107, 0.55); }
  50%      { opacity: 0.55; box-shadow: 0 0 0 6px rgba(253, 61, 107, 0); }
}
.cdbar__eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72); white-space: nowrap;
}
.cdbar__clock { display: flex; align-items: flex-start; gap: 9px; }
.cdbar__unit { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.cdbar__num {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: #fff; font-style: normal; font-variant-numeric: tabular-nums;
}
.cdbar__lbl {
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mae-cyan-300); margin-top: 4px;
}
.cdbar__sep {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  line-height: 1; color: rgba(255, 255, 255, 0.28);
}
.cdbar__sr {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.cdbar__cta {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  background: var(--mae-red); color: #fff; text-decoration: none;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 8px;
  transition: background 0.15s ease, transform 0.15s ease; white-space: nowrap;
}
.cdbar__cta:hover { background: var(--mae-red-600); transform: translateY(-1px); }
@media (max-width: 680px) {
  .cdbar__inner { padding: 8px 14px; gap: 10px; }
  .cdbar__eyebrow { display: none; }
  .cdbar__num { font-size: 15px; }
  .cdbar__lbl { font-size: 8px; }
  .cdbar__clock { gap: 6px; }
  .cdbar__cta { padding: 9px 13px; font-size: 11px; letter-spacing: 0.04em; }
}
@media (max-width: 380px) { .cdbar__cta span { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .cdbar { animation: none; }
  .cdbar__dot { animation: none; }
}

/* Cyan accent band — same texture as hero */
.section-cyan {
  background: var(--mae-cyan) url('/.netlify/images?url=/assets/texture-cyan.png&w=1920&q=70') center/cover no-repeat;
  color: #fff;
  position: relative;
}
/* On the cyan band, force text to white everywhere */
.section-cyan .section__eyebrow,
.section__eyebrow--light {
  color: #fff;
}
.section-cyan .section__eyebrow::before,
.section__eyebrow--light::before { background: #fff; }
.section-cyan .section__title,
.section__title--light { color: #fff; }
.section-cyan .section__lede,
.section__lede--light  { color: rgba(255,255,255,0.92); }

/* Included items on cyan — readable white + lighter accents */
.section-cyan .incl-item__icon {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
}
.section-cyan .incl-item__title { color: #fff; }
.section-cyan .incl-item__desc  { color: rgba(255,255,255,0.88); }
@media (max-width: 720px) { .section { padding: 64px 0; } }

.section__eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--mp-primary-red);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section__eyebrow::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; background: var(--mp-primary-red);
  border-radius: 999px;
}
.section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.015em;
  color: var(--mae-black);
  max-width: 880px;
  margin-bottom: 16px;
}
.section__title em { font-style: italic; }
.section__lede {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 640px;
}

/* ─────────── Nav ─────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246,246,246,0.92);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--mae-neutral-200);
  height: 68px;
}
.nav.is-on-hero {
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  position: relative;
  display: inline-block;
  height: 34px;
  line-height: 0;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
}
/* The black lockup sits in normal flow (defines the box) and shows on the
   solid, scrolled nav. The white lockup is stacked on top and only fades in
   over the transparent hero nav. */
.nav__logo-img--white {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 220ms var(--ease-soft);
}
.nav.is-on-hero .nav__logo-img--white { opacity: 1; }
.nav.is-on-hero .nav__logo-img--black {
  opacity: 0;
  transition: opacity 220ms var(--ease-soft);
}

.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.02em;
}
.nav__links a {
  color: var(--mae-black);
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 200ms var(--ease-soft);
}
.nav__links a:hover { border-bottom-color: var(--mae-black); }
.nav.is-on-hero .nav__links a { color: #fff; }
.nav.is-on-hero .nav__links a:hover { border-bottom-color: #fff; }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__date {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--fg-muted);
}
.nav.is-on-hero .nav__date { color: rgba(255,255,255,0.85); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__date { display: none; }
}

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  background: var(--mae-cyan) url('/.netlify/images?url=/assets/texture-cyan.png&w=1920&q=70') center/cover no-repeat;
  color: #fff;
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 3; width: 100%; }

/* Background building / palm graphic — mirrors Final CTA treatment */
.hero__building {
  position: absolute;
  left: -60px;
  bottom: 0;
  width: min(620px, 46vw);
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
}
.hero__building img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 720px) {
  .hero__building {
    width: 260px;
    left: -32px;
    opacity: 0.14;
  }
}
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap; gap: 16px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
}

/* Building art — its own block element, sits below text */
.hero__art {
  margin: 56px 0 48px;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.hero__art img {
  width: 100%;
  max-width: 880px;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}
@media (max-width: 720px) {
  .hero__art { margin: 36px 0 32px; }
  .hero__art img { max-height: 220px; }
}

.hero__lockup {
  width: 100%; max-width: 1100px;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
}
.hero__row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 48px; flex-wrap: wrap;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.4;
  color: #fff; font-weight: 500; letter-spacing: -0.005em;
  max-width: 580px;
}
.hero__ctas {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.hero__sub {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero__meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1.5px solid rgba(255,255,255,0.35);
  display: flex; gap: 56px; flex-wrap: wrap;
}
.hero__meta .item {
  display: flex; flex-direction: column; gap: 6px;
}
.hero__meta .lbl {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__meta .val {
  font-family: var(--font-utility); font-weight: 700;
  font-size: 18px; color: #fff;
}

/* ─────────── Trust strip (red band) ─────────── */
.trust-strip {
  background: var(--mp-primary-red);
  color: #fff;
  padding: 26px 0;
}
.trust-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust-strip__lbl {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  opacity: 0.85;
}
.trust-strip__stats {
  display: flex; gap: 40px; flex-wrap: wrap; align-items: baseline;
}
.trust-strip__stat {
  display: flex; flex-direction: column; gap: 2px;
}
.trust-strip__stat .num {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 32px; line-height: 1; color: #fff;
}
.trust-strip__stat .lbl {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

/* ─────────── Pitch / intro ─────────── */
.pitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pitch__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--mae-neutral-200);
}
.pitch__image img { width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); }
.pitch__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(45,45,45,0.0) 0%, rgba(0,0,0,0.45) 100%);
}
.pitch__quote {
  position: absolute; left: 32px; right: 32px; bottom: 28px;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.25;
  color: #fff;
  z-index: 2;
}
.pitch__quote-attr {
  margin-top: 14px;
  font-family: var(--font-body); font-style: normal; font-weight: 700;
  font-size: 11px; letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.pitch__body p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 17px; line-height: 1.65;
  color: var(--fg);
  margin-bottom: 18px;
}
.pitch__sig {
  margin-top: 24px;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 22px;
  color: var(--mae-black);
}
.pitch__sig-name {
  margin-top: 4px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 880px) {
  .pitch { grid-template-columns: 1fr; gap: 48px; }
}

/* ─────────── Faculty ─────────── */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) {
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .faculty-grid { grid-template-columns: 1fr; }
}
.faculty-card {
  display: flex; flex-direction: column;
  gap: 0;
}
.faculty-card__photo {
  aspect-ratio: 4 / 5;
  background: var(--mae-neutral-200);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.faculty-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.faculty-card.is-guest .faculty-card__photo {
  background: linear-gradient(135deg, var(--mae-cyan-100), var(--mae-cyan-300));
  display: flex; align-items: center; justify-content: center;
}
.faculty-card.is-guest .faculty-card__photo::after {
  content: '?'; font-family: var(--font-display); font-style: italic;
  font-size: 120px; color: rgba(255,255,255,0.85);
}
.faculty-card__name {
  margin-top: 18px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.15;
  color: var(--mae-black);
  letter-spacing: -0.01em;
}
.faculty-card__role {
  margin-top: 4px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--mp-primary-red);
}
.faculty-card__bio {
  margin-top: 10px;
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.55;
  color: var(--fg-muted);
}

/* ─────────── Hosts grid ─────────── */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) { .hosts-grid { grid-template-columns: 1fr; } }
.host-card {
  background: #fff;
  border: 1px solid var(--mae-neutral-200);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 200ms var(--ease-soft);
}
.host-card:hover {
  border-color: var(--mae-cyan-300);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.host-card__photo {
  aspect-ratio: 4 / 5;
  background: var(--mae-neutral-200);
  overflow: hidden;
}
.host-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.host-card__body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.host-card__role {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--mp-primary-red);
}
.host-card__name {
  font-size: 30px; line-height: 1.05;
  color: var(--mae-black);
}

/* ─────────── Workshops deep-dive ─────────── */
.host-card__bio {
  margin-top: 4px;
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.6;
  color: var(--fg-muted);
}
.wk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) { .wk-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .wk-grid { grid-template-columns: 1fr; } }
.wk-card {
  background: #fff;
  border: 1.5px solid var(--mae-neutral-200);
  border-radius: 16px;
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: all 200ms var(--ease-soft);
}
.wk-card:hover {
  border-color: var(--mae-cyan-300);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.wk-card__img {
  height: 220px;
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--mae-cyan-100), var(--mae-cyan-300));
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .wk-card__img { height: 200px; }
}
.wk-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wk-card__img image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.wk-card__body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.wk-card__instr {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--mp-primary-red);
}
.wk-card__instr .av {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--mae-cyan-100);
  display: inline-block;
  overflow: hidden;
}
.wk-card__instr .av img { width: 100%; height: 100%; object-fit: cover; }
.wk-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.015em;
  color: var(--mae-black);
}
.wk-card__title em { font-style: italic; }
.wk-card__meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  color: var(--fg-muted);
}
.wk-card__meta .tag {
  padding: 4px 10px;
  background: var(--mae-neutral-50);
  border: 1px solid var(--mae-neutral-200);
  border-radius: 999px;
}
.wk-card__desc {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14.5px; line-height: 1.55;
  color: var(--fg-muted);
}
.wk-card__seats {
  margin-top: auto;
  display: flex; align-items: center; gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--mae-neutral-200);
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mae-cyan-700);
}
.wk-card__seats.is-warning { color: var(--mp-gold); }
.wk-card__seats.is-danger  { color: var(--mp-accent-red-dark); }

/* ─────────── Schedule ─────────── */
.sched {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--mae-neutral-200);
  border: 1px solid var(--mae-neutral-200);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 980px) { .sched { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sched { grid-template-columns: 1fr; } }
.sched__day {
  background: #fff;
  padding: 28px 22px 24px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 480px;
}
.sched__day-head {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 8px;
}
.sched__day-name {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 26px; line-height: 1;
  color: var(--mae-black);
}.sched__day-date {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--fg-muted);
}
.sched__block {
  border-left: 3px solid var(--mae-cyan);
  padding: 4px 0 4px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.sched__block.is-key { border-left-color: var(--mp-primary-red); }
.sched__block.is-meal { border-left-color: var(--mp-gold); }
.sched__block.is-break { border-left-color: var(--mae-neutral-300); }
.sched__block .time {
  font-family: var(--font-utility); font-weight: 700; font-size: 11px;
  letter-spacing: 0.04em; color: var(--fg-muted);
}
.sched__block .title {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  color: var(--mae-black); line-height: 1.3;
}
.sched__block .sub {
  font-family: var(--font-body); font-weight: 400; font-size: 12px;
  color: var(--fg-muted);
}

/* ─────────── Included ─────────── */
.incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) { .incl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .incl-grid { grid-template-columns: 1fr; } }
.incl-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 4px 0;
}
.incl-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--mae-cyan-50);
  color: var(--mae-cyan-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.incl-item__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1.2;
  color: var(--mae-black);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.incl-item__desc {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.55;
  color: var(--fg-muted);
}

/* ─────────── Accommodation ─────────── */
.stay {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 980px) { .stay { grid-template-columns: 1fr; gap: 40px; } }
.stay__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--mae-neutral-100);
  border-radius: 16px;
  overflow: hidden;
}
.stay__carousel-track {
  position: absolute;
  inset: 0;
}
.stay__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 600ms var(--ease-soft);
}
.stay__slide.is-active { opacity: 1; }
.stay__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.stay__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--mae-black);
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--ease-soft);
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.stay__nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.stay__nav:active { transform: translateY(-50%) scale(0.95); }
.stay__nav--prev { left: 16px; }
.stay__nav--next { right: 16px; }

.stay__carousel-bottom {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  z-index: 3;
}
.stay__caption {
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: #fff;
  padding: 8px 14px;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.stay__dots {
  display: inline-flex; gap: 8px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.stay__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 200ms var(--ease-soft);
}
.stay__dot:hover { background: rgba(255,255,255,0.75); }
.stay__dot.is-active {
  background: #fff;
  width: 22px;
}
@media (max-width: 980px) {
  .stay__carousel { aspect-ratio: 5 / 4; }
}
/* ─────────── Stay info column (compact rewrite) ─────────── */
.stay__col {
  display: flex; flex-direction: column;
  gap: 22px;
  padding-top: 4px;
}
.stay__chips {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.stay__chip {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  color: var(--mae-black);
  padding: 7px 13px;
  background: #fff;
  border: 1px solid var(--mae-neutral-200);
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.stay__body {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.6;
  color: var(--fg);
  max-width: 540px;
}

/* Booked-separately callout */
.stay__notice {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--mae-neutral-200);
  border-left: 4px solid var(--mp-primary-red);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 13.5px;
  line-height: 1.55; color: var(--fg);
}
.stay__notice strong { color: var(--mae-black); font-weight: 700; }
.stay__notice .stay__notice-icon {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--mp-primary-red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-utility); font-weight: 800; font-size: 13px;
  line-height: 1;
}

/* Discount callout — clean, contained, brand-forward */
.stay__discount-card {
  display: flex; align-items: stretch; gap: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--mae-cyan-50);
  border: 1px solid var(--mae-cyan-200);
}
.stay__discount-price {
  background: var(--mae-cyan);
  color: #fff;
  padding: 18px 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 116px;
  gap: 2px;
}
.stay__discount-price .amt {
  font-family: var(--font-utility); font-weight: 800;
  font-size: 30px; line-height: 1;
  letter-spacing: -0.02em;
}
.stay__discount-price .per {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  opacity: 0.9;
}
.stay__discount-body {
  padding: 16px 20px;
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.stay__discount-body .lbl {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--mae-cyan-700);
}
.stay__discount-body p {
  font-family: var(--font-body); font-weight: 400; font-size: 13.5px;
  line-height: 1.5; color: var(--fg);
}
.stay__discount-body strong { color: var(--mae-black); font-weight: 700; }

.stay__alts-note {
  font-family: var(--font-body); font-weight: 400;
  font-size: 13px; line-height: 1.55;
  color: var(--fg-muted);
  padding-top: 2px;
}

/* ─────────── Travel ─────────── */
.section-travel {
  background: var(--mae-black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-travel::before {
  content: '';
  position: absolute;
  top: -100px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 999px;
  border: 1.5px dashed rgba(34,188,240,0.30);
  pointer-events: none;
}
.section-travel::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -140px;
  width: 320px; height: 320px;
  border-radius: 999px;
  border: 1.5px dashed rgba(34,188,240,0.22);
  pointer-events: none;
}
.section-travel .section__eyebrow { color: var(--mae-cyan-300); }
.section-travel .section__eyebrow::before { background: var(--mae-cyan); }
.section-travel .section__title { color: #fff; }
.section-travel .section__lede { color: rgba(255,255,255,0.78); }

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .travel-grid { grid-template-columns: 1fr; } }

.travel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: all 220ms var(--ease-soft);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.travel-card:hover {
  transform: translateY(-3px);
  border-color: var(--mae-cyan);
  background: rgba(34,188,240,0.08);
}
.travel-card__num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 44px; line-height: 1;
  color: rgba(34,188,240,0.55);
  letter-spacing: -0.02em;
}
.travel-card__lbl {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--mae-cyan-300);
}
.travel-card__lbl::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--mae-cyan);
  border-radius: 999px;
}
.travel-card__name {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  line-height: 1.15; letter-spacing: -0.01em;
  color: #fff;
}
.travel-card__detail {
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.travel-footer {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  font-family: var(--font-body); font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  position: relative; z-index: 2;
}
.travel-footer::before,
.travel-footer::after {
  content: ''; flex: 0 1 80px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

/* ─────────── Testimonials ─────────── */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) { .tm-grid { grid-template-columns: 1fr; } }
.tm-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--mae-neutral-200);
}
.tm-card__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.35;
  color: var(--mae-black);
  letter-spacing: -0.005em;
}
.tm-card__quote::before { content: '"'; }
.tm-card__quote::after  { content: '"'; }
.tm-card__attr {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.tm-card__av {
  width: 44px; height: 44px; border-radius: 999px;
  overflow: hidden; background: var(--mae-neutral-200);
  flex-shrink: 0;
}
.tm-card__av img { width: 100%; height: 100%; object-fit: cover; }
.tm-card__who {
  display: flex; flex-direction: column;
}
.tm-card__name {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  color: var(--mae-black);
}
.tm-card__role {
  font-family: var(--font-body); font-weight: 400; font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ─────────── Gallery ─────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
  margin-top: 48px;
}
@media (max-width: 880px) { .gallery { grid-auto-rows: 100px; } }
.gallery .gph {
  border-radius: 10px; overflow: hidden;
  background: var(--mae-neutral-200);
  position: relative;
}
.gallery .gph img { width: 100%; height: 100%; object-fit: cover; }
.gph-a { grid-column: span 5; grid-row: span 2; }
.gph-b { grid-column: span 4; grid-row: span 1; }
.gph-c { grid-column: span 3; grid-row: span 2; }
.gph-d { grid-column: span 4; grid-row: span 1; }
.gph-e { grid-column: span 5; grid-row: span 1; }
.gph-f { grid-column: span 4; grid-row: span 1; }
.gph-g { grid-column: span 3; grid-row: span 1; }
@media (max-width: 880px) {
  .gph-a { grid-column: span 12; grid-row: span 2; }
  .gph-b, .gph-c, .gph-d, .gph-e, .gph-f, .gph-g { grid-column: span 6; grid-row: span 1; }
}

/* ─────────── FAQ ─────────── */
.faq-list {
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--mae-neutral-200);
}
.faq-item {
  border-bottom: 1px solid var(--mae-neutral-200);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; line-height: 1.25;
  color: var(--mae-black);
  text-align: left;
  width: 100%;
  background: transparent;
  border: none;
  letter-spacing: -0.01em;
  transition: color 200ms var(--ease-soft);
}
.faq-q:hover { color: var(--mp-primary-red); }
.faq-q__icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 999px;
  border: 1.5px solid var(--mae-neutral-300);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-utility); font-weight: 700;
  color: var(--fg-muted);
  transition: all 200ms var(--ease-soft);
}
.faq-item.is-open .faq-q__icon {
  background: var(--mae-black); color: #fff; border-color: var(--mae-black);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms var(--ease-soft);
}
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a__inner {
  padding: 0 4px 22px;
  font-family: var(--font-body); font-weight: 400;
  font-size: 15px; line-height: 1.65;
  color: var(--fg-muted);
  max-width: 720px;
}

/* ─────────── Guarantee banner ─────────── */
.guarantee {
  background: linear-gradient(135deg, var(--mp-primary-red), var(--mp-accent-red-dark));
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee::before, .guarantee::after {
  content: ''; position: absolute;
  width: 240px; height: 240px;
  border-radius: 999px;
  border: 1.5px dashed rgba(255,255,255,0.30);
  pointer-events: none;
}
.guarantee::before { top: -80px; left: -60px; }
.guarantee::after  { bottom: -80px; right: -60px; }
.guarantee__inner { position: relative; z-index: 2; }
.guarantee__eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.guarantee__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.guarantee__title em { font-style: italic; }
.guarantee__body {
  font-family: var(--font-body); font-weight: 400;
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin: 0 auto 32px;
}

/* ─────────── Final CTA ─────────── */
.final-cta {
  background: var(--mae-cyan);
  background-image: url('/.netlify/images?url=/assets/texture-cyan.png&w=1920&q=70');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__inner { position: relative; z-index: 2; }
.final-cta__building {
  position: absolute;
  left: -40px;
  bottom: 0;
  width: min(560px, 42vw);
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
}
.final-cta__building img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 720px) {
  .final-cta__building {
    width: 240px;
    left: -32px;
    opacity: 0.12;
  }
}
.final-cta__lockup {
  max-width: 760px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}
.final-cta__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3vw, 42px);
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.final-cta__title em { font-style: italic; }
.final-cta__meta {
  margin-top: 24px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ─────────── Footer ─────────── */
.footer {
  background: var(--mae-black);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
.footer__brand {
  display: flex; flex-direction: column; gap: 16px;
}
.footer__brand-line {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px;
  color: #fff;
}
.footer__brand-body {
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 200ms var(--ease-soft);
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  color: rgba(255,255,255,0.5);
}
