/* =========================================================================
   Lakeside Watches — self-hosted stylesheet (clean recreation)
   All brand tokens live in :root so a rebrand is a single-file edit.
   ========================================================================= */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: 'Noto Serif';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/noto-serif-latin-400-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Serif';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/noto-serif-latin-400-italic.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Serif';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/noto-serif-latin-700-normal.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('../fonts/inter-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  --bg:          #f7f9fb;
  --bg-alt:      #f2f4f7;
  --surface:     #ffffff;
  --surface-2:   #eef1f5;
  --line:        rgba(16,24,40,0.08);
  --line-strong: rgba(16,24,40,0.16);

  --text:        #101828;
  --text-muted:  #596474;
  --text-dim:    #8a93a0;

  --gold:        #d4af37;
  --gold-soft:   #c39a22;
  --gold-dim:    rgba(212,175,55,0.14);

  --serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme="dark"] {
  --bg:          #0b0c0e;
  --bg-alt:      #101216;
  --surface:     #16181d;
  --surface-2:   #1c1f26;
  --line:        rgba(255,255,255,0.09);
  --line-strong: rgba(255,255,255,0.16);
  --text:        #ece9e3;
  --text-muted:  #9d9a92;
  --text-dim:    #6f6d67;
  --gold:        #c2a15a;
  --gold-soft:   #d8bd85;
  --gold-dim:    rgba(194,161,90,0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.005em; }
.display {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); font-weight: 300; }
.muted { color: var(--text-muted); }
.serif-quote { font-family: var(--serif); font-style: italic; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4.5rem, 11vw, 9rem); }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }
.divider { width: 46px; height: 1px; background: var(--gold); margin: 1.75rem 0; border: 0; }
.center .divider { margin-inline: auto; }
.stack > * + * { margin-top: 1.15rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2.1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--gold); color: #101828; }
.btn--solid { background: var(--gold); color: #101828; }
.btn--solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn .ico { width: 16px; height: 16px; }

/* ---------- Icons ---------- */
.ico { width: 24px; height: 24px; display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ico--gold { color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: #e5e7eb;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid rgba(16,24,40,0.05);
}
.site-header.scrolled {
  background: rgba(229,231,235,0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
:root[data-theme="dark"] .site-header { background: #0b0c0e; border-bottom-color: rgba(255,255,255,0.06); }
:root[data-theme="dark"] .site-header.scrolled { background: rgba(11,12,14,0.88); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; letter-spacing: 0; color: var(--text); }
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 400; letter-spacing: 0; text-transform: none;
  color: var(--text-muted); position: relative; padding-block: 0.4rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.nav-cta {
  font-family: var(--sans);
  color: #fff; background: #101828; border: 1px solid #101828; padding: 0.6rem 1.2rem; border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: #18243a; color: #fff; }
:root[data-theme="dark"] .nav-links a.nav-cta {
  color: var(--gold); background: transparent; border-color: var(--gold);
}
:root[data-theme="dark"] .nav-links a.nav-cta:hover { background: var(--gold); color: #14110a; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 0.4rem; }
.nav-tools { display: flex; align-items: center; gap: 0.65rem; }
.lang-switch { display: flex; align-items: center; gap: 0.35rem; }
.lang-btn, .theme-toggle {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lang-btn { padding: 3px; opacity: .38; transition: opacity .25s var(--ease); }
.lang-btn svg { width: 22px; height: 15px; display: block; outline: 1px solid rgba(16,24,40,.15); }
.lang-btn:hover, .lang-btn.active { opacity: 1; }
.theme-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.theme-toggle:hover { color: var(--gold); border-color: var(--gold); }
.theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: block; }
:root[data-theme="dark"] .theme-toggle .moon { display: none; }

/* mobile nav */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--surface); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad) 2rem;
    transform: translateY(-120%); transition: transform .45s var(--ease); pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 1rem 0; border-bottom: 1px solid var(--line); letter-spacing: 0.18em; }
  .nav-links a.nav-cta { border: 1px solid var(--gold); text-align: center; margin-top: 1rem; }
  .nav-links a::after { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,12,14,0.55) 0%, rgba(11,12,14,0.45) 40%, rgba(11,12,14,0.9) 100%);
}
/* graceful fallback when no video/image is present */
.hero__media { background:
  radial-gradient(120% 80% at 70% 10%, rgba(194,161,90,0.10), transparent 55%),
  linear-gradient(160deg, #16181d 0%, #0b0c0e 70%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__inner .eyebrow { display: block; margin-bottom: 1.5rem; }
.hero__inner .display { max-width: 15ch; }
.hero__sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 2rem); color: var(--text); margin-top: 1rem; max-width: 24ch; }
.hero__cta { margin-top: 2.5rem; }
.scroll-cue { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 1; color: var(--text-muted); animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ---------- Section headings ---------- */
.sec-head { max-width: 60ch; }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { display: block; margin-bottom: 1.1rem; }
.sec-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.sec-head p { margin-top: 1.1rem; }

/* ---------- Value / intro band ---------- */
.statement { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.7rem); font-weight: 500; line-height: 1.25; max-width: 22ch; }
.statement em { color: var(--gold); font-style: italic; }

/* ---------- Journey / steps ---------- */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 2rem; }
.step__num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.2em; }
.step .ico { width: 30px; height: 30px; color: var(--gold); margin: 1rem 0 1.2rem; }
.step h3 { font-size: 1.5rem; }
.step p { margin-top: 0.7rem; color: var(--text-muted); font-size: 0.96rem; }
.step::before { content: ''; position: absolute; top: 0; left: 0; width: 34px; height: 1px; background: var(--gold); }

/* ---------- Feature cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.4rem); border-radius: var(--radius);
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--surface-2); }
.card .ico { width: 30px; height: 30px; color: var(--gold); margin-bottom: 1.3rem; }
.card h3 { font-size: 1.45rem; }
.card p { margin-top: 0.7rem; color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.split__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: radial-gradient(120% 100% at 30% 10%, rgba(194,161,90,0.10), transparent 60%), linear-gradient(160deg,#1c1f26,#0b0c0e); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.split__body p { margin-top: 1.2rem; color: var(--text-muted); }
.split__body .btn { margin-top: 2rem; }

/* ---------- Testimonials ---------- */
.testi { position: relative; }
.testi__track { display: flex; overflow: hidden; }
.testi__item { min-width: 100%; padding: 0 clamp(0.5rem, 4vw, 3rem); text-align: center; transition: opacity .6s var(--ease); }
.testi__stars { color: var(--gold); letter-spacing: 0.3em; margin-bottom: 1.5rem; font-size: 0.9rem; }
.testi__quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2.8vw, 2.05rem); line-height: 1.45; max-width: 40ch; margin: 0 auto; color: var(--text); }
.testi__author { margin-top: 1.8rem; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.testi__nav { display: flex; justify-content: center; gap: 1rem; margin-top: 2.6rem; }
.testi__btn { width: 46px; height: 46px; border: 1px solid var(--line-strong); background: transparent; color: var(--text); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: all .3s var(--ease); }
.testi__btn:hover { border-color: var(--gold); color: var(--gold); }
.testi__dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.testi__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); border: 0; padding: 0; transition: all .3s var(--ease); }
.testi__dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ---------- Contact band ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,5rem); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-item .ico { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-item .label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }
.contact-item .value { color: var(--text); }
.contact-item a.value:hover { color: var(--gold); }

/* ---------- Private access / invitation ---------- */
.invite { border: 1px solid var(--line); background: linear-gradient(160deg, var(--surface), var(--bg)); padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius); text-align: center; }
.invite .badge { display: inline-block; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 0.45rem 1rem; border-radius: 100px; margin-bottom: 1.6rem; }

/* ---------- Forms ---------- */
.form-step { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3.5vw, 2.5rem); background: var(--surface); margin-top: 1.5rem; }
.form-step__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.8rem; }
.form-step__num { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.form-step__title { font-family: var(--serif); font-size: 1.5rem; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem; }
.field .req { color: var(--gold); }
.input, .select, .textarea {
  width: 100%; background: var(--bg); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0.9rem 1rem; font-family: var(--sans); font-size: 0.95rem; font-weight: 300;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--text-dim); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--gold); background: var(--surface-2); }
.textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.radio-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span { display: inline-block; padding: 0.7rem 1.3rem; border: 1px solid var(--line-strong); border-radius: 100px; font-size: 0.85rem; color: var(--text-muted); transition: all .3s var(--ease); }
.radio-pill input:checked + span { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.check { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.9rem; color: var(--text-muted); }
.check input { margin-top: 4px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.check a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.form-actions { margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-note { font-size: 0.85rem; color: var(--text-dim); }

.trust-row { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 3rem; }
.trust { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.trust .ico { width: 18px; height: 18px; color: var(--gold); }

.form-success { display: none; border: 1px solid var(--gold); background: var(--gold-dim); border-radius: var(--radius); padding: clamp(2rem,5vw,3.5rem); text-align: center; }
.form-success.show { display: block; }
.form-success .ico { width: 44px; height: 44px; color: var(--gold); margin: 0 auto 1.4rem; }
.form-success h3 { font-size: 1.9rem; }
.form-success p { margin-top: 1rem; color: var(--text-muted); max-width: 46ch; margin-inline: auto; }
.form-error { display: none; margin-top: 1rem; color: #e2a0a0; font-size: 0.9rem; }
.form-error.show { display: block; }

/* ---------- Inventory ---------- */
.inv-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.inv-controls { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.inv-controls .select, .inv-controls .input { width: auto; min-width: 150px; padding: 0.6rem 0.9rem; font-size: 0.85rem; }
.inv-empty { text-align: center; padding: clamp(3rem,8vw,6rem) 1rem; border: 1px dashed var(--line-strong); border-radius: var(--radius); }
.inv-empty .ico { width: 40px; height: 40px; color: var(--text-dim); margin: 0 auto 1.5rem; }
.inv-empty h3 { font-size: 1.6rem; }
.inv-empty p { margin-top: 0.8rem; color: var(--text-muted); }
.inv-empty .btn { margin-top: 1.8rem; }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.legal h2 { font-size: 1.4rem; margin: 2.4rem 0 0.8rem; color: var(--text); }
.legal h3 { font-size: 1.1rem; margin: 1.6rem 0 0.5rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; }
.legal p, .legal li { color: var(--text-muted); margin-top: 0.8rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal .updated { font-size: 0.85rem; color: var(--text-dim); margin-top: 0.5rem; }
.legal a { color: var(--gold); text-underline-offset: 3px; }
.legal a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem); background: var(--bg-alt); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer-brand { font-family: var(--serif); font-size: 1.5rem; }
.footer-brand span { color: var(--gold); }
.footer-tag { color: var(--text-dim); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.6rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.9rem; padding: 0.3rem 0; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; margin-top: 0.6rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-bottom, .footer-bottom a { font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue { animation: none; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-top: 140px; padding-bottom: clamp(2rem,5vw,4rem); }
.page-hero .eyebrow { display:block; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); max-width: 18ch; }
.page-hero p { margin-top: 1.2rem; max-width: 52ch; }

/* ---------- Original-style About page ---------- */
.about-original {
  padding-top: 140px;
  padding-bottom: clamp(5rem, 10vw, 8rem);
  min-height: 100svh;
}
.about-original__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}
.about-original__image {
  position: relative;
  border: 1px solid var(--line);
  padding: 14px;
  background: transparent;
}
.about-original__image img {
  width: 100%;
  height: min(700px, 68vw);
  object-fit: cover;
  filter: grayscale(1);
  opacity: .94;
}
.about-original h1 {
  font-size: clamp(3.5rem, 5.2vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 9.8ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.about-original__copy {
  max-width: 34rem;
}
.about-original__copy p {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
  color: var(--text-muted);
  margin-top: 1.7rem;
}
.about-original__based {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .about-original__grid { grid-template-columns: 1fr; }
  .about-original__image { order: 1; }
  .about-original__copy { order: 2; }
  .about-original__image img { height: auto; max-height: none; }
}

/* utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.maxw-sm { max-width: 640px; }
.hidden { display: none !important; }
