/* ===== Design Tokens ===== */
:root {
  --ivory:      #f7f4ee;
  --ivory-alt:  #efe9df;
  --charcoal:   #1c1b18;
  --ink:        #2a2824;
  --muted:      #6f6a60;
  --gold:       #a67c3d;
  --gold-soft:  #c9a96a;
  --line:       #ddd6c8;
  --white:      #fffdf9;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: 0.005em; }

.section__eyebrow,
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.section__title { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--charcoal); }

.lead { font-size: 1.18rem; color: var(--ink); margin-bottom: 1.2rem; }
p { color: var(--muted); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border: 1px solid var(--charcoal);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn--primary { background: var(--charcoal); color: var(--ivory); }
.btn--primary:hover { background: transparent; color: var(--charcoal); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--charcoal); }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.6rem 0;
}
.nav--scrolled,
.nav--solid {
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: inline-flex; color: var(--charcoal); transition: color 0.4s var(--ease); }
.nav__logo:hover { color: var(--gold); }
.mono { width: 42px; height: 42px; display: block; }
.mono__text {
  font-family: var(--serif); font-weight: 600;
  font-size: 20px; letter-spacing: 0.04em; fill: currentColor;
}
.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 0.4rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 1.5px; background: var(--charcoal); transition: all 0.3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201, 169, 106, 0.10), transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-alt) 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--line) 0.7px, transparent 0.7px);
  background-size: 26px 26px; opacity: 0.35; pointer-events: none;
}
.hero__inner { position: relative; max-width: 880px; }
.hero__title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--charcoal); margin: 0.4rem 0 1.6rem;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--muted); max-width: 620px; font-weight: 300; margin-bottom: 2.6rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid var(--muted); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold); border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ===== Sections ===== */
.section { padding: clamp(5rem, 11vw, 9rem) 0; }
.section--alt { background: var(--ivory-alt); }
.section__head { max-width: 620px; margin-bottom: 3.5rem; }

.section__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.section__body .section__title { margin-bottom: 1.6rem; }

/* Portrait */
.portrait {
  aspect-ratio: 4 / 5; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--charcoal), #34302a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 60px -30px rgba(28, 27, 24, 0.5);
}
.portrait::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(201, 169, 106, 0.4);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__mono { font-family: var(--serif); font-size: 5rem; color: var(--gold-soft); letter-spacing: 0.1em; }

/* Facts */
.facts { list-style: none; margin-top: 2.2rem; display: grid; gap: 0.2rem; }
.facts li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 0; border-top: 1px solid var(--line); font-size: 0.95rem;
}
.facts li:last-child { border-bottom: 1px solid var(--line); }
.facts strong { font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; }
.facts span { color: var(--muted); }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  display: flex; flex-direction: column; color: inherit;
  background: var(--white); padding: 2.6rem 2.1rem;
  border: 1px solid var(--line); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -28px rgba(28, 27, 24, 0.35); }
.card__num { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); letter-spacing: 0.15em; }
.card h3 { font-size: 1.55rem; color: var(--charcoal); margin: 0.9rem 0 0.8rem; }
.card p { font-size: 0.98rem; margin-bottom: 1.4rem; }
.card__more {
  margin-top: auto; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; transition: letter-spacing 0.4s var(--ease);
}
.card:hover .card__more { letter-spacing: 0.24em; }

/* ===== Timeline ===== */
.timeline { position: relative; }
.tl-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 2rem; color: inherit;
  padding: 2.4rem 0; border-top: 1px solid var(--line);
  transition: padding-left 0.45s var(--ease), background 0.4s var(--ease);
}
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-item:hover { padding-left: 1rem; }
.tl-more {
  display: inline-block; margin-top: 0.7rem;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; opacity: 0; transform: translateX(-6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.tl-item:hover .tl-more { opacity: 1; transform: none; }
.tl-date {
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); padding-top: 0.45rem; font-weight: 500;
}
.tl-body h3 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); color: var(--charcoal); margin-bottom: 0.3rem; }
.tl-org { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.8rem; font-weight: 400; }
.tl-body p { max-width: 640px; font-size: 0.98rem; }

/* ===== Highlights (clickable cards) ===== */
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.hl {
  display: flex; flex-direction: column;
  background: var(--white); padding: 2.1rem 2rem;
  border: 1px solid var(--line); border-left: 2px solid var(--gold);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-left-color 0.5s var(--ease);
}
.hl:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -28px rgba(28, 27, 24, 0.35); border-left-color: var(--gold-soft); }
.hl h3 { font-size: 1.35rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.hl p { font-size: 0.95rem; margin-bottom: 1.2rem; }
.hl__more {
  margin-top: auto; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; transition: letter-spacing 0.4s var(--ease);
}
.hl:hover .hl__more { letter-spacing: 0.24em; }

/* ===== Detail / Subpages ===== */
.subhero {
  padding: clamp(8rem, 16vw, 11rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse at 75% 15%, rgba(201, 169, 106, 0.10), transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-alt) 100%);
  border-bottom: 1px solid var(--line);
}
.backlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.8rem; transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.backlink:hover { color: var(--gold); gap: 0.85rem; }
.subhero__eyebrow {
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}
.subhero__title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); color: var(--charcoal); max-width: 14ch; }
.subhero__meta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.subhero__meta span {
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink);
  border: 1px solid var(--line); background: var(--white); padding: 0.4rem 1rem;
}

.detail { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2.5rem, 7vw, 5.5rem); align-items: start; }
.detail__lead { font-size: 1.2rem; color: var(--ink); margin-bottom: 1.4rem; }
.detail__body p { margin-bottom: 1.1rem; }
.detail__aside { border-top: 2px solid var(--gold); padding-top: 1.6rem; }
.detail__aside h3 {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.1rem;
}
.info-list { list-style: none; display: grid; gap: 0; }
.info-list li {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem;
}
.info-list li:first-child { border-top: 1px solid var(--line); }
.info-list strong { font-weight: 500; color: var(--charcoal); }
.info-list span { color: var(--muted); }

.inline-link {
  display: inline-block; margin-top: 0.4rem; color: var(--gold); font-weight: 400;
  border-bottom: 1px solid var(--line); transition: border-color 0.3s var(--ease);
}
.inline-link:hover { border-color: var(--gold); }

.link-list { list-style: none; display: grid; gap: 0; }
.link-list li { border-bottom: 1px solid var(--line); }
.link-list li:first-child { border-top: 1px solid var(--line); }
.link-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.95rem 0; color: var(--charcoal); font-size: 0.98rem;
  transition: padding-left 0.35s var(--ease), color 0.35s var(--ease);
}
.link-list a:hover { padding-left: 0.6rem; color: var(--gold); }
.link-list a::after { content: "→"; color: var(--gold); }

/* ===== Image gallery (with placeholders) ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.shot { margin: 0; }
.shot figcaption { margin-top: 0.7rem; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.02em; }
.shot__frame {
  aspect-ratio: 4 / 3; overflow: hidden; position: relative;
  border: 1px solid var(--line); background: var(--white);
}
.shot__frame img { width: 100%; height: 100%; object-fit: cover; }
.shot--portrait .shot__frame { aspect-ratio: 3 / 4; }
.shot__ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.6rem; text-align: center; padding: 1rem;
  background:
    repeating-linear-gradient(45deg, var(--ivory) 0 10px, var(--ivory-alt) 10px 20px);
  color: var(--muted);
}
.shot__ph svg { width: 30px; height: 30px; stroke: var(--gold); opacity: 0.8; }
.shot__ph span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.contact__lead { margin-top: 0.8rem; }
.contact__links { display: grid; gap: 0; }
.contact__link {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0; border-top: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
}
.contact__link:last-child { border-bottom: 1px solid var(--line); }
.contact__link:hover { padding-left: 0.8rem; }
.contact__label { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact__value { font-family: var(--serif); font-size: 1.4rem; color: var(--charcoal); }

/* ===== Footer ===== */
.footer { padding: 2.6rem 0; background: var(--charcoal); color: var(--ivory); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer__logo { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.06em; }
.footer__copy { font-size: 0.82rem; color: rgba(247, 244, 238, 0.6); letter-spacing: 0.04em; }

/* ===== Reveal Animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; top: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--ivory); flex-direction: column; justify-content: center;
    gap: 2rem; padding: 3rem; transform: translateX(100%);
    transition: transform 0.5s var(--ease); box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; z-index: 110; }

  .section__grid { grid-template-columns: 1fr; }
  .section__media { max-width: 340px; }
  .cards { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .tl-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .tl-date { padding-top: 0; }
  .detail { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
}

/* ============================================================
   ===============  LUXURY POLISH  (v2 overrides)  ============
   ============================================================ */

/* — Richer, deeper palette (redefining tokens cascades everywhere) — */
:root {
  --ivory:      #f7f3ea;
  --ivory-alt:  #efe7d8;
  --charcoal:   #15130e;
  --ink:        #2c281f;
  --muted:      #756e60;
  --gold:       #b08d4f;
  --gold-soft:  #d9bd83;
  --gold-deep:  #8a6a32;
  --line:       #e0d7c5;
  --white:      #fffdf8;
  --maxw: 1180px;
  --gold-grad: linear-gradient(120deg, #8a6a32 0%, #c9a868 45%, #e8d3a0 55%, #a67f3e 100%);
}

body { letter-spacing: 0.012em; }

/* — Subtle film-grain overlay for a tactile, premium surface — */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.035; 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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* — Eyebrows: gold hairline lead-in (luxury cue) — */
.section__eyebrow, .hero__eyebrow, .subhero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.95rem;
  font-size: 0.7rem; letter-spacing: 0.34em;
}
.section__eyebrow::before, .hero__eyebrow::before, .subhero__eyebrow::before {
  content: ""; width: 38px; height: 1px; flex: none;
  background: linear-gradient(90deg, var(--gold), rgba(176,141,79,0.15));
}

/* — Headings: finer, more elegant — */
h1, h2, h3 { letter-spacing: 0.004em; font-weight: 500; }
.section__title { font-weight: 500; }
.hero__title { font-weight: 600; letter-spacing: -0.005em; }

/* — Hero: grander scale, warm vignette, hairline framing — */
.hero {
  background:
    radial-gradient(120% 85% at 78% 12%, rgba(201,168,104,0.16), transparent 58%),
    radial-gradient(80% 60% at 12% 95%, rgba(176,141,79,0.07), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-alt) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 18px; pointer-events: none;
  border: 1px solid rgba(176,141,79,0.18);
}
.hero__inner { position: relative; z-index: 2; }
.hero__title { font-size: clamp(3.2rem, 9.5vw, 7rem); margin: 0.5rem 0 1.7rem; }
.hero__subtitle { color: #5f594c; }

/* — Buttons: refined, with sheen — */
.btn { font-size: 0.76rem; letter-spacing: 0.22em; padding: 1.05rem 2.3rem; position: relative; }
.btn--primary {
  background: var(--charcoal); color: var(--ivory);
  border-color: var(--charcoal); box-shadow: 0 16px 30px -20px rgba(21,19,14,0.8);
}
.btn--primary:hover {
  background: transparent; color: var(--charcoal);
  border-color: var(--gold); box-shadow: 0 18px 34px -22px rgba(176,141,79,0.55);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

/* — Nav: thinner, refined — */
.nav__links a { font-size: 0.78rem; letter-spacing: 0.18em; }
.nav__links a::after { background: var(--gold-grad); height: 1.5px; }

/* — Section title: subtle gold flourish under headings in heads — */
.section__head .section__title::after {
  content: ""; display: block; width: 54px; height: 2px; margin-top: 1.2rem;
  background: var(--gold-grad);
}

/* — Cards: layered depth + gold top reveal — */
.card, .hl {
  background: linear-gradient(180deg, var(--white), #fbf7ef);
  border-color: #e6ddcb; position: relative; overflow: hidden;
}
.card::before, .hl::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover::before, .hl:hover::after { transform: scaleX(1); }
.card:hover, .hl:hover { box-shadow: 0 30px 60px -34px rgba(21,19,14,0.4); }
.hl { border-left-width: 2px; }

/* — Timeline: gilded hover — */
.tl-item:hover { background: linear-gradient(90deg, rgba(176,141,79,0.05), transparent 60%); }
.tl-item:hover .tl-org { color: var(--gold-deep); }

/* — Portrait: double gold frame, deeper shadow — */
.portrait { box-shadow: 0 50px 90px -45px rgba(21,19,14,0.6); }
.portrait::after { inset: 12px; border-color: rgba(217,189,131,0.55); }
.portrait::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* — Gallery frames: matted, gentle zoom on hover — */
.shot__frame { padding: 8px; background: var(--white); box-shadow: 0 24px 46px -34px rgba(21,19,14,0.4); }
.shot__frame::after {
  content: ""; position: absolute; inset: 14px; pointer-events: none; z-index: 2;
  border: 1px solid rgba(176,141,79,0.28);
}
.shot__frame img { transition: transform 0.9s var(--ease); }
.shot:hover .shot__frame img { transform: scale(1.045); }
.shot figcaption { font-style: italic; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }

/* — Feature image (single, framed, premium) — */
.feature { max-width: 860px; margin: 0 auto; text-align: center; }
.feature__media {
  position: relative; display: inline-block; padding: 12px; background: var(--white);
  border: 1px solid #e6ddcb; box-shadow: 0 50px 90px -48px rgba(21,19,14,0.55);
}
.feature__media::after {
  content: ""; position: absolute; inset: 22px; pointer-events: none;
  border: 1px solid rgba(176,141,79,0.32);
}
.feature__media img {
  display: block; max-width: 100%; max-height: 76vh; width: auto; height: auto; margin: 0 auto;
}
.feature figcaption {
  margin-top: 1.5rem; font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--ink); letter-spacing: 0.01em;
}

/* — Info-list & link-list: gilded edges — */
.detail__aside { border-top-width: 2px; border-image: var(--gold-grad) 1; }
.contact__value, .tl-body h3, .card h3, .hl h3 { letter-spacing: 0.01em; }

/* — Footer: deeper, with gold hairline top — */
.footer { background: #100e0a; box-shadow: inset 0 1px 0 rgba(176,141,79,0.35); }
.footer__logo { letter-spacing: 0.08em; }

/* — Refined selection & scrollbar — */
::selection { background: rgba(176,141,79,0.25); color: var(--charcoal); }

/* — Language switcher (top right) — */
.nav__links { margin-left: auto; }
.lang { display: inline-flex; align-items: center; margin-left: 1.6rem; }
.lang a {
  font-size: 0.72rem; letter-spacing: 0.1em; font-weight: 400; color: var(--muted);
  padding: 0.25rem 0.6rem; transition: color 0.3s var(--ease);
}
.lang a + a { border-left: 1px solid var(--line); }
.lang a:hover { color: var(--gold); }
.lang a.is-active { color: var(--charcoal); font-weight: 500; }
@media (max-width: 860px) {
  .lang { margin-left: auto; margin-right: 0.6rem; }
}

/* — Legal pages — */
.legal { max-width: 760px; }
.legal__lead { font-size: 1.18rem; color: var(--ink); margin-bottom: 1.8rem; }
.legal h2 { font-size: clamp(1.4rem, 2.6vw, 1.7rem); color: var(--charcoal); margin: 2.4rem 0 0.7rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { margin-bottom: 1rem; line-height: 1.85; }

/* — Footer links — */
.footer__links { display: flex; gap: 1.8rem; }
.footer__links a {
  font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(247,244,238,0.72);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--gold-soft); }

/* — CV download button — */
.btn--download { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.7rem; }
.btn--download svg { width: 15px; height: 15px; }

/* — Contact form — */
.contact { align-items: start; }
.contact__intro .contact__links { margin-top: 2.2rem; }
.cform { display: flex; flex-direction: column; gap: 1.4rem; }
.cform__field { display: flex; flex-direction: column; gap: 0.5rem; }
.cform__field label {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.cform input, .cform textarea {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); padding: 0.9rem 1rem; width: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cform input::placeholder, .cform textarea::placeholder { color: #b6ad9c; }
.cform input:focus, .cform textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,79,0.12);
}
.cform textarea { resize: vertical; min-height: 132px; line-height: 1.6; }
.cform .btn--primary { align-self: flex-start; cursor: pointer; border: 1px solid var(--charcoal); }
.cform__honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; text-align: center; gap: 1.1rem; }
}

@media (max-width: 540px) {
  .hero::after { inset: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
