/* ============================================================
   VALHALLA CAPITAL — style.css
   Corvus Black · 24k gold · ivory. Tier-1 institutional.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.4vw, 3.25rem);
  --text-3xl: clamp(2.4rem, 1.2rem + 4vw, 4.75rem);
  --text-hero: clamp(2.75rem, 0.8rem + 6.5vw, 7rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;    --space-40: 10rem;

  /* Colors — Corvus Black system */
  --corvus: #1C1C1C;
  --corvus-deep: #141414;
  --corvus-soft: #232323;
  --corvus-raised: #262523;

  --gold: #DEA879;          /* Giza gold — primary accent */
  --gold-bright: #F0D9A8;
  --gold-deep: #B8860B;
  --gold-line: linear-gradient(90deg, #8a6410 0%, #B8860B 22%, #F0D9A8 50%, #B8860B 78%, #8a6410 100%);
  --gold-text: linear-gradient(100deg, #B8860B 0%, #DEA879 45%, #F0D9A8 100%);
  --gold-text-shimmer: linear-gradient(100deg, #B8860B 0%, #DEA879 30%, #F7E8C4 50%, #DEA879 70%, #B8860B 100%);

  --ivory: #F5F1E8;         /* body text */
  --ivory-muted: #b9b3a6;
  --ivory-faint: #7c776d;

  --hairline: rgba(222, 168, 121, 0.22);
  --hairline-soft: rgba(222, 168, 121, 0.12);

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --content-narrow: 640px;
  --content-default: 900px;
  --content-wide: 1200px;
  --gutter: clamp(1.25rem, 5vw, 5rem);

  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ivory);
  background-color: var(--corvus);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul[role='list'] { list-style: none; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
  letter-spacing: 0.005em;
}
p { text-wrap: pretty; }

::selection { background: rgba(222, 168, 121, 0.28); color: var(--ivory); }

:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__dust { display: none !important; }
  .gold-shimmer { background: var(--gold-text); background-clip: text; -webkit-background-clip: text; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Utility ---------- */
.wrap { width: 100%; max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--content-narrow); }
.default { max-width: var(--content-default); }

.gold { color: var(--gold); }
.gold-grad {
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Slow metallic sheen sweep for gold text (tagline, key lines) */
.gold-shimmer {
  background: var(--gold-text-shimmer);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-sheen 7s ease-in-out infinite;
}
@keyframes gold-sheen {
  0%   { background-position: 120% 0; }
  50%  { background-position: -20% 0; }
  100% { background-position: 120% 0; }
}
/* Shimmer on gold hairline rules */
.lockup__rule, .hairline {
  background-size: 220% 100%;
  animation: line-sheen 8s ease-in-out infinite;
}
@keyframes line-sheen {
  0%   { background-position: 0% 0; }
  50%  { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--gold);
}

.hairline {
  border: 0;
  height: 1px;
  background: var(--gold-line);
  opacity: 0.5;
  width: 100%;
}
.hairline--short { max-width: 88px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: rgba(18, 18, 18, 0.92);
  border-bottom-color: var(--hairline-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 76px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }

/* ---------- Typographic lockup ---------- */
.lockup {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--ivory);
  display: inline-flex;
  line-height: 1;
}
.lockup__valhalla, .lockup__capital, .lockup__sub { display: block; }
.lockup__rule {
  display: block;
  height: 1px;
  background: var(--gold-line);
  background-size: 200% 100%;
}

/* Compact — single line for nav */
.lockup--compact {
  align-items: center;
  gap: 0.62em;
  white-space: nowrap;
}
.lockup--compact .lockup__valhalla {
  font-size: 1.12rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.lockup--compact .lockup__capital {
  font-size: 1.12rem;
  letter-spacing: 0.34em;
  font-weight: 400;
  color: var(--ivory-muted);
}
.lockup--compact .lockup__rule {
  width: 22px;
  flex-shrink: 0;
  opacity: 0.9;
}
.brand:hover .lockup--compact .lockup__capital { color: var(--gold); }

/* Stacked — hero + footer */
.lockup--stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.lockup--stacked .lockup__valhalla {
  font-weight: 500;
  letter-spacing: 0.06em;
}
.lockup--stacked .lockup__capital {
  font-weight: 400;
  color: var(--ivory-muted);
}
.lockup--stacked .lockup__rule {
  opacity: 0.85;
}
.lockup--stacked .lockup__sub {
  font-family: var(--font-display);
  text-transform: none;
  font-weight: 600;
  color: var(--ivory);
}

/* Hero lockup sizing */
.lockup--hero .lockup__valhalla { font-size: clamp(2.6rem, 1rem + 6vw, 6rem); }
.lockup--hero .lockup__capital {
  font-size: clamp(1.15rem, 0.5rem + 2.4vw, 2.35rem);
  letter-spacing: clamp(0.2em, 0.05em + 1.2vw, 0.5em);
  margin-top: 0.15em;
}
.lockup--hero .lockup__rule {
  width: min(100%, 22em);
  margin: 0.7em auto;
}
.lockup--hero .lockup__sub {
  font-size: clamp(1.1rem, 0.6rem + 1.6vw, 1.9rem);
  letter-spacing: 0.01em;
}

/* Footer lockup sizing */
.lockup--footer { align-items: flex-start; text-align: left; }
.lockup--footer .lockup__valhalla { font-size: 1.5rem; letter-spacing: 0.05em; }
.lockup--footer .lockup__capital { font-size: 0.78rem; letter-spacing: 0.42em; margin-top: 0.28em; }
.lockup--footer .lockup__rule { width: 100%; max-width: 220px; margin: 0.7em 0; }
.lockup--footer .lockup__sub { font-size: 0.95rem; font-weight: 600; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.75rem);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ivory-muted);
  font-weight: 500;
  position: relative;
  padding-block: 0.25rem;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold-line);
  background-size: 220% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  color: var(--ivory);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.nav-toggle:hover { color: var(--gold); }
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile nav */
@media (max-width: 1140px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--hairline-soft);
    padding: var(--space-4) var(--gutter) var(--space-8);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--hairline-soft); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a {
    display: block;
    padding-block: var(--space-4);
    font-size: var(--text-sm);
    letter-spacing: 0.14em;
  }
  .nav-links a[aria-current="page"]::after { display: none; }
}

/* ---------- Sections ---------- */
main { display: block; }
.section {
  padding-block: clamp(var(--space-20), 12vw, var(--space-40));
}
.section--tight { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 30% 40%, rgba(20,20,20,0.35) 0%, rgba(20,20,20,0.82) 70%, var(--corvus) 100%),
    linear-gradient(to bottom, rgba(20,20,20,0.4), var(--corvus));
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero__lockup { margin: 0 0 var(--space-8); font-weight: 400; }
.hero__tag {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  margin-bottom: var(--space-10);
  letter-spacing: 0.02em;
}
.hero__lede {
  max-width: 56ch;
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--ivory-muted);
  font-weight: 300;
}
/* Hero gold dust / vignette depth */
.hero__dust {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 32%, rgba(240,217,168,0.55), transparent 60%),
    radial-gradient(1px 1px at 72% 24%, rgba(222,168,121,0.5), transparent 60%),
    radial-gradient(1.2px 1.2px at 44% 68%, rgba(240,217,168,0.4), transparent 60%),
    radial-gradient(1px 1px at 86% 60%, rgba(222,168,121,0.45), transparent 60%),
    radial-gradient(1.4px 1.4px at 28% 82%, rgba(240,217,168,0.35), transparent 60%),
    radial-gradient(1px 1px at 60% 44%, rgba(240,217,168,0.4), transparent 60%);
  opacity: 0.7;
  animation: dust-drift 18s ease-in-out infinite alternate;
}
.hero__dust::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 45%, transparent 55%, rgba(12,12,12,0.55) 100%);
}
@keyframes dust-drift {
  from { transform: translateY(0) translateX(0); opacity: 0.55; }
  to   { transform: translateY(-14px) translateX(8px); opacity: 0.8; }
}

/* Interior page hero — faint marble backdrop */
.page-hero {
  position: relative;
  padding-top: calc(76px + clamp(var(--space-16), 10vw, var(--space-32)));
  padding-bottom: clamp(var(--space-12), 7vw, var(--space-20));
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url(../img/hero-marble.png);
  background-size: cover;
  background-position: center top;
  opacity: 0.14;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 92%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 92%);
  pointer-events: none;
}
.page-hero > .wrap { position: relative; z-index: 1; }

/* Reusable faint marble section background + gold divider */
.marble-band {
  position: relative;
  overflow: hidden;
}
.marble-band::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url(../img/hero-marble.png);
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, rgba(0,0,0,0.85), transparent 78%);
  mask-image: radial-gradient(120% 100% at 50% 50%, rgba(0,0,0,0.85), transparent 78%);
  pointer-events: none;
}
.marble-band > .wrap { position: relative; z-index: 1; }
.marble-divider {
  border: 0; height: 1px; width: 100%;
  background: var(--gold-line);
  background-size: 220% 100%;
  opacity: 0.55;
  margin-block: clamp(var(--space-12), 7vw, var(--space-24));
  animation: line-sheen 8s ease-in-out infinite;
}
.page-hero .label { margin-bottom: var(--space-6); display: inline-block; }
.page-hero h1 {
  font-size: var(--text-3xl);
  letter-spacing: 0.03em;
  max-width: 20ch;
}
.page-hero__sub {
  margin-top: var(--space-6);
  max-width: 56ch;
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--ivory-muted);
}

/* ---------- Prose ---------- */
.prose p {
  font-size: var(--text-lg);
  line-height: 1.75;
  font-weight: 300;
  max-width: 62ch;
  color: var(--ivory);
  margin-bottom: var(--space-8);
}
.prose p:last-child { margin-bottom: 0; }
.prose p.small { font-size: var(--text-base); color: var(--ivory-muted); }

.lead {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.25;
  font-weight: 400;
  max-width: 22ch;
}

/* ---------- Statement blocks (home) ---------- */
.statements {
  display: grid;
  gap: 1px;
  background: var(--hairline-soft);
  border-block: 1px solid var(--hairline-soft);
}
@media (min-width: 880px) { .statements { grid-template-columns: repeat(3, 1fr); } }
.statement {
  background: var(--corvus);
  padding: clamp(var(--space-8), 4vw, var(--space-16)) clamp(var(--space-6), 3vw, var(--space-10));
}
.statement h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  color: var(--ivory);
}
.statement p {
  font-size: var(--text-base);
  color: var(--ivory-muted);
  font-weight: 300;
  max-width: 34ch;
}

/* ---------- Two-column feature ---------- */
.feature {
  display: grid;
  gap: clamp(var(--space-8), 5vw, var(--space-20));
  align-items: start;
}
@media (min-width: 900px) { .feature { grid-template-columns: 0.9fr 1.1fr; } }
.feature__aside .label { display: block; margin-bottom: var(--space-5); }
.feature__aside h2 { font-size: var(--text-2xl); letter-spacing: 0.02em; }

/* ---------- Pillars (trinity) ---------- */
.pillars { display: grid; gap: var(--space-8); }
@media (min-width: 820px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  border: 1px solid var(--hairline-soft);
  padding: clamp(var(--space-8), 3vw, var(--space-12));
  position: relative;
}
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--gold-line);
}
.pillar .n {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-4);
}
.pillar h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.pillar p { font-size: var(--text-base); color: var(--ivory-muted); font-weight: 300; }

/* ---------- Risk overlay list ---------- */
.overlay-list { list-style: none; display: grid; gap: var(--space-6); margin-top: var(--space-8); }
.overlay-list li {
  padding-left: var(--space-6);
  position: relative;
  font-size: var(--text-base);
  color: var(--ivory-muted);
  font-weight: 300;
  max-width: 60ch;
}
.overlay-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.7em;
  width: 14px; height: 1px;
  background: var(--gold-line);
}
.overlay-list strong { color: var(--ivory); font-weight: 500; }

/* ---------- Norwegian owner benefits ---------- */
.benefits { display: grid; gap: var(--space-8); margin-top: var(--space-10); }
@media (min-width: 820px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
.benefit { border-top: 1px solid var(--hairline); padding-top: var(--space-6); }
.benefit h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); color: var(--gold); }
.benefit p { font-size: var(--text-base); color: var(--ivory-muted); font-weight: 300; }

/* ---------- CTA / contact ---------- */
.contact { text-align: center; }
.contact .lead { margin-inline: auto; text-align: center; }
.mailto {
  display: inline-block;
  margin-top: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
  color: var(--gold);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: var(--space-2);
}
.mailto:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }

/* ---------- Office block ---------- */
.office__img {
  margin-block: clamp(var(--space-10), 6vw, var(--space-20));
  border: 1px solid var(--hairline-soft);
}
.office__img img { width: 100%; height: auto; }
.office h2 { font-size: var(--text-2xl); margin-bottom: var(--space-5); letter-spacing: 0.02em; }

/* ---------- Insights index ---------- */
.article-grid { display: grid; gap: 1px; background: var(--hairline-soft); border-block: 1px solid var(--hairline-soft); }
@media (min-width: 780px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
.article-card {
  background: var(--corvus);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  display: flex; flex-direction: column;
  min-height: 260px;
  transition: background var(--transition);
}
.article-card:hover { background: var(--corvus-soft); }
.article-card .meta {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: var(--space-5);
}
.article-card h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--ivory);
  flex: 0 0 auto;
}
.article-card:hover h2 { color: var(--gold-bright); }
.article-card p { font-size: var(--text-base); color: var(--ivory-muted); font-weight: 300; margin-bottom: var(--space-6); }
.article-card .more {
  margin-top: auto;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Article ---------- */
.article { }
.article__head { text-align: center; }
.article__kicker { margin-bottom: var(--space-6); }
.article h1 { font-size: var(--text-2xl); letter-spacing: 0.02em; max-width: 24ch; margin-inline: auto; }
.article__byline {
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.article__body { max-width: 62ch; margin-inline: auto; margin-top: clamp(var(--space-12), 6vw, var(--space-20)); }
.article__body p { font-size: var(--text-lg); line-height: 1.8; font-weight: 300; margin-bottom: var(--space-8); }
.article__body h2 { font-size: var(--text-xl); margin-block: var(--space-10) var(--space-5); letter-spacing: 0.02em; }
.article__body strong { color: var(--gold); font-weight: 500; }

/* FAQ */
.faq { max-width: 62ch; margin-inline: auto; }
.faq__item { border-top: 1px solid var(--hairline-soft); padding-block: var(--space-8); }
.faq__item h2 { font-size: var(--text-lg); color: var(--gold); margin-bottom: var(--space-4); }
.faq__item p { font-size: var(--text-base); color: var(--ivory-muted); font-weight: 300; }

/* related */
.related { display: grid; gap: var(--space-6); margin-top: var(--space-10); }
@media (min-width: 700px) { .related { grid-template-columns: repeat(2, 1fr); } }
.related a { border: 1px solid var(--hairline-soft); padding: var(--space-6); transition: border-color var(--transition); }
.related a:hover { border-color: var(--hairline); }
.related .meta { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-faint); margin-bottom: var(--space-3); }
.related h3 { font-size: var(--text-lg); color: var(--ivory); }
.related a:hover h3 { color: var(--gold); }

/* ---------- Legal ---------- */
.legal-text p { font-size: var(--text-base); line-height: 1.85; color: var(--ivory-muted); font-weight: 300; max-width: 74ch; }
.legal-text p strong { color: var(--ivory); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline-soft);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  margin-top: var(--space-16);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand { display: flex; align-items: center; gap: var(--space-3); }
.footer-brand svg { width: 30px; height: 30px; color: var(--gold); }
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
}
.footer-nav { display: flex; flex-wrap: wrap; gap: var(--space-5) var(--space-8); }
.footer-nav a {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}
.footer-nav a:hover { color: var(--gold); }
.footer-mail {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  letter-spacing: 0.03em;
}
.footer-mail:hover { color: var(--gold-bright); }
.footer-legal {
  border-top: 1px solid var(--hairline-soft);
  padding-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-6);
  justify-content: space-between;
}
.footer-legal p, .footer-legal a {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--ivory-faint);
  text-transform: uppercase;
}
.footer-legal a:hover { color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms cubic-bezier(0.16,1,0.3,1), transform 900ms cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 600px) {
  .brand .wordmark { font-size: 0.95rem; letter-spacing: 0.24em; }
  .brand svg { width: 30px; height: 30px; }
  .hero { min-height: 88vh; }
  .footer-top { flex-direction: column; gap: var(--space-8); }
}
@media (max-width: 380px) {
  .brand .wordmark { display: none; }
}
