/* ─── tokens ───────────────────────────────────────────────────── */
:root {
  --ink: #0b1a14;
  --ink-2: #102218;
  --ink-3: #16291f;
  --paper: #f6f3ec;
  --paper-2: #ece6d9;
  --cream: #faf7f1;
  --green: #1f6b3f;
  --green-2: #2d8a55;
  --green-3: #4ea877;
  --gold: #c9a44c;
  --gold-2: #d4b870;
  --gold-3: #e8d29b;
  --line: rgba(11,26,20,.10);
  --line-on-dark: rgba(255,255,255,.10);
  --shadow-1: 0 1px 2px rgba(11,26,20,.06), 0 8px 24px rgba(11,26,20,.08);
  --shadow-2: 0 4px 12px rgba(11,26,20,.10), 0 32px 80px -16px rgba(11,26,20,.35);
  --shadow-deep: 0 40px 120px -20px rgba(0,0,0,.55), 0 8px 24px rgba(0,0,0,.25);
  --r: 14px;
  --r-lg: 22px;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ─── typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -.015em; line-height: 1.04; margin: 0; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-2);
  font-weight: 600;
}
.eyebrow.gold { color: var(--gold-2); }

/* ─── buttons ──────────────────────────────────────────────────── */
.primary, .ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: .01em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.primary {
  background: var(--ink); color: var(--cream);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 8px 18px -8px rgba(11,26,20,.5);
}
.primary:hover { background: var(--green); transform: translateY(-1px); }
.ghost { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.0); }
.ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(11,26,20,.25); }
.primary.lg, .ghost.lg { padding: 15px 24px; font-size: 15px; }
.primary.block, .ghost.block { display: flex; justify-content: center; width: 100%; }

/* On dark hero */
.hero .ghost { color: var(--cream); border-color: rgba(255,255,255,.25); }
.hero .ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.hero .primary { background: var(--cream); color: var(--ink); }
.hero .primary:hover { background: var(--gold-3); }

/* ─── nav ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, padding .35s ease, color .35s ease;
  color: var(--cream);
}
.nav.scrolled {
  background: rgba(11,26,20,.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 12px 40px -20px rgba(0,0,0,.5);
  padding: 12px clamp(20px, 4vw, 48px);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 21px; font-weight: 500; letter-spacing: -.01em;
}
.brand .logo { width: 30px; height: 30px; }
.brand-tld { color: var(--gold-2); font-style: italic; font-weight: 400; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; opacity: .85;
  position: relative; padding: 4px 0;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold-2);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ─── hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px clamp(20px, 4vw, 48px) 120px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: kenburns 24s infinite;
  will-change: transform, opacity;
}
.hero-bg .s1 {
  background-image: url("https://images.unsplash.com/photo-1693572709450-8c1be5b360c4?fm=jpg&q=82&w=2400&auto=format&fit=crop");
  animation-delay: 0s;
}
.hero-bg .s2 {
  background-image: url("https://images.unsplash.com/photo-1742498626135-67a7d3501eff?fm=jpg&q=82&w=2400&auto=format&fit=crop");
  animation-delay: 8s;
}
.hero-bg .s3 {
  background-image: url("https://images.unsplash.com/photo-1694636507260-8b2428e3b738?fm=jpg&q=82&w=2400&auto=format&fit=crop");
  animation-delay: 16s;
}
@keyframes kenburns {
  0%   { opacity: 0; transform: scale(1.06) translate3d(0,0,0); }
  6%   { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.14) translate3d(-1.2%, -0.8%, 0); }
  39%  { opacity: 0; transform: scale(1.16) translate3d(-1.4%, -1%, 0); }
  100% { opacity: 0; transform: scale(1.16) translate3d(-1.4%, -1%, 0); }
}
.vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(11,26,20,.15) 0%, rgba(11,26,20,.55) 55%, rgba(11,26,20,.85) 100%),
    linear-gradient(180deg, rgba(11,26,20,.55) 0%, rgba(11,26,20,.25) 30%, rgba(11,26,20,.65) 75%, rgba(11,26,20,.95) 100%);
}
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.7'/></svg>");
}

.hero-inner {
  position: relative; z-index: 1;
  width: min(1180px, 92vw); margin: 0 auto;
  max-width: 880px;
}
.hero .eyebrow { color: var(--gold-2); }
.hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  margin: 24px 0 28px;
  font-weight: 400;
  letter-spacing: -.025em;
}
.hero h1 em {
  color: var(--gold-3);
  font-weight: 300;
  font-style: italic;
}
.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 580px;
  opacity: .9;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }

.trust { display: flex; flex-direction: column; gap: 18px; }
.trust-row { display: flex; align-items: center; gap: 10px; font-size: 13px; opacity: .8; letter-spacing: .04em; }
.trust-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 4px rgba(212,184,112,.18); }
.trust-logos {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; opacity: .55;
  font-weight: 400;
}
.trust-logos span { letter-spacing: .01em; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px; border: 1px solid rgba(255,255,255,.35); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-hint span {
  width: 2px; height: 6px; background: var(--gold-2); border-radius: 1px;
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── sections common ─────────────────────────────────────────── */
section { padding: clamp(80px, 10vw, 140px) 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 16px 0 18px;
  font-weight: 400;
}
.section-head p { font-size: 18px; opacity: .75; max-width: 580px; margin: 0; }
.section-head.light { color: var(--cream); }
.section-head.light p { opacity: .72; }

/* ─── features ─────────────────────────────────────────────────── */
.features { background: var(--paper); border-top: 1px solid var(--line); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature {
  background: var(--paper);
  padding: 40px 36px;
  transition: background .3s ease, transform .3s ease;
}
.feature:hover { background: var(--cream); }
.ficon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(160deg, rgba(31,107,63,.12), rgba(212,184,112,.08));
  color: var(--green);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.ficon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 22px; margin: 0 0 8px; font-weight: 500; }
.feature p { margin: 0; opacity: .72; font-size: 15.5px; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ─── product (dark) ───────────────────────────────────────────── */
.product {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.product::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(212,184,112,.10), transparent 70%),
    radial-gradient(800px 500px at 0% 100%, rgba(46,138,85,.12), transparent 60%);
}
.mockup-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.mockup-stage.flip { grid-template-columns: 1fr 1.4fr; }
.mockup-stage.flip .window { order: 2; }
.mockup-stage.flip .mockup-caption { order: 1; }

.mockup-caption .eyebrow { color: var(--gold-2); }
.mockup-caption h3 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 14px 0 14px;
  font-weight: 400;
}
.mockup-caption p { opacity: .72; margin: 0; font-size: 16.5px; max-width: 380px; }

@media (max-width: 980px) {
  .mockup-stage, .mockup-stage.flip { grid-template-columns: 1fr; gap: 32px; }
  .mockup-stage.flip .window { order: 1; }
  .mockup-stage.flip .mockup-caption { order: 2; }
}

/* ─── window chrome (faux browser) ─────────────────────────────── */
.window {
  background: #fbfaf7;
  color: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-deep);
  transform: perspective(2000px) rotateX(2deg);
  transition: transform .6s ease;
}
.mockup-stage:hover .window { transform: perspective(2000px) rotateX(0); }
.window-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #eee9df, #e6dfd2);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.dotr { width: 11px; height: 11px; border-radius: 50%; }
.dotr.r { background: #ed6a5e; }
.dotr.y { background: #f5bf4f; }
.dotr.g { background: #62c554; }
.url {
  margin-left: 14px;
  font-size: 12px; color: rgba(11,26,20,.55);
  background: rgba(255,255,255,.7);
  padding: 4px 12px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.window-body { display: grid; }

/* ── Calendar mockup ── */
.window-body.cal { grid-template-columns: 220px 1fr; min-height: 480px; }
.side {
  background: #f3efe5; border-right: 1px solid rgba(0,0,0,.06);
  padding: 18px 14px; font-size: 13px;
}
.side-brand { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-size: 16px; margin-bottom: 24px; }
.side-section {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(11,26,20,.45); margin: 14px 0 8px; font-weight: 600;
}
.side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 8px; color: rgba(11,26,20,.78);
  margin: 1px 0;
}
.side-item.active { background: rgba(11,26,20,.06); color: var(--ink); font-weight: 500; }
.side-item .bg { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
.side-chip {
  display: inline-block; padding: 5px 11px; margin: 3px 4px 0 0;
  font-size: 12px; border: 1px solid rgba(0,0,0,.1); border-radius: 999px; color: rgba(11,26,20,.7);
}

.cal-main { display: flex; flex-direction: column; }
.cal-toolbar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px; border-bottom: 1px solid rgba(0,0,0,.06);
}
.month { font-family: var(--serif); font-size: 18px; }
.seg {
  display: inline-flex; padding: 2px; background: rgba(11,26,20,.06); border-radius: 8px;
  font-size: 12px;
}
.seg.sm { font-size: 11px; }
.seg span { padding: 4px 10px; border-radius: 6px; color: rgba(11,26,20,.6); }
.seg .on { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.06); }
.searchbox {
  flex: 1; padding: 6px 12px; background: rgba(11,26,20,.04);
  border-radius: 8px; font-size: 12px; color: rgba(11,26,20,.5);
}
.avatars { display: flex; }
.av {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 600; color: #fff;
  border: 2px solid #fbfaf7; margin-left: -6px;
}
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg,#5d8d4f,#2e6a40); }
.av2 { background: linear-gradient(135deg,#d4b870,#9e8240); color: var(--ink); }
.av3 { background: linear-gradient(135deg,#6f8fae,#3f5d7f); }
.av4 { background: rgba(11,26,20,.55); }
.av5 { background: linear-gradient(135deg,#a76d6d,#6e3e3e); }

.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  flex: 1; position: relative; min-height: 360px;
}
.cal-col { position: relative; border-right: 1px solid rgba(0,0,0,.05); }
.cal-col:last-child { border-right: 0; }
.ch {
  font-size: 11px; color: rgba(11,26,20,.55);
  padding: 8px 10px; border-bottom: 1px solid rgba(0,0,0,.05);
  font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  position: relative;
}
.cal-col.today .ch { color: var(--green); }
.now { display: inline-block; width: 6px; height: 6px; background: var(--green-2); border-radius: 50%; margin-left: 6px; box-shadow: 0 0 0 3px rgba(46,138,85,.2); }
.cal-col.today { background: rgba(46,138,85,.04); }
.ev {
  position: absolute; left: 4px; right: 4px;
  padding: 5px 8px; font-size: 10.5px; line-height: 1.25;
  border-radius: 5px; color: #fff; font-weight: 500;
  overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.g1 { background: linear-gradient(135deg,#5d8d4f,#3a6a30); }
.g2 { background: linear-gradient(135deg,#c39750,#946d2f); }
.g3 { background: linear-gradient(135deg,#6f8fae,#3f5d7f); }
.g4 { background: linear-gradient(135deg,#a76d6d,#6e3e3e); }
.g5 { background: linear-gradient(135deg,#8a6fae,#5e487c); }
.g6 { background: linear-gradient(135deg,#2c5e4a,#1a3e30); }

/* ── Resources mockup ── */
.window-body.res { padding: 22px 24px; gap: 16px; min-height: 440px; }
.res-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 12px; }
.res-head .title { font-family: var(--serif); font-size: 22px; }
.res-head .sub { font-size: 13px; color: rgba(11,26,20,.55); margin-top: 4px; }
.res-grid {
  width: 100%; border-collapse: separate; border-spacing: 4px;
  font-size: 12px;
}
.res-grid th {
  padding: 8px 10px; text-align: left; font-weight: 500;
  color: rgba(11,26,20,.6); font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
}
.res-grid thead th.now { color: var(--green); }
.res-grid tbody th {
  text-align: left; background: rgba(11,26,20,.04); border-radius: 6px;
  color: var(--ink); font-weight: 500; font-size: 12px; text-transform: none; letter-spacing: 0;
}
.res-grid td { padding: 0; vertical-align: top; height: 38px; }
.cell {
  display: block; padding: 6px 8px; border-radius: 5px;
  font-size: 11px; color: #fff; font-weight: 500;
  height: 100%; overflow: hidden;
}
.cell em { font-style: italic; font-weight: 400; opacity: .85; }
.c1 { background: linear-gradient(135deg,#c39750,#946d2f); }
.c2 { background: linear-gradient(135deg,#5d8d4f,#3a6a30); }
.c3 { background: linear-gradient(135deg,#a76d6d,#6e3e3e); }
.c4 { background: linear-gradient(135deg,#6f8fae,#3f5d7f); }
.c5 { background: linear-gradient(135deg,#2c5e4a,#1a3e30); }
.c6 { background: linear-gradient(135deg,#8a6fae,#5e487c); }

/* ── Projects mockup ── */
.window-body.proj { padding: 22px 24px; min-height: 480px; }
.proj-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px; }
.proj-head .crumbs { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(11,26,20,.5); }
.proj-head .title { font-family: var(--serif); font-size: 22px; margin-top: 4px; }
.kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.col { background: rgba(11,26,20,.04); border-radius: 10px; padding: 12px; }
.col-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; font-size: 12px; font-weight: 600;
  color: rgba(11,26,20,.7); letter-spacing: .02em;
}
.col-head i { font-style: normal; background: rgba(11,26,20,.08); padding: 1px 7px; border-radius: 999px; font-size: 11px; }
.card {
  background: #fff; border-radius: 7px; padding: 10px 12px; margin-bottom: 8px;
  border: 1px solid rgba(0,0,0,.05); box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.card.done { opacity: .55; }
.tag {
  display: inline-block; padding: 2px 7px; border-radius: 4px;
  font-size: 9.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 6px;
}
.t1 { background: rgba(46,138,85,.12); color: #2c5e3f; }
.t2 { background: rgba(167,109,109,.18); color: #8a4646; }
.t3 { background: rgba(212,184,112,.22); color: #8a6a23; }
.t4 { background: rgba(111,143,174,.18); color: #3f5d7f; }
.t5 { background: rgba(138,111,174,.18); color: #5e487c; }
.t6 { background: rgba(11,26,20,.08); color: var(--ink); }
.ctitle { font-size: 13px; font-weight: 500; margin: 2px 0 6px; }
.cmeta { display: flex; justify-content: space-between; font-size: 11px; color: rgba(11,26,20,.55); }
.bar { margin-top: 8px; height: 3px; background: rgba(11,26,20,.07); border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--green-2), var(--gold-2)); border-radius: 99px; }

@media (max-width: 760px) {
  .kanban { grid-template-columns: 1fr 1fr; }
  .window-body.cal { grid-template-columns: 1fr; }
  .side { display: none; }
  .res-grid { font-size: 10px; }
  .cell { font-size: 9px; padding: 4px 5px; }
}

/* ─── cta ──────────────────────────────────────────────────────── */
.cta { background: var(--ink); color: var(--cream); position: relative; text-align: center; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(212,184,112,.15), transparent 70%),
    radial-gradient(900px 500px at 80% 80%, rgba(46,138,85,.18), transparent 70%);
}
.cta .container { position: relative; }
.cta h2 { font-size: clamp(34px, 4.5vw, 56px); margin: 16px auto 18px; max-width: 760px; font-weight: 400; }
.cta > .container > p { font-size: 17px; opacity: .75; max-width: 540px; margin: 0 auto 36px; }
.cta-form {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  max-width: 520px; margin: 0 auto;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 8px; border-radius: 999px;
}
.cta-form input {
  background: transparent; border: 0; padding: 14px 20px; color: var(--cream);
  font: inherit; font-size: 15px;
  border-radius: 999px;
}
.cta-form input::placeholder { color: rgba(255,255,255,.45); }
.cta-form input:focus { outline: none; background: rgba(255,255,255,.06); }
.cta-form button { white-space: nowrap; }
.cta-error {
  max-width: 520px; margin: 14px auto 0;
  color: #f4a9a0; font-size: 14px;
}

@media (max-width: 520px) {
  .cta-form { grid-template-columns: 1fr; border-radius: 18px; }
  .cta-form input { border-radius: 12px; text-align: center; }
  .cta-form button { border-radius: 12px; }
}

/* ─── footer ───────────────────────────────────────────────────── */
.foot { background: var(--ink-2); color: rgba(255,255,255,.55); padding: 36px 0; }
.foot .brand { color: var(--cream); font-size: 18px; }
.foot .brand .logo { width: 24px; height: 24px; }
.foot-base {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 13px;
}
.foot .muted { color: rgba(255,255,255,.45); }
.foot .muted a { color: var(--gold-2); border-bottom: 1px dashed rgba(212,184,112,.4); }
.foot .muted a:hover { color: var(--gold-3); }

@media (prefers-reduced-motion: reduce) {
  .hero-bg .slide { animation: none; opacity: 1; }
  .hero-bg .s2, .hero-bg .s3 { opacity: 0; }
  .scroll-hint span { animation: none; }
}
