/* ============================================================
   ASASE CAPITAL — style.css
   Global tokens, reset, nav, footer
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Orbitron:wght@400;500;700;900&family=Josefin+Sans:wght@300;400;600;700&display=swap');

:root {
  --ink:        #1A1814;
  --charcoal:   #242018;
  --surface-dk: #2E2A22;
  --gold:       #C4963C;
  --gold-light: #E2B96A;
  --gold-deep:  #8A6C2A;
  --ivory:      #F5F0E8;
  --parchment:  #EDE5D8;
  --parchment2: #E4D8C8;
  --stone:      #8A8070;
  --stone-lt:   #B8B0A0;
  --forest:     #1E2A1E;
  --border-dk:  #2E2A22;
  --border-lt:  #D4C8B4;
  --serif:      'DM Serif Display', serif;
  --body:       'Libre Baskerville', Georgia, serif;
  --mono:       'Josefin Sans', sans-serif;
  --nav-h:      76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(245,240,232,0.97);
  border-bottom: 1px solid var(--border-lt);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); line-height: 1;
}
.nav-logo-sub {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); line-height: 1;
}

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--stone); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 700; }
.nav-cta {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory); background: var(--ink);
  padding: 16px 28px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-deep); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-dark {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory); background: var(--ink);
  padding: 14px 32px; display: inline-block;
  transition: background 0.25s;
}
.btn-dark:hover { background: var(--gold-deep); }

.btn-gold {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 14px 32px; display: inline-block;
  transition: background 0.25s;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: none;
  border: 1px solid var(--ink);
  padding: 13px 32px; display: inline-block;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

.btn-outline-light {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory); background: none;
  border: 1px solid rgba(245,240,232,0.5);
  padding: 13px 32px; display: inline-block;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-outline-light:hover {
  background: var(--ivory); color: var(--ink);
  border-color: var(--ivory);
}

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-deep);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.eyebrow::before {
  display: none;
}
.eyebrow {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold);
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow.light::before { background: var(--gold-light); }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LANDSCAPE IMAGE SECTIONS ────────────────────────────── */
.landscape-img {
  width: 100%; height: 480px;
  object-fit: cover; object-position: center;
  display: block;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border-dk);
  padding: 80px 52px 40px;
}

.footer-newsletter {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-newsletter-text { flex: 1; min-width: 200px; }
.footer-newsletter-text h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 6px;
}
.footer-newsletter-text h4 em {
  font-style: italic;
  color: var(--gold-light);
}
.footer-newsletter-text p {
  font-family: var(--body);
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}
.footer-newsletter-right { flex-shrink: 0; min-width: 320px; }
.footer-newsletter-form {
  display: flex;
  gap: 0;
  background: var(--border-dk);
  padding: 1px;
}
.footer-newsletter-input {
  flex: 1;
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--ivory);
  background: var(--charcoal);
  border: none;
  outline: none;
  min-width: 0;
}
.footer-newsletter-input::placeholder { color: var(--stone); }
.footer-newsletter-btn {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: none;
  padding: 13px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-newsletter-btn:hover { background: var(--gold-light); }
.footer-newsletter-success {
  display: none;
  font-family: var(--body);
  font-size: 13px;
  color: #6BCFA0;
  padding: 13px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-top: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dk);
}

.footer-brand p {
  font-family: var(--mono); font-size: 12px;
  color: var(--stone); line-height: 1.9;
  margin-top: 20px; max-width: 280px;
}

.footer-col-title {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-family: var(--mono); font-size: 12px;
  color: var(--stone); letter-spacing: 0.06em; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 32px;
}
.footer-copy {
  font-family: var(--mono); font-size: 12px;
  color: var(--stone); letter-spacing: 0.08em;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--mono); font-size: 11px;
  color: var(--stone); letter-spacing: 0.08em; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── UTILITY ─────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
