/* ==========================================================================
   THE SOLAR TATTOO — stylesheet (brand edition)
   Black / white / signature orange. Bold condensed display type paired
   with a clean neutral body face. Full-bleed sections, big imagery,
   generous whitespace — built the way a premium product site is built.
   ========================================================================== */

:root{
  --black:      #0A0A0A;
  --near-black: #141414;
  --ink:        #1D1D1F;
  --white:      #FFFFFF;
  --off-white:  #F5F5F7;
  --grey:       #86868B;
  --grey-dark:  #4A4A4E;
  --line:       rgba(0,0,0,0.10);
  --line-w:     rgba(255,255,255,0.16);
  --orange:     #FF9110;
  --orange-dark:#E67D00;

  --f-display: 'Anton', 'Arial Narrow', sans-serif;
  --f-body:    'Inter', -apple-system, 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1280px;
  --edge: clamp(20px, 5.5vw, 80px);
  --ease: cubic-bezier(.19,1,.22,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html.lenis{ height:auto; }
html.lenis.lenis-smooth{ scroll-behavior:auto !important; }
.lenis.lenis-smooth [data-lenis-prevent]{ overscroll-behavior:contain; }
body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:var(--f-body);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input, textarea{ font-family:inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
:focus-visible{ outline:2px solid var(--orange); outline-offset:3px; }
.container{ max-width:var(--container); margin:0 auto; padding:0 var(--edge); }

/* ==========================================================================
   TYPE SCALE
   ========================================================================== */
.eyebrow{
  font-family:var(--f-body); font-size:12px; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color:var(--orange);
  display:inline-flex; align-items:center; gap:10px;
}
h1,.h1{
  font-family:var(--f-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(46px, 8vw, 108px); line-height:0.92; letter-spacing:.005em; color:var(--white);
}
h2,.h2{
  font-family:var(--f-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(32px, 5vw, 64px); line-height:0.98; letter-spacing:.005em; color:var(--ink);
}
h3,.h3{
  font-family:var(--f-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(19px, 2.2vw, 25px); line-height:1.15; letter-spacing:.005em; color:var(--ink);
}
.on-dark h2, .on-dark h3{ color:var(--white); }
.lede{ font-size:clamp(16px,1.5vw,19px); color:var(--grey-dark); font-weight:400; max-width:52ch; line-height:1.6; }
.on-dark .lede{ color:#D2D2D7; }
.section-label{ font-family:var(--f-body); font-size:11.5px; font-weight:700; letter-spacing:.14em; color:var(--grey); text-transform:uppercase; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  position:relative; display:inline-flex; align-items:center; gap:9px;
  padding:15px 30px; font-family:var(--f-body); font-size:13.5px; font-weight:600;
  border-radius:100px; border:1.5px solid var(--ink); color:var(--ink); background:transparent;
  transition:background .35s var(--ease-soft), color .35s var(--ease-soft), transform .2s var(--ease-soft), border-color .35s;
  white-space:nowrap;
}
.btn:hover{ background:var(--ink); color:var(--white); transform:translateY(-2px); }
.btn-orange{ background:var(--orange); border-color:var(--orange); color:var(--white); }
.btn-orange:hover{ background:var(--orange-dark); border-color:var(--orange-dark); color:var(--white); }
.btn-white{ border-color:var(--white); color:var(--white); }
.btn-white:hover{ background:var(--white); color:var(--ink); }
.btn svg{ width:14px; height:14px; transition:transform .3s var(--ease-soft); }
.btn:hover svg{ transform:translateX(3px); }
.text-link{ display:inline-flex; align-items:center; gap:7px; font-size:14px; font-weight:600; color:var(--ink); border-bottom:1.5px solid var(--ink); padding-bottom:2px; }
.text-link svg{ width:13px; height:13px; transition:transform .3s var(--ease-soft); }
.text-link:hover svg{ transform:translateX(4px); }
.on-dark .text-link{ color:var(--white); border-color:var(--white); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:20px 0; transition:padding .4s var(--ease-soft), background .4s var(--ease-soft), box-shadow .4s;
}
.site-header.is-scrolled{
  padding:12px 0; background:rgba(255,255,255,0.86); backdrop-filter:blur(14px) saturate(1.6);
  box-shadow:0 1px 0 rgba(0,0,0,.06);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:38px; height:38px; border-radius:50%; }
.brand-text{ font-family:var(--f-display); font-size:15px; letter-spacing:.01em; line-height:1; color:var(--white); transition:color .4s; }
.brand-text b{ display:block; font-size:16px; font-weight:400; text-transform:uppercase; }
.brand-text span{ font-family:var(--f-body); font-size:9px; font-weight:600; letter-spacing:.14em; color:#D2D2D7; text-transform:uppercase; }
.site-header.is-scrolled .brand-text{ color:var(--ink); }
.site-header.is-scrolled .brand-text span{ color:var(--grey); }

.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-family:var(--f-body); font-size:13px; font-weight:600; color:#EAEAEC;
  position:relative; padding:6px 0; transition:color .3s;
}
.site-header.is-scrolled .nav-links a{ color:var(--grey-dark); }
.nav-links a::after{ content:''; position:absolute; left:0; right:100%; bottom:0; height:2px; background:var(--orange); transition:right .35s var(--ease-soft); }
.nav-links a:hover, .nav-links a.active{ color:var(--white); }
.site-header.is-scrolled .nav-links a:hover, .site-header.is-scrolled .nav-links a.active{ color:var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.header-actions .btn{ padding:11px 22px; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; z-index:101; }
.nav-toggle span{ width:22px; height:2px; background:var(--white); transition:transform .3s var(--ease-soft), opacity .3s, background .3s; }
.site-header.is-scrolled .nav-toggle span{ background:var(--ink); }
.nav-toggle.is-open span{ background:var(--ink) !important; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

@media (max-width:900px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:fixed; inset:0; z-index:99; background:var(--white);
    flex-direction:column; justify-content:center; gap:30px;
    transform:translateY(-100%); opacity:0; transition:transform .5s var(--ease-soft), opacity .4s; pointer-events:none;
  }
  .nav-links.is-open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a{ font-size:20px; color:var(--ink) !important; text-transform:uppercase; font-family:var(--f-display); font-weight:400; }
  .header-actions .btn{ padding:10px 18px; font-size:12px; }
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider{
  position:relative; height:100vh; height:100svh; min-height:560px; overflow:hidden; background:var(--black);
}
.hs-slide{
  position:absolute; inset:0; opacity:0; z-index:1;
  transition:opacity 1.1s var(--ease-soft);
  pointer-events:none;
}
.hs-slide.is-active{ opacity:1; z-index:2; pointer-events:auto; }
.hs-slide img{
  width:100%; height:100%; object-fit:cover; filter:grayscale(35%) brightness(.72) contrast(1.05);
  transform:scale(1.06); transition:transform 7s linear;
}
.hs-slide.is-active img{ transform:scale(1.14); }
.hs-slide::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.55) 100%);
}
.hero-content{
  position:relative; z-index:5; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center; padding:0 var(--edge);
}
.hero-content .eyebrow{ justify-content:center; color:var(--orange); margin-bottom:18px; }
.hero-content h1{ text-shadow:0 2px 30px rgba(0,0,0,.25); }
.hero-content .lede{ color:#EDEDEF; margin:24px auto 0; text-align:center; }
.hero-ctas{ display:flex; gap:16px; justify-content:center; margin-top:40px; flex-wrap:wrap; }

.hs-controls{
  position:absolute; z-index:6; bottom:38px; left:0; right:0;
  display:flex; align-items:center; justify-content:center; gap:22px;
}
.hs-dots{ display:flex; gap:10px; }
.hs-dot{ width:26px; height:3px; background:rgba(255,255,255,.35); border:none; padding:0; transition:background .3s; }
.hs-dot.is-active{ background:var(--white); }
.hs-arrow{
  width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.4); background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center; color:var(--white); transition:background .3s, border-color .3s;
}
.hs-arrow:hover{ background:rgba(255,255,255,.18); border-color:var(--white); }
.hs-arrow svg{ width:16px; height:16px; }

.scroll-cue{ position:absolute; z-index:6; bottom:38px; right:var(--edge); display:none; }
@media (min-width:640px){ .scroll-cue{ display:flex; flex-direction:column; align-items:center; gap:8px; } }
.scroll-cue span{ font-family:var(--f-body); font-size:10px; font-weight:600; letter-spacing:.18em; color:#D2D2D7; text-transform:uppercase; }
.scroll-cue .stem{ width:1px; height:30px; background:linear-gradient(#fff, transparent); animation:pulseDown 2s ease-in-out infinite; }
@keyframes pulseDown{ 0%,100%{ opacity:.25; } 50%{ opacity:.9; } }

/* ==========================================================================
   SCROLL REVEAL — self-contained (no external library / CDN dependency).
   Fail-safe by design: content is fully visible by default. The hidden
   pre-animation state only applies once html.js-anim is present (added
   synchronously by an inline script the instant JS runs), so if JS is ever
   slow, blocked, or a browser quirk stops it, nothing stays invisible —
   it just skips the animation and shows normally.
   ========================================================================== */
.reveal, .reveal-from-left, .reveal-from-right{ opacity:1; }
html.js-anim .reveal, html.js-anim .reveal-from-left, html.js-anim .reveal-from-right{
  opacity:0; transition:opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
html.js-anim .reveal{ transform:translateY(34px); }
html.js-anim .reveal-from-left{ transform:translateX(-46px); }
html.js-anim .reveal-from-right{ transform:translateX(46px); }
.reveal.is-visible, .reveal-from-left.is-visible, .reveal-from-right.is-visible{
  opacity:1 !important; transform:translate(0,0) !important;
}
.reveal-stagger > *{ opacity:1; }
html.js-anim .reveal-stagger > *{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
.reveal-stagger.is-visible > *{ opacity:1 !important; transform:translateY(0) !important; }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay:.02s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.10s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.18s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.26s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay:.34s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay:.42s; }
.reveal-stagger.is-visible > *:nth-child(7){ transition-delay:.50s; }
.reveal-stagger.is-visible > *:nth-child(8){ transition-delay:.58s; }

/* ==========================================================================
   TEXT REVEAL — headings slide up into view, line by line, on scroll.
   Same fail-safe gating as above: plain, fully visible text unless
   html.js-anim confirms JS is running the animation.
   ========================================================================== */
.reveal-text{ display:block; }
.rt-line-clip{ display:block; overflow:visible; }
.rt-line{ display:block; }
html.js-anim .rt-line-clip{ overflow:hidden; }
html.js-anim .rt-line{ transform:translateY(112%); transition:transform 1s var(--ease-soft); will-change:transform; }
.reveal-text.is-in .rt-line{ transform:translateY(0) !important; }
.rt-line-clip:nth-of-type(1) .rt-line{ transition-delay:.04s; }
.rt-line-clip:nth-of-type(2) .rt-line{ transition-delay:.14s; }
.rt-line-clip:nth-of-type(3) .rt-line{ transition-delay:.24s; }
.rt-line-clip:nth-of-type(4) .rt-line{ transition-delay:.34s; }

/* ==========================================================================
   SECTIONS — general
   ========================================================================== */
section{ position:relative; padding:120px 0; }
@media (max-width:640px){ section{ padding:72px 0; } }
.section-head{ max-width:680px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ margin-top:14px; }
.on-dark{ background:var(--black); color:var(--white); }
.on-off{ background:var(--off-white); }

/* ==========================================================================
   ABOUT — modeled on the studio's approved layout
   ========================================================================== */
.about{ background:var(--white); }
.about-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:64px; align-items:center; }
.about-heading{ font-family:var(--f-display); font-weight:400; text-transform:uppercase; color:var(--ink); line-height:.94; }
.about-heading .line1{ font-size:clamp(30px,3.6vw,44px); display:block; }
.about-heading .line2{ font-size:clamp(48px,6.2vw,78px); display:block; }
.about-heading .line3{ font-size:clamp(48px,6.2vw,78px); display:block; }
.about-body{ display:flex; gap:34px; padding-top:10px; }
.about-body .divider{ width:2px; background:var(--ink); flex-shrink:0; margin-top:4px; align-self:stretch; }
.about-body .copy p{ color:var(--grey-dark); font-size:15.5px; }
.about-mv{ display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:30px; }
.about-mv h4{ font-family:var(--f-display); font-weight:400; text-transform:uppercase; font-size:19px; margin-bottom:10px; color:var(--ink); }
.about-mv ul li{ position:relative; padding-left:16px; margin-bottom:7px; color:var(--grey-dark); font-size:14px; }
.about-mv ul li::before{ content:'•'; position:absolute; left:0; color:var(--orange); font-weight:700; }
.about-cta{ margin-top:36px; }
.about-pill{
  display:inline-flex; align-items:center; gap:10px; background:var(--orange); color:var(--white);
  font-family:var(--f-body); font-weight:700; font-size:14px; padding:14px 26px; border-radius:4px;
  text-transform:uppercase; letter-spacing:.02em;
}
@media (max-width:860px){ .about-grid{ grid-template-columns:1fr; } .about-body{ flex-direction:column; } .about-body .divider{ width:100%; height:2px; } }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats-band{ background:var(--ink); padding:80px 0; }
.stats-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.stats-row .stat b{ display:block; font-family:var(--f-display); font-weight:400; font-size:clamp(36px,5vw,58px); color:var(--white); }
.stats-row .stat > span{ font-family:var(--f-body); font-size:11px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--grey); }
@media (max-width:800px){ .stats-row{ grid-template-columns:repeat(2,1fr); gap:36px; } }

/* ==========================================================================
   SERVICES — zigzag feature rows (image one side, copy the other,
   alternating down the page)
   ========================================================================== */
.services{ background:var(--white); }
.zigzag{ display:flex; flex-direction:column; gap:110px; margin-top:20px; }
.zz-row{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.zz-row.reverse .zz-media{ order:2; }
.zz-row.reverse .zz-text{ order:1; }
.zz-media{ position:relative; border-radius:20px; overflow:hidden; aspect-ratio:4/3.2; background:var(--off-white); }
.zz-media img{ width:100%; height:100%; object-fit:cover; filter:grayscale(15%); transition:transform .9s var(--ease-soft); }
.zz-row:hover .zz-media img{ transform:scale(1.05); }
.zz-text .zz-num{ font-family:var(--f-body); font-size:12px; font-weight:700; color:var(--orange); letter-spacing:.14em; text-transform:uppercase; }
.zz-text h3{ margin:14px 0 18px; font-size:clamp(28px,3.4vw,42px); }
.zz-text p{ color:var(--grey-dark); font-size:15.5px; max-width:42ch; margin-bottom:22px; }
@media (max-width:800px){
  .zz-row, .zz-row.reverse{ grid-template-columns:1fr; gap:28px; }
  .zz-row.reverse .zz-media, .zz-row .zz-media{ order:1; }
  .zz-row.reverse .zz-text, .zz-row .zz-text{ order:2; }
  .zigzag{ gap:60px; }
}

/* ==========================================================================
   PROMO BANDS — full-bleed, Apple-product-intro style
   ========================================================================== */
.promo-band{ position:relative; min-height:640px; display:flex; align-items:center; overflow:hidden; }
@media (max-width:640px){ .promo-band{ min-height:440px; } }
.promo-band img.bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:grayscale(30%) brightness(.6); }
.promo-band::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.6)); }
.promo-inner{ position:relative; z-index:2; text-align:center; width:100%; }
.promo-tag{
  font-family:var(--f-body); font-size:11.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--white); background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.35); display:inline-block;
  padding:8px 18px; border-radius:100px; margin-bottom:24px; backdrop-filter:blur(6px);
}
.promo-band h2{ color:var(--white); }
.promo-band .lede{ color:#EDEDEF; margin:20px auto 34px; text-align:center; }

/* ==========================================================================
   ARTISTS
   ========================================================================== */
.artists{ background:var(--off-white); }
.artist-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:10px; }
.artist-card{ position:relative; border-radius:16px; overflow:hidden; aspect-ratio:3/4; }
.artist-card img{ width:100%; height:100%; object-fit:cover; filter:grayscale(20%); transition:transform .8s var(--ease-soft); }
.artist-card:hover img{ transform:scale(1.06); }
.artist-card::after{ content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 50%); }
.artist-info{ position:absolute; left:18px; right:18px; bottom:18px; z-index:2; }
.artist-info .role{ font-family:var(--f-body); font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); }
.artist-info h3{ color:var(--white); margin-top:6px; font-size:19px; }
@media (max-width:900px){ .artist-grid{ grid-template-columns:repeat(2,1fr); } }

/* ==========================================================================
   GALLERY — draggable horizontal carousel
   ========================================================================== */
.gallery{ background:var(--white); overflow:hidden; }
.gallery-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.gc-controls{ display:flex; gap:12px; margin-bottom:6px; }
.gc-arrow{
  width:52px; height:52px; border-radius:50%; border:1.5px solid var(--line); background:var(--white);
  display:flex; align-items:center; justify-content:center; color:var(--ink);
  transition:background .3s, border-color .3s, color .3s, transform .2s;
}
.gc-arrow:hover{ background:var(--ink); border-color:var(--ink); color:var(--white); }
.gc-arrow:active{ transform:scale(.94); }
.gc-arrow[disabled]{ opacity:.35; pointer-events:none; }
.gc-arrow svg{ width:18px; height:18px; }

.gallery-carousel{ margin-top:44px; cursor:grab; }
.gallery-carousel.is-dragging{ cursor:grabbing; }
.gc-track{
  display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x proximity;
  scroll-padding-left:var(--edge);
  padding:4px var(--edge) 26px; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.gc-track::-webkit-scrollbar{ display:none; }
.gc-card{
  flex:0 0 auto; width:min(340px, 74vw); aspect-ratio:3/4; margin:0; border-radius:18px; overflow:hidden;
  position:relative; scroll-snap-align:start; cursor:pointer; background:var(--off-white);
}
.gc-card img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease-soft); pointer-events:none; user-select:none; -webkit-user-drag:none; }
.gc-card:hover img{ transform:scale(1.07); }
.gc-card::after{ content:'\2295'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:26px; color:var(--white); opacity:0; background:rgba(0,0,0,0); transition:opacity .4s, background .4s; }
.gc-card:hover::after{ opacity:1; background:rgba(0,0,0,.3); }

.gc-progress{ height:2px; background:var(--line); border-radius:2px; margin-top:6px; overflow:hidden; }
.gc-progress-bar{ height:100%; width:20%; background:var(--orange); border-radius:2px; transition:transform .25s var(--ease-soft), width .25s var(--ease-soft); transform-origin:left; }
@media (max-width:640px){ .gc-controls{ display:none; } }

.lightbox{
  position:fixed; inset:0; z-index:200; background:rgba(10,10,10,.96);
  display:flex; align-items:center; justify-content:center; padding:40px;
  opacity:0; pointer-events:none; transition:opacity .35s var(--ease-soft);
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:min(900px,90vw); max-height:82vh; object-fit:contain; border-radius:8px; }
.lightbox-close{
  position:absolute; top:28px; right:32px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.3); color:var(--white);
  width:42px; height:42px; border-radius:50%; font-size:18px; display:flex; align-items:center; justify-content:center;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews{ background:var(--off-white); }
.rev-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:60px; }
@media (max-width:640px){ .rev-stats{ grid-template-columns:1fr; gap:14px; margin-bottom:44px; } }
.rev-stat{ background:var(--white); border-radius:16px; padding:32px; text-align:center; }
.rev-stat b{ display:block; font-family:var(--f-display); font-weight:400; font-size:34px; color:var(--ink); }
.rev-stat > span{ font-family:var(--f-body); font-size:10.5px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--grey); }

.testi-wrap{ position:relative; max-width:760px; margin:0 auto; text-align:center; min-height:220px; }
.testi{ position:absolute; inset:0; opacity:0; transform:translateY(14px); transition:opacity .6s var(--ease-soft), transform .6s var(--ease-soft); pointer-events:none; }
.testi.is-active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
.testi p{ font-size:clamp(18px,2vw,22px); color:var(--ink); line-height:1.55; font-weight:500; }
.testi .who{ margin-top:22px; font-family:var(--f-body); font-size:11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); }
.testi-nav{ display:flex; justify-content:center; gap:10px; margin-top:36px; }
.testi-dot{ width:8px; height:8px; border-radius:50%; border:1px solid var(--line); background:transparent; padding:0; }
.testi-dot.is-active{ background:var(--orange); border-color:var(--orange); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ background:var(--white); }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; }
.contact-info .row{ display:flex; gap:16px; padding:19px 0; border-bottom:1px solid var(--line); }
.contact-info .row svg{ width:20px; height:20px; color:var(--orange); flex-shrink:0; margin-top:2px; }
.contact-info .row b{ display:block; font-family:var(--f-body); font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--grey); margin-bottom:6px; }
.contact-info .row a, .contact-info .row span{ font-size:15px; color:var(--ink); }
.social-row{ display:flex; gap:12px; margin-top:26px; }
.social-row a{ width:40px; height:40px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:border-color .3s, transform .3s, background .3s; }
.social-row a:hover{ border-color:var(--orange); background:var(--orange); color:var(--white); transform:translateY(-3px); }
.social-row svg{ width:16px; height:16px; }

.form-field{ margin-bottom:20px; }
.form-field label{ display:block; font-family:var(--f-body); font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--grey); margin-bottom:8px; }
.form-field input, .form-field textarea{
  width:100%; background:var(--off-white); border:1px solid transparent; color:var(--ink);
  padding:15px 16px; border-radius:10px; font-size:14.5px; transition:border-color .3s, background .3s;
}
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--orange); background:var(--white); }
.form-field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:12px; color:var(--grey); margin-top:14px; }

.map-wrap{ margin-top:80px; border-radius:18px; overflow:hidden; filter:grayscale(60%) contrast(1.05); }
.map-wrap iframe{ width:100%; height:340px; border:0; display:block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer{ background:var(--black); padding:70px 0 30px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:46px; border-bottom:1px solid var(--line-w); }
.foot-brand .brand{ margin-bottom:16px; }
.foot-brand .brand-text{ color:var(--white) !important; }
.foot-brand p{ color:var(--grey); font-size:13.5px; max-width:32ch; }
.foot-col h4{ font-family:var(--f-body); font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--orange); margin-bottom:16px; }
.foot-col ul li{ margin-bottom:10px; }
.foot-col a{ color:#C9C9CE; font-size:14px; transition:color .3s; }
.foot-col a:hover{ color:var(--white); }
.foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; flex-wrap:wrap; gap:14px; }
.foot-bottom span{ font-size:12px; color:var(--grey); }
@media (max-width:800px){ .foot-grid{ grid-template-columns:1fr 1fr; } .about-grid, .contact-grid{ grid-template-columns:1fr; } }
@media (max-width:560px){ .foot-grid{ grid-template-columns:1fr; gap:36px; } }

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.floating-actions{ position:fixed; bottom:26px; right:26px; z-index:90; display:flex; flex-direction:column; gap:12px; }
.fab{ width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px rgba(0,0,0,.28); transition:transform .3s var(--ease-soft); }
.fab:hover{ transform:translateY(-4px) scale(1.05); }
.fab.whatsapp{ background:#25D366; }
.fab.call{ background:var(--orange); }
.fab svg{ width:22px; height:22px; color:#fff; }
@media (max-width:640px){
  .floating-actions{ bottom:104px; right:16px; gap:10px; }
  .fab{ width:46px; height:46px; }
  .fab svg{ width:19px; height:19px; }
}

/* ==========================================================================
   INNER PAGE HERO (Solarian / Training)
   ========================================================================== */
.page-hero{
  position:relative; padding:190px 0 110px; text-align:center; overflow:hidden;
  background:var(--black);
}
.page-hero img.bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:grayscale(40%) brightness(.42); }
.page-hero .container{ position:relative; z-index:2; }
.page-hero .eyebrow{ justify-content:center; }
.page-hero h1{ margin:0 auto; text-align:center; max-width:18ch; }
.page-hero .lede{ margin:22px auto 0; text-align:center; color:#EDEDEF; }
.breadcrumb{ font-family:var(--f-body); font-size:11.5px; font-weight:600; color:#C9C9CE; margin-bottom:22px; }
.breadcrumb a{ color:var(--orange); }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline{ position:relative; margin-top:20px; }
.timeline::before{ content:''; position:absolute; left:29px; top:12px; bottom:12px; width:1px; background:var(--line); }
.t-step{ display:grid; grid-template-columns:60px 1fr; gap:26px; padding:30px 0; position:relative; }
.t-step .t-num{
  width:60px; height:60px; border-radius:50%; border:2px solid var(--orange); color:var(--orange);
  font-family:var(--f-display); font-weight:400; font-size:18px; display:flex; align-items:center; justify-content:center;
  background:var(--white); position:relative; z-index:2; flex-shrink:0;
}
.t-step h3{ margin-bottom:8px; }
.t-step p{ color:var(--grey-dark); max-width:60ch; }

/* ==========================================================================
   TIER / PERK CARDS (Solarian)
   ========================================================================== */
.tier-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:20px; }
.tier-card{ border-radius:18px; padding:38px 30px; background:var(--off-white); transition:transform .35s var(--ease-soft), box-shadow .35s; }
.tier-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,.08); }
.tier-card.featured{ background:var(--ink); }
.tier-card.featured *{ color:var(--white); }
.tier-card.featured .tier-name{ color:var(--orange); }
.tier-card.featured ul li::before{ color:var(--orange); }
.tier-name{ font-family:var(--f-body); font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--orange); }
.tier-card h3{ margin:14px 0 20px; }
.tier-card ul li{ position:relative; padding-left:20px; margin-bottom:12px; font-size:14px; color:var(--grey-dark); }
.tier-card ul li::before{ content:'—'; position:absolute; left:0; top:0; color:var(--ink); font-size:13px; }
@media (max-width:900px){ .tier-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   MODULES (Training)
   ========================================================================== */
.module-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:20px; }
.module-card{ background:var(--off-white); border-radius:16px; padding:34px; transition:transform .35s var(--ease-soft); }
.module-card:hover{ transform:translateY(-4px); }
.module-card .mod-tag{ font-family:var(--f-body); font-size:10px; font-weight:700; letter-spacing:.1em; color:var(--orange); text-transform:uppercase; }
.module-card h3{ margin:12px 0 10px; }
.module-card p{ color:var(--grey-dark); font-size:14.5px; }
@media (max-width:800px){ .module-grid{ grid-template-columns:1fr; } }

.included-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:20px; }
.included-card{ text-align:center; padding:36px 24px; background:var(--white); border-radius:16px; border:1px solid var(--line); }
.included-card svg{ width:28px; height:28px; color:var(--orange); margin:0 auto 18px; }
.included-card h3{ font-size:18px; margin-bottom:8px; }
.included-card p{ font-size:13.5px; color:var(--grey-dark); }
@media (max-width:800px){ .included-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq{ max-width:800px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:none; color:var(--ink); text-align:left;
  padding:26px 0; display:flex; justify-content:space-between; align-items:center; gap:20px;
  font-family:var(--f-display); font-weight:400; text-transform:uppercase; font-size:17px;
}
.faq-q .plus{ font-family:var(--f-body); font-weight:400; font-size:22px; color:var(--orange); transition:transform .35s var(--ease-soft); flex-shrink:0; }
.faq-item.is-open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease-soft); }
.faq-a p{ padding-bottom:26px; color:var(--grey-dark); max-width:65ch; }

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip{ background:var(--ink); color:var(--white); text-align:center; padding:100px 0; }
.cta-strip h2{ color:var(--white); }
.cta-strip .lede{ color:#D2D2D7; margin:16px auto 34px; text-align:center; }

/* ==========================================================================
   AOS overrides — keep it subtle & premium
   ========================================================================== */
[data-aos]{ transition-timing-function:var(--ease-soft) !important; }
