﻿* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background:#fff;
  color:#fff;
  font-family: var(--body-font-family, "Smooch Sans", sans-serif);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
  touch-action: none;
}

body.is-loaded {
  overflow-x: hidden;
}

html {
  scrollbar-gutter: stable both-edges;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html.is-scrolling {
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

.scroll-top {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 3vw, 32px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;
  z-index: 999;
}
.scroll-top span {
  line-height: 1;
}
.scroll-top:hover {
  background: rgba(0, 0, 0, 0.85);
}
.scroll-top:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1000;
}
.custom-cursor.is-active {
  opacity: 1;
}
.custom-cursor__dot,
.custom-cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transform-origin: center;
  pointer-events: none;
}
.custom-cursor__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.custom-cursor__ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* ========== PRELOADER ========== */
.site-preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #050505;
  color: #ffffff;
  z-index: 1600;
  transition: opacity 0.6s ease;
  will-change: opacity;
}

.site-preloader.is-fading {
  opacity: 0;
  pointer-events: none;
}

.site-preloader.is-hidden {
  display: none;
}

.site-preloader__inner {
  display: grid;
  place-items: center;
  gap: clamp(18px, 3vw, 28px);
  text-align: center;
  padding: clamp(24px, 6vw, 48px);
}

.site-preloader__logo img {
  width: clamp(120px, 24vw, 220px);
  height: auto;
  display: block;
}

.site-preloader__spinner {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: #ffffff;
  animation: sitePreloaderSpin 1s linear infinite;
}

.site-preloader__spinner span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-preloader__text {
  font-size: clamp(16px, 2.2vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

@keyframes sitePreloaderSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== HERO (MASTER BANNER) ========== */
.hero {
  position: relative;
  height: 100vh;              /* full visible height */
  width: 100%;
  background: #2b2b2b;
  overflow: hidden;
}

/* Header overlays only the hero (no separate top bar) */
.hero-header {
.banner-secondary__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
  position: absolute;
  inset: 0 auto auto 0;       /* top-left anchor */
  width: 100%;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;       /* header container doesn’t block marquee */
}

.logo {
  height: auto;
  width: auto;
  max-height: 92px;
  display: block;
  pointer-events: auto;       /* clickable */
  background: none;           /* ensure transparent logo background */
}

.menu-btn {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 18px);
  right: calc(env(safe-area-inset-right, 0px) + 20px);
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  display: block;
  transition: transform 0.3s ease;
  z-index: 2000;
}
.menu-btn span {
  display: block;
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  transition: transform 0.35s ease, opacity 0.3s ease, width 0.35s ease;
}
.menu-btn span:nth-child(2) {
  width: 20px;
}
.menu-btn span:nth-child(3) {
  width: 26px;
}
.menu-btn span:nth-child(1) { top: 16px; }
.menu-btn span:nth-child(2) { top: 22px; }
.menu-btn span:nth-child(3) { top: 28px; }
.menu-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 2px;
}
.menu-btn:hover {
  transform: scale(1.06);
}

body.menu-open .menu-btn {
  transform: none;
}
body.menu-open .menu-btn span:nth-child(1) {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}
body.menu-open .menu-btn span:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-btn span:nth-child(3) {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Background video fills hero */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: calc(100vw * 9 / 16);
  min-width: calc(100vh * 16 / 9);
  min-height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #000;
  overflow: hidden;
  pointer-events: none;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 6%;
  transform: translateY(-50%);
  display: flex;
  gap: 4vw;
  z-index: 2;
}
.hero .text-overlay.marquee {
  font-size: var(--marquee-font-size, 100px);
  font-weight: var(--marquee-font-weight, 200);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  color: #ffffff;
}
.text-overlay span {
  white-space: nowrap;
}
.text-overlay.right {
  justify-content: flex-end;
  text-align: right;
}


/* Floating hero artwork centered on the banner */
.hero-art {
  position: fixed;
  bottom: calc(5vh + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translate(-50%, 0) scale(1);
  display: grid;
  place-items: center;
  z-index: 6;
  pointer-events: none;
  will-change: transform;
  transform-origin: center;
  mix-blend-mode: difference;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              bottom 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-art__image {
  width: clamp(96px, 16.8vw, 216px);
  height: auto;
  animation: heroFloat 7s ease-in-out infinite;
  mix-blend-mode: difference;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-copy {
  position: fixed;
  bottom: calc(5vh + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translate(-50%, clamp(18px, 3vw, 36px));
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 20px);
  font-family: "Cal Sans", "Smooch Sans", sans-serif;
  font-size: clamp(13.6px, 2.16vw, 30.4px);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  mix-blend-mode: normal;
  z-index: 7;
  pointer-events: none;
}

.hero-copy__line {
  display: inline;
  letter-spacing: 0.24em;
}

body.logo-docked .hero-art {
  bottom: auto;
  top: calc(env(safe-area-inset-top, 0px) + 60px);
  left: calc(env(safe-area-inset-left, 0px) + 30px);
  transform: translate(0, 0) scale(1.1);
  transform-origin: top left;
}

body.logo-docked .hero-art__image {
  animation: heroFloat 6s ease-in-out infinite;
  opacity: 1;
}

body.logo-docked .hero-copy {
  display: none;
}

.hero--about {
  position: relative;
  min-height: clamp(260px, 55vh, 520px);
  padding: clamp(140px, 24vh, 220px) clamp(32px, 8vw, 96px) clamp(60px, 9vh, 120px);
  background:
    radial-gradient(80% 80% at 50% 20%, rgba(255, 255, 255, 0.08), transparent 65%),
    linear-gradient(160deg, rgba(8, 6, 12, 0.92), rgba(12, 16, 24, 0.88));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 5vh, 36px);
}

.about-logo-sticky {
  position: absolute;
  top: clamp(20px, 6vh, 70px);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 12;
  pointer-events: none;
}
.about-logo-sticky a {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-logo {
  width: clamp(140px, 20vw, 240px);
  display: block;
}

.about-hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vh, 18px);
  text-align: center;
  font-family: "Cal Sans", "Smooch Sans", sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f7f7f7;
  mix-blend-mode: normal;
  max-width: min(720px, 90vw);
}

.about-hero__copy span:last-child {
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
}

.about-main {
  background: linear-gradient(180deg, #09090c 0%, #050507 100%);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 140px);
  padding: clamp(60px, 14vw, 120px) clamp(32px, 8vw, 120px) clamp(60px, 12vw, 120px);
}

.about-intro {
  position: relative;
  width: 100%;
  padding: clamp(80px, 18vw, 160px) clamp(32px, 8vw, 120px) clamp(40px, 10vw, 80px);
  display: flex;
  justify-content: center;
  color: #f5f5f5;
  background: #050505;
  padding-top: clamp(160px, 26vw, 240px);
}

.about-intro__inner {
  max-width: min(960px, 90vw);
  display: grid;
  gap: clamp(24px, 5vw, 40px);
  margin: 0 auto;
  text-align: center;
}

.about-intro__inner h1 {
  font-size: clamp(32px, 6vw, 72px);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: clamp(12px, 2vw, 20px);
}

.about-intro__inner p {
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.9;
  color: rgba(243, 243, 245, 0.9);
  text-align: center;
}

.about-services {
  position: relative;
  display: grid;
  gap: clamp(32px, 6vw, 48px);
  background: transparent;
}

.about-services__header {
  max-width: min(840px, 90vw);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: clamp(12px, 2vw, 20px);
}

.about-services__header h2 {
  font-size: clamp(28px, 4.8vw, 56px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-services__header p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(241, 241, 244, 0.78);
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 4vw, 36px);
}

.about-service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(6px);
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-service-card h3 {
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-service-card p {
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.7;
  color: rgba(240, 240, 246, 0.82);
}

.about-service-card:hover,
.about-service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.about-brands {
  width: 100%;
  padding: clamp(48px, 16vw, 120px) clamp(32px, 8vw, 120px);
  display: grid;
  gap: clamp(28px, 6vw, 48px);
  background: #050505;
  border-radius: 28px;
}

.about-brands__header {
  max-width: min(840px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  text-align: center;
}

.about-brands__header h2 {
  font-size: clamp(30px, 5.6vw, 60px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-brands__header p {
  font-size: clamp(17px, 2.4vw, 24px);
  line-height: 1.8;
  color: rgba(243, 243, 247, 0.82);
}

.about-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 32px);
  justify-items: center;
  align-items: center;
}

.about-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 12px);
}

.about-brand-card img {
  max-width: clamp(120px, 18vw, 200px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

@media (max-width: 1024px) {
  .about-brands__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.policy-hero {
  position: relative;
  width: 100%;
  padding: clamp(120px, 26vw, 220px) clamp(32px, 8vw, 120px) clamp(80px, 18vw, 140px);
  display: flex;
  justify-content: center;
  background: #050505;
  color: #f5f5f5;
}

.policy-hero__inner {
  max-width: min(860px, 92vw);
  display: grid;
  gap: clamp(18px, 4vw, 36px);
  text-align: center;
}

.policy-hero__inner h1 {
  font-size: clamp(36px, 6vw, 88px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.policy-hero__inner p {
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.8;
  color: rgba(240, 240, 245, 0.88);
}

.policy-main {
  background: linear-gradient(180deg, #09090c 0%, #050507 100%);
  color: #f5f5f5;
  display: grid;
  gap: clamp(36px, 8vw, 64px);
  padding: clamp(48px, 14vw, 120px) clamp(32px, 8vw, 120px) clamp(72px, 18vw, 140px);
}

.policy-section {
  padding: clamp(32px, 7vw, 56px);
  background: rgba(14, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  display: grid;
  gap: clamp(16px, 3vw, 24px);
}

.policy-section h2 {
  font-size: clamp(24px, 4.6vw, 42px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.policy-section p,
.policy-section li {
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.8;
  color: rgba(241, 241, 246, 0.85);
}

.policy-section ul {
  padding-left: clamp(16px, 3vw, 28px);
  display: grid;
  gap: clamp(10px, 2vw, 16px);
}

.policy-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(192, 25, 37, 0.6);
  transition: color 0.3s ease;
}

.policy-section a:hover,
.policy-section a:focus-visible {
  color: rgba(192, 25, 37, 0.95);
}

/* Sanvii page */
.sanvii-hero {
  position: relative;
  width: 100%;
  padding: clamp(140px, 28vw, 240px) clamp(32px, 9vw, 140px) clamp(90px, 18vw, 150px);
  display: flex;
  justify-content: center;
  background: radial-gradient(120% 120% at 50% 0%, rgba(192, 25, 37, 0.26), rgba(5, 5, 7, 0.92));
  color: #f7f7f9;
  text-align: center;
  overflow: hidden;
}

.sanvii-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 95% at 50% 20%, rgba(255, 255, 255, 0.08), rgba(5, 5, 7, 0));
  pointer-events: none;
}

.sanvii-hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(880px, 94vw);
  display: grid;
  gap: clamp(18px, 4vw, 36px);
}

.sanvii-hero__inner h1 {
  font-size: clamp(38px, 8vw, 100px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sanvii-hero__subtitle {
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 248, 0.82);
}

.sanvii-hero__lead {
  font-size: clamp(18px, 2.6vw, 24px);
  color: rgba(248, 248, 250, 0.88);
  line-height: 1.9;
}

.sanvii-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(16px, 3.6vw, 22px) clamp(26px, 7vw, 46px);
  border-radius: 999px;
  font-size: clamp(15px, 2.4vw, 20px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(128, 75, 255, 0.9), rgba(194, 31, 233, 0.9));
  box-shadow: 0 20px 44px rgba(101, 56, 255, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.sanvii-cta:hover,
.sanvii-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px rgba(101, 56, 255, 0.45);
}

.sanvii-cta--primary {
  margin: 0 auto;
}

.sanvii-cta--secondary {
  background: linear-gradient(135deg, rgba(94, 55, 255, 0.85), rgba(0, 181, 255, 0.85));
  align-self: flex-start;
}

.sanvii-cta--sticky {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(18px, 5vw, 40px);
  z-index: 30;
  padding: clamp(14px, 3.2vw, 20px) clamp(22px, 6vw, 38px);
  font-size: clamp(13px, 2vw, 18px);
  box-shadow: 0 20px 48px rgba(101, 56, 255, 0.4);
}

.sanvii-main {
  background: linear-gradient(180deg, #070708 0%, #050507 100%);
  color: #f5f5f5;
  display: grid;
  gap: clamp(60px, 12vw, 100px);
  padding: clamp(64px, 18vw, 140px) clamp(28px, 8vw, 120px) clamp(90px, 20vw, 160px);
}

.sanvii-section {
  background: rgba(18, 18, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: clamp(36px, 7vw, 60px);
  display: grid;
  gap: clamp(16px, 3vw, 28px);
  backdrop-filter: blur(8px);
  scroll-margin-top: clamp(120px, 22vw, 180px);
}

.sanvii-section h2 {
  font-size: clamp(26px, 4.8vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.sanvii-section p,
.sanvii-section li {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
  color: rgba(242, 242, 247, 0.85);
}

.sanvii-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(10px, 2vw, 18px);
}

.sanvii-section--interests {
  background: linear-gradient(145deg, rgba(26, 26, 36, 0.85), rgba(16, 16, 24, 0.92));
}

.sanvii-traits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(18px, 4vw, 28px);
}

.sanvii-trait {
  background: rgba(8, 8, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: clamp(20px, 3.6vw, 30px);
  display: grid;
  gap: 12px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.sanvii-trait span {
  font-size: clamp(26px, 4vw, 40px);
}

.sanvii-trait h3 {
  font-size: clamp(18px, 2.6vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.sanvii-section--culture,
.sanvii-section--moments,
.sanvii-section--journey {
  background: linear-gradient(155deg, rgba(18, 18, 24, 0.85), rgba(10, 10, 16, 0.9));
}

.sanvii-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 4vw, 30px);
}

.sanvii-gallery__item {
  position: relative;
  border-radius: 24px;
  min-height: clamp(160px, 24vw, 260px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(12, 12, 18, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(13px, 1.9vw, 16px);
  color: rgba(220, 220, 228, 0.7);
}

.sanvii-gallery__note {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(230, 230, 236, 0.75);
  text-align: center;
}

.sanvii-section--quote {
  background: linear-gradient(160deg, rgba(12, 12, 20, 0.88), rgba(5, 5, 10, 0.9));
  text-align: center;
}

.sanvii-section--quote blockquote {
  margin: 0 auto;
  max-width: min(720px, 90vw);
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.sanvii-section--collaborate {
  gap: clamp(24px, 5vw, 36px);
}

.sanvii-collaborate__header {
  display: grid;
  gap: clamp(16px, 3vw, 26px);
}

.sanvii-offers ul {
  gap: clamp(8px, 2vw, 14px);
}

.sanvii-offers li {
  position: relative;
  padding-left: 22px;
}

.sanvii-offers li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(195, 114, 255, 0.85);
}

.sanvii-journey-table {
  display: grid;
  gap: clamp(14px, 3vw, 22px);
}

.journey-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
  align-items: center;
  background: rgba(9, 9, 12, 0.78);
  border-radius: 18px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-row span:first-child {
  font-size: clamp(16px, 2.4vw, 20px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.journey-row a,
.journey-row span:nth-child(2) {
  font-size: clamp(15px, 2.2vw, 18px);
  color: rgba(233, 233, 238, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.journey-row p {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(217, 217, 226, 0.75);
}

.sanvii-section--closing {
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.85), rgba(4, 4, 8, 0.96));
}

.sanvii-closing {
  font-size: clamp(22px, 4.6vw, 40px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sanvii-closing__byline {
  font-size: clamp(16px, 2.2vw, 20px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(220, 220, 230, 0.78);
}

.sanvii-main a {
  color: rgba(198, 143, 255, 0.95);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.sanvii-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.sanvii-main a:hover,
.sanvii-main a:focus-visible {
  color: rgba(231, 198, 255, 0.98);
}

.sanvii-main a:hover::after,
.sanvii-main a:focus-visible::after {
  transform: scaleX(1);
}

.sanvii-main a.sanvii-cta {
  color: #fff;
}

@media (max-width: 640px) {
  .hero-art {
    bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(120px, 34vw, 180px));
    transform: translate(-50%, 0) scale(1);
  }
  .marquee {
    top: 86%;
  }
  .hero-art__image {
    width: clamp(100px, 36vw, 180px);
  }
  .hero-copy {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 2vw, 12px);
    font-size: clamp(15.4px, 5.75vw, 28.3px);
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    transform: translate(-50%, 0);
  }
  .hero-copy__line {
    display: block;
    letter-spacing: 0.18em;
  }

  .hero--about {
    min-height: 55vh;
    padding: clamp(140px, 28vh, 220px) clamp(24px, 8vw, 64px) clamp(60px, 16vh, 120px);
    gap: clamp(24px, 8vw, 36px);
  }

  .about-logo-sticky {
    top: clamp(18px, 12vh, 80px);
  }

  .about-logo {
    width: clamp(120px, 36vw, 200px);
  }

  .about-hero__copy {
    font-size: clamp(18px, 4.8vw, 26px);
    letter-spacing: 0.14em;
  }

  .about-main {
    padding: clamp(60px, 20vw, 120px) clamp(20px, 7vw, 48px);
    gap: clamp(60px, 14vw, 110px);
  }

  .about-services__grid {
    grid-template-columns: 1fr;
  }

  .about-brand-card {
    padding: clamp(6px, 5vw, 14px);
  }
  .about-brands__grid {
    grid-template-columns: 1fr;
  }
  .policy-hero {
    padding: clamp(120px, 30vw, 200px) clamp(20px, 7vw, 48px) clamp(72px, 20vw, 120px);
  }
  .policy-main {
    padding: clamp(48px, 24vw, 110px) clamp(20px, 7vw, 48px) clamp(60px, 24vw, 120px);
  }
  .sanvii-hero {
    padding: clamp(120px, 32vw, 220px) clamp(20px, 7vw, 48px) clamp(72px, 22vw, 140px);
  }
  .sanvii-main {
    padding: clamp(50px, 24vw, 120px) clamp(20px, 7vw, 48px) clamp(70px, 26vw, 140px);
  }
  .sanvii-traits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sanvii-cta--sticky {
    left: clamp(14px, 6vw, 24px);
    right: clamp(14px, 6vw, 24px);
    bottom: clamp(18px, 10vw, 34px);
  }
  body.logo-docked .hero-art {
    bottom: auto;
    top: calc(env(safe-area-inset-top, 0px) + 64px);
    left: calc(env(safe-area-inset-left, 0px) + 18px);
    transform: translate(0, 0) scale(1);
  }
}

/* Marquee text over video */
.marquee {
  position: absolute;
  top: 50%;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
  transform: translateY(-50%);
}
.marquee span {
  display: inline-block;
  animation: marquee 12s linear infinite;
  will-change: transform;
  padding-right: 14vw;
}
@keyframes marquee {
  from { transform: translateX(100%); }
  to   { transform: translateX(-110%); }
}

/* ========== GENERIC SECTIONS ========== */
.image-section {
  position: relative;
  min-height: 380px;
}
.image-section.light { background: #8f8f91; }
.image-section.dark  { background: #2b2b2b; }

.image-section.banner-secondary {
  --banner-video-position: center;
  background: var(--banner-secondary-bg, #c01925);
  color: var(--banner-secondary-text, #fff);
  display: flex;
  align-items: stretch;
  height: 100vh;
  overflow: hidden;
}
.banner-secondary .banner-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 0 0 clamp(40px, 7vw, 100px);
  box-sizing: border-box;
  height: 100%;
  min-width: 0;
}
.banner-secondary .banner-copy {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: clamp(12px, 2vw, 20px);
  position: relative;
  z-index: 1;
  min-height: 100%;
  color: var(--banner-secondary-text, #fff);
}

  .banner-secondary--video {
    position: relative;
    min-height: max(520px, 100vh);
    padding: 0 clamp(40px, 7vw, 100px);
  color: #fff;
  overflow: hidden;
}
.image-section.banner-secondary.banner-secondary--video {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: max(520px, 100vh);
}
.banner-secondary--video .banner-actions {
  position: relative;
  z-index: 3;
  margin-top: clamp(18px, 3vw, 32px);
}
.banner-secondary__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: #000;
  pointer-events: none;
  --banner-video-left: 50%;
  --banner-video-translate-x: -50%;
  --banner-video-width: 100vw;
  --banner-video-height: calc(100vw * 9 / 16);
  --banner-video-min-width: calc(100vh * 16 / 9);
  --banner-video-min-height: 100vh;
}

.banner-secondary__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--banner-video-position, center);
}

.banner-secondary__video iframe {
  position: absolute;
  top: 50%;
  left: var(--banner-video-left);
  width: var(--banner-video-width);
  height: var(--banner-video-height);
  min-width: var(--banner-video-min-width);
  min-height: var(--banner-video-min-height);
  transform: translate(var(--banner-video-translate-x), -50%);
  border: 0;
  pointer-events: none;
}

.image-section.banner-secondary.banner-secondary--align-right.banner-secondary--crop-right .banner-secondary__video {
  --banner-video-left: 100%;
  --banner-video-translate-x: -100%;
}

.image-section.banner-secondary.banner-secondary--align-left.banner-secondary--crop-left .banner-secondary__video {
  --banner-video-left: 0;
  --banner-video-translate-x: 0;
}

.banner-secondary__video--center {
  --banner-video-left: 50%;
  --banner-video-translate-x: -50%;
  --banner-video-position: center center;
}

.banner-secondary__video--center video {
  object-position: center center;
}

.banner-secondary--crop-left {
  --banner-video-position: left center;
}
.banner-secondary--crop-right {
  --banner-video-position: right center;
}
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
}
.banner-secondary__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: clamp(14px, 2.5vw, 24px);
}
.banner-kicker {
  display: block;
  font-size: clamp(16px, 2.6vw, 42px);
  font-family: "Smooch Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: clamp(10px, 2vw, 24px);
}
.banner-kicker__name {
  font-family: "Meow Script", cursive;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  font-size: 2.36em;
  margin-left: 0.2em;
  display: inline-block;
}
.banner-secondary--video .banner-kicker {
  color: #fff;
  mix-blend-mode: difference;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
}
.banner-secondary__content--right {
  justify-self: end;
  margin-left: auto;
  align-items: flex-end;
  text-align: right;
}

.banner-secondary__content--right .banner-actions {
  justify-content: flex-end;
}

.image-section.banner-secondary.banner-secondary--align-center {
  justify-content: center;
}

.image-section.banner-secondary.banner-secondary--align-center .banner-secondary__video {
  --banner-video-left: 50%;
  --banner-video-translate-x: -50%;
  --banner-video-position: center center;
}

.banner-secondary__content--center {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
}

.banner-secondary__content--center .banner-actions {
  justify-content: center;
}

/* Responsive alignment for alternating banner layouts */
@media (max-width: 1024px) {
  .image-section.banner-secondary.banner-secondary--align-right.banner-secondary--crop-right {
    justify-content: flex-end;
  }

  .image-section.banner-secondary.banner-secondary--align-right.banner-secondary--crop-right .banner-secondary__video {
    --banner-video-left: 100%;
    --banner-video-translate-x: -100%;
  }

  .image-section.banner-secondary.banner-secondary--align-right.banner-secondary--crop-right .banner-secondary__video video {
    object-position: 90% center;
  }

  .image-section.banner-secondary.banner-secondary--align-right.banner-secondary--crop-right .banner-secondary__content {
    margin-left: auto;
    margin-right: clamp(18px, 6vw, 48px);
    align-items: flex-end;
    text-align: right;
  }

  .image-section.banner-secondary.banner-secondary--align-left.banner-secondary--crop-left {
    justify-content: flex-start;
  }

  .image-section.banner-secondary.banner-secondary--align-left.banner-secondary--crop-left .banner-secondary__video {
    --banner-video-left: 0;
    --banner-video-translate-x: 0;
  }

  .image-section.banner-secondary.banner-secondary--align-left.banner-secondary--crop-left .banner-secondary__video video {
    object-position: left center;
  }

  .image-section.banner-secondary.banner-secondary--align-left.banner-secondary--crop-left .banner-secondary__content {
    margin-right: auto;
    margin-left: clamp(18px, 6vw, 48px);
    align-items: flex-start;
    text-align: left;
  }
}
.banner-secondary--video .banner-title {
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.08;
  color: #fff;
  mix-blend-mode: difference;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}
.banner-secondary .banner-title {
  font-size: var(--banner-title-font-size, clamp(32px, 4vw, 52px));
  font-weight: var(--banner-title-font-weight, 800);
  line-height: 1.05;
}
.banner-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 3vw, 20px);
  margin-top: clamp(16px, 3vw, 28px);
}
.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2.8vw, 18px) clamp(30px, 6vw, 44px);
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}
.banner-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}
.banner-btn--primary {
  background: linear-gradient(135deg, rgba(255, 92, 0, 0.9), rgba(255, 0, 122, 0.9));
  color: #fff;
  border: 0;
  box-shadow: 0 12px 30px rgba(255, 50, 120, 0.35);
}
.banner-btn--primary:hover,
.banner-btn--primary:focus-visible {
  background: linear-gradient(135deg, rgba(255, 102, 20, 1), rgba(255, 40, 132, 1));
  color: #fff;
  transform: translateY(-2px);
}
.banner-btn--ghost {
  background: #fff;
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.banner-btn--ghost:hover,
.banner-btn--ghost:focus-visible {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}
  background: linear-gradient(135deg, rgba(255, 92, 0, 0.9), rgba(255, 0, 122, 0.9));
  color: #fff;
  border: 0;
  box-shadow: 0 12px 30px rgba(255, 50, 120, 0.35);
}
  background: linear-gradient(135deg, rgba(255, 102, 20, 1), rgba(255, 40, 132, 1));
  color: #fff;
  transform: translateY(-2px);
}
.banner-btn--icon {
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-btn--icon svg {
  width: 58%;
  height: 58%;
}
.banner-btn--icon:hover,
.banner-btn--icon:focus-visible {
  background: #fff;
  color: #000;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.banner-secondary .banner-art-wrap {
  flex: 1 1 calc(100% - 520px);
  position: relative;
  margin-left: 0;
  overflow: hidden;
  min-height: 100%;
}

.banner-secondary .banner-art,
.banner-secondary .banner-art--video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transform-origin: center;
  will-change: transform;
}

.banner-secondary .banner-art--video {
  filter: brightness(0.98) contrast(1.04);
  pointer-events: none;
}

.banner-secondary--left .banner-inner {
  padding: 0 clamp(40px, 7vw, 100px) 0 0;
}
.banner-secondary--left .banner-art-wrap {
  margin-left: 0;
  margin-right: auto;
  justify-content: flex-start;
}
.banner-secondary--left .banner-art {
  object-position: center center;
}
.banner-secondary--left .banner-art--video {
  object-position: center center;
}
.banner-secondary--left .banner-copy {
  align-items: flex-start;
  text-align: left;
}

.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}
.hero .marquee {
  font-size: var(--marquee-font-size, 100px);
  font-weight: var(--marquee-font-weight, 200);
}
.right {
  text-align: right;
  padding-left: 5%;
  padding-right: 5%;
}

/* Video reel */
.reel-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--reel-bg, #121113);
  color: var(--reel-text, #fff);
}
.reel-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: stretch;
  gap: clamp(28px, 5vw, 48px);
  padding: clamp(40px, 6vw, 80px);
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
}
.reel-info {
  flex: 0 0 clamp(220px, 24vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
}
.reel-info h2 {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.02;
}
.reel-info p {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--reel-accent, rgba(255,255,255,0.72));
  max-width: 28ch;
}
.reel-stage {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.reel-track {
  display: flex;
  align-items: stretch;
  gap: clamp(24px, 4vw, 48px);
  height: 100%;
  will-change: transform;
  transform: translateX(0);
}
.reel-card {
  position: relative;
  flex: 0 0 min(62vw, 700px);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(0,0,0,0.45);
  cursor: pointer;
}
.reel-card:focus-visible {
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 4px;
}
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  filter: saturate(1.05);
  transition: filter 0.45s ease, transform 0.45s ease;
  z-index: 0;
}

.reel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.reel-video__layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.reel-video__layer iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.reel-video__layer--bg iframe {
  transform: translate(-50%, -50%) scale(1.5);
  filter: blur(32px);
  opacity: 0.72;
}

.reel-video__layer--main iframe {
  transform: translate(-50%, -50%);
}
.reel-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: none;
  background: rgba(46, 46, 46, 0.60);
  border-radius: 18px;
  padding: clamp(10px, 2vw, 18px) clamp(18px, 3vw, 26px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.reel-meta {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 2.6vw, 32px);
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}
.reel-thumb {
  width: clamp(72px, 14vw, 110px);
  max-height: clamp(64px, 12vw, 100px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 1.2vw, 10px);
}
.reel-thumb img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.reel-desc {
  font-size: clamp(14px, 1.6vw, 18px);
  color: #d1d1d1;
  font-weight: 400;
  max-width: 46ch;
  background: rgba(0, 0, 0, 0.60);
  padding: clamp(10px, 2vw, 14px) clamp(16px, 2.6vw, 24px);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 12px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.25);
}
.reel-card:hover .reel-video,
.reel-card:focus-within .reel-video {
  filter: saturate(1.05);
}
.reel-card:hover .reel-hint,
.reel-card:focus-within .reel-hint {
  opacity: 0.8;
}
.reel-card:hover .reel-video,
.reel-card:focus-within .reel-video {
  filter: saturate(1.05);
}
.reel-card:hover .reel-hint,
.reel-card:focus-within .reel-hint {
  opacity: 1;
}

@media (max-width: 640px) {
  .image-section.banner-secondary.banner-secondary--video {
    align-items: flex-end;
    min-height: max(420px, 100vh);
  }
  .banner-secondary--video {
    padding: 0 clamp(2px, 1.8vw, 8px);
    padding-left: env(safe-area-inset-left, 0px);
  }
  .image-section.banner-secondary.banner-secondary--align-right.banner-secondary--crop-right .banner-secondary__content,
  .image-section.banner-secondary.banner-secondary--align-left.banner-secondary--crop-left .banner-secondary__content {
    margin-left: clamp(12px, 4vw, 20px);
    margin-right: clamp(12px, 4vw, 20px);
    align-items: flex-start;
    text-align: left;
  }
  .banner-secondary__content,
  .banner-secondary__content--right {
    align-self: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: clamp(18px, 7vw, 26px) clamp(12px, 5vw, 18px);
    max-width: none;
    width: 100%;
    gap: clamp(14px, 5vw, 24px);
  }
  .image-section.banner-secondary.banner-secondary--align-left.banner-secondary--crop-left .banner-secondary__content {
    margin-left: clamp(-12px, calc(env(safe-area-inset-left, 0px) - 6px), 0px);
    padding: clamp(18px, 7vw, 26px) 0;
    padding-left: 0;
  }
  .banner-secondary__content--right {
    align-items: flex-end;
    text-align: right;
  }

  .banner-secondary__content--center {
    align-items: center;
    text-align: center;
  }

  .banner-secondary__content--right .banner-actions {
    justify-content: flex-end;
  }

  .banner-secondary__content--center .banner-actions {
    justify-content: center;
  }
  .banner-secondary--video .banner-title {
    font-size: clamp(28px, 8vw, 40px);
    max-width: 22ch;
  }
  .banner-actions {
    flex-wrap: nowrap;
    gap: clamp(8px, 3vw, 12px);
    width: 100%;
    justify-content: flex-start;
  }
  .banner-actions .banner-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: clamp(10px, 3vw, 14px) clamp(16px, 5vw, 24px);
    font-size: clamp(13px, 3.6vw, 15px);
    text-align: center;
  }
  .banner-kicker {
    font-size: clamp(22px, 7vw, 44px);
  }
  .banner-kicker__name {
    font-size: 1.7em;
  }
  .reel-thumb {
    width: min(45%, 140px);
    max-height: clamp(36px, 14vw, 56px);
    padding: clamp(3px, 0.9vw, 6px);
    margin-inline: auto;
  }
}

/* News */
.news {
  background: #0a0a0a;
  color: #f7f7f7;
  padding: clamp(60px, 7vw, 90px) clamp(28px, 8vw, 60px);
}
.news h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: clamp(32px, 5vw, 48px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.news-list {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  max-width: 1100px;
  margin: 0 auto;
}
.news-item {
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  background: rgba(18, 18, 18, 0.78);
  border-radius: 22px;
  padding: clamp(18px, 4vw, 30px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.news-item img {
  width: 100%;
  height: min(220px, 100%);
  object-fit: cover;
  border-radius: 18px;
}
.news-content h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 10px;
  font-weight: 700;
}
.news-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .reel-section { min-height: auto; }
  .reel-pin {
    position: static;
    height: auto;
    flex-direction: column;
    gap: clamp(18px, 6vw, 34px);
    padding: clamp(28px, 8vw, 52px);
  }
  .reel-info {
    flex: none;
    align-items: flex-start;
  }
  .reel-info p { max-width: none; }
  .reel-stage {
    width: 100%;
  }
  .reel-track {
    transform: none !important;
    gap: clamp(18px, 6vw, 32px);
    flex-direction: column;
  }
  .reel-card {
    flex: none;
    width: 100%;
    min-height: clamp(320px, 65vh, 520px);
  }
  .news-item { flex-direction: column; }
  .news-item img { width: 100%; height: 200px; }
   { padding: 80px 18px; }
}

/* Footer */
.site-footer {
  background: #0e0e0f;
  color: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(28px, 8vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}
.footer-card {
  background: rgba(24, 24, 26, 0.92);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
  color: rgba(245, 245, 248, 0.82);
  font-family: inherit;
}
.footer-card h3,
.footer-card h4 {
  margin: 0;
  font-family: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.footer-card h3 {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
}
.footer-card h4 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.12em;
}
.footer-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(10px, 2vw, 16px);
}
.footer-card a {
  font-family: inherit;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 248, 0.82);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.35s ease;
}
.footer-card a:hover,
.footer-card a:focus-visible {
  color: rgba(224, 224, 230, 0.95);
}
.footer-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  opacity: 0.85;
}
.footer-card a:hover::after,
.footer-card a:focus-visible::after {
  transform: scaleX(1);
}
.footer-card--nav ul {
  gap: clamp(18px, 3vw, 24px);
}
.footer-card--nav li {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.2vw, 10px);
}
.footer-card--social ul {
  gap: clamp(8px, 2vw, 14px);
}
.footer-contact {
  display: grid;
  gap: clamp(8px, 2vw, 14px);
  margin-top: clamp(14px, 3vw, 20px);
}
.footer-contact__list {
  gap: clamp(10px, 2vw, 16px);
}
.footer-contact__list li {
  display: flex;
}
.footer-contact a {
  font-size: inherit;
}
.footer-contact address {
  font-style: normal;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.6;
  color: rgba(220, 220, 228, 0.75);
}
.footer-card--tools ul {
  gap: clamp(10px, 2vw, 16px);
}
.footer-card--tools a {
  font-size: inherit;
}
.footer-bottom {
  margin-top: clamp(40px, 6vw, 70px);
  text-align: center;
  font-size: 20px;
  color: rgba(255,255,255,0.55);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 560px) {
  .animated-img { width: 70px; height: 70px; left: 14px; top: 58%; }
  .menu-btn { width: 30px; height: 30px; }
  .logo { max-height: 46px; }
  .banner-secondary .banner-inner {
    padding: clamp(24px, 7vw, 40px) 0 clamp(24px, 7vw, 40px) clamp(18px, 8vw, 36px);
    gap: clamp(12px, 5vw, 30px);
  }
}

@media (max-width: 640px) {
  .banner-secondary .banner-inner {
    align-items: flex-start;
  }
  .banner-secondary .banner-copy {
    max-width: none;
    justify-content: flex-end;
    padding: clamp(24px, 7vw, 40px) clamp(18px, 8vw, 36px);
    min-height: 100%;
    margin-right: 0;
  }
  .banner-secondary .banner-title {
    font-size: var(--banner-title-font-size-mobile, clamp(34px, 11vw, 48px));
  }
  .banner-secondary .banner-art-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
  }
  .banner-secondary .banner-copy {
    position: relative;
  }
  .banner-secondary--left .banner-art-wrap {
    inset: 0 auto 0 0;
    justify-content: flex-start;
  }
  .banner-secondary--left .banner-art {
    object-position: left center;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-card--nav {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: clamp(50px, 12vw, 70px) clamp(20px, 8vw, 32px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-card {
    padding: clamp(20px, 7vw, 28px);
  }
}

/* Modal */
.modal-shell {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: stretch;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 999;
}
.modal-shell.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.7);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.modal-shell.is-open .modal-backdrop {
  opacity: 1;
  transform: scale(1);
}
.modal-dialog {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: rgba(12, 11, 13, 0.92);
  color: var(--reel-text, #fff);
  padding: clamp(48px, 7vw, 96px) clamp(36px, 8vw, 120px);
  transform: translateY(32px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(40px, 10vh, 80px);
}
.modal-shell.is-open .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}
.modal-header {
  position: absolute;
  top: clamp(24px, 5vw, 56px);
  left: clamp(24px, 6vw, 56px);
  right: clamp(24px, 6vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.modal-header h2 {
  font-size: clamp(18px, 2.4vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.modal-close {
  display: none;
}
.modal-links {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
  justify-items: flex-start;
}
.modal-links a {
  font-size: clamp(32px, 7vw, 88px);
  font-weight: 700;
  color: var(--reel-text, #fff);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.modal-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  opacity: 0.85;
}
.modal-links a:hover,
.modal-links a:focus-visible {
  color: rgba(224, 224, 230, 0.95);
}
.modal-links a:hover::after,
.modal-links a:focus-visible::after {
  transform: scaleX(1);

















