/* ============================================
   MIROSLAV VELES — v4 "Пергамент + Рассвет"
   Dark hero → warm parchment light body
   Fonts: Cormorant Garamond + DM Sans + DM Mono
   ============================================ */

:root {
  /* Core */
  --ink:      #1A1510;
  --parchment:#FAF7F2;
  --white:    #FEFCF9;
  --ash:      #7A6E60;
  --line:     rgba(26, 21, 16, 0.10);

  /* Copper accent */
  --copper:   #B8783A;
  --copper-s: #C9914E;

  /* Section tints */
  --tint-0:   #FAF7F2;   /* base parchment */
  --tint-1:   #FEFCF9;   /* near white */
  --tint-2:   #FDF4E7;   /* warm amber wash */
  --tint-3:   #F5F0F8;   /* very pale lavender */
  --tint-cta: linear-gradient(160deg, #F8F3FF 0%, #FFF4E8 100%);

  /* Hero (dark) */
  --void:     #0C0905;

  --display: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --label:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1440px;
  --gutter: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
::selection { background: var(--copper); color: var(--white); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { color: var(--ash); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--gutter) 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease;
}
/* On hero (dark bg) nav is light */
.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #FAF7F2;
  font-style: italic;
  transition: color .4s;
}
.logo-dot { color: var(--copper-s); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FAF7F2;
  opacity: 0.65;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--copper-s); }
.nav-cta {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--void);
  background: #FAF7F2;
  padding: 12px 22px;
  transition: background .25s, color .25s;
}
.nav-cta:hover { background: var(--copper); color: var(--white); }

/* After hero — nav turns light/parchment */
.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled .nav-logo { color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-cta { color: var(--white); background: var(--ink); }
.nav.scrolled .nav-cta:hover { background: var(--copper); }

/* ============================================
   HERO  (stays dark — cinematic anchor)
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--void);
}
.hero-img {
  position: absolute; inset: 0;
  background-image: url('assets/miroslav-veles1.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: contrast(1.05) brightness(0.75) saturate(0.65);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,9,5,0.55) 0%,
    rgba(12,9,5,0.10) 30%,
    rgba(12,9,5,0.35) 65%,
    rgba(12,9,5,0.97) 100%
  );
}
/* warm gold glow at bottom — transition to light body */
.hero-glow {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to top, var(--parchment) 0%, transparent 100%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  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='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-content { display: none; }

.hero-left-block {
  position: absolute;
  left: 3%;
  top: 57%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 32%;
}
.hero-right-block {
  position: absolute;
  right: 3%;
  top: 57%;
  transform: translateY(-50%);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
}

/* LEFT */
.hero-left { flex: 1; }
.hero-eyebrow {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-s);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.025em;
  color: #FAF7F2;
}
.hero-headline em {
  font-style: italic;
  color: var(--copper-s);
}
.hero-sub-line1 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 400;
  font-style: normal;
  color: rgba(250,247,242,0.92);
  letter-spacing: -0.025em;
  line-height: 0.97;
}
.hero-sub-line2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 400;
  font-style: italic;
  color: var(--copper-s);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 4px;
}
.hero-start-btn {
  font-family: var(--label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(201,145,78,0.4);
  padding-bottom: 5px;
  transition: color .25s, border-color .25s, gap .25s;
}
.hero-start-btn:hover {
  color: var(--copper-s);
  border-color: var(--copper-s);
  gap: 14px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-btn {
  font-family: var(--label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
}
.hero-btn--primary {
  background: #FAF7F2;
  color: var(--void);
  padding: 16px 32px;
}
.hero-btn--primary:hover { background: var(--copper-s); color: #FAF7F2; }
.hero-btn--ghost {
  color: rgba(250,247,242,0.75);
  border-bottom: 1px solid rgba(250,247,242,0.35);
  padding-bottom: 4px;
}
.hero-btn--ghost:hover { color: var(--copper-s); border-color: var(--copper-s); }

/* RIGHT */
.hero-right {
  flex-shrink: 0;
  width: 280px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.hero-tagline {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(250,247,242,0.85);
}
.hero-tagline em {
  font-style: italic;
  color: var(--copper-s);
}
.hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(201,145,78,0.5);
  align-self: flex-end;
}
.hero-univ {
  font-family: var(--label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  line-height: 1.7;
  text-align: right;
}
.hero-top {
  position: absolute;
  top: 100px;
  left: var(--gutter); right: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}
.hero-top span:first-child::before {
  content: "—";
  margin-right: 12px;
  color: var(--copper-s);
}

/* ============================================
   TICKER  (parchment strip)
   ============================================ */
.ticker {
  background: var(--parchment);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker-scroll 55s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ticker-item { display: inline-flex; align-items: center; gap: 60px; }
.ticker-item::after {
  content: "✦";
  color: var(--copper);
  font-style: normal;
  font-size: 13px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section { padding: 140px 0; }

.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}
.section-head .eyebrow {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--copper); }

/* ============================================
   SECTION TINTS  (each section has own glow)
   ============================================ */

/* О мастере — чистый пергамент */
#path { background: var(--tint-0); }

/* Направления — чуть лавандово-холодный */
#directions { background: var(--tint-3); }
#directions .section-title em { color: var(--copper); }
#directions .eyebrow { color: var(--copper); }

/* Событие — почти белый */
#event { background: var(--tint-1); }

/* Цитата — тёплый янтарный */
.section-quote {
  background: var(--tint-2);
  border-top: 1px solid rgba(184, 120, 58, 0.15);
  border-bottom: 1px solid rgba(184, 120, 58, 0.15);
}

/* Книга — пергамент */
#book { background: var(--tint-0); }

/* Сообщество — тонкий лаванда */
#community { background: var(--tint-3); }

/* CTA — градиент */
.cta-final {
  background: var(--tint-cta);
  border-top: 1px solid var(--line);
}

/* ============================================
   INTRO
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 60px;
}
.intro-text p + p { margin-top: 1.2em; }
.intro-text .lead { margin-bottom: 1.5em; }

/* ============================================
   STATS
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--white);
  padding: 56px 32px;
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat-num em { font-style: italic; color: var(--copper); font-size: 0.7em; vertical-align: top; }
.stat-label {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 18px;
}

/* ============================================
   DIRECTIONS GRID
   ============================================ */
.directions {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.direction {
  background: var(--white);
  padding: 48px 36px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  transition: background .35s;
  grid-column: span 4;
}
.direction:hover { background: var(--parchment); }
.direction:hover .direction-arrow { transform: translateX(6px); color: var(--copper); }
.direction-num {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--copper);
}
.direction-title {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
  color: var(--ink);
}
.direction-desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 32px;
}
.direction-arrow {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  transition: transform .3s, color .3s;
}
.direction--wide { grid-column: span 8; min-height: 480px; }
.direction--feature {
  background-image:
    linear-gradient(180deg, rgba(250,247,242,0.15), rgba(250,247,242,0.88)),
    url('assets/2.jpg');
  background-size: cover; background-position: center;
}
.direction--feature:hover {
  background-image:
    linear-gradient(180deg, rgba(250,247,242,0.08), rgba(250,247,242,0.82)),
    url('assets/2.jpg');
}

/* ============================================
   EVENT
   ============================================ */
.event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.event-img {
  background-image: url('assets/tren.jpg');
  background-size: cover;
  background-position: center;
  min-height: 520px;
  filter: brightness(0.9) saturate(0.85);
}
.event-body {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}
.event-date {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}
.event-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 24px 0 32px;
  color: var(--ink);
}
.event-title em { font-style: italic; color: var(--copper); }
.event-desc { font-size: 16px; line-height: 1.65; max-width: 460px; }
.event-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(26,21,16,0.3);
  padding-bottom: 6px;
  transition: gap .3s, color .3s, border-color .3s;
}
.event-cta:hover { gap: 22px; color: var(--copper); border-color: var(--copper); }

/* ============================================
   QUOTE  (amber wash section)
   ============================================ */
.quote-block {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 56px;
  align-items: start;
}
.quote-rule {
  width: 6px;
  align-self: stretch;
  background: linear-gradient(to bottom, var(--copper), var(--copper-s));
  border-radius: 3px;
  min-height: 160px;
  margin-top: 8px;
}
.quote-inner {}
.quote-mark {
  font-family: var(--display);
  font-size: 140px;
  line-height: 0.6;
  color: var(--copper);
  font-style: italic;
  opacity: 0.55;
}
.quote-text {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 36px;
}
.quote-text em { font-style: italic; color: var(--copper); }
.quote-attr {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ============================================
   BOOK
   ============================================ */
.book {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.book-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1A1510, #0C0905);
  border: 1px solid rgba(184,120,58,0.35);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 80px rgba(184,120,58,0.12), 0 8px 24px rgba(26,21,16,0.18);
}
.book-cover::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(196,129,58,0.1) 0%, transparent 60%);
}
.book-cover-inner {
  text-align: center;
  padding: 48px;
  color: #FAF7F2;
  position: relative; z-index: 1;
}
.book-cover-eyebrow {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-s);
  margin-bottom: 32px;
}
.book-cover-title {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  font-style: italic;
}
.book-cover-sub {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 300;
  margin-top: 32px;
  letter-spacing: 0.04em;
  color: var(--copper-s);
}
.book-cover-author {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 80px;
  color: rgba(250,247,242,0.4);
}
.book-content .lead { margin: 24px 0 32px; }

/* ============================================
   COMMUNITY
   ============================================ */
.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.community-card {
  background: var(--white);
  padding: 80px 60px;
  transition: background .35s;
}
.community-card:hover { background: var(--parchment); }
.community-platform {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}
.community-handle {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.community-desc {
  color: var(--ash);
  font-size: 15px;
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 36px;
}
.community-link {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(26,21,16,0.25);
  padding-bottom: 6px;
  transition: border-color .25s, color .25s;
}
.community-link:hover { color: var(--copper); border-color: var(--copper); }

/* ============================================
   FINAL CTA
   ============================================ */
.cta-final {
  padding: 200px 0 180px;
  text-align: center;
}
.cta-eyebrow { margin-bottom: 32px; }
.cta-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--ink);
}
.cta-headline em { font-style: italic; color: var(--copper); }
.cta-button {
  margin-top: 64px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
  padding: 22px 48px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: gap .3s, background .25s;
}
.cta-button:hover { gap: 30px; background: var(--copper); }
.cta-sub {
  margin-top: 32px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ============================================
   FOOTER  (dark anchor)
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.5);
  padding: 80px var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}
.footer-logo {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: #FAF7F2;
  margin-bottom: 16px;
  display: inline-block;
}
.footer-tagline { font-size: 14px; max-width: 320px; line-height: 1.65; }
.footer-col h4 {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-s);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a:hover { color: var(--copper-s); }
.footer-bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .directions { grid-template-columns: 1fr; }
  .direction, .direction--wide { grid-column: span 1; min-height: 280px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .event { grid-template-columns: 1fr; }
  .event-img { min-height: 320px; }
  .event-body { padding: 48px 32px; }
  .book { grid-template-columns: 1fr; gap: 48px; }
  .community { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .quote-block { grid-template-columns: 4px 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }
  .section { padding: 90px 0; }
  .hero { min-height: 600px; }
  .hero-content { padding-bottom: 64px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 40px; }
  .hero-right { width: 100%; text-align: left; align-items: flex-start; }
  .hero-tagline { font-size: 20px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-top { display: none; }
  .ticker-track { font-size: 20px; gap: 40px; }
  .ticker-item { gap: 40px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .quote-block { grid-template-columns: 1fr; }
  .quote-rule { display: none; }
  .community-card { padding: 56px 32px; }
  .community-handle { font-size: 36px; }
}

/* ============================================
   NAV LOGO (image + text)
   ============================================ */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  will-change: opacity;
  margin-left: calc(-1 * var(--gutter));
}
/* Nav symbol — обрезаем PNG до круга (без текста) */
.nav-symbol-wrap {
  overflow: hidden;
  height: 58px;
  width: auto;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 92px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
.nav.scrolled .nav-logo-img { filter: none; }

/* Nav center: name + separator + links */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.nav-name {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  font-style: italic;
  color: #FAF7F2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  transition: color .4s, text-shadow .4s;
}
.nav.scrolled .nav-name { color: var(--ink); text-shadow: none; }
.nav-sep {
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(250,247,242,0.3);
  margin: 0 24px;
  flex-shrink: 0;
  transition: background .4s;
}
.nav.scrolled .nav-sep { background: rgba(26,21,16,0.2); }

/* Hero logo block */
.hero-logo-block {
  position: absolute;
  top: 10px;
  left: -20px;
  z-index: 101;
  text-align: center;
  pointer-events: none;
  transform-origin: top left;
  will-change: opacity, transform;
}
.hero-symbol-wrap {
  overflow: hidden;
  height: 120px;
}
.hero-symbol-img {
  display: block;
  height: 190px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}
.hero-logo-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #FEFCF9;
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 2px 20px rgba(0,0,0,0.6);
}
.hero-logo-sub {
  font-family: var(--label);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #FEFCF9;
  text-transform: uppercase;
  margin-top: 0px;
  display: inline-block;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 3px 10px;
  pointer-events: auto;
}
.hero-logo {
  position: absolute;
  top: 72px;
  left: 40px;
  height: 144px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,0.4));
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   MEGA-MENU
   ============================================ */
.nav-has-mega {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-directions-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-arrow {
  font-size: 10px;
  transition: transform .25s;
  display: inline-block;
}
.nav-has-mega:hover .nav-arrow { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(26,21,16,0.12), 0 4px 16px rgba(26,21,16,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 200;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}
.nav-has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.mega-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: background .2s;
}
.mega-card:hover { background: var(--parchment); }
.mega-card:hover .mega-link { color: var(--copper); }
.mega-num {
  font-family: var(--label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--copper);
}
.mega-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mega-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ash);
  flex: 1;
}
.mega-link {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color .2s;
  margin-top: 4px;
}

/* ============================================
   EYEBROW — DM Sans instead of mono
   ============================================ */
.eyebrow {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }