:root {
  --bg: #0e1014;
  --surface: #151920;
  --surface-2: #1c212a;
  --gold: #d2a93b;
  --gold-soft: #e3c46a;
  --text: #e8e6e1;
  --muted: #9aa0a8;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

h1, h2, h3, .serif {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

section { padding: 72px 0; }

.kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 18px; }
.section-intro { color: var(--muted); font-size: 17px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 16, 20, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: "Fraunces", Georgia, serif; color: var(--gold); font-size: 19px; letter-spacing: 0.12em; }
.brand-name small { display: block; color: var(--muted); font-family: "Inter", sans-serif; font-size: 9px; letter-spacing: 0.34em; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; opacity: 0.85; transition: color 0.2s, opacity 0.2s; }
.nav-links a:hover { color: var(--gold-soft); opacity: 1; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}
.btn:active { transform: scale(0.97); }
.btn-gold { background: var(--gold); color: #14110a; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.3); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: transform 0.25s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; background: #0a0b0e; }
.hero-media img,
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 11, 14, 0.92) 25%, rgba(10, 11, 14, 0.55) 60%, rgba(10, 11, 14, 0.35));
}
.hero .wrap { position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(210, 169, 59, 0.45);
  background: rgba(210, 169, 59, 0.08);
  color: var(--gold-soft);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.hero h1 { font-size: clamp(40px, 6.5vw, 74px); max-width: 13ch; margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: clamp(17px, 2vw, 20px); color: #c9cdd3; max-width: 54ch; margin-bottom: 38px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Stats ---------- */
.stats { padding: 0; background: var(--surface); border-block: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 16px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b { display: block; font-family: "Fraunces", Georgia, serif; font-size: 34px; color: var(--gold); font-weight: 600; }
.stat span { color: var(--muted); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- How I work ---------- */
.lead-quote {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.5;
  max-width: 880px;
  color: #d8d5cf;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 40px 0 56px;
}
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s, border-color 0.25s;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(210, 169, 59, 0.4); }
.pillar .num { font-family: "Fraunces", Georgia, serif; color: var(--gold); font-size: 15px; letter-spacing: 0.1em; margin-bottom: 14px; }
.pillar h3 { font-size: 19px; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 14.5px; }

.receipts {
  margin-top: 56px;
  background: linear-gradient(120deg, rgba(210, 169, 59, 0.07), rgba(210, 169, 59, 0.02));
  border: 1px solid rgba(210, 169, 59, 0.25);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.receipts h3 { font-size: 21px; margin-bottom: 10px; }
.receipts > div > p { color: var(--muted); font-size: 14.5px; }
.receipt-item h4 { font-size: 15.5px; color: var(--gold-soft); margin-bottom: 6px; }
.receipt-item p { color: var(--muted); font-size: 13.5px; }

/* ---------- Portfolio ---------- */
#work { background: #0a0c0f; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 44px; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: rgba(210, 169, 59, 0.5); color: var(--text); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #14110a; font-weight: 600; }

.subhead { margin: 70px 0 30px; }
.subhead h3 { font-size: clamp(22px, 3vw, 28px); }
.subhead p { color: var(--muted); font-size: 15px; margin-top: 8px; max-width: 640px; }

.grid-flagship { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 26px; }
.grid-more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(210, 169, 59, 0.45); }
.card.hidden { display: none; }
.card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.grid-flagship .card-img { aspect-ratio: 16 / 10; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 14, 0.65), transparent 45%);
}
.card-count {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: rgba(10, 11, 14, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
}
.card-body { padding: 22px 24px 24px; }
.card-tag { color: var(--gold); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.card-body h3 { font-size: 21px; margin: 8px 0 6px; }
.grid-more .card-body h3 { font-size: 17.5px; }
.card-meta { color: var(--muted); font-size: 13.5px; margin-bottom: 10px; }
.card-blurb { color: #b9bec6; font-size: 14.5px; }
.card-placeholder .card-img {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, var(--surface-2) 12px, var(--surface-2) 24px);
}
.card-placeholder .card-img span { color: var(--muted); font-size: 13px; letter-spacing: 0.08em; z-index: 2; }
.card-placeholder { cursor: default; }

/* ---------- Concepts ---------- */
.concept-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 44px 0 26px;
}
.concept-video video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.concept-video .video-label {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(10, 11, 14, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  pointer-events: none;
}

#concepts .grid-more { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { #concepts .grid-more { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { #concepts .grid-more { grid-template-columns: 1fr; } }

/* ---------- Feature rows ---------- */
.features { display: flex; flex-direction: column; gap: 100px; margin-top: 56px; }
.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.feature-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: var(--surface);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.feature-media:hover img { transform: scale(1.05); }
.feature-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 14, 0.5), transparent 40%);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.feature-media:hover::after { opacity: 1; }
.feature-view {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  border-radius: 99px;
  background: rgba(10, 11, 14, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s, color 0.25s;
}
.feature-view::after { content: "\2192"; }
.feature-media:hover .feature-view { background: var(--gold); color: #14110a; border-color: var(--gold); }

.feature:nth-of-type(even) .feature-media { order: 2; }
.feature-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.feature-info h3 { font-size: clamp(24px, 3vw, 33px); margin: 6px 0 10px; }
.feature-meta { color: var(--gold-soft); font-size: 14px; letter-spacing: 0.02em; margin-bottom: 18px; }
.feature-story { color: #c4c8ce; font-size: 16px; margin-bottom: 22px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tags span {
  font-size: 12.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 6px 13px;
}

/* ---------- Showcase film ---------- */
#film { background: #0a0c0f; }
.film-embed {
  position: relative;
  margin-top: 44px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: #000;
  cursor: pointer;
}
.film-poster { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s, opacity 0.3s; }
.film-embed:hover .film-poster { transform: scale(1.03); }
.film-embed::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(10,11,14,0.25), rgba(10,11,14,0.55));
  transition: opacity 0.3s;
}
.film-embed:hover::after { opacity: 0.8; }
.film-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 86px; height: 86px;
  border-radius: 50%;
  border: none;
  background: rgba(210, 169, 59, 0.92);
  color: #14110a;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.film-play svg { width: 40px; height: 40px; margin-left: 4px; }
.film-embed:hover .film-play { transform: translate(-50%, -50%) scale(1.08); background: var(--gold-soft); }
.film-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.film-embed.playing .film-poster, .film-embed.playing .film-play, .film-embed.playing::after { display: none; }

/* ---------- About ---------- */
#about { background: #0a0c0f; }
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, var(--surface-2) 12px, var(--surface-2) 24px);
  color: var(--muted); font-size: 13px; letter-spacing: 0.08em;
}
.about-text p { color: #c4c8ce; margin-bottom: 18px; font-size: 16.5px; }
.about-text p strong { color: var(--text); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  border: 1px solid rgba(210, 169, 59, 0.35);
  background: rgba(210, 169, 59, 0.06);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 99px;
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi .quote-mark { font-family: "Fraunces", Georgia, serif; font-size: 44px; color: var(--gold); line-height: 0.5; margin-top: 12px; }
.testi p { color: #c4c8ce; font-size: 14.5px; flex: 1; }
.testi footer b { display: block; font-size: 14px; color: var(--text); }
.testi footer span { color: var(--muted); font-size: 13px; }

/* ---------- Clients ---------- */
.clients { padding: 56px 0; border-block: 1px solid var(--line); background: var(--surface); }
.clients .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 48px; }
.clients span { color: var(--muted); font-family: "Fraunces", Georgia, serif; font-size: 17px; opacity: 0.85; }
.clients .label { font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; width: 100%; text-align: center; margin-bottom: 6px; opacity: 0.6; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; margin-top: 48px; }
.contact-direct a.direct-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16.5px;
  transition: color 0.2s;
}
.contact-direct a.direct-line:hover { color: var(--gold-soft); }
.contact-direct .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(210, 169, 59, 0.1);
  border: 1px solid rgba(210, 169, 59, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-note { color: var(--muted); font-size: 14px; margin-top: 24px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: 0.04em; }
input, textarea, select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { display: inline-block; margin-left: 16px; font-size: 14px; color: var(--muted); }
.form-status.err { color: #e08b7a; }
.form-status a { color: var(--gold-soft); }
.form-sent { border: 1px solid rgba(210, 169, 59, 0.4); border-radius: var(--radius); padding: 34px 36px; background: rgba(210, 169, 59, 0.05); }
.form-sent h3 { font-size: 22px; margin-bottom: 10px; }
.form-sent p { color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer img { height: 52px; opacity: 0.9; }
.footer p { color: var(--muted); font-size: 13.5px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 9, 11, 0.96);
  display: none;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lb-top { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; }
.lb-title h3 { font-size: 19px; }
.lb-title span { color: var(--muted); font-size: 13.5px; }
.lb-close { background: none; border: none; color: var(--text); font-size: 34px; cursor: pointer; line-height: 1; padding: 4px 10px; }
.lb-close:hover { color: var(--gold); }
.lb-stage { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; min-height: 0; padding: 0 70px; }
.lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; }
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: var(--text);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(210, 169, 59, 0.25); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-bottom { padding: 16px 24px 22px; text-align: center; }
.lb-bottom .lb-blurb { color: var(--muted); font-size: 14px; max-width: 760px; margin: 0 auto 10px; }
.lb-bottom .lb-counter { color: var(--gold); font-size: 13px; letter-spacing: 0.1em; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .hero-scroll, .wa-float { animation: none; }
  .card, .card-img img, .pillar { transition: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .receipts { grid-template-columns: 1fr; padding: 30px 28px; }
  .grid-flagship { grid-template-columns: 1fr; }
  .grid-more { grid-template-columns: 1fr 1fr; }
  .features { gap: 64px; }
  .feature { grid-template-columns: 1fr; gap: 26px; }
  .feature:nth-of-type(even) .feature-media { order: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 420px; position: static; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  section { padding: 48px 0; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(14, 16, 20, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
  .nav-links .btn { margin-top: 12px; width: 100%; text-align: center; }
  .hamburger { display: block; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
  .pillars { grid-template-columns: 1fr; }
  .grid-more { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .lb-stage { padding: 0 8px; }
  .lb-arrow { width: 40px; height: 40px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .hero-scroll { display: none; }
}
