/* Genesis Core Design System
   Extracted from the-experience.html (gold standard)
   Brand Bible compliant — May 2026
   
   Usage: <link rel="stylesheet" href="genesis-core.css">
   Each page keeps its own unique layout CSS inline.
   This file provides the shared foundation.
   
   DO NOT modify the-experience.html inline styles to reference this file
   without coordinated migration. */

/* ================================================================
   RESET & BASE
   ================================================================ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}

/* ================================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================================ */
:root{
  /* Brand Colors */
  --navy:#1A1A2E;
  --deep:#1A1A2E;
  --cream:#FAF8F5;
  --warm:#F5F0E8;
  --body-text:#6B6B7B;
  --text:#2A2A2A;
  --muted:#555555;

  /* Accent Colors */
  --gold:#C5A258;
  --gold-light:#E8C36A;
  --vermilion:#E34234;
  --teal:#00cc88;
  --teal-start:#1A5276;
  --teal-mid:#2E86C1;
  --teal-end:#1ABC9C;
  --byzantium:#702963;

  /* Typography */
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Inter',-apple-system,sans-serif;
  --mono:'JetBrains Mono',monospace;

  /* Spacing */
  --nav-height:56px;
  --section-pad:clamp(4rem,10vw,8rem);
  --content-max:1280px;
}

/* ================================================================
   BASE TYPOGRAPHY & BODY
   ================================================================ */
body{
  font-family:var(--sans);
  background:var(--navy);
  color:var(--body-text);
  line-height:1.7;
  overflow-x:hidden;
  font-weight:300;
}

section{position:relative;margin:0 !important;padding-top:0}
section + section{margin:0 !important}

/* ================================================================
   SHARED ANIMATIONS
   ================================================================ */
@keyframes genesisFlow{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes pulse{
  0%,100%{opacity:0.3;transform:scale(1)}
  50%{opacity:0.7;transform:scale(1.03)}
}
@keyframes breathe{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.015)}
}
@keyframes floatUp{
  0%{opacity:0;transform:translateY(60px)}
  100%{opacity:1;transform:translateY(0)}
}
@keyframes shimmer{
  0%{background-position:-200% 0}
  100%{background-position:200% 0}
}
@keyframes fadeScale{
  0%{opacity:0;transform:scale(0.92)}
  100%{opacity:1;transform:scale(1)}
}
@keyframes goldenPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(197,162,88,0.4)}
  50%{box-shadow:0 0 40px 10px rgba(197,162,88,0.08)}
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.g{
  background:linear-gradient(135deg,#1A5276,#2E86C1,#1ABC9C,#48C9B0);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  background-size:200% 200%;
  animation:genesisFlow 6s ease infinite;
}

.anim{opacity:0;transform:translateY(50px)}

.eyebrow{
  font-size:.8rem;
  font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.5rem;
}

.parallax-img{transform:scale(1.15);transform-origin:center center}

/* ================================================================
   PROGRESS BAR (scroll indicator)
   ================================================================ */
.progress-bar{
  position:fixed;
  top:0;
  left:0;
  width:0%;
  height:3px;
  z-index:99999;
  background:linear-gradient(90deg,#E34234 0%,#C5A258 35%,#1ABC9C 65%,#2E86C1 100%);
  transition:width 0.1s linear;
  pointer-events:none;
}

/* ================================================================
   SECTION DOTS (right-side navigation)
   ================================================================ */
.section-dots{
  position:fixed;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  z-index:9998;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.section-dots .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  border:1px solid rgba(255,255,255,0.3);
  transition:all 0.4s ease;
  cursor:pointer;
}
.section-dots .dot.active{
  background:#C5A258;
  border-color:#C5A258;
  box-shadow:0 0 8px rgba(197,162,88,0.4);
  transform:scale(1.3);
}
.section-dots .dot:nth-child(1).active{background:#E34234;border-color:#E34234;box-shadow:0 0 8px rgba(227,66,52,0.4)}
.section-dots .dot:nth-child(2).active{background:#C5A258;border-color:#C5A258;box-shadow:0 0 8px rgba(197,162,88,0.4)}
.section-dots .dot:nth-child(3).active{background:#D4602A;border-color:#D4602A;box-shadow:0 0 8px rgba(212,96,42,0.4)}
.section-dots .dot:nth-child(4).active{background:#1ABC9C;border-color:#1ABC9C;box-shadow:0 0 8px rgba(26,188,156,0.4)}
.section-dots .dot:nth-child(5).active{background:#7B4EA0;border-color:#7B4EA0;box-shadow:0 0 8px rgba(123,78,160,0.4)}
.section-dots .dot:nth-child(6).active{background:#2E86C1;border-color:#2E86C1;box-shadow:0 0 8px rgba(46,134,193,0.4)}
.section-dots .dot:nth-child(7).active{background:#1ABC9C;border-color:#1ABC9C;box-shadow:0 0 8px rgba(26,188,156,0.4)}
.section-dots .dot:nth-child(8).active{background:#C5A258;border-color:#C5A258;box-shadow:0 0 8px rgba(197,162,88,0.4)}
.section-dots .dot:nth-child(9).active{background:#E34234;border-color:#E34234;box-shadow:0 0 8px rgba(227,66,52,0.4)}

/* ================================================================
   NAVIGATION
   ================================================================ */
nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:9999;
  background:rgba(26,26,46,.95);
  backdrop-filter:blur(14px);
  padding:14px 0;
  border-bottom:1px solid rgba(201,168,76,.15);
}
nav .nav-inner{
  max-width:var(--content-max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
}
nav .logo{
  font-family:var(--serif);
  font-size:2.4rem;
  font-weight:700;
  text-decoration:none;
}
nav .logo .day7{color:#fff;margin-right:.35em}
nav .links{display:flex;gap:18px;align-items:center}
nav .links a{
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:rgba(255,255,255,.65);
  text-decoration:none;
  transition:color .2s;
}
nav .links a:hover{color:#fff}
nav .links a.active{color:var(--gold)}
nav .links a.cta{
  color:var(--gold);
  border:1px solid var(--gold);
  padding:5px 14px;
  border-radius:4px;
  font-weight:700;
}
nav .links a.cta:hover{background:var(--gold);color:#000}

/* ================================================================
   FOOTER
   ================================================================ */
footer{background:var(--navy);padding:0}
footer .footer-brand{
  padding:3.5rem 3rem 1.5rem;
  text-align:center;
}
footer .footer-brand .brand-name{
  font-family:var(--serif);
  font-size:2.4rem;
  font-weight:700;
  display:block;
  margin-bottom:.5rem;
}
footer .footer-brand .brand-name .day7-text{color:rgba(255,255,255,.6)}
footer .footer-brand .tagline{
  font-size:1.05rem;
  color:rgba(255,255,255,.4);
}
footer .footer-quote{
  padding:2rem 3rem;
  text-align:center;
  max-width:800px;
  margin:0 auto;
}
footer .footer-quote blockquote{
  font-family:var(--serif);
  font-size:clamp(1.3rem,2.5vw,1.8rem);
  font-weight:300;
  color:#C5A258;
  font-style:italic;
  line-height:1.5;
  margin-bottom:.5rem;
}
footer .footer-quote cite{
  font-size:.8rem;
  color:rgba(255,255,255,.25);
  font-style:normal;
}
footer .footer-links{
  padding:2rem 3rem;
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}
footer .footer-links a{
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:rgba(255,255,255,.3);
  text-decoration:none;
  transition:color .2s;
}
footer .footer-links a:hover{color:rgba(255,255,255,.6)}
footer .footer-legal{
  padding:1.5rem 3rem 3rem;
  text-align:center;
}
footer .footer-legal p{
  font-size:.75rem;
  color:rgba(255,255,255,.2);
  letter-spacing:.5px;
}

/* ================================================================
   BREATHING SECTIONS (full-viewport photo with parallax)
   ================================================================ */
.breathing-section{
  position:relative;
  width:100%;
  height:100vh;
  display:flex;
  align-items:flex-end;
  padding:0 0 6rem;
  overflow:hidden;
  background:var(--navy);
}
.breathing-section img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.breathing-section .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(26,26,46,0.85) 0%,rgba(26,26,46,0.3) 50%,transparent 100%);
}
.breathing-section .breathing-content{
  position:relative;
  z-index:3;
  padding:0 clamp(2rem,5vw,5rem);
  max-width:900px;
}
.breathing-section .breathing-content h2{
  font-family:var(--serif);
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:300;
  color:#fff;
  margin-bottom:1rem;
}
.breathing-section .breathing-content p{
  font-size:clamp(1rem,1.5vw,1.2rem);
  color:rgba(255,255,255,.6);
  line-height:1.8;
  max-width:600px;
}

/* ================================================================
   BUTTONS & CTAs
   ================================================================ */
.btn{
  display:inline-block;
  font-family:var(--sans);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  text-decoration:none;
  padding:12px 28px;
  border-radius:4px;
  transition:all .3s cubic-bezier(.4,0,.2,1);
  cursor:pointer;
  border:none;
}
.btn-gold{
  color:#000;
  background:var(--gold);
  border:1px solid var(--gold);
}
.btn-gold:hover{
  background:transparent;
  color:var(--gold);
}
.btn-outline{
  color:var(--gold);
  background:transparent;
  border:1px solid var(--gold);
}
.btn-outline:hover{
  background:var(--gold);
  color:#000;
}
.btn-vermilion{
  color:#fff;
  background:var(--vermilion);
  border:1px solid var(--vermilion);
}
.btn-vermilion:hover{
  background:transparent;
  color:var(--vermilion);
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media(max-width:1024px){
  :root{--section-pad:clamp(3rem,8vw,6rem)}
}

@media(max-width:900px){
  .breathing-section{height:80vh;padding:0 0 4rem}
  .section-dots{right:12px;gap:8px}
  .section-dots .dot{width:6px;height:6px}
}

@media(max-width:600px){
  nav .links a:not(.cta){display:none}
  nav .logo{font-size:1.8rem}
  .section-dots{display:none}
  .breathing-section{height:70vh;padding:0 0 3rem}
  .breathing-section .breathing-content h2{font-size:clamp(1.6rem,6vw,2.5rem)}
}
