/* DESSANGE India — Scandinavian Luxury Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --primary: #1C1C1C;
  --accent: #A78656;
  --bg: #FCFCFC;
  --surface: #FFFFFF;
  --border: #E8E8E8;
  --text: #222222;
  --text-secondary: #666666;
  --success: #2E7D32;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --max-width: 1280px;
  --radius-card: 20px;
  --radius-btn: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
  --header-h: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
ul { list-style: none; }

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

/* Typography */
h1, h2, h3, h4, .heading {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.text-hero { font-size: clamp(2.5rem, 5vw, 4rem); }
.text-section { font-size: clamp(2rem, 3.5vw, 2.75rem); }
.text-sub { font-size: 1.5rem; }
.text-body { font-size: 1.125rem; color: var(--text-secondary); }
.text-small { font-size: 1rem; color: var(--text-secondary); }

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header { margin-bottom: 64px; max-width: 640px; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.centered .text-body { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--surface);
}

.btn-white {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--surface);
}

.btn-white:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}

.btn-outline-white {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--surface);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-transparent { background: transparent; }
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Header logo */
.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  line-height: 1;
  flex-shrink: 0;
}

.logo-wrap--footer {
  margin-bottom: 4px;
}

.logo-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--surface);
  line-height: 1;
  white-space: nowrap;
}

.logo-text--footer { color: var(--surface); }

.site-header.is-solid .logo-text { color: var(--primary); }

.logo-img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  /* Black logo → white over transparent/dark hero */
  filter: brightness(0) invert(1);
  transition: filter var(--transition), opacity var(--transition);
}

.logo-img--footer {
  height: 32px;
  filter: brightness(0) invert(1);
}

.site-header.is-solid .logo-img {
  /* Keep original black logo on light solid header */
  filter: none;
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.site-header.is-solid .logo-sub { color: var(--text-secondary); }

.logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--surface);
  transition: color var(--transition);
}

.site-header.is-solid .logo { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 36px; }

.main-nav a {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.site-header.is-solid .main-nav a { color: var(--text); }
.site-header.is-solid .main-nav a:hover,
.site-header.is-solid .main-nav a.active { color: var(--primary); }

.nav-cta {
  padding: 12px 24px !important;
  background: var(--surface) !important;
  color: var(--primary) !important;
  border-radius: var(--radius-btn) !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: var(--surface) !important; }

.site-header.is-solid .nav-cta {
  background: var(--primary) !important;
  color: var(--surface) !important;
}

.site-header.is-solid .nav-cta:hover {
  background: var(--accent) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--surface);
  transition: var(--transition);
}

.site-header.is-solid .menu-toggle span { background: var(--primary); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 80px) 0 120px;
  max-width: 680px;
}

.hero-content .text-hero {
  color: var(--surface);
  margin-bottom: 24px;
}

.hero-content .text-body {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero slider — full viewport cinematic */
.hero-slider { position: relative; }

.hero-slider-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero-slide.is-active { opacity: 1; }

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 40px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.hero-dot.is-active {
  background: var(--accent);
  width: 56px;
}

/* Full-width editorial split */
.editorial-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 72vh;
  background: var(--surface);
}

.editorial-split--reverse { direction: rtl; }
.editorial-split--reverse > * { direction: ltr; }

.editorial-split-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--primary);
}

.editorial-split-media img,
.editorial-split-media .editorial-split-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--primary);
}

.editorial-split-content {
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 80px;
  background: var(--surface);
}

.editorial-split-inner { max-width: 520px; }

/* About — distinct warm ground so it doesn’t blend with India / Cannes */
.editorial-split--about {
  background: #e8dfd2;
  min-height: 64vh;
}

.editorial-split--about .editorial-split-content {
  background: #e8dfd2;
}

/* Horizontal showcase rail — FTV-style */
.showcase-full {
  padding: 100px 0 0;
  background: var(--bg);
  overflow: hidden;
}

.showcase-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.showcase-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 100px 32px;
  scrollbar-width: none;
}

.showcase-rail::-webkit-scrollbar { display: none; }

.showcase-panel {
  flex: 0 0 min(78vw, 920px);
  scroll-snap-align: start;
  margin: 0;
  position: relative;
}

.showcase-panel img {
  width: 100%;
  height: min(78vh, 820px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.showcase-panel figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surface);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

/* Full-width stats band */
.stats-band {
  padding: 88px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-band--dark {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.08);
}

.stats-band-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.stats-band-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.stats-band-item {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stats-band-item:last-child { border-right: none; }

.stats-band--dark .stats-band-item { border-color: rgba(255, 255, 255, 0.1); }
.stats-band--dark .text-section,
.stats-band--dark h2 { color: var(--surface); }
.stats-band--dark .text-body { color: rgba(255, 255, 255, 0.65); }
.stats-band--dark .stat-value { color: var(--accent); }
.stats-band--dark .stat-label { color: rgba(255, 255, 255, 0.55); }

.stats-inline {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stats-inline-item .stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 8px;
}

/* Cannes full-bleed */
.cannes-full {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cannes-full-bg {
  position: absolute;
  inset: 0;
}

.cannes-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cannes-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.25) 100%);
}

.cannes-full-inner {
  position: relative;
  z-index: 2;
  padding: 120px 32px;
}

.cannes-full-content {
  max-width: 560px;
  color: var(--surface);
}

.cannes-full .text-section,
.cannes-full h2 { color: var(--surface); }

.cannes-full .text-body { color: rgba(255, 255, 255, 0.78); }

.cannes-full .eyebrow { color: rgba(255, 255, 255, 0.55); }

.cannes-full .cannes-stats {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 36px 0;
  padding: 28px 0;
}

/* Full-width videos */
.video-full {
  padding: 100px 0;
  background: var(--bg);
}

.video-full-head {
  margin-bottom: 56px;
  max-width: 640px;
}

.video-full-stack { display: flex; flex-direction: column; gap: 48px; }

.video-full-item {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.video-full-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--primary);
}

.video-full-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-full-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
}

/* Official Cannes films — portrait grid (full video visible) */
.cannes-films {
  padding: 88px 0 96px;
  background: var(--primary);
  color: var(--surface);
}

.cannes-films__intro {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 48px;
  text-align: center;
}

.cannes-films__intro .eyebrow {
  color: var(--accent);
}

.cannes-films__intro .text-section {
  color: var(--surface);
  margin: 14px 0 16px;
}

.cannes-films__intro .text-body {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
  max-width: 52ch;
}

.cannes-films__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  align-items: start;
}

.cannes-films__card {
  margin: 0;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.cannes-films__media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0a0908;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cannes-films__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #0a0908;
}

.cannes-films__media.is-landscape {
  aspect-ratio: 16 / 9;
}

.cannes-films__play {
  display: none;
}

.cannes-films__meta {
  padding: 0 2px;
}

.cannes-films__meta h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 6px;
}

.cannes-films__meta p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1024px) {
  .cannes-films {
    padding: 72px 0 80px;
  }

  .cannes-films__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }
}

@media (max-width: 680px) {
  .cannes-films {
    padding: 56px 0 64px;
  }

  .cannes-films__intro,
  .cannes-films__grid {
    width: calc(100% - 32px);
  }

  .cannes-films__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .cannes-films__media {
    border-radius: 16px;
  }
}

/* Full-width CTA */
.cta-full {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-full-bg {
  position: absolute;
  inset: 0;
}

.cta-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cta-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.cta-full-inner {
  position: relative;
  z-index: 2;
  padding: 100px 32px;
  max-width: 640px;
  color: var(--surface);
}

.cta-full-inner .text-section,
.cta-full-inner h2 { color: var(--surface); margin-bottom: 16px; }

.cta-full-inner .text-body {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
}

/* Global scale — how big we are */
.scale-full {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.scale-full-bg {
  position: absolute;
  inset: 0;
}

.scale-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.scale-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.scale-full-inner {
  position: relative;
  z-index: 2;
  padding: 100px 32px;
  color: var(--surface);
}

.scale-full .eyebrow { color: var(--accent); }

.scale-full .text-section,
.scale-full h2 { color: var(--surface); margin-bottom: 16px; }

.scale-lead {
  color: rgba(255, 255, 255, 0.75) !important;
  max-width: 640px;
  margin-bottom: 56px;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.scale-item {
  padding: 36px 28px;
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
}

.scale-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.scale-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* Cannes gallery styles moved to assets/css/cannes-gallery.css */

/* Legacy / Héritage — warm light heritage ground */
.legacy-section {
  padding: 96px 0;
  background: #f3eee6;
  color: var(--primary);
}

.legacy-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.legacy-header {
  max-width: 820px;
  margin: 0 0 64px;
}

.legacy-header .eyebrow {
  color: var(--accent);
}

.legacy-header .text-section {
  color: var(--primary);
  margin: 14px 0 18px;
}

.legacy-header .text-body {
  color: var(--text-secondary);
  max-width: 720px;
  font-size: 1.0625rem;
}

.legacy-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: start;
}

.legacy-media-wrap {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.legacy-media {
  position: relative;
  overflow: hidden;
  background: #e6dfd4;
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.08);
}

.legacy-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  visibility: hidden;
  transform: none;
  filter: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.legacy-media-img.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.legacy-timeline {
  display: grid;
  gap: 0;
  width: 100%;
}

.legacy-milestone {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 24px 32px 16px;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  background: transparent;
  color: inherit;
  font: inherit;
  transition: background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.legacy-milestone:last-child {
  border: none;
}

.legacy-milestone.is-active {
  background: rgba(167, 134, 86, 0.12);
}

.legacy-year {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  color: rgba(28, 28, 28, 0.45);
  line-height: 1.3;
  padding-top: 2px;
  transition: color 0.3s ease;
}

.legacy-milestone.is-active .legacy-year {
  color: var(--accent);
}

.legacy-milestone-body {
  min-width: 0;
}

.legacy-milestone h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.legacy-milestone.is-active h3 {
  color: var(--primary);
}

.legacy-milestone p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
  max-width: none;
  transition: color 0.3s ease;
}

.legacy-milestone.is-active p {
  color: rgba(28, 28, 28, 0.78);
}

@media (hover: hover) and (pointer: fine) {
  .legacy-milestone:hover {
    background: rgba(167, 134, 86, 0.08);
  }

  .legacy-milestone:hover .legacy-year {
    color: var(--accent);
  }

  .legacy-milestone:hover:not(.is-active) h3 {
    color: var(--primary);
  }

  .legacy-milestone:hover:not(.is-active) p {
    color: rgba(28, 28, 28, 0.72);
  }

  .legacy-media-img {
    transform: scale(1.03);
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.7s ease;
  }

  .legacy-media-img.is-active {
    transform: scale(1);
  }
}

/* International Training Program */
.training-section {
  padding: 96px 0 88px;
  background: #e8dfd2;
}

.training-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.training-intro {
  max-width: 720px;
  margin: 0 0 48px;
}

.training-intro .eyebrow {
  color: #8a6b45;
}

.training-intro .text-section {
  color: var(--primary);
  margin: 14px 0 16px;
}

.training-intro .text-body {
  color: #5c5348;
}

.training-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, 28vw);
  gap: 12px;
  width: 100%;
  padding: 0 12px;
}

.training-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #2a2a2a;
  min-height: 0;
}

.training-panel--wide {
  grid-column: span 2;
}

.training-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 1s var(--ease);
}

.training-glass {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(16, 12, 8, 0.55) 72%,
    rgba(12, 10, 8, 0.88) 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .training-panel:hover img {
    transform: scale(1.06);
  }

  .training-panel:hover .training-glass,
  .training-panel:focus-within .training-glass {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.training-glass h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.training-glass p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.training-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.training-cta-text {
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #5c5348;
  margin: 0;
}

/* Our Reach */
.reach-section {
  padding: 96px 0 88px;
  background: var(--bg);
}

.reach-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 48px;
}

.reach-intro {
  max-width: 720px;
  margin: 0 0 48px;
}

.reach-intro .eyebrow {
  color: var(--accent);
}

.reach-intro .text-section {
  margin: 14px 0 16px;
}

.reach-intro .text-body {
  color: var(--text-secondary);
}

.reach-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reach-stat {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.reach-stat:last-child {
  border-right: 0;
}

.reach-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.reach-stat-label {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.reach-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 12px;
}

.reach-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #ddd;
}

.reach-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 1s var(--ease);
}

.reach-glass {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(16, 12, 8, 0.55) 72%,
    rgba(12, 10, 8, 0.88) 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .reach-panel:hover img {
    transform: scale(1.05);
  }

  .reach-panel:hover .reach-glass,
  .reach-panel:focus-within .reach-glass {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.reach-region {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 6px;
}

.reach-glass p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* Luxury Partnerships */
.partners-section {
  padding: 96px 0 88px;
  background: #e8dfd2;
}

.partners-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.partners-intro {
  max-width: 720px;
  margin: 0 0 56px;
}

.partners-intro .eyebrow {
  color: #8a6b45;
}

.partners-intro .text-section {
  color: var(--primary);
  margin: 14px 0 16px;
}

.partners-intro .text-body {
  color: #5c5348;
}

.partners-group {
  margin-bottom: 64px;
}

.partners-group:last-child {
  margin-bottom: 0;
}

.partners-group-header {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 28px;
  max-width: 760px;
}

.partners-group-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a6b45;
}

.partners-group-header .text-sub {
  color: var(--primary);
  margin-bottom: 12px;
}

.partners-group-header .text-body {
  color: #5c5348;
  margin-bottom: 16px;
}

.partners-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.partners-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 28, 28, 0.35);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.partners-link:hover {
  color: #8a6b45;
  border-color: #8a6b45;
}

.partners-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(260px, 32vw);
  gap: 12px;
  width: 100%;
  padding: 0 12px;
}

.partners-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #2a2a2a;
  min-height: 0;
}

.partners-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1s var(--ease);
}

.partners-panel-img--product {
  object-fit: contain;
  object-position: center center;
  background: #f7f3ec;
  padding: 24px;
}

.partners-glass {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  border: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(16, 12, 8, 0.55) 72%,
    rgba(12, 10, 8, 0.88) 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .partners-panel:hover img {
    transform: scale(1.05);
  }

  .partners-panel:hover .partners-panel-img--product {
    transform: scale(1.03);
  }

  .partners-panel:hover .partners-glass,
  .partners-panel:focus-within .partners-glass {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.partners-glass-tag {
  display: block;
  margin-bottom: 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.partners-glass h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.partners-glass p {
  margin: 0;
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.showcase-panel--region figcaption .region-name {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  color: var(--accent);
}

/* Investment full-width band */
.invest-band {
  padding: 88px 0;
  background: var(--primary);
  color: var(--surface);
}

.invest-band-inner { max-width: 800px; }

.invest-band .text-sub { color: var(--surface); }

.invest-rows { border-top: 1px solid rgba(255, 255, 255, 0.12); }

.invest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.invest-row strong {
  color: var(--surface);
  font-weight: 600;
  white-space: nowrap;
}

.invest-row--total {
  padding-top: 28px;
  font-size: 1.125rem;
}

.invest-row--total strong {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
}

/* Sections */
.section { padding: 120px 0; }
.section-surface { background: var(--surface); }
.section-alt { background: var(--bg); }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.card-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: stretch; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }

/* Editorial */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split.reverse .split-media { order: 2; }
.split.reverse .split-content { order: 1; }

.img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--border);
  aspect-ratio: 4 / 3;
}

.img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s var(--ease);
}

.img-wrap--landscape { aspect-ratio: 16 / 10; }

.img-wrap:hover img { transform: scale(1.03); }

.feature-list { margin-top: 32px; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
  flex-shrink: 0;
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
}

.timeline-step { text-align: center; position: relative; }

.timeline-dot {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.timeline-step h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Cities */
.city-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.city-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.city-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.city-card h4 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  margin-bottom: 8px;
}

/* Testimonials */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.author-name { font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.author-role { font-size: 0.875rem; color: var(--text-secondary); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 28px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-right: 48px;
}

.faq-answer .feature-list { margin-top: 0; }

.faq-answer .feature-list li {
  padding: 8px 0 8px 24px;
  border-bottom: none;
}

.faq-steps {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: decimal;
}

.faq-steps li { padding: 6px 0; }

.faq-category {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 48px 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--primary);
}

.faq-category:first-child { margin-top: 0; }

/* CTA */
.cta-block {
  background: var(--primary);
  border-radius: var(--radius-card);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block .text-section { color: var(--surface); margin-bottom: 16px; }
.cta-block .text-body { color: rgba(255,255,255,0.7); margin: 0 auto 40px; max-width: 520px; }

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero .text-section { margin-bottom: 16px; }
.page-hero .text-body { max-width: 560px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* Model cards */
.model-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.model-card-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.model-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--border);
  flex-shrink: 0;
}

.model-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s var(--ease);
}

.model-card:hover .model-card-img img { transform: scale(1.04); }

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.model-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.model-features {
  flex: 1;
  margin: 24px 0 32px;
}

.model-features li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}

.model-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 20px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.data-table tr:last-child th,
.data-table tr:last-child td { border-bottom: none; }

.data-table th {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg);
  width: 40%;
}

.data-table tr.highlight td,
.data-table tr.highlight th {
  background: var(--primary);
  color: var(--surface);
}

.data-table tr.highlight th { color: rgba(255,255,255,0.7); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--border);
  aspect-ratio: 1;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

/* Cannes Film Festival showcase */
.cannes-showcase {
  background: var(--primary);
  color: var(--surface);
}

.cannes-showcase .text-section,
.cannes-showcase h2 { color: var(--surface); }

.cannes-showcase .text-body { color: rgba(255, 255, 255, 0.72); }

.cannes-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.cannes-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: end;
}

.cannes-img-primary,
.cannes-img-secondary {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
}

.cannes-img-primary { aspect-ratio: 4 / 5; }
.cannes-img-secondary { aspect-ratio: 3 / 4; margin-bottom: 48px; }

.cannes-img-primary img,
.cannes-img-secondary img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cannes-badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent);
  border-radius: 999px;
}

.cannes-features {
  margin: 32px 0;
}

.cannes-features li {
  position: relative;
  padding: 12px 0 12px 24px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cannes-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.cannes-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cannes-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.cannes-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.section-dark {
  background: var(--primary);
  color: var(--surface);
}

.section-dark .text-section,
.section-dark h2 { color: var(--surface); }

.section-dark .text-body { color: rgba(255, 255, 255, 0.72); }

.section-dark .eyebrow { color: var(--accent); }

.section-dark .stats-bar {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .stat-item { border-color: rgba(255, 255, 255, 0.12); }

.section-dark .stat-value { color: var(--accent); }

.section-dark .stat-label { color: rgba(255, 255, 255, 0.6); }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--primary);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta { padding: 24px 28px; }

.video-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

/* Page hero with image */
.page-hero-img {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--primary);
}

.page-hero-img .hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-img .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero-img .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.72) 0%, rgba(12, 10, 8, 0.48) 48%, rgba(12, 10, 8, 0.28) 100%),
    rgba(0, 0, 0, 0.28);
}

.page-hero-img .container {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 64px;
}

.page-hero-img .container.fade-up {
  opacity: 1;
  transform: none;
}

.page-hero-img .text-section {
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.page-hero-img .text-body {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero-img .breadcrumb { color: rgba(255,255,255,0.65); }
.page-hero-img .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero-img .breadcrumb a:hover { color: #ffffff; }
.page-hero-img .breadcrumb span { color: rgba(255,255,255,0.95); }
.page-hero-img .eyebrow {
  color: #d4b483;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.editorial-split-content .eyebrow {
  color: var(--accent);
}

.editorial-split-content .text-section {
  color: var(--primary);
}

.editorial-split-content .text-body {
  color: var(--text-secondary);
}

/* India Map */
.map-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
  position: relative;
}

.india-map {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

.map-dot {
  cursor: pointer;
  transition: r var(--transition);
}

.map-dot:hover { r: 8; }

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

/* Locations page — full-width bright aesthetic */
.loc-band {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.loc-band-media {
  position: absolute;
  inset: 0;
}

.loc-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.loc-band-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(252, 248, 242, 0.94) 0%, rgba(252, 248, 242, 0.78) 42%, rgba(252, 248, 242, 0.22) 100%);
}

.loc-band-shade--soft {
  background: linear-gradient(105deg, rgba(20, 16, 12, 0.55) 0%, rgba(20, 16, 12, 0.28) 55%, rgba(20, 16, 12, 0.18) 100%);
}

.loc-band--bright .loc-band-inner .text-section,
.loc-band--bright .loc-band-inner .text-body,
.loc-band--bright .loc-band-inner .eyebrow {
  color: #fff;
}

.loc-band--bright .loc-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.loc-band--bright .loc-chip strong { color: #fff; }
.loc-band--bright .loc-chip span { color: rgba(255, 255, 255, 0.82); }

.loc-band-inner {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 80px));
  margin-left: max(40px, calc((100% - 1200px) / 2 + 40px));
  padding: 96px 0;
}

.loc-band-inner--wide {
  width: min(1100px, calc(100% - 80px));
}

.loc-band-inner .text-section {
  margin-bottom: 20px;
}

.loc-pillars {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.loc-pillars li {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.loc-pillars li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.loc-strip {
  background: #fbf7f1;
}

.loc-strip-head {
  width: min(820px, calc(100% - 80px));
  margin: 0 auto;
  padding: 88px 0 40px;
  text-align: center;
}

.loc-strip-head .text-body {
  margin: 12px auto 0;
  max-width: 560px;
}

.loc-map-full {
  width: 100%;
  height: min(62vh, 620px);
  min-height: 420px;
  border: 0;
  overflow: hidden;
}

.loc-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.loc-salon-rows {
  display: flex;
  flex-direction: column;
}

.loc-salon-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 72vh;
}

.loc-salon-row--reverse {
  direction: rtl;
}

.loc-salon-row--reverse > * {
  direction: ltr;
}

.loc-salon-row-media {
  min-height: 72vh;
  overflow: hidden;
}

.loc-salon-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.loc-salon-row:hover .loc-salon-row-media img {
  transform: scale(1.04);
}

.loc-salon-row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(32px, 6vw, 88px);
  background: #fff;
}

.loc-salon-row-copy h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 16px 0 18px;
  color: var(--primary);
}

.loc-salon-row-copy > p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 42ch;
}

.location-status {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(167, 134, 86, 0.35);
  padding: 5px 12px;
}

.location-status--open,
.location-status--expanding {
  color: var(--primary);
  border-color: var(--border);
}

.location-meta {
  margin: 0 0 6px !important;
  font-size: 0.9rem !important;
  color: var(--text-secondary);
}

.location-meta a {
  color: var(--accent);
  text-decoration: none;
}

.location-meta a:hover { color: var(--primary); }

.location-map-link {
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.location-map-link:hover { color: var(--primary); }

.loc-gallery-full {
  background: #fff;
  padding-bottom: 0;
}

.loc-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, 22vw);
  gap: 10px;
  width: 100%;
  padding: 0 10px 10px;
}

.loc-gallery-cell {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.loc-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.loc-gallery-cell:hover img { transform: scale(1.05); }

.loc-gallery-cell--1 { grid-column: span 7; grid-row: span 2; }
.loc-gallery-cell--2 { grid-column: span 5; grid-row: span 1; }
.loc-gallery-cell--3 { grid-column: span 5; grid-row: span 1; }
.loc-gallery-cell--4 { grid-column: span 4; grid-row: span 1; }
.loc-gallery-cell--5 { grid-column: span 4; grid-row: span 1; }
.loc-gallery-cell--6 { grid-column: span 4; grid-row: span 1; }

.loc-intl-full {
  background: #fbf7f1;
  padding-bottom: 88px;
}

.loc-intl-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.loc-intl-card {
  padding: 48px clamp(24px, 4vw, 48px);
  background: transparent;
  border-right: 1px solid var(--border);
}

.loc-intl-card:last-child { border-right: 0; }

.loc-intl-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 16px 0 8px;
  color: var(--primary);
}

.loc-intl-card > p {
  margin: 0 0 12px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.loc-expand-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.loc-chip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(167, 134, 86, 0.22);
  backdrop-filter: blur(6px);
}

.loc-chip strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
}

.loc-chip span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item h4 {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-info-item p { font-size: 1rem; color: var(--text); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 56px 48px;
}

.form-group { margin-bottom: 28px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  margin-bottom: 24px;
  border-left: 3px solid var(--success);
  background: rgba(46, 125, 50, 0.08);
  color: var(--success);
}

.alert-error {
  border-left-color: #c0392b;
  background: rgba(192, 57, 43, 0.06);
  color: #a04040;
}

.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 64px;
  aspect-ratio: 21/9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-sub { color: rgba(255, 255, 255, 0.45); }

.footer-brand .logo { color: var(--surface); }

.footer-brand p {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.9375rem; color: rgba(255,255,255,0.5); }
.footer-col a:hover { color: var(--surface); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr; }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .timeline::before { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .editorial-split { grid-template-columns: 1fr; min-height: auto; }
  .editorial-split--reverse { direction: ltr; }
  .editorial-split-media { min-height: 52vh; }
  .editorial-split-content { padding: 64px 32px; }
  .stats-band-row { grid-template-columns: repeat(2, 1fr); }
  .stats-band-item:nth-child(2) { border-right: none; }
  .video-full-item { grid-template-columns: 1fr; }
  .video-full-meta { padding: 32px; }
  .showcase-panel { flex-basis: 88vw; }
  .showcase-panel img { height: 62vh; }
  .scale-grid { grid-template-columns: repeat(2, 1fr); }

  .locations-intro-grid,
  .locations-layout {
    grid-template-columns: 1fr;
  }

  .locations-map,
  .locations-map iframe,
  .locations-city-list {
    max-height: none;
    min-height: 360px;
  }

  .locations-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .locations-gallery-item:first-child {
    grid-column: span 2;
  }

  .locations-intl-grid,
  .locations-expand-grid {
    grid-template-columns: 1fr 1fr;
  }

  .locations-panindia {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .loc-band {
    min-height: auto;
  }

  .loc-band-inner,
  .loc-band-inner--wide {
    width: calc(100% - 48px);
    margin-left: 24px;
    padding: 72px 0;
  }

  .loc-salon-row,
  .loc-salon-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }

  .loc-salon-row-media {
    min-height: 48vh;
  }

  .loc-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 42vw;
  }

  .loc-gallery-cell--1,
  .loc-gallery-cell--2,
  .loc-gallery-cell--3,
  .loc-gallery-cell--4,
  .loc-gallery-cell--5,
  .loc-gallery-cell--6 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .loc-gallery-cell--1 {
    grid-column: span 2;
  }

  .loc-intl-ribbon {
    grid-template-columns: 1fr;
  }

  .loc-intl-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .loc-expand-chips {
    grid-template-columns: 1fr;
  }

  .legacy-section {
    padding: 72px 0;
  }

  .legacy-inner {
    width: calc(100% - 40px);
  }

  .legacy-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legacy-media-wrap {
    position: relative;
    top: auto;
  }

  .legacy-media {
    aspect-ratio: 3 / 4;
    max-height: 520px;
    margin: 0 auto;
    width: min(100%, 420px);
  }

  .legacy-media-img,
  .legacy-media-img.is-active {
    transform: none;
    filter: none;
  }

  .legacy-milestone {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 14px;
  }

  .legacy-milestone.is-active {
    background: rgba(167, 134, 86, 0.14);
  }

  .legacy-year {
    font-size: 1.15rem;
    color: rgba(28, 28, 28, 0.5);
  }

  .legacy-milestone.is-active .legacy-year {
    color: var(--accent);
  }

  .legacy-milestone h3 {
    font-size: 1.2rem;
    color: var(--primary);
  }

  .legacy-milestone p {
    font-size: 0.98rem;
    color: var(--text-secondary);
  }

  .legacy-milestone.is-active h3,
  .legacy-milestone.is-active p {
    color: var(--primary);
  }

  .training-section {
    padding: 72px 0 64px;
  }

  .training-inner {
    width: calc(100% - 40px);
  }

  .training-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, 42vw);
    gap: 10px;
    padding: 0 10px;
  }

  .training-panel--wide {
    grid-column: span 2;
  }

  .training-glass {
    padding: 22px 18px;
  }

  .training-glass h3 {
    font-size: 1.1rem;
  }

  .training-glass p {
    font-size: 0.85rem;
  }

  .training-cta-row {
    margin-top: 28px;
  }

  .reach-section {
    padding: 72px 0 64px;
  }

  .reach-inner {
    width: calc(100% - 40px);
    margin-bottom: 36px;
  }

  .reach-stats {
    grid-template-columns: 1fr 1fr;
  }

  .reach-stat:nth-child(2) {
    border-right: 0;
  }

  .reach-stat:nth-child(3),
  .reach-stat:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .reach-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 10px;
  }

  .partners-section {
    padding: 72px 0 64px;
  }

  .partners-inner,
  .partners-group-header {
    width: calc(100% - 40px);
  }

  .partners-group {
    margin-bottom: 48px;
  }

  .partners-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, 42vw);
    gap: 10px;
    padding: 0 10px;
  }

  .partners-glass {
    padding: 22px 18px;
  }

  .partners-glass h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .menu-toggle { display: flex; }
  .training-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(280px, 70vw);
  }
  .training-panel--wide { grid-column: span 1; }
  .training-panel img,
  .reach-panel img,
  .partners-panel img {
    transform: none !important;
    filter: none;
  }

  .training-panel .training-glass,
  .reach-panel .reach-glass,
  .partners-panel .partners-glass {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: linear-gradient(
      180deg,
      transparent 38%,
      rgba(12, 10, 8, 0.52) 68%,
      rgba(8, 6, 5, 0.9) 100%
    );
  }

  .training-glass h3,
  .reach-region,
  .partners-glass h3 {
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  }

  .training-glass p,
  .reach-glass p,
  .partners-glass p,
  .partners-glass-tag {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  }

  .reach-mosaic {
    grid-template-columns: 1fr;
  }
  .partners-product-grid {
    grid-template-columns: 1fr;
  }
  .partners-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(280px, 70vw);
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text) !important;
  }

  .nav-cta { margin-top: 24px !important; width: 100%; text-align: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }
  .timeline { grid-template-columns: 1fr; }
  .locations-gallery-grid { grid-template-columns: 1fr; }
  .locations-gallery-item:first-child {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }
  .locations-intl-grid,
  .locations-expand-grid {
    grid-template-columns: 1fr;
  }
  .loc-strip-head {
    width: calc(100% - 40px);
    padding-top: 64px;
  }
  .loc-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 58vw;
    padding: 0;
    gap: 8px;
  }
  .loc-gallery-cell--1 {
    grid-column: span 1;
  }
  .gallery-item,
  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .cannes-media { grid-template-columns: 1fr; }
  .cannes-stats { grid-template-columns: 1fr; gap: 16px; }
  .cta-block { padding: 56px 32px; }
  .stats-band-row { grid-template-columns: 1fr; }
  .stats-band-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-band-item:last-child { border-bottom: none; }
  .stats-inline { flex-direction: column; gap: 24px; }
  .showcase-rail { padding-left: 20px; padding-bottom: 72px; }
  .showcase-panel img { height: 56vh; }
  .cannes-full { min-height: auto; }
  .cannes-full-inner { padding: 80px 20px; }
  .cta-full-inner { padding: 80px 20px; }
  .scale-full-inner { padding: 80px 20px; }
  .scale-grid { grid-template-columns: 1fr; }
  .invest-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-content { padding-bottom: 80px; }
}

/* Floating WhatsApp — site-wide get in touch */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.whatsapp-float:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
  display: block;
  flex-shrink: 0;
}

.whatsapp-float__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* ========== Franchise Models page — width-fit design ========== */
.models-page .page-hero-img {
  min-height: 0;
  height: auto;
  align-items: flex-end;
}

.models-page .page-hero-img .hero-bg {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  line-height: 0;
}

.models-page .page-hero-img .hero-bg img {
  position: static;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  display: block;
}

.models-page .page-hero-img .hero-overlay {
  position: absolute;
  inset: 0;
}

.models-page .page-hero-img .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding-bottom: 48px;
}

.models-page .editorial-split {
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  align-items: center;
}

.models-page .editorial-split-media,
.models-page .editorial-split-media.img-fit-container {
  position: relative;
  min-height: 0;
  height: auto;
  overflow: hidden;
  background: #f3efe9;
  line-height: 0;
}

.models-page .editorial-split-media img,
.models-page .editorial-split-media.img-fit-container img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  display: block;
}

.models-page .editorial-split-content {
  padding: 64px 56px;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.models-page .editorial-split-inner {
  max-width: 480px;
  width: 100%;
}

.models-page .cta-full {
  min-height: 0;
  height: auto;
  display: block;
}

.models-page .cta-full-bg,
.models-page .cta-full-bg.img-fit-container {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
  line-height: 0;
}

.models-page .cta-full-bg img,
.models-page .cta-full-bg.img-fit-container img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

.models-page .cta-full-overlay {
  position: absolute;
  inset: 0;
}

.models-page .cta-full-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 64px 32px;
}

@media (max-width: 900px) {
  .models-page .editorial-split {
    grid-template-columns: 1fr;
  }

  .models-page .editorial-split-media,
  .models-page .editorial-split-media.img-fit-container {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .models-page .editorial-split-content {
    padding: 48px 28px;
  }

  .models-page .page-hero-img .container {
    padding-bottom: 32px;
  }

  .models-page .cta-full-inner {
    padding: 40px 20px;
  }
}
