/* ══════════════════════════════════════════
   ROOT VARIABLES
══════════════════════════════════════════ */
:root {
  --bg:        #F5F5DC;          /* 60% — warm ivory */
  --gold:      #C6AA58;          /* 10% — antique gold */
  --dark:      #01311F;          /* 30% — deep forest */
  --dark-80:   rgba(1,49,31,.80);
  --dark-10:   rgba(1,49,31,.07);
  --gold-20:   rgba(198,170,88,.20);
  --white:     #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow Condensed', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
}



/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* ── Parallax BG layers ── */
.hero__bg-layer {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  pointer-events: none;
}

/* .hero__bg-layer--far {
  background-image:
    radial-gradient(circle at 70% 30%, rgba(198,170,88,.18) 0%, transparent 55%),
    radial-gradient(circle at 20% 75%, rgba(1,49,31,.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='.8' fill='%23C6AA58' fill-opacity='.25'/%3E%3C/svg%3E");
} */



.hero__bg-layer--far {
  background-image: url("/static/images/founder.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-layer--mid {
  background-image:
    linear-gradient(135deg, rgba(198,170,88,.06) 0%, transparent 60%);
}

.hero__bg-layer--grain {
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f5f5dce6 32%, transparent 80%);
  pointer-events: none;
}

/* ── Orbs ── */
/* .hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--1 {
  width: 340px; height: 340px;
  right: 12%; top: 10%;
  background: radial-gradient(circle, rgba(198,170,88,.22) 0%, transparent 70%);
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 260px; height: 260px;
  right: 30%; bottom: 8%;
  background: radial-gradient(circle, rgba(1,49,31,.10) 0%, transparent 70%);
  animation-delay: 4s;
} */
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1);   opacity:.7; }
  50%      { transform: translateY(-30px) scale(1.06); opacity:.9; }
}

/* ── Giant letter backdrop ── */
.hero__letters {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4vw;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
}
.hero__letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18rem, 32vw, 40rem);
  line-height: .85;
  color: rgba(255, 255, 255, 0.253);
  -webkit-text-stroke: 2px rgba(1,49,31,.08);
  letter-spacing: -.02em;
  will-change: transform;
  display: inline-block;
  transition: none;
}
.hero__letter:last-child {
  margin-left: .05em;
}

/* ── Content ── */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  /* max-width: 640px;
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: center;
  justify-self: center;
  flex-direction: column; */
}

/* Eyebrow */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s var(--ease-out-expo) .2s forwards;
}
.hero__eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero__eyebrow-text {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Headline */
.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6.5vw, 7rem);
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 24px;
  overflow: hidden;
}
.hero__headline-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: wordRise .9s var(--ease-out-expo) forwards;
}
.hero__headline-word[data-word="1"] { animation-delay: .35s; }
.hero__headline-word[data-word="2"] { animation-delay: .50s; margin: 0 .2em; }
.hero__headline-word[data-word="3"] { animation-delay: .65s; }

.hero__headline-em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* Description */
.hero__desc {
  font-size: clamp(.85rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(1,49,31,.65);
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s var(--ease-out-expo) .8s forwards;
}

/* CTA row */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s var(--ease-out-expo) .95s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .35s var(--ease-out-expo);
}

.hero__cta--primary {
  background: var(--dark);
  color: var(--bg);
  padding: 14px 28px;
  border: 1px solid var(--dark);
  position: relative;
  overflow: hidden;
}
.hero__cta--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
  z-index: 0;
}
.hero__cta--primary span,
.hero__cta--primary svg { position: relative; z-index: 1; }
.hero__cta--primary:hover::before { transform: scaleX(1); }
.hero__cta--primary:hover { color: var(--dark); border-color: var(--gold); }
.hero__cta-arrow {
  width: 18px; height: 18px;
  transition: transform .3s var(--ease-out-expo);
}
.hero__cta--primary:hover .hero__cta-arrow { transform: translateX(5px); }

.hero__cta--ghost {
  color: var(--dark);
  border-bottom: 1px solid rgba(1,49,31,.25);
  padding-bottom: 2px;
  transition: border-color .3s, color .3s;
}
.hero__cta--ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out-expo) 1.4s forwards;
}
.hero__scroll-text {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(1,49,31,.4);
  writing-mode: vertical-rl;
}
.hero__scroll-track {
  width: 1px;
  height: 50px;
  background: rgba(1,49,31,.12);
  position: relative;
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute;
  top: -6px;
  left: 0;
  width: 1px;
  height: 6px;
  background: var(--gold);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -6px; opacity: 1; }
  80%  { top: 100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wordRise {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   MESSAGE SECTION
══════════════════════════════════════════ */
.message {
  background: var(--bg);
  padding: clamp(80px, 12vw, 160px) 8vw;
  position: relative;
  overflow: hidden;
}
/* subtle top border */
.message::before {
  content: '';
  position: absolute;
  top: 0; left: 8vw; right: 8vw;
  height: 1px;
  background: linear-gradient(to right, var(--gold-20) 0%, rgba(198,170,88,.5) 40%, var(--gold-20) 100%);
}

.message__grid {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 0 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Column label */
.message__col-label {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: rgba(1,49,31,.25);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-top: 8px;
  align-self: start;
  text-transform: uppercase;
}

/* Body */
.message__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--dark);
  margin-bottom: clamp(36px, 5vw, 60px);
  overflow: hidden;
}

.message__reveal-wrap { overflow: hidden; }

.reveal-heading {
  transform: translateY(80px);
  opacity: 0;
  transition: transform 1s var(--ease-out-expo), opacity .8s ease;
}
.reveal-heading.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.message__paras { display: flex; flex-direction: column; gap: 28px; }

.message__p {
  font-size: clamp(.9rem, 1.05vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(1,49,31,.70);
  transform: translateY(40px);
  opacity: 0;
  transition: transform .9s var(--ease-out-expo), opacity .7s ease;
}
.message__p.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.message__p:nth-child(2) { transition-delay: .12s; }
.message__p:nth-child(3) { transition-delay: .24s; }

/* Signature */
.message__signature {
  margin-top: 56px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform .8s var(--ease-out-expo) .3s, opacity .7s ease .3s;
}
.message__signature.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.message__sig-line {
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}
.message__sig-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .02em;
}
.message__sig-title {
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* Accent column */
.message__accent-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
  gap: 14px;
}
.message__accent-bar {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
}
.message__accent-year {
  font-size: .65rem;
  letter-spacing: .2em;
  color: rgba(1,49,31,.3);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 700px) {
  .hero__letters { display: none; }
  .hero__bg-overlay { background: linear-gradient(to bottom, var(--bg) 50%, transparent 100%); }

  .message__grid {
    grid-template-columns: 1fr;
  }
  .message__col-label,
  .message__accent-col { display: none; }
  .hero__cta--primary {
  
  padding: 7px 8px;
  
}
}