/* ============================================================
   Caruso Italian Academy — editorial redesign
   - Sage #8aa187 (main bg) · Espresso #231910 · Cream #fbffdc
   - Playfair Display (display) + Raleway (sans body/labels)
   - Square corners · no italic anywhere · full-bleed imagery
   ============================================================ */

:root {
  --c-white:       #ffffff;
  --c-light:       #fbfaf7;   /* page bg — near-white warm */
  --c-light-2:     #f1efe8;
  --c-cream:       #ffffff;
  --c-green:       #ffffff;   /* contrast blocks — white islands */
  --c-green-deep:  #ffffff;
  --c-purple:      #24140f;
  --c-purple-hi:   #24140f;
  --c-purple-deep: #24140f;
  --c-ink:         #24140f;
  /* Brand palette — sage/olive greens + reds (no orange) */
  --c-accent:        #d32f2f;   /* strong red — hero highlight */
  --c-accent-deep:   #db6e6e;   /* light red — decorative */
  --c-brand-green:   #8aa187;   /* sage green — kickers */
  --c-brand-green-2: #acb580;   /* light olive green */
  --c-brand-red:     #d32f2f;   /* strong red — text emphasis */
  --c-brand-red-2:   #db6e6e;   /* light red */
  --c-text:        #24140f;   /* dark warm text */
  --c-muted:       rgba(36,20,15,0.55);
  --c-border:      rgba(36,20,15,0.14);
  --c-border-soft: rgba(36,20,15,0.07);

  --g-brand: var(--c-green);

  --ff-display: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --ff-body:    'Raleway', 'Helvetica Neue', Arial, sans-serif;

  --r: 0;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  color: var(--c-text);
  background: var(--c-light);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* No italic anywhere */
em, i, address, cite, dfn {
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
}

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

/* ==== Typography ==== */
.display {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--c-text);
}
.display strong { font-weight: 600; }

.kicker {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text);
  display: inline-block;
  margin: 0;
}
.kicker-light { color: var(--c-muted); }

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--c-text);
  border-radius: var(--r);
  cursor: pointer;
  background: transparent;
  color: var(--c-text);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { background: var(--c-text); color: var(--c-light); }
.btn-primary { background: transparent; color: var(--c-text); border-color: var(--c-text); }
.btn-primary:hover { background: var(--c-text); color: var(--c-light); border-color: var(--c-text); }
.btn-accent { background: transparent; color: var(--c-text); border-color: var(--c-text); }
.btn-accent:hover { background: var(--c-text); color: var(--c-light); border-color: var(--c-text); }
.btn-ghost { background: transparent; color: var(--c-text); border-color: var(--c-text); }
.btn-ghost:hover { background: var(--c-text); color: var(--c-light); }

/* ==== Reveal-on-scroll ==== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==== NAV — brand left, Book a call right, hairline border ==== */
.nav {
  position: relative;
  z-index: 50;
  padding: 32px 40px;
  background: var(--c-light);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-brand { display: inline-flex; align-items: center; }
.nav-brand img { height: 36px; width: auto; display: block; }

.nav-cta {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text);
  padding: 6px 4px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.nav-cta:hover { opacity: 0.6; }

/* ==== HERO / HEADER — cream, centered serif, peeking orb ==== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 1000px;
  padding: 30px 40px 0;
  background: var(--c-light);
  overflow: hidden;
}

/* Framed cover image filling the header, leaving a 30px page-coloured border */
.hero::before {
  content: "";
  position: absolute;
  inset: 30px;
  z-index: 0;
  border-radius: 20px;
  background:
    linear-gradient(180deg,
      rgba(15,9,5,0.55) 0%,
      rgba(15,9,5,0.40) 30%,
      rgba(15,9,5,0.42) 62%,
      rgba(15,9,5,0.64) 100%),
    url("assets/simon-nham-Rd2ohamEdx0-unsplash.jpg") center/cover no-repeat;
}

/* Nav: transparent over the hero, morphs into a floating glass pill on scroll */
.hero-bar {
  position: fixed;
  /* sit inside the framed image (30px frame) with comfortable margin */
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(26px, 2.6vw, 40px);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.35s ease, left 0.35s ease, right 0.35s ease, top 0.35s ease,
              padding 0.35s ease, border-radius 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.hero-bar.is-stuck {
  top: 14px;
  left: 16px;
  right: 16px;
  padding: 12px 38px;
  gap: 20px;
  background: rgba(251,250,247,0.6);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(36,20,15,0.08);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(20,12,8,0.13);
}
.hero-brand { display: inline-flex; align-items: center; }
.hero-brand img { height: 38px; width: auto; display: block; }
.hero-brand .brand-dark { display: none; }
.hero-bar.is-stuck .brand-light { display: none; }
.hero-bar.is-stuck .brand-dark { display: block; }
/* Over the image (not stuck): subtle shadows so every nav item stays legible */
.hero-bar:not(.is-stuck) .hero-brand img,
.hero-bar:not(.is-stuck) .hero-flag { filter: drop-shadow(0 1px 8px rgba(0,0,0,0.4)); }
.hero-bar:not(.is-stuck) .hero-menu,
.hero-bar:not(.is-stuck) .hero-pill { box-shadow: 0 2px 16px rgba(0,0,0,0.22); }

/* Small Italian flag, centered in the nav bar */
.hero-flag {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-flag svg { display: block; }

.hero-actions { display: flex; align-items: center; gap: 12px; }

.hero-menu {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hero-menu:hover { transform: scale(1.05); }
.hero-menu span {
  display: block;
  width: 17px;
  height: 1.6px;
  background: #fff;
}
/* In the glass pill (scrolled) the menu becomes a solid dark circle */
.hero-bar.is-stuck .hero-menu { background: var(--c-ink); border-color: transparent; }
.hero-bar.is-stuck .hero-menu span { background: var(--c-light); }

/* Header CTA — same style as the .btn buttons, sized to match the round menu */
.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--r);
  background: transparent;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hero-pill:hover { background: #fff; color: var(--c-text); border-color: #fff; }
/* In the glass pill (scrolled) the CTA becomes dark-outlined */
.hero-bar.is-stuck .hero-pill { border-color: var(--c-text); color: var(--c-text); height: 40px; padding: 0 22px; }
.hero-bar.is-stuck .hero-pill:hover { background: var(--c-text); color: var(--c-light); border-color: var(--c-text); }
/* Slightly smaller items inside the pill so they aren't cramped against it */
.hero-bar.is-stuck .hero-brand img { height: 30px; }
.hero-bar.is-stuck .hero-menu { width: 40px; height: 40px; }

/* Centered headline */
.hero-center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0 18vh;
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(34px, 7.6vw, 100px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.28);
  margin: 0;
  max-width: 22ch;
}
.hero-title .w { display: inline; }
.hero-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
  margin: 30px 0 0;
  max-width: none;
  line-height: 1.8;
}

/* Accent word with hand-drawn marks */
.accent {
  position: relative;
  color: var(--c-text);
  white-space: nowrap;
}
.accent-green { color: var(--c-text); }
.accent-mark {
  position: absolute;
  left: -1%;
  bottom: -0.04em;
  width: 102%;
  height: 0.3em;
  overflow: visible;
}
.accent-mark path {
  fill: none;
  stroke: var(--c-accent-deep);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: accent-draw 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.45s forwards;
}
.accent-spark {
  position: absolute;
  top: -0.34em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.46em;
  height: 0.3em;
  overflow: visible;
  opacity: 0;
  animation: accent-pop 0.4s ease 0.95s forwards;
}
.accent-spark path {
  fill: none;
  stroke: var(--c-accent-deep);
  stroke-width: 6;
  stroke-linecap: round;
}
@keyframes accent-draw { to { stroke-dashoffset: 0; } }
@keyframes accent-pop  { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .accent-mark path { stroke-dashoffset: 0; animation: none; }
  .accent-spark { opacity: 1; animation: none; }
}

/* Bottom corner micro-labels */
.hero-corner {
  position: absolute;
  bottom: 54px;
  z-index: 3;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.hero-corner--left  { left: 56px; }
.hero-corner--right { right: 56px; }

/* Orb retired — the header is now a full framed image */
.hero-orb { display: none; }

/* ==== FULLSCREEN MENU ==== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-light);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.menu-close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--c-ink);
  cursor: pointer;
  padding: 0;
}
.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.6px;
  background: var(--c-light);
}
.menu-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.menu-nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  transition: color 0.2s ease;
}
.menu-nav a:hover { color: var(--c-muted); }

/* ==== TAGLINE ==== */
.tagline {
  padding: clamp(72px, 9vw, 120px) 0 120px;
  text-align: center;
}
.tagline-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0 auto 28px;
  color: var(--c-text);
}
.tagline-sub {
  font-size: 15px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 38px;
  color: var(--c-muted);
}
.tagline-sub strong { color: var(--c-text); font-weight: 600; }

/* Brand red on emphasised words in body copy */
p strong { color: var(--c-text); font-weight: 600; }
.tagline-trust {
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 30px 0 0;
}

/* ==== Section common ==== */
section { position: relative; }
.section-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
  margin-left: auto;
  text-align: right;
  max-width: 18ch;
}
@media (max-width: 860px) {
  .section-title { text-align: left; margin-left: 0; }
}

/* ==== METHOD ==== */
.percorso { padding: 60px 0 120px; }
.percorso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.percorso-text h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 16px 0 24px;
  max-width: 16ch;
  color: var(--c-text);
}
.percorso-text .kicker { margin-bottom: 8px; }
.percorso-text p {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 32px;
}
.percorso-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
}

/* ==== FULL-BLEED IMAGE BAND ==== */
.bleed-image img {
  width: 100%;
  height: 70vh;
  min-height: 460px;
  max-height: 720px;
  object-fit: cover;
  border-radius: 0;
}

/* ==== REVIEWS — editorial slider, one quote at a time ==== */
.reviews { padding: 120px 0; }
.reviews .section-head { margin-bottom: 40px; }
.reviews-slider {
  position: relative;
  margin-inline: calc(50% - 50vw);
}
.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.reviews-track.is-dragging .review-card { pointer-events: none; }
.review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 56px 8%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.review-quote {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--c-text);
  margin: 0;
  max-width: 62ch;
}
.review-quote::before { content: "\201C"; }
.review-quote::after  { content: "\201D"; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.slider-dot {
  width: 6px;
  height: 6px;
  background: rgba(36,20,15,0.25);
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.slider-dot:hover { background: rgba(36,20,15,0.5); }
.slider-dot.is-active { background: var(--c-text); width: 22px; }
.reviews-credit {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
  margin: 28px 0 0;
}

/* ==== CTA CALL ==== */
.cta-call { padding: 0; margin: 0 0 120px; }
.cta-card {
  background: var(--c-brand-green-2);
  color: #fff;
  padding: 110px 40px;
  text-align: center;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
/* White text + button on the green CTA block */
.cta-card .kicker { margin-bottom: 24px; color: #fff; }
.cta-card .cta-title { color: #fff; }
.cta-card .cta-sub { color: rgba(255,255,255,0.85); }
.cta-card .cta-sub strong { color: #fff; }
.cta-card .btn { color: #fff; border-color: #fff; background: transparent; }
.cta-card .btn:hover { background: #fff; color: var(--c-text); border-color: #fff; }
.cta-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--c-text);
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0;
  max-width: 18ch;
  margin-inline: auto;
}
.cta-sub {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 400;
  margin: 26px auto 38px;
  max-width: 480px;
  color: var(--c-muted);
  line-height: 1.65;
}
.cta-sub strong { color: var(--c-text); font-weight: 600; }

/* ==== ABOUT — photo + text side-by-side ==== */
.about { padding: 120px 0; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--c-light-2);
  border-radius: 20px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content { max-width: 520px; }
.about-content .kicker { margin-bottom: 16px; }
.about-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 14ch;
  color: var(--c-text);
}
.about-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0 0 36px;
}
.about-text strong { color: var(--c-text); font-weight: 600; }
.about-credit {
  border-top: 1px solid var(--c-border);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-credit .name {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--c-text);
}
.about-credit .role {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
}
/* Duplicate credit shown only on mobile (under the photo) */
.about-credit--mobile { display: none; }

/* ==== LESSONS ==== */
.lezioni { padding: 60px 0 120px; }
.lezioni-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.lezioni-left h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 16px 0 24px;
  max-width: 14ch;
}
.lezioni-left .kicker { margin-bottom: 8px; }
.lezioni-intro {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 380px;
  margin: 0;
}
.lezioni-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.feature-card {
  padding: 28px 0;
  border-top: 1px solid var(--c-border);
  background: transparent;
}
.feature-card:last-child { border-bottom: 1px solid var(--c-border); }
.feature-kicker {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.feature-head { margin-bottom: 10px; }
.feature-head h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-text);
  margin: 0;
  letter-spacing: -0.005em;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0;
  max-width: 58ch;
}

/* ==== PROGRAMS ==== */
.courses { padding: 60px 0 120px; }
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.course-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  background: transparent;
  border: none;
}
.course-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 20px;
}
.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 22px;
  max-width: 16ch;
}
.course-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0 0 18px;
  max-width: 56ch;
}
.course-body p strong { color: var(--c-text); font-weight: 600; }
.course-body .btn { margin-top: 18px; }

/* ==== TODAY ==== */
.oggi { padding: 60px 0 120px; }
.oggi-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.oggi-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 20px;
}
.oggi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oggi-content { max-width: 520px; }
.oggi-content .kicker { margin-bottom: 14px; }
.oggi-content h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.oggi-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-muted);
  margin: 0 0 32px;
}
.oggi-content p strong { color: var(--c-text); font-weight: 600; }

/* ==== BENEFITS ==== */
.benefit { padding: 60px 0 120px; }
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.benefit-left h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 16px 0 22px;
  max-width: 14ch;
}
.benefit-left .kicker { margin-bottom: 8px; }
.benefit-intro {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 360px;
  margin: 0 0 32px;
}
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}

/* ==== CTA FINAL ==== */
.cta-final { padding: 0; margin-top: 120px; }
.cta-final-card {
  background: var(--c-brand-red-2);
  color: #fff;
  padding: 130px 40px;
  text-align: center;
  border-top: none;
  border-bottom: none;
}
.cta-final-inner { max-width: 720px; margin: 0 auto; }
.cta-final-inner .kicker { margin-bottom: 24px; color: rgba(255,255,255,0.85); }
.cta-final-inner .cta-title { color: #fff; }
.cta-final-inner .cta-sub { color: rgba(255,255,255,0.9); }
.cta-final-inner .cta-sub strong { color: #fff; font-weight: 600; }
.cta-final-card .btn { color: #fff; border-color: #fff; background: transparent; }
.cta-final-card .btn:hover { background: #fff; color: var(--c-brand-red-2); border-color: #fff; }

/* ==== FOOTER ==== */
.footer { background: var(--c-light); padding: 80px 0 56px; }
.footer-card { padding: 0; }
.footer-info-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--c-border);
}
.footer-info-col { display: flex; flex-direction: column; gap: 4px; }
.footer-info-label {
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.footer-info-link, .footer-info-text {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
  transition: opacity 0.2s ease;
}
.footer-info-link:hover { opacity: 0.6; }

.footer-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  flex-wrap: wrap;
}
.footer-meta {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1080px) {
  .container { padding: 0 32px; }
  .nav { padding: 24px 32px; }
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav { padding: 24px 24px; }
  .nav-brand img { height: 28px; }

  .hero { padding: 24px 24px 0; }
  .hero-brand img { height: 30px; }
  .hero-center { padding-bottom: 14vh; }
  .hero-corner--left { left: 48px; }
  .hero-corner--right { right: 48px; }
  .menu-close { right: 24px; }

  .tagline { padding-bottom: 80px; }
  .percorso-grid,
  .about-layout,
  .lezioni-grid,
  .course-card,
  .benefit-grid,
  .oggi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefit-cards { grid-template-columns: 1fr; gap: 0; }
  .courses-grid { gap: 40px; }

  .percorso, .lezioni, .courses, .oggi, .benefit { padding: 40px 0 80px; }
  .about, .reviews { padding: 80px 0; }
  .cta-call { margin-bottom: 80px; }
  .cta-card, .cta-final-card { padding: 80px 24px; }
  .cta-final { margin-top: 80px; }

  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
    padding: 36px 30px 32px;
    min-height: 420px;
  }
  .reviews-slider { --cpad: 24px; }

  .footer-info-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding-bottom: 50px;
  }
  .footer-card-bottom { padding-top: 28px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav { padding: 20px 20px; }
  .nav-brand img { height: 24px; }
  .nav-cta { font-size: 11px; }

  .hero { padding: 18px 20px 0; min-height: 100svh; max-height: none; }
  /* Thin frame around the header photo on mobile — image fills the whole screen */
  .hero::before { inset: 8px; border-radius: 14px; }
  .hero-bar { top: 8px; left: 8px; right: 8px; padding: 14px 18px; }
  .hero-corner { bottom: 30px; }
  .hero-brand img { height: 26px; }
  .hero-menu, .menu-close { height: 44px; width: 44px; }
  /* On phones the CTA lives in the menu — drop the pill so the centered flag stays clear */
  .hero-pill { display: none; }
  .hero-center { padding: 24px 0 12vh; }
  /* Headline: one word per line, much larger; subtitle smaller */
  .hero-title { font-size: clamp(46px, 16vw, 96px); line-height: 1.02; }
  .hero-title .w { display: block; }
  .hero-title br { display: none; }
  .hero-sub { font-size: 11px; letter-spacing: 0.12em; white-space: normal; }
  /* Scroll to explore centered */
  .hero-corner--left { left: 50%; transform: translateX(-50%); }
  .hero-corner--right { display: none; }
  .menu-close { right: 20px; top: 18px; }

  .tagline { padding-bottom: 64px; }
  .tagline-title { font-size: clamp(28px, 8vw, 40px); }

  .percorso, .lezioni, .courses, .oggi, .benefit { padding: 30px 0 64px; }
  .about, .reviews { padding: 64px 0; }
  .cta-card, .cta-final-card { padding: 64px 20px; }

  /* Reviews heading centered, and quote centered */
  .reviews .section-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 28px;
  }
  .reviews .section-title { text-align: center; margin: 0; max-width: none; }
  /* First review centered on the page (full-width cards) */
  .review-card {
    flex: 0 0 100%;
    padding: 30px 24px 26px;
    min-height: 380px;
  }
  .review-quote { font-size: 16px; }

  .footer { padding: 56px 0 36px; }
  .footer-info-cols { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; }
  .footer-card-bottom { padding-top: 22px; }

  .btn { padding: 14px 22px; font-size: 10.5px; letter-spacing: 0.2em; }

  /* About: founder credit directly under the teacher photo */
  .about-content .about-credit { display: none; }
  .about-credit--mobile { display: flex; border-top: none; padding-top: 0; margin: -24px 0 8px; }

  /* Benefits → horizontal slider, inverted (dark) colours — this section only */
  .benefit { background: var(--c-ink); color: #fff; padding: 48px 0 56px; }
  /* No gap between Benefits and the final CTA — dark flows straight into the colour block */
  .cta-final { margin-top: 0; }
  .benefit-left .kicker,
  .benefit-left h2 { color: #fff; }
  .benefit-intro { color: rgba(255,255,255,0.75); }
  .benefit .btn { color: #fff; border-color: rgba(255,255,255,0.7); }
  .benefit .btn:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
  .benefit-cards {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(50% - 50vw);
    padding: 8px 20px 4px;
  }
  .benefit-cards::-webkit-scrollbar { display: none; }
  .benefit-cards .feature-card,
  .benefit-cards .feature-card:last-child {
    flex: 0 0 78%;
    scroll-snap-align: center;
    border: 1px solid rgba(255,255,255,0.22);
    padding: 24px 22px;
  }
  .benefit .feature-kicker { color: rgba(255,255,255,0.6); }
  .benefit .feature-head h3 { color: #fff; }
  .benefit .feature-card p { color: rgba(255,255,255,0.8); }
}

@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .nav-cta { min-height: 36px; align-items: center; display: inline-flex; }
}

html, body { overflow-x: hidden; max-width: 100%; }
video, iframe { max-width: 100%; height: auto; }
