/* =========================================================
   C.C. PIPALIYA & ASSOCIATES (CCP) — v4
   DARK  (default): #07070A · ivory · foil-gold gradient
   LIGHT          : #FFFFFF · navy #393185 · red #E31E24
   ========================================================= */

/* ── Motion kill ── */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:.001s !important;
    animation-iteration-count:1 !important;
    transition-duration:.001s !important;
    scroll-behavior:auto !important;
  }
  .marquee-track{ animation:none !important; }
}

/* ─────────────────────────────────────────────
   DARK TOKENS  (html.dark  — loaded by default)
   ───────────────────────────────────────────── */
html.dark{
  --bg:           #07070A;
  --bg-2:         #0C0A10;
  --bg-panel:     #111017;
  --bg-panel-2:   #17151E;

  --ink:          #F3EFE6;
  --muted:        #ACA79C;
  --faint:        #6B6760;

  --gold-1:       #D4AF37;
  --gold-2:       #F3D27A;
  --gold-3:       #8C6F22;
  --gold-grad:    linear-gradient(120deg,#8C6F22,#D4AF37 45%,#F3D27A 75%,#D4AF37);
  --gold-wash:    rgba(212,175,55,.08);
  --gold-dim:     rgba(212,175,55,.32);

  --accent:       #D4AF37;
  --accent-hover: #F3D27A;
  --btn-txt:      #1A1407;

  --line:         rgba(212,175,55,.14);
  --line-strong:  rgba(212,175,55,.35);

  --marquee-bg:   #0C0A10;
  --footer-bg:    #07070A;
  --cta-bg:       linear-gradient(135deg,#16131C,#1C1710 50%,#16131C);
  --stat-bg:      #07070A;
  --form-bg:      #111017;
  --input-bg:     #07070A;
  --card-top:     rgba(212,175,55,.5);

  --nav-scrolled: rgba(7,7,10,.84);
  --mobile-menu-bg: rgba(7,7,10,.98);

  --toggle-bg:    rgba(17,16,23,.9);
  --toggle-border:rgba(212,175,55,.38);

  /* grain visible in dark */
  --grain-opacity:.05;
  --vignette: radial-gradient(ellipse 1200px 700px at 50% -8%,#1A1620 0%,#07070A 48%,#030304 100%);
}

/* ─────────────────────────────────────────────
   LIGHT TOKENS  (html.light)
   ───────────────────────────────────────────── */
html.light{
  --bg:           #FFFFFF;
  --bg-2:         #F7F5FF;
  --bg-panel:     #F3F2F7;
  --bg-panel-2:   #EBEAF2;

  --ink:          #1C1930;
  --muted:        #6B6878;
  --faint:        #9A97A8;

  --gold-1:       #D4AF37;
  --gold-2:       #B8952A;
  --gold-3:       #8C6F22;
  --gold-grad:    linear-gradient(120deg,#8C6F22,#D4AF37 45%,#F3D27A 75%,#D4AF37);
  --gold-wash:    rgba(212,175,55,.07);
  --gold-dim:     rgba(212,175,55,.25);

  --accent:       #393185;
  --accent-hover: #2C2667;
  --btn-txt:      #FFFFFF;

  --line:         rgba(57,49,133,.13);
  --line-strong:  rgba(57,49,133,.30);

  --marquee-bg:   #2C2667;
  --footer-bg:    #2C2667;
  --cta-bg:       linear-gradient(135deg,#393185,#2C2667);
  --stat-bg:      #FFFFFF;
  --form-bg:      #F3F2F7;
  --input-bg:     #FFFFFF;
  --card-top:     #393185;

  --nav-scrolled: rgba(255,255,255,.92);
  --mobile-menu-bg: rgba(255,255,255,.98);

  --toggle-bg:    #FFFFFF;
  --toggle-border:rgba(57,49,133,.3);

  --grain-opacity:0;
  --vignette:     none;
}

/* ─────────────────────────────
   BASE RESET
   ───────────────────────────── */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  transition: background .35s ease, color .25s ease;
}

/* Radial vignette — dark only */
body::before{
  content: '';
  position: fixed;
  inset: 0;
  background: var(--vignette);
  z-index: -3;
  pointer-events: none;
}

/* Film grain — dark only */
.grain{
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: var(--grain-opacity, 0);
  mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
  transition: opacity .4s;
}

img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }
p{ margin: 0; }

::selection{ background: var(--gold-dim); color: var(--ink); }
:focus-visible{ outline: 2px solid var(--gold-1); outline-offset: 3px; border-radius: 2px; }

/* ─────────────────────────────
   LAYOUT
   ───────────────────────────── */
.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 6;
}
.section{ padding: 120px 0; position: relative; }
.section--tight{ padding: 64px 0; }
.section--tint{ background: var(--bg-panel); }

@media(max-width:720px){
  .container{ padding: 0 20px; }
  .section{ padding: 80px 0; }
  .section--tight{ padding: 46px 0; }
}

/* ─────────────────────────────
   TYPOGRAPHY
   ───────────────────────────── */
.eyebrow{
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: '';
  width: 22px; height: 1.5px;
  background: var(--gold-grad);
  display: inline-block;
  border-radius: 1px;
}
html.light .eyebrow{ color: #E31E24; }
html.light .eyebrow::before{ background: #E31E24; }

h1,h2,h3,h4{
  font-family: 'Cormorant', serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.01em;
  color: var(--ink);
}
.h1{
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.06;
}
.h2{
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
}
.h3{
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
}
.h1 em, .h2 em{
  font-style: italic;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html.light .h1 em,
html.light .h2 em{
  background: none;
  color: #E31E24;
  -webkit-text-fill-color: #E31E24;
}

.lede{
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}
.body-text{
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
}
.body-text + .body-text{ margin-top: 16px; }

.section-head{ margin-bottom: 56px; max-width: 720px; }
.section-head .h2{ margin-top: 16px; }
.section-head .lede{ margin-top: 16px; }

/* ─────────────────────────────
   BUTTONS
   ───────────────────────────── */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 3px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform .25s var(--ease, cubic-bezier(.22,1,.36,1)),
              box-shadow .25s,
              background .25s,
              border-color .25s,
              color .25s;
}
.btn:active{ transform: translateY(1px); }

.btn--gold{
  background: var(--gold-grad);
  background-size: 180% 180%;
  color: var(--btn-txt);
  box-shadow: 0 10px 28px -10px rgba(212,175,55,.5);
}
.btn--gold:hover{
  box-shadow: 0 14px 36px -8px rgba(212,175,55,.65);
  background-position: 100% 0;
}
html.light .btn--gold{
  background: #393185;
  box-shadow: 0 10px 28px -10px rgba(57,49,133,.45);
  color: #fff;
}
html.light .btn--gold:hover{
  background: #2C2667;
  box-shadow: 0 14px 36px -8px rgba(44,38,103,.55);
}

.btn--ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover{ border-color: var(--gold-1); color: var(--gold-2); }
html.light .btn--ghost:hover{ border-color: #393185; color: #393185; }

.btn--ghost.on-dark{
  color: #F3EFE6;
  border-color: rgba(255,255,255,.32);
}
.btn--ghost.on-dark:hover{
  border-color: var(--gold-1);
  color: var(--gold-2);
}

.btn--arrow svg{ transition: transform .25s; }
.btn--arrow:hover svg{ transform: translateX(4px); }

@media(max-width:480px){
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ width: 100%; justify-content: center; }
}

/* ─────────────────────────────
   MARQUEE TICKER
   ───────────────────────────── */
.marquee{
  background: var(--marquee-bg);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track{
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.marquee-item{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243,239,230,.85);
  white-space: nowrap;
}
html.light .marquee-item{ color: rgba(255,255,255,.85); }
.marquee-item .dot{ width: 5px; height: 5px; border-radius: 50%; background: var(--gold-1); }

/* ─────────────────────────────
   NAV
   ───────────────────────────── */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: background .25s, padding .25s, border-color .25s, box-shadow .25s;
}
.site-nav.is-scrolled{
  background: var(--nav-scrolled);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  border-color: var(--line);
  box-shadow: 0 4px 24px -16px rgba(0,0,0,.35);
}
.site-nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-chip{ display: flex; align-items: center; flex-shrink: 0; }
.logo-chip img{ height: 50px; width: auto; display: block; }

.brand-name{
  font-family: 'Cormorant', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  line-height: 1.2;
}
.brand-name small{
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}

/* Nav links */
.nav-links{
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a{
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
html.light .nav-links a::after{ background: #E31E24; }
.nav-links a:hover{ color: var(--ink); }
.nav-links a:hover::after{ transform: scaleX(1); }
.nav-links a.is-active{ color: var(--gold-1); }
html.light .nav-links a.is-active{ color: #E31E24; }
.nav-links a.is-active::after{ transform: scaleX(1); }

.nav-right{ display: flex; align-items: center; gap: 14px; }

/* Theme toggle */
.theme-toggle{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--toggle-border);
  background: var(--toggle-bg);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, background .25s, transform .25s;
}
.theme-toggle:hover{ border-color: var(--gold-1); transform: rotate(18deg) scale(1.08); }
html.light .theme-toggle:hover{ border-color: #E31E24; }
.theme-toggle svg{
  position: absolute;
  width: 17px; height: 17px;
  transition: opacity .3s, transform .4s cubic-bezier(.34,1.56,.64,1);
}
/* dark mode shows moon */
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(.6); }
.theme-toggle .icon-moon{ opacity: 1; transform: rotate(0)    scale(1);  }
/* light mode shows sun */
html.light .theme-toggle .icon-sun { opacity: 1; transform: rotate(0)   scale(1);  color: #E31E24; }
html.light .theme-toggle .icon-moon{ opacity: 0; transform: rotate(90deg) scale(.6); }

/* Hamburger */
.nav-toggle{
  display: none;
  background: transparent;
  border: none;
  width: 30px; height: 22px;
  position: relative;
  padding: 0;
}
.nav-toggle span{
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}
.nav-toggle span:nth-child(1){ top: 0; }
.nav-toggle span:nth-child(2){ top: 50%; margin-top: -1px; }
.nav-toggle span:nth-child(3){ top: 100%; transform: translateY(-2px); }
.nav-toggle.is-open span:nth-child(1){ transform: translateY(10px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-10px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu{
  position: fixed;
  inset: 0;
  background: var(--mobile-menu-bg);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s;
}
.mobile-menu.is-open{ opacity: 1; visibility: visible; }
.mobile-menu a{
  font-family: 'Cormorant', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s;
}
.mobile-menu a:hover{ color: var(--gold-1); }
html.light .mobile-menu a:hover{ color: #E31E24; }
.mobile-menu-cta{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.mobile-menu-phone{
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .04em;
}

@media(max-width:880px){
  .nav-links{ display: none; }
  .nav-right .btn{ display: none; }
  .nav-toggle{ display: block; }
}
@media(max-width:420px){
  .brand-name small{ display: none; }
  .logo-chip img{ height: 38px; }
  .brand{ gap: 9px; }
}

/* ─────────────────────────────
   PAGE HEADER (inner pages)
   ───────────────────────────── */
.page-header{ padding: 170px 0 56px; }
.page-header .h1{ margin-top: 16px; font-size: clamp(36px,5.4vw,58px); }
.page-header .lede{ margin-top: 16px; }
@media(max-width:720px){ .page-header{ padding: 130px 0 44px; } }

/* ─────────────────────────────
   HERO — full-bleed photo
   ───────────────────────────── */
.hero{
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  will-change: transform;
}
.hero-slide{
  position: absolute;
  inset: 0;
  height: 120%;
  background-size: cover;
  background-position: center;
  filter: grayscale(.2) contrast(1.05) brightness(.75);
  opacity: 0;
  transition: opacity 1.3s cubic-bezier(.22,1,.36,1);
}
.hero-slide.is-active{ opacity: 1; }
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,rgba(7,7,10,.55) 0%,rgba(7,7,10,.80) 55%,#07070A 96%),
    linear-gradient(90deg,rgba(7,7,10,.88) 0%,rgba(7,7,10,.3) 55%,rgba(7,7,10,.72) 100%);
}
html.light .hero-overlay{
  background:
    linear-gradient(180deg,rgba(44,38,103,.7) 0%,rgba(44,38,103,.88) 55%,#2C2667 96%),
    linear-gradient(90deg,rgba(28,25,48,.92) 0%,rgba(28,25,48,.35) 55%,rgba(28,25,48,.7) 100%);
}

/* Slider controls */
.hero-slider-nav{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,.4);
  background: rgba(243,239,230,.1);
  padding: 0;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}
.hero-dot.is-active{
  background: var(--gold-grad);
  border-color: transparent;
  transform: scale(1.25);
}
html.light .hero-dot{ border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.15); }
html.light .hero-dot.is-active{ background: var(--gold-grad); }

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.3);
  background: rgba(7,7,10,.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F3EFE6;
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.hero-arrow:hover{ border-color: var(--gold-1); background: rgba(7,7,10,.78); }
.hero-arrow--prev{ left: 24px; }
.hero-arrow--next{ right: 24px; }
.hero-arrow svg{ width: 16px; height: 16px; }

.hero-inner{ max-width: 760px; position: relative; z-index: 6; }
.hero-copy .h1{ margin-top: 24px; color: #F3EFE6; }
.hero-copy .lede{ margin-top: 22px; color: rgba(243,239,230,.78); }
.hero-tag{
  position: absolute;
  right: 32px;
  bottom: 90px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(243,239,230,.5);
}
.hero-tag span{ width: 22px; height: 1px; background: var(--gold-grad); }

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

@media(max-width:980px){ .hero{ padding-top:130px; min-height:auto; padding-bottom:64px; } .hero-tag{ display:none; } }
@media(max-width:720px){ .hero-arrow{ width:34px; height:34px; } .hero-arrow--prev{ left:12px; } .hero-arrow--next{ right:12px; } }
@media(max-width:480px){ .hero-arrow{ display:none; } .hero-slider-nav{ bottom:16px; } }

/* ─────────────────────────────
   DIVIDER
   ───────────────────────────── */
.divider{
  position: relative;
  height: 1px;
  background: var(--line);
  margin: 0 0 56px;
  overflow: hidden;
}
.divider::after{
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}
.divider.in-view::after{ transform: scaleX(1); }
html.light .divider::after{ background: #E31E24; }

/* ─────────────────────────────
   CRED STRIP
   ───────────────────────────── */
.cred-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .07em;
  color: var(--muted);
  text-transform: uppercase;
}
.cred-strip span{ display: flex; align-items: center; gap: 10px; }
.cred-strip span::before{
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-1);
  flex-shrink: 0;
}
html.light .cred-strip span::before{ background: #E31E24; }

/* ─────────────────────────────
   STATS
   ───────────────────────────── */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.stat{
  background: var(--stat-bg);
  padding: 34px 26px;
  position: relative;
  transition: background .25s;
}
.stat:hover{ background: var(--bg-panel); }
.stat-figure{
  font-family: 'Space Mono', monospace;
  font-size: clamp(26px,3.5vw,38px);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
html.light .stat-figure{ background: none; color: #393185; -webkit-text-fill-color: #393185; }
.stat-label{
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
  max-width: 180px;
}
.stat-spark{
  position: absolute;
  right: 22px;
  bottom: 26px;
  width: 52px; height: 24px;
  opacity: .85;
}
@media(max-width:780px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } .stat-spark{ display:none; } }
@media(max-width:480px){ .stat{ padding:24px 18px; } }

/* ─────────────────────────────
   SCHEDULE LIST
   ───────────────────────────── */
.schedule-list{ border-top: 1px solid var(--line); }
.schedule-item{
  display: grid;
  grid-template-columns: 116px 1fr auto;
  align-items: start;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left .25s;
}
.schedule-item::before{
  content: '';
  position: absolute;
  left: -1px; top: 0; bottom: -1px;
  width: 0;
  background: var(--gold-grad);
  transition: width .25s;
}
html.light .schedule-item::before{ background: #E31E24; }
.schedule-item:hover{ padding-left: 16px; }
.schedule-item:hover::before{ width: 3px; }
.schedule-tag{
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gold-1);
  padding-top: 4px;
}
html.light .schedule-tag{ color: #E31E24; }
.schedule-body h3{ margin-bottom: 8px; }
.schedule-body p{ color: var(--muted); max-width: 540px; }
.schedule-sub{ display:flex; flex-wrap:wrap; gap:8px 18px; margin-top:14px; }
.schedule-sub span{ font-size:12px; color:var(--faint); font-family:'Space Mono',monospace; }
.schedule-arrow{ width:18px; height:18px; margin-top:6px; opacity:.45; color:var(--ink); transition:transform .25s, opacity .25s, color .25s; }
.schedule-item:hover .schedule-arrow{ transform:translateX(5px); opacity:1; color:var(--gold-1); }
html.light .schedule-item:hover .schedule-arrow{ color:#E31E24; }
@media(max-width:720px){ .schedule-item{ grid-template-columns:1fr; gap:10px; } .schedule-arrow{ display:none; } }

/* ─────────────────────────────
   CARDS
   ───────────────────────────── */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.card{
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--card-top, rgba(212,175,55,.5));
  padding: 36px 30px;
  border-radius: 6px;
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
}
html.light .card{ border-top-color: #393185; }
.card:hover{
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  box-shadow: 0 24px 48px -24px rgba(212,175,55,.2);
}
html.light .card:hover{ border-color: rgba(57,49,133,.35); box-shadow:0 24px 48px -24px rgba(44,38,103,.22); }
.card-index{ font-family:'Space Mono',monospace; font-size:12px; color:var(--gold-1); letter-spacing:.1em; }
html.light .card-index{ color:#E31E24; }
.card h3{ margin-top:16px; }
.card p{ margin-top:12px; color:var(--muted); font-size:14.5px; }
@media(max-width:880px){ .card-grid{ grid-template-columns:1fr; } }
@media(max-width:480px){ .card{ padding:28px 22px; } }

/* ─────────────────────────────
   IMAGE FRAMES
   ───────────────────────────── */
.frame{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-panel);
}
.frame img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}
.frame:hover img{ transform: scale(1.06); }
.frame-caption{
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(7,7,10,.65);
  padding: 6px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.portrait-frame{ width:100%; aspect-ratio:4/5; margin-bottom:22px; }
.photo-banner{ aspect-ratio:16/7; margin-top:8px; }
@media(max-width:720px){ .photo-banner{ aspect-ratio:4/3; } }

/* Team */
.team-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.team-card{ text-align:left; }
.team-photo{ width:100%; aspect-ratio:1/1; margin-bottom:18px; }
.team-card h3{ font-size:21px; }
.team-card .role{ display:block; font-family:'Space Mono',monospace; font-size:11.5px; letter-spacing:.08em; color:var(--gold-1); text-transform:uppercase; margin-top:6px; }
html.light .team-card .role{ color:#E31E24; }
.team-card p.body-text{ margin-top:10px; font-size:14px; }
@media(max-width:880px){ .team-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .team-grid{ grid-template-columns:1fr; } }

/* ─────────────────────────────
   FOUNDER BLOCK
   ───────────────────────────── */
.founder-block{ display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:start; }
.founder-card{ background:var(--bg-panel); border:1px solid var(--line); border-radius:10px; padding:32px; }
.founder-card h3{ margin-top:4px; }
.founder-card .role{ font-family:'Space Mono',monospace; font-size:12px; color:var(--gold-1); letter-spacing:.06em; margin-top:6px; display:block; }
html.light .founder-card .role{ color:#E31E24; }
.founder-card .cred{ margin-top:16px; font-size:13.5px; color:var(--muted); border-top:1px solid var(--line); padding-top:16px; }
.quote{ font-family:'Cormorant',serif; font-style:italic; font-size:clamp(22px,2.6vw,30px); line-height:1.45; color:var(--ink); }
.quote::before{ content:'\201C'; color:var(--gold-1); }
.quote::after{ content:'\201D'; color:var(--gold-1); }
html.light .quote::before,
html.light .quote::after{ color:#E31E24; }
.quote-attr{ margin-top:18px; font-family:'Space Mono',monospace; font-size:13px; color:var(--muted); }
@media(max-width:880px){ .founder-block{ grid-template-columns:1fr; gap:32px; } }
@media(max-width:480px){ .founder-card{ padding:24px; } }

/* ─────────────────────────────
   TIMELINE
   ───────────────────────────── */
.timeline{ border-top:1px solid var(--line); }
.timeline-row{ display:grid; grid-template-columns:130px 1fr; gap:28px; padding:28px 0; border-bottom:1px solid var(--line); }
.timeline-year{ font-family:'Space Mono',monospace; color:var(--gold-1); font-weight:700; font-size:18px; }
html.light .timeline-year{ color:#E31E24; }
.timeline-row p{ color:var(--muted); max-width:560px; }
@media(max-width:600px){ .timeline-row{ grid-template-columns:1fr; gap:6px; } }

/* ─────────────────────────────
   PROCESS
   ───────────────────────────── */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.process-step{ padding-top:18px; border-top:2px solid var(--gold-dim); }
html.light .process-step{ border-top-color:#393185; }
.process-step .step-num{ font-family:'Space Mono',monospace; color:var(--gold-1); font-size:13px; font-weight:700; }
html.light .process-step .step-num{ color:#E31E24; }
.process-step h3{ margin-top:14px; font-size:19px; }
.process-step p{ margin-top:10px; color:var(--muted); font-size:14px; }
@media(max-width:880px){ .process-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .process-grid{ grid-template-columns:1fr; } }

/* ─────────────────────────────
   CTA BANNER
   ───────────────────────────── */
.cta-banner{
  background: var(--cta-bg);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%,rgba(212,175,55,.07),transparent);
  pointer-events:none;
}
.cta-banner .h2{ max-width:660px; margin:0 auto; color:#F3EFE6; }
.cta-banner .h2 em{ background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
html.light .cta-banner .h2 em{ background:none; color:#F3D27A; -webkit-text-fill-color:#F3D27A; }
.cta-banner .lede{ margin:16px auto 0; text-align:center; color:rgba(243,239,230,.75); }
.cta-banner .hero-actions{ justify-content:center; margin-top:36px; }
@media(max-width:720px){ .cta-banner{ padding:64px 0; } }

/* ─────────────────────────────
   CONTACT
   ───────────────────────────── */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; }
.info-block + .info-block{ margin-top:32px; padding-top:26px; border-top:1px solid var(--line); }
.info-label{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.12em; color:var(--gold-1); text-transform:uppercase; }
html.light .info-label{ color:#E31E24; }
.info-value{ margin-top:10px; font-size:16px; color:var(--ink); }
.hours-table{ margin-top:10px; width:100%; }
.hours-table tr{ border-bottom:1px solid var(--line); }
.hours-table td{ padding:9px 0; font-size:14px; color:var(--muted); }
.hours-table td:last-child{ text-align:right; font-family:'Space Mono',monospace; color:var(--ink); font-weight:600; }

.form-panel{ background:var(--form-bg); border:1px solid var(--line); border-radius:10px; padding:40px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:8px; }
.field input,.field select,.field textarea{
  width:100%;
  background:var(--input-bg);
  border:1px solid var(--line-strong);
  color:var(--ink);
  padding:13px 14px;
  font-family:'Manrope',sans-serif;
  font-size:14.5px;
  transition:border-color .25s;
  border-radius:4px;
}
.field input:focus,.field select,.field textarea:focus{ outline:none; border-color:var(--gold-1); }
html.light .field input:focus,
html.light .field select:focus,
html.light .field textarea:focus{ border-color:#393185; }
.field textarea{ resize:vertical; min-height:110px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media(max-width:560px){ .field-row{ grid-template-columns:1fr; } }
.form-note{ margin-top:6px; font-size:12.5px; color:var(--faint); }
.form-success{ display:none; align-items:center; gap:12px; padding:16px; border:1px solid var(--gold-dim); background:var(--gold-wash); color:var(--gold-2); font-size:14px; margin-top:18px; border-radius:4px; font-weight:600; }
.form-success.is-visible{ display:flex; }
@media(max-width:880px){ .contact-grid{ grid-template-columns:1fr; } }
@media(max-width:480px){ .form-panel{ padding:26px 20px; } }

/* ─────────────────────────────
   FOOTER
   ───────────────────────────── */
.site-footer{ background:var(--footer-bg); padding:80px 0 28px; }
html.dark .site-footer{ border-top:1px solid var(--line); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; }
.footer-brand .brand{ margin-bottom:18px; }
.footer-brand p{ color:rgba(255,255,255,.6); font-size:14px; max-width:260px; }
.site-footer .brand-name{ color:#F3EFE6; }
.site-footer .brand-name small{ color:rgba(243,239,230,.5); }
.footer-col h4{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-2); margin-bottom:18px; }
.footer-col a,.footer-col p{ display:block; font-size:14px; color:rgba(255,255,255,.68); margin-bottom:11px; transition:color .25s; }
.footer-col a:hover{ color:var(--gold-2); }
.footer-bottom{ margin-top:60px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:rgba(255,255,255,.45); }
@media(max-width:880px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* ─────────────────────────────
   SCROLL REVEALS
   ───────────────────────────── */
[data-reveal]{
  opacity:0;
  transform:translateY(26px);
  transition:opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
}
[data-reveal].in-view{ opacity:1; transform:translateY(0); }
[data-reveal-group] > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* ─────────────────────────────
   BACK TO TOP
   ───────────────────────────── */
.back-top{
  position:fixed;
  right:28px; bottom:94px;
  width:44px; height:44px;
  border-radius:50%;
  border:1.5px solid var(--line-strong);
  background:var(--bg-panel);
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s, border-color .25s, transform .25s;
  z-index:150;
  box-shadow:0 8px 20px -8px rgba(0,0,0,.4);
}
.back-top.is-visible{ opacity:1; visibility:visible; }
.back-top:hover{ border-color:var(--gold-1); transform:translateY(-3px); color:var(--gold-1); }
html.light .back-top:hover{ border-color:#E31E24; color:#E31E24; }
.back-top svg{ width:16px; height:16px; }

/* ─────────────────────────────
   WHATSAPP FAB
   ───────────────────────────── */
.wa-btn{
  position:fixed;
  right:26px; bottom:26px;
  z-index:300;
  width:58px; height:58px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 28px -6px rgba(37,211,102,.65);
  animation:wa-enter .7s cubic-bezier(.34,1.56,.64,1) .8s both;
  text-decoration:none;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.wa-btn:hover{ transform:scale(1.12) rotate(-4deg); box-shadow:0 14px 38px -8px rgba(37,211,102,.8); }
.wa-btn svg{ width:30px; height:30px; fill:#fff; }
.wa-btn::before{
  content:'';
  position:absolute;
  inset:-6px;
  border-radius:50%;
  border:2.5px solid #25D366;
  opacity:0;
  animation:wa-pulse 2.4s ease-out 1.5s infinite;
}
.wa-btn::after{
  content:'';
  position:absolute;
  inset:-14px;
  border-radius:50%;
  border:2px solid #25D366;
  opacity:0;
  animation:wa-pulse 2.4s ease-out 1.9s infinite;
}
@keyframes wa-enter{ from{ opacity:0; transform:scale(0) rotate(-20deg); } to{ opacity:1; transform:scale(1) rotate(0); } }
@keyframes wa-pulse{ 0%{ opacity:.7; inset:-4px; } 100%{ opacity:0; inset:-22px; } }
.wa-btn .wa-tip{
  position:absolute;
  right:68px;
  white-space:nowrap;
  background:var(--bg-panel);
  color:var(--ink);
  border:1px solid var(--line);
  font-family:'Manrope',sans-serif;
  font-size:13px;
  font-weight:600;
  padding:8px 14px;
  border-radius:6px;
  pointer-events:none;
  opacity:0;
  transform:translateX(8px);
  transition:opacity .25s, transform .25s;
}
.wa-btn .wa-tip::after{
  content:'';
  position:absolute;
  right:-6px; top:50%;
  transform:translateY(-50%);
  border:6px solid transparent;
  border-left-color:var(--bg-panel);
}
.wa-btn:hover .wa-tip{ opacity:1; transform:translateX(0); }
@media(max-width:480px){ .wa-btn{ right:16px; bottom:16px; width:50px; height:50px; } .wa-btn svg{ width:25px; height:25px; } .wa-btn .wa-tip{ display:none; } }

/* ─────────────────────────────
   HERO FLOATING STATS ROW
   ───────────────────────────── */
.hero-stats-row{
  display: flex;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat-chip{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 20px;
  background: rgba(17,16,23,.72);
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  min-width: 110px;
  transition: border-color .25s, background .25s;
}
.hero-stat-chip:hover{
  border-color: rgba(212,175,55,.6);
  background: rgba(17,16,23,.9);
}
html.light .hero-stat-chip{
  background: rgba(44,38,103,.72);
  border-color: rgba(243,210,122,.38);
}
.hero-stat-num{
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-stat-cap{
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: rgba(243,239,230,.65);
  margin-top: 5px;
  letter-spacing: .03em;
}
@media(max-width:640px){
  .hero-stats-row{ gap:8px; margin-top:32px; }
  .hero-stat-chip{ padding:10px 14px; min-width:90px; }
  .hero-stat-num{ font-size:18px; }
}

/* ─────────────────────────────
   HERO — slide leaving state
   ───────────────────────────── */
.hero-slide.is-leaving{
  opacity: 0;
  transition: opacity 1.3s cubic-bezier(.22,1,.36,1);
}

/* ─────────────────────────────
   HERO BADGE (alt hero layout)
   ───────────────────────────── */
.hero-badge{
  position: absolute;
  left: -20px;
  bottom: -20px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
  backdrop-filter: blur(10px);
}
.hero-badge .num{
  font-family: 'Space Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-badge .cap{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

/* ─────────────────────────────
   HERO VISUAL (split layout)
   ───────────────────────────── */
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero-visual{ position: relative; }
.hero-visual .frame{
  border-radius: 10px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
  aspect-ratio: 4/5;
}
@media(max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
  .hero-badge{ left:14px; bottom:-16px; }
}
