/* ============================================================
   VARIABLES & RESET
   ============================================================ */

:root {
  --gold:  #C8A45A;
  --cyan:  #5AACB4;
  --terra: #C4725A;
  --cream: #FAF7F0;
  --dark:  #1C1A17;
  --mid:   #857E74;
  --border: rgba(28, 26, 23, 0.1);

  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
}

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

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

body {
  background: var(--cream);
  color: var(--dark);
  font: 300 1rem/1.5 var(--sans);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeIn      { from { opacity: 0; }                              to { opacity: 1; } }
@keyframes fadeUp      { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes lineGrow    { from { transform: scaleX(0); }                    to { transform: scaleX(1); } }
@keyframes float       { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-14px); } }
@keyframes floatDown   { 0%,100% { transform: translateY(0); }   50% { transform: translateY( 10px); } }
@keyframes spinSlow    { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ticker      { to { transform: translateX(-50%); } }

/* --- Hero shapes entry animations --- */
@keyframes shapeIn     { from { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
                         to   { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes dotIn       { from { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
                         to   { opacity: 0.7; transform: translate(-50%, -50%) scale(1); } }
@keyframes ringFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatAfterIn       { 0%,100% { transform: translate(-50%, -50%) translateY(0); }   50% { transform: translate(-50%, -50%) translateY(-14px); } }
@keyframes floatDownAfterIn   { 0%,100% { transform: translate(-50%, -50%) translateY(0); }   50% { transform: translate(-50%, -50%) translateY(10px); } }

.animate { opacity: 0; animation: fadeUp .9s cubic-bezier(.16,1,.3,1) forwards; }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .38s; }
.d4 { animation-delay: .54s; }


/* ============================================================
   NAV
   ============================================================ */

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 72px;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250,247,240,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  animation: fadeIn .7s ease forwards;
}

.nav-logo {
  font: 400 1.05rem/1 var(--serif);
  letter-spacing: .1em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 44px;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  inset: auto 0 -4px 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover        { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--dark);
  color: var(--cream);
  padding: 10px 22px;
  transition: background .3s, color .3s;
}
.nav-cta::after        { display: none; }
.nav-cta:hover         { background: var(--gold); color: var(--dark); }


/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 55% 45%;
}

.hero-left {
  padding: 92px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mid);
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: lineGrow .7s ease .15s backwards;
}

.hero-title {
  font: 300 clamp(3rem,4.8vw,5.2rem)/1.06 var(--serif);
}
.hero-title em     { color: var(--gold); }
.hero-title strong { font-weight: 600; }

.hero-sub  { max-width: 420px; font-size: .92rem; line-height: 1.85; color: var(--mid); }

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 6px; }


.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  font-size: .69rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  transition: background .3s, color .3s;
}
.btn-primary:hover { background: var(--dark); color: var(--cream); }


/* ============================================================
   HERO VISUAL
   ============================================================ */

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  background: var(--dark);
}


.visual-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(250,247,240,.06);
  opacity: 0;
}
.ring-sm { width: 400px; height: 400px; animation: ringFadeIn .8s ease 1.0s forwards, spinSlow 40s linear 1.8s infinite; }
.ring-md { width: 600px; height: 600px; animation: ringFadeIn .8s ease 1.2s forwards; }
.ring-lg { width: 760px; height: 760px; border-style: dashed; animation: ringFadeIn .8s ease 1.4s forwards; }

.visual-square {
  position: absolute;
  top: 50%; left: 50%;
  width: 260px; height: 260px;
  background: var(--gold);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  animation:
    shapeIn .8s cubic-bezier(.16,1,.3,1) .5s forwards,
    floatAfterIn 7s ease-in-out 1.4s infinite;
}


.visual-circle-svg {
  position: absolute;
  top: 32%; left: 60%;
  width: 170px; height: 170px;
  transform: translate(-50%, -50%);
  overflow: visible;
  opacity: 0;
  animation:
    ringFadeIn .1s ease .7s forwards,
    floatDownAfterIn 9s ease-in-out 1.6s infinite;
    z-index: 1;
}



.circle-stroke {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 170;
  stroke-dasharray: 534; 
  stroke-dashoffset: 534;
  opacity: .55;
  transform-origin: 85px 85px;
  transform: rotate(-90deg);
  animation: circleTrace .9s cubic-bezier(.4,0,.2,1) .75s forwards;
}

@keyframes circleTrace {
  to { stroke-dashoffset: 0; }
}
@keyframes circleFillIn {
  0%   { fill-opacity: 0; }
  60%  { fill-opacity: 0; }
  100% { fill-opacity: .55; }
}

.visual-dot {
  position: absolute;
  top: 70%; left: 36%;
  width: 100px; height: 100px;
  background: var(--terra);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.3);
  animation:
    dotIn .7s cubic-bezier(.16,1,.3,1) .65s forwards,
    floatAfterIn 6s ease-in-out 1.5s infinite;
}



/* ============================================================
   BAND
   ============================================================ */

.band {
  overflow: hidden;
  padding: 18px 0;
  background: var(--dark);
  border-top: 1px solid rgba(250,247,240,.06);
}

.band-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.band-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,247,240,.45);
  white-space: nowrap;
}

.band-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }


/* ============================================================
   FOOTER
   ============================================================ */

footer {
  padding: 36px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

.footer-logo { font: 400 .95rem/1 var(--serif); letter-spacing: .08em; }
.footer-copy { font-size: .8rem; letter-spacing: .08em; color: var(--mid); }

.footer-links { display: flex; gap: 28px; align-items: center; }
.footer-links a { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); transition: color .25s, opacity .25s; }
.footer-links a:hover { color: var(--dark); opacity: .7; }
.footer-links img { width: 18px; height: 18px; opacity: .45; transition: opacity .25s; filter: brightness(0); }
.footer-links a:hover img { opacity: .9; }