/* ==========================================================================
   BANSHAVALI — apex landing design system
   A static, build-free premium site. Heritage · legacy · Nepali identity.
   Palette: olive / deep forest / warm beige / cream / stone / soft gold / charcoal
   ========================================================================== */

/* ----------------------------------------------------------------- Tokens */
:root {
  --forest: #21331f;
  --forest-2: #2f4a2b;
  --olive: #4b7a27;
  --olive-2: #5f8f38;
  --gold: #c79a3f;
  --gold-soft: #e3c479;
  --cream: #f6f1e7;
  --cream-2: #fbf7ee;
  --beige: #ece3d2;
  --sand: #e8dcc4;
  --ink: #1b1a16;
  --stone: #6b6557;
  --stone-2: #8c8576;
  --line: rgba(33, 51, 31, 0.12);
  --line-soft: rgba(33, 51, 31, 0.07);

  --bg: var(--cream);
  --paper: #fffdf8;

  --serif: "Fraunces", "Noto Serif Devanagari", Georgia, serif;
  --sans: "Inter", "Noto Serif Devanagari", ui-sans-serif, system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(27, 26, 22, 0.04), 0 4px 14px -8px rgba(27, 26, 22, 0.16);
  --shadow-md: 0 8px 30px -12px rgba(27, 26, 22, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(27, 26, 22, 0.45);
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1200px;
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--olive); color: #fff; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
}
.serif-ne { font-family: var(--serif); }
.muted { color: var(--stone); }

/* ----------------------------------------------------------- Atmosphere */
/* Film grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Mouse-follow warm glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px; z-index: 0; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(199, 154, 63, 0.16), rgba(199, 154, 63, 0) 65%);
  opacity: 0; transition: opacity 0.6s ease; will-change: transform;
}

/* --------------------------------------------------------------- Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; overflow: hidden; isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s ease;
}
.btn:active { transform: scale(0.97); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--forest); color: var(--cream-2); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(33, 51, 31, 0.6); }
.btn-primary::before { /* sheen */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(227, 196, 121, 0.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-ghost { background: rgba(255, 253, 248, 0.7); border-color: var(--line); color: var(--ink); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--olive); box-shadow: var(--shadow-sm); }
.btn-gold { background: linear-gradient(120deg, var(--gold), var(--gold-soft)); color: #3a2c08; box-shadow: 0 14px 34px -14px rgba(199, 154, 63, 0.7); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 16px; }

/* ------------------------------------------------------------------- Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246, 241, 231, 0.72);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px -24px rgba(27, 26, 22, 0.5);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .seal {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, var(--olive-2), var(--forest));
  color: var(--gold-soft); font-family: var(--serif); font-size: 22px; box-shadow: var(--shadow-sm);
}
.brand .word { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.brand .word small { display: block; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--stone-2); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative; padding: 9px 16px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--stone);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--forest); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 3px; height: 2px; border-radius: 2px;
  background: var(--gold);
}
.nav-links .btn { padding: 11px 22px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper); align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(246, 241, 231, 0.97); backdrop-filter: blur(16px); padding: 14px 24px 22px;
    border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; }
  .nav-links .btn { justify-content: center; margin-top: 6px; }
}

/* ------------------------------------------------------------------ Hero */
.hero { position: relative; padding: 168px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .rays {
  position: absolute; top: -30%; left: 50%; width: 140vw; height: 120vh; transform: translateX(-50%);
  background: conic-gradient(from 200deg at 50% 0%, rgba(199,154,63,0.10), rgba(199,154,63,0) 25%, rgba(75,122,39,0.08) 50%, rgba(199,154,63,0) 75%, rgba(199,154,63,0.10));
  filter: blur(10px); opacity: 0.8;
}
.hero-bg .mountains { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; opacity: 0.5; }
.hero-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; will-change: transform;
}
.hero-bg .blob.a { width: 460px; height: 460px; top: 4%; left: -8%; background: radial-gradient(circle, rgba(95,143,56,0.5), transparent 70%); }
.hero-bg .blob.b { width: 420px; height: 420px; top: 18%; right: -6%; background: radial-gradient(circle, rgba(227,196,121,0.45), transparent 70%); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 { font-size: clamp(44px, 6.4vw, 88px); font-weight: 460; margin-top: 22px; }
.hero h1 .ne { display: block; font-size: 0.52em; color: var(--forest-2); margin-top: 12px; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--olive); }
.hero .lede { font-size: clamp(17px, 2vw, 20px); color: var(--stone); margin-top: 26px; max-width: 50ch; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; color: var(--stone-2); font-size: 13.5px; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-visual { position: relative; aspect-ratio: 1 / 1; }
.hero-visual .ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--line); }
.hero-tree { position: absolute; inset: 0; width: 100%; height: 100%; }
.float-card {
  position: absolute; z-index: 3; background: rgba(255, 253, 248, 0.82); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 16px; padding: 12px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; will-change: transform;
}
.float-card .av { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, #e6f0d8, #f6ead0); display: grid; place-items: center; font-family: var(--serif); color: var(--forest); font-weight: 600; }
.float-card .t { font-size: 13px; font-weight: 600; line-height: 1.2; }
.float-card .s { font-size: 11px; color: var(--stone-2); }
.float-card.one { top: 8%; left: -4%; } .float-card.two { bottom: 14%; right: -6%; } .float-card.three { bottom: 2%; left: 12%; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--stone-2); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-cue .bar { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); }

@media (max-width: 900px) {
  .hero { padding: 130px 0 50px; }
  .hero .container { grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { max-width: 360px; margin: 30px auto 0; }
  .float-card { display: none; }       /* decorative — avoid overlap on stacked layout */
  .scroll-cue { display: none; }
}

/* --------------------------------------------------------------- Marquee */
.marquee { border-block: 1px solid var(--line-soft); background: var(--cream-2); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 19px; color: var(--stone); display: inline-flex; align-items: center; gap: 56px; opacity: 0.8; }
.marquee-track span::after { content: "❋"; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------------------------------------------------------------- Sections */
.section { position: relative; padding: 110px 0; z-index: 2; }
.section.tight { padding: 80px 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 54px); margin-top: 14px; }
.section-head p { font-size: 18px; color: var(--stone); margin-top: 18px; }

/* Story (scroll storytelling) */
.story { position: relative; background: linear-gradient(180deg, var(--cream), #efe7d6 50%, var(--cream)); }
.story-sticky { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; overflow: hidden; }
.story-stage { position: relative; width: min(680px, 86vw); aspect-ratio: 1 / 1; }
.story-stage svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.story-captions { position: absolute; left: 50%; bottom: 8vh; transform: translateX(-50%); text-align: center; width: min(640px, 88vw); }
.story-caption { position: absolute; left: 0; right: 0; opacity: 0; }
.story-caption .step { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.story-caption h3 { font-size: clamp(26px, 4vw, 44px); margin-top: 10px; }
.story-spacer { height: 600vh; } /* drives the scroll timeline */

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(199,154,63,0.4); }
.feature .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, #e9f1dc, #f7ecd5); color: var(--forest); margin-bottom: 18px; }
.feature h3 { font-size: 22px; }
.feature p { color: var(--stone); margin-top: 10px; font-size: 15.5px; }
.feature .shine { position: absolute; inset: 0; background: radial-gradient(220px 220px at var(--mx, 50%) var(--my, 0%), rgba(199,154,63,0.10), transparent 70%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.feature:hover .shine { opacity: 1; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 26px 14px; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line); }
.stat .num { font-family: var(--serif); font-size: clamp(34px, 5vw, 52px); color: var(--forest); line-height: 1; }
.stat .lbl { margin-top: 10px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-2); }

/* ----------------------------------------------------- Directory (cards) */
.dir-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.dir-search { position: relative; flex: 1; min-width: 220px; max-width: 420px; }
.dir-search input { width: 100%; padding: 14px 16px 14px 44px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); font: inherit; font-size: 15px; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.dir-search input:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 4px rgba(75,122,39,0.12); }
.dir-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--stone-2); }
.dir-sort { padding: 13px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); font: inherit; font-size: 14px; }

.sites-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .sites-grid { grid-template-columns: 1fr; } }

.site-card {
  position: relative; display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; overflow: hidden; transform-style: preserve-3d; transition: box-shadow 0.5s var(--ease), border-color 0.4s ease;
  will-change: transform;
}
.site-card::before { /* animated gradient border on hover */
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px; pointer-events: none;
  background: linear-gradient(130deg, rgba(199,154,63,0.6), rgba(75,122,39,0.5), rgba(199,154,63,0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.4s ease;
}
.site-card:hover { box-shadow: var(--shadow-lg); }
.site-card:hover::before { opacity: 1; }
.site-card .glow { position: absolute; inset: 0; background: radial-gradient(260px 260px at var(--mx,50%) var(--my,50%), rgba(199,154,63,0.12), transparent 65%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.site-card:hover .glow { opacity: 1; }
.site-card .row { display: flex; align-items: center; gap: 16px; transform: translateZ(30px); }
.site-card .crest { width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0; display: grid; place-items: center; overflow: hidden; background: radial-gradient(120% 120% at 30% 20%, #eef4e2, #f7ead2); color: var(--forest); font-family: var(--serif); font-size: 26px; font-weight: 600; box-shadow: inset 0 0 0 1px rgba(33,51,31,0.06); }
.site-card .crest img { width: 100%; height: 100%; object-fit: cover; }
.site-card h3 { font-size: 23px; }
.site-card .ne { font-family: var(--serif); color: var(--forest-2); font-size: 15px; margin-top: 2px; }
.site-card .meta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; transform: translateZ(20px); }
.pill { font-size: 12px; font-weight: 600; color: var(--stone); background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; display: inline-flex; align-items: center; gap: 5px; }
.pill.gold { color: #6a4e12; background: #faf1da; border-color: #ecd9aa; }
.site-card .desc { color: var(--stone); font-size: 14.5px; margin-top: 14px; transform: translateZ(14px); }
.site-card .go { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--forest); transform: translateZ(24px); }
.site-card .go svg { transition: transform 0.4s var(--ease); }
.site-card:hover .go svg { transform: translateX(5px); }

/* Skeleton loaders */
.skeleton { position: relative; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.sk { background: #ece5d6; border-radius: 8px; }
.sk-line { height: 12px; margin-top: 10px; }
.shimmer::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }

.empty { text-align: center; padding: 70px 24px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--cream-2); color: var(--stone); }
.empty h3 { font-size: 26px; }
.empty p { margin-top: 8px; }

/* --------------------------------------------------------------- Timeline */
.timeline { position: relative; margin-top: 50px; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 4px; bottom: 4px; width: 2px; background: linear-gradient(var(--gold), var(--olive), transparent); }
.tl-item { position: relative; padding: 0 0 38px 26px; }
.tl-item::before { content: ""; position: absolute; left: -28px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: 2px solid var(--gold); }
.tl-item .yr { font-family: var(--serif); font-size: 14px; color: var(--gold); font-weight: 600; }
.tl-item h3 { font-size: 22px; margin-top: 4px; }
.tl-item p { color: var(--stone); margin-top: 6px; }

/* --------------------------------------------------------------------- FAQ */
.faq { max-width: 800px; margin: 46px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: 21px; color: var(--ink); }
.faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease; }
.faq-item.open .faq-q .pm { background: var(--forest); color: var(--cream); transform: rotate(135deg); }
.faq-a { overflow: hidden; height: 0; }
.faq-a-inner { padding: 0 0 24px; color: var(--stone); font-size: 16px; max-width: 64ch; }

/* ----------------------------------------------------------------- Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; }
.step-card .n { font-family: var(--serif); font-size: 40px; color: var(--sand); line-height: 1; }
.step-card h3 { font-size: 19px; margin-top: 10px; }
.step-card p { color: var(--stone); font-size: 14.5px; margin-top: 8px; }

/* -------------------------------------------------------------- Founder */
.founder { position: relative; background: var(--forest); color: var(--cream); border-radius: 30px; overflow: hidden; padding: 56px; }
.founder::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 360px at 100% 0%, rgba(199,154,63,0.22), transparent 60%); pointer-events: none; }
.founder .inner { position: relative; z-index: 2; display: grid; grid-template-columns: 150px 1fr; gap: 40px; align-items: center; }
@media (max-width: 720px) { .founder { padding: 36px 26px; } .founder .inner { grid-template-columns: 1fr; gap: 26px; text-align: center; } }
.founder .portrait { width: 150px; height: 150px; border-radius: 26px; background: radial-gradient(120% 120% at 30% 20%, var(--olive-2), var(--forest-2)); display: grid; place-items: center; font-family: var(--serif); font-size: 56px; color: var(--gold-soft); border: 1px solid rgba(227,196,121,0.4); margin: 0 auto; }
.founder .eyebrow { color: var(--gold-soft); }
.founder blockquote { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.35; margin: 14px 0 0; font-weight: 400; }
.founder .who { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; color: var(--gold-soft); font-size: 14px; }
.founder .who b { color: #fff; font-weight: 600; }
.founder .socials { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: inherit; }
.founder .socials a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(227,196,121,0.35); color: var(--cream); font-size: 13.5px; font-weight: 600; transition: background 0.3s ease, transform 0.3s ease; }
.founder .socials a:hover { background: rgba(227,196,121,0.16); transform: translateY(-2px); }

/* -------------------------------------------------------------- CTA band */
.cta-band { position: relative; text-align: center; padding: 120px 0; overflow: hidden; }
.cta-band h2 { font-size: clamp(34px, 5.6vw, 70px); max-width: 16ch; margin: 0 auto; }
.cta-band p { color: var(--stone); font-size: 19px; margin: 20px auto 0; max-width: 52ch; }
.cta-band .hero-actions { justify-content: center; }

/* --------------------------------------------------------------- Forms */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--stone); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); background: var(--cream-2);
  font: inherit; font-size: 15px; transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--olive); background: var(--paper); box-shadow: 0 0 0 4px rgba(75,122,39,0.10); }
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.notice { padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.notice.ok { background: #eaf4dc; color: var(--forest); border: 1px solid #cfe0ad; }
.notice.err { background: #fbe9e6; color: #9a3526; border: 1px solid #f1cabf; }
.notice.info { background: #f3eddd; color: #6a5420; border: 1px solid #e6d6ab; }

.btn-sm { padding: 9px 16px; font-size: 13px; }

/* Directory admin list */
.dir-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 12px; }
.dir-item .top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.dir-item .title { font-family: var(--serif); font-weight: 600; font-size: 18px; }
.dir-item .sub { font-size: 13px; margin-top: 2px; }

/* Reading progress + back-to-top */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 70; background: linear-gradient(90deg, var(--gold), var(--olive)); }

/* -------------------------------------------------------------- Footer */
.footer { position: relative; background: var(--forest); color: #cfd6c2; z-index: 2; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 10% 0%, rgba(199,154,63,0.16), transparent 60%); }
.footer .container { position: relative; z-index: 2; padding: 70px 24px 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-family: var(--serif); font-size: 19px; margin-bottom: 14px; }
.footer a { display: block; color: #c3cab6; margin-bottom: 8px; font-size: 14.5px; transition: color 0.25s ease, transform 0.25s ease; }
.footer a:hover { color: var(--gold-soft); transform: translateX(3px); }
.footer .brand .word { color: #fff; } .footer .brand .word small { color: var(--gold-soft); }
.footer .colophon { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: #9aa491; font-size: 13px; }

/* ---------------------------------------------------- Animation helpers */
/* Hidden until revealed by GSAP; only when JS is active and motion allowed. */
html.js .reveal { opacity: 0; }
html.js .reveal-up { opacity: 0; transform: translateY(28px); }
html.js .reveal-scale { opacity: 0; transform: scale(0.96); }
.is-in { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  html.js .reveal, html.js .reveal-up, html.js .reveal-scale { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .cursor-glow { display: none; }
}
