:root {
  --bg: #0b0907;
  --bg-soft: #120f0b;
  --surface: #181410;
  --border: rgba(212, 175, 55, 0.14);
  --border-strong: rgba(212, 175, 55, 0.35);
  --text1: #f3ead8;
  --text2: #b8ab92;
  --text3: #7d7361;
  --gold: #d4af37;
  --gold-bright: #f0cf6b;
  --gold-deep: #9a7b1e;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text1);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 600ms ease;
}
body.loaded { opacity: 1; }

::selection { background: var(--gold); color: var(--bg); }

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ---------- canvas + atmosphere ---------- */
#canvas-container { position: fixed; inset: 0; pointer-events: none; z-index: 5; }

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(ellipse 110% 90% at 50% 40%, transparent 50%, rgba(0,0,0,0.55) 100%);
}

/* ---------- scroll progress ---------- */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  z-index: 70; pointer-events: none;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform-origin: left; transform: scaleX(0);
}

/* ---------- nav ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem clamp(1.2rem, 4vw, 4rem);
  transition: background 400ms var(--ease-out), backdrop-filter 400ms var(--ease-out), border-color 400ms;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(11, 9, 7, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; letter-spacing: 0.04em;
  color: var(--text1); text-decoration: none; white-space: nowrap;
}
.logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links > a {
  color: var(--text2); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 200ms ease; position: relative;
}
.nav-links > a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 300ms var(--ease-out);
}
.nav-links > a:hover { color: var(--text1); }
.nav-links > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links > a.active { color: var(--gold); }
.nav-phone {
  color: var(--gold) !important;
  border: 1px solid var(--border-strong);
  padding: 0.5rem 1.1rem; border-radius: 100px;
  transition: background 250ms ease, color 250ms ease, transform 160ms ease-out !important;
}
.nav-phone:hover { background: var(--gold); color: var(--bg) !important; }
.nav-phone:active { transform: scale(0.97); }
.nav-phone::after { display: none !important; }

/* burger */
#burger {
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0.6rem;
  z-index: 90; position: relative;
}
#burger span {
  display: block; width: 26px; height: 1.5px; background: var(--text1);
  transition: transform 350ms var(--ease-out), opacity 250ms, background 250ms;
}
#burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#burger.open span:nth-child(2) { opacity: 0; }
#burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links > a:not(.nav-phone) { display: none; }
}
@media (max-width: 560px) {
  .nav-phone { display: none !important; }
}

/* ---------- menu overlay ---------- */
#menu {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(9, 7, 5, 0.96);
  backdrop-filter: blur(20px);
  display: flex; align-items: center;
  visibility: hidden; opacity: 0;
}
#menu .menu-inner {
  width: 100%; max-width: 1100px; margin: 0 auto;
  padding: 6rem clamp(1.5rem, 5vw, 4rem) 3rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
}
#menu .menu-col .t {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 1.6rem;
}
#menu a.m-link {
  display: block; text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--text2); padding: 0.34rem 0; line-height: 1.2;
  transition: color 250ms ease, transform 350ms var(--ease-out);
}
#menu a.m-link:hover { color: var(--gold-bright); transform: translateX(10px); }
#menu a.m-link.small { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
#menu .m-item { opacity: 0; transform: translateY(26px); }
#menu .menu-contact { margin-top: 2.5rem; color: var(--text3); font-size: 0.9rem; line-height: 1.9; }
#menu .menu-contact a { color: var(--gold); text-decoration: none; }
@media (max-width: 760px) {
  #menu { overflow-y: auto; align-items: flex-start; }
  #menu .menu-inner { grid-template-columns: 1fr; gap: 2.2rem; padding-top: 5.5rem; }
  #menu a.m-link { font-size: 1.45rem; }
  #menu a.m-link.small { font-size: 1.2rem; }
}

/* ---------- layout ---------- */
section, footer { position: relative; z-index: 10; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.eyebrow::before { content: ''; width: 2.4rem; height: 1px; background: var(--gold-deep); }
.eyebrow.center { justify-content: center; display: flex; }

.gold-text {
  background: linear-gradient(105deg, #8a6d1f 0%, #d4af37 28%, #f8e9ad 50%, #d4af37 72%, #8a6d1f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ---------- hero (homepage) ---------- */
#hero { height: 230vh; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 0 1.2rem;
}
.hero-glow {
  position: absolute; width: 130vmin; height: 130vmin; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, rgba(212,175,55,0.035) 35%, transparent 65%);
  pointer-events: none;
}
.hero-kicker {
  font-size: 0.76rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 2rem;
}
#hero h1 { font-size: clamp(2.7rem, 9.5vw, 8rem); line-height: 1.02; font-weight: 500; max-width: 12ch; }
.hero-sub {
  margin-top: 2rem; font-size: clamp(0.98rem, 1.6vw, 1.25rem);
  color: var(--text2); max-width: 34rem; line-height: 1.65;
}
.hero-price {
  margin-top: 2.6rem; display: inline-flex; align-items: baseline; gap: 0.9rem;
  padding: 0.85rem 1.6rem; border: 1px solid var(--border); border-radius: 100px;
  background: rgba(24, 20, 16, 0.55); backdrop-filter: blur(8px);
  flex-wrap: wrap; justify-content: center;
}
.hero-price .label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text3); }
.hero-price .value { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--gold-bright); }
.hero-price .unit { font-size: 0.76rem; color: var(--text3); }
.scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text3);
}
.scroll-hint .line {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: drip 2.2s var(--ease-out) infinite; transform-origin: top;
}
@keyframes drip {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(0.5rem); opacity: 0; }
}

/* ---------- page hero (subpages) ---------- */
.page-hero { min-height: 88vh; display: flex; align-items: center; padding: 9rem 0 4rem; }
.page-hero .inner { max-width: 620px; }
.page-hero h1 { font-size: clamp(2.5rem, 6.5vw, 5rem); line-height: 1.05; margin-bottom: 1.6rem; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero .lead { color: var(--text2); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.7; max-width: 32rem; }
.page-hero .cta-row { display: flex; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap; }
@media (max-width: 900px) {
  .page-hero { min-height: 0; padding-top: 11rem; }
  .page-hero .inner { max-width: 100%; }
}

/* ---------- buttons ---------- */
.btn-gold {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 50%, var(--gold-bright));
  color: #1a1304; text-decoration: none; font-weight: 500;
  font-size: 0.97rem; letter-spacing: 0.06em;
  padding: 1.05rem 2.5rem; border-radius: 100px;
  transition: transform 160ms ease-out, box-shadow 300ms ease;
  box-shadow: 0 8px 32px rgba(212,175,55,0.22);
}
.btn-gold:hover { box-shadow: 0 12px 44px rgba(212,175,55,0.38); transform: translateY(-2px); }
.btn-gold:active { transform: scale(0.97); }
.btn-ghost {
  display: inline-block; color: var(--text1); text-decoration: none;
  font-size: 0.97rem; letter-spacing: 0.06em;
  padding: 1.05rem 2.5rem; border-radius: 100px;
  border: 1px solid var(--border-strong);
  transition: background 250ms ease, color 250ms ease, transform 160ms ease-out;
}
.btn-ghost:hover { background: rgba(212,175,55,0.1); }
.btn-ghost:active { transform: scale(0.97); }

/* ---------- generic blocks ---------- */
.section-pad { padding: 14vh 0; }
.section-head { max-width: 38rem; margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.1; margin-bottom: 1.2rem; }
.section-head h2 em { color: var(--gold); font-style: italic; }
.section-head .lead { color: var(--text2); line-height: 1.7; }

.cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.card {
  background: linear-gradient(170deg, var(--surface), var(--bg-soft) 70%);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 2.4rem 2.2rem; position: relative; overflow: hidden;
  transition: border-color 350ms ease, transform 350ms var(--ease-out);
  transform-style: preserve-3d; will-change: transform;
}
.card:hover { border-color: var(--border-strong); }
.card .icon {
  width: 3rem; height: 3rem; border-radius: 12px;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center; color: var(--gold); margin-bottom: 1.6rem;
}
.card h3 { font-size: 1.55rem; margin-bottom: 0.8rem; }
.card p { color: var(--text2); line-height: 1.7; font-size: 0.95rem; }
.card .detail { margin-top: 1.3rem; color: var(--gold-bright); font-size: 0.93rem; }
.card .detail span { display: block; color: var(--text3); font-size: 0.78rem; margin-top: 0.2rem; }

/* stats */
.stat-row { display: flex; gap: 3rem; margin-top: 3rem; flex-wrap: wrap; }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--gold-bright); line-height: 1;
}
.stat .num sup { font-size: 0.45em; color: var(--gold); }
.stat .desc {
  margin-top: 0.5rem; font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--text3); text-transform: uppercase; max-width: 13rem; line-height: 1.5;
}

/* spec list (product pages) */
.specs { border-top: 1px solid var(--border); }
.spec {
  display: grid; grid-template-columns: minmax(140px, 0.8fr) 2fr;
  gap: 1.5rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.spec .k { font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text3); padding-top: 0.3rem; }
.spec .v { color: var(--text1); line-height: 1.65; }
.spec .v small { display: block; color: var(--text2); font-size: 0.9rem; margin-top: 0.3rem; }
@media (max-width: 640px) { .spec { grid-template-columns: 1fr; gap: 0.4rem; } }

/* big claim band */
.claim-band {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 7rem 0; text-align: center; position: relative; overflow: hidden;
}
.claim-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(212,175,55,0.06), transparent 70%);
}
.claim-band .big-claim {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.6vw, 3rem); line-height: 1.25;
  max-width: 26ch; margin: 0 auto; position: relative;
}
.claim-band .big-claim strong { font-weight: 600; color: var(--gold-bright); }

/* marquee */
.marquee {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.3rem 0; white-space: nowrap; position: relative; z-index: 10;
}
.marquee .track { display: inline-flex; gap: 3.5rem; padding-right: 3.5rem; will-change: transform; }
.marquee span {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  color: var(--text3); display: inline-flex; align-items: center; gap: 3.5rem;
}
.marquee span::after { content: '✦'; color: var(--gold-deep); font-size: 0.8rem; }

/* product grid (homepage) */
.prod-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.prod-card {
  position: relative; border: 1px solid var(--border); border-radius: 22px;
  background: linear-gradient(165deg, var(--surface), var(--bg-soft) 75%);
  padding: 2.5rem 2.2rem; overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 270px;
  transition: border-color 350ms ease, transform 400ms var(--ease-out);
}
.prod-card:hover { border-color: var(--border-strong); transform: translateY(-6px); }
.prod-card .glow {
  position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.13), transparent 70%);
  transition: opacity 400ms ease;
}
.prod-card:hover .glow { opacity: 1; }
.prod-card .tag {
  position: absolute; top: 1.6rem; left: 2.2rem;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.prod-card h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); color: var(--text1); margin-bottom: 0.7rem; line-height: 1.15; }
.prod-card p { color: var(--text2); font-size: 0.93rem; line-height: 1.65; }
.prod-card .arrow {
  position: absolute; top: 1.5rem; right: 1.7rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center; color: var(--gold);
  transition: background 300ms ease, color 300ms ease, transform 400ms var(--ease-out);
}
.prod-card:hover .arrow { background: var(--gold); color: var(--bg); transform: rotate(45deg); }
.prod-card.span-7 { grid-column: span 7; }
.prod-card.span-5 { grid-column: span 5; }
.prod-card.span-4 { grid-column: span 4; }
.prod-card.span-6 { grid-column: span 6; }
.prod-card.span-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card { grid-column: span 1 !important; min-height: 200px; }
}

/* weights grid */
.weights {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.weight {
  background: var(--bg-soft); padding: 2rem 1.2rem 1.7rem; text-align: center;
  position: relative; cursor: default; transition: background 350ms ease; overflow: hidden;
}
.weight::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(212,175,55,0.13), transparent 60%);
  opacity: 0; transition: opacity 350ms ease;
}
.weight:hover { background: var(--surface); }
.weight:hover::after { opacity: 1; }
.weight .w {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--text1);
  transition: color 300ms ease, transform 300ms var(--ease-out); display: inline-block;
}
.weight:hover .w { color: var(--gold-bright); transform: translateY(-3px); }
.weight .g { font-size: 0.7rem; letter-spacing: 0.22em; color: var(--text3); text-transform: uppercase; margin-top: 0.4rem; }
.weight.ounce { outline: 1px solid var(--border-strong); outline-offset: -1px; }
.weight .badge {
  position: absolute; top: 0.6rem; right: 0.6rem;
  font-size: 0.56rem; letter-spacing: 0.14em; color: var(--gold);
  border: 1px solid var(--border-strong); padding: 0.18rem 0.45rem;
  border-radius: 100px; text-transform: uppercase;
}

/* pricing tiers (spoření) */
.tiers { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tier {
  border: 1px solid var(--border); border-radius: 20px;
  background: linear-gradient(170deg, var(--surface), var(--bg-soft) 70%);
  padding: 2.4rem 2rem; text-align: center;
  transition: border-color 350ms ease, transform 350ms var(--ease-out);
}
.tier:hover { border-color: var(--border-strong); transform: translateY(-5px); }
.tier .target { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; color: var(--gold-bright); }
.tier .target-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text3); margin-top: 0.3rem; }
.tier hr { border: none; height: 1px; background: var(--border); margin: 1.5rem 0; }
.tier .monthly { color: var(--text1); font-size: 1.1rem; }
.tier .monthly small { display: block; color: var(--text3); font-size: 0.76rem; margin-top: 0.25rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ounce fact */
.ounce-fact { border-left: 2px solid var(--gold-deep); padding: 0.4rem 0 0.4rem 1.6rem; margin-top: 2.2rem; }
.ounce-fact .serif { font-size: 1.5rem; color: var(--gold-bright); }
.ounce-fact .sub { color: var(--text3); font-size: 0.85rem; margin-top: 0.2rem; }

/* two-col */
.two-col { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 4rem; align-items: start; }
.two-col p { color: var(--text2); line-height: 1.75; margin-top: 1.4rem; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 1.5rem; } }

/* composers / list items */
.num-list { counter-reset: item; }
.num-item {
  display: flex; gap: 1.8rem; align-items: baseline;
  padding: 1.4rem 0; border-bottom: 1px solid var(--border);
}
.num-item .n {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--gold); min-width: 2rem;
}
.num-item .name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--text1); }
.num-item .years { color: var(--text3); font-size: 0.85rem; margin-left: auto; white-space: nowrap; }
.num-item.soldout .name { text-decoration: line-through; color: var(--text3); }
.num-item.soldout .years::after { content: ' · vyprodáno'; color: var(--gold); }

/* CTA */
.cta-inner {
  text-align: center; padding: clamp(4.5rem, 9vw, 9rem) 2rem;
  border-radius: 28px; border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,175,55,0.10), transparent 70%),
    linear-gradient(180deg, var(--surface), var(--bg-soft));
  position: relative; overflow: hidden;
}
.cta-inner h2 { font-size: clamp(2.1rem, 5.5vw, 4.4rem); line-height: 1.06; max-width: 18ch; margin: 0 auto 1.5rem; }
.cta-inner .sub { color: var(--text2); max-width: 30rem; margin: 0 auto 2.8rem; line-height: 1.7; }
.cta-phone { display: block; margin-top: 1.5rem; color: var(--text3); font-size: 0.9rem; }
.cta-phone a { color: var(--gold); text-decoration: none; }

/* breadcrumb-ish back link */
.backlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text3); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2rem;
  transition: color 200ms;
}
.backlink:hover { color: var(--gold); }

/* footer */
footer { border-top: 1px solid var(--border); padding: 3.5rem 0 3rem; margin-top: 6vh; }
.foot-grid {
  display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap;
  color: var(--text3); font-size: 0.85rem; line-height: 1.9;
}
.foot-grid a { color: var(--text2); text-decoration: none; transition: color 200ms; }
.foot-grid a:hover { color: var(--gold); }
.foot-col .t { color: var(--text2); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.7rem; margin-bottom: 0.8rem; }
.copyright { margin-top: 3rem; color: var(--text3); font-size: 0.75rem; letter-spacing: 0.06em; }

/* reveal helpers */
.reveal { opacity: 0; transform: translateY(34px); }
.reveal-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.reveal-word > span { display: inline-block; transform: translateY(110%); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal-word > span { transform: none !important; }
  .scroll-hint .line, .gold-text { animation: none; }
}
