

:root {
  --ink: #07110f;
  --ink-2: #0d1a17;
  --cream: #f4efe4;
  --paper: #f8f5ed;
  --lime: #c7f74b;
  --muted: #9da7a2;
  --line: rgba(244, 239, 228, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-family: var(--font-geist-sans), Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.section-shell { max-width: 1380px; margin: 0 auto; padding-left: 48px; padding-right: 48px; }

.site-header {
  min-height: 136px;
  padding: 0 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 15, .94);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}
.brand { display: flex; gap: 12px; align-items: center; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -2px;
}
.brand strong, .brand small { display: block; line-height: .95; letter-spacing: .04em; }
.brand strong { font-size: 17px; }
.brand small { font-size: 15px; font-weight: 700; color: var(--lime); }
.site-header nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 28px);
  overflow-x: auto;
  white-space: nowrap;
  background: #0b1714;
  border-top: 1px solid var(--line);
  scrollbar-width: none;
}
.site-header nav::-webkit-scrollbar { display: none; }
nav a { flex: 0 0 auto; font-size: clamp(13px, .9vw, 15px); color: #d6d8d3; transition: color .2s; }
nav a:hover { color: var(--lime); }
.header-phone { text-align: right; font-size: 17px; font-weight: 800; }
.header-phone span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  left: -280px;
  top: 40px;
  background: rgba(199, 247, 75, .08);
  filter: blur(100px);
}
.hero-content {
  padding: 108px 7vw 78px 6vw;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow::before { content: ""; width: 36px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #385047; }
.hero h1 {
  margin: 0;
  font-size: clamp(62px, 7vw, 116px);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero h1 span { color: var(--lime); }
.hero-copy {
  max-width: 590px;
  margin: 36px 0 34px;
  color: #c2c9c5;
  line-height: 1.65;
  font-size: 18px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--ink); }
.button-ghost { border-color: rgba(255,255,255,.28); color: var(--cream); }
.button-ghost:hover { border-color: var(--lime); color: var(--lime); }
.button-dark { background: var(--ink); color: var(--cream); margin-top: 26px; }
.hero-proof {
  display: flex;
  gap: 58px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.hero-proof div { display: flex; flex-direction: column; gap: 5px; }
.hero-proof strong { font-size: 14px; }
.hero-proof span { color: var(--muted); font-size: 12px; }
.hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(7,17,15,.05) 22%),
    linear-gradient(0deg, rgba(7,17,15,.4), transparent 45%),
    linear-gradient(120deg, transparent 60%, rgba(199,247,75,.12));
}
.offer-card {
  position: absolute;
  left: 38px;
  bottom: 50px;
  z-index: 2;
  width: 248px;
  padding: 24px;
  background: rgba(7,17,15,.86);
  border: 1px solid rgba(199,247,75,.55);
  backdrop-filter: blur(12px);
}
.offer-card span { color: var(--lime); font: 700 10px var(--font-geist-mono); letter-spacing: .16em; }
.offer-card strong { display: block; margin: 12px 0 6px; font-size: 20px; }
.offer-card small { color: var(--muted); }
.vertical-caption {
  position: absolute;
  right: 18px;
  top: 70px;
  z-index: 2;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,.55);
  letter-spacing: .22em;
  font-size: 9px;
}
.trust-marquee {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 900;
  font-size: 13px;
}
.trust-marquee i { font-style: normal; }

.intro {
  padding-top: 120px;
  padding-bottom: 82px;
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  gap: 48px;
}
.section-kicker {
  color: var(--lime);
  text-transform: uppercase;
  font: 700 11px var(--font-geist-mono);
  letter-spacing: .14em;
  padding-top: 10px;
}
.intro h2, .accepted h2, .process h2, .valuation h2, .faq h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
.intro-title { position: relative; }
.lime-line { display: block; width: 88px; height: 5px; margin-top: 34px; background: var(--lime); }
.intro-copy { padding-top: 8px; }
.intro-copy p { margin: 0 0 28px; color: #aeb8b3; font-size: 18px; line-height: 1.7; }
.intro-copy a { color: var(--lime); font-weight: 800; font-size: 14px; }

.benefits { padding-bottom: 130px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card {
  padding: 32px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  transition: border .25s, transform .25s;
}
.benefit-card:hover { transform: translateY(-5px); border-color: rgba(199,247,75,.5); }
.benefit-top { display: flex; justify-content: space-between; color: var(--lime); font: 700 12px var(--font-geist-mono); }
.benefit-top i { font-style: normal; font-size: 20px; }
.benefit-card h3 { margin: auto 0 16px; font-size: 27px; }
.benefit-card p { color: #9eaaa5; line-height: 1.65; margin: 0; font-size: 14px; }

.accepted {
  max-width: none;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}
.accepted-copy { padding-left: max(0px, calc((100vw - 1380px)/2)); }
.accepted-copy > p:not(.eyebrow) { max-width: 570px; color: #53605b; line-height: 1.7; font-size: 17px; }
.accepted-list { padding-right: max(0px, calc((100vw - 1380px)/2)); }
.accepted-list div {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid rgba(7,17,15,.15);
}
.accepted-list span { color: #77817d; font: 700 11px var(--font-geist-mono); }
.accepted-list strong { font-size: 20px; }
.accepted-list i { font-style: normal; font-size: 25px; }

.process { padding-top: 130px; padding-bottom: 140px; }
.process-heading { max-width: 780px; margin-bottom: 78px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.steps article { background: var(--ink); padding: 38px 38px 50px; }
.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font: 700 12px var(--font-geist-mono);
}
.steps h3 { margin: 74px 0 16px; font-size: 25px; }
.steps p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.valuation {
  background: #111f1b;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}
.valuation-copy { padding: 110px 7vw; background: radial-gradient(circle at 15% 30%, rgba(199,247,75,.12), transparent 45%); }
.valuation-copy > p:not(.eyebrow) { color: #aab5b0; line-height: 1.7; max-width: 520px; }
.direct-contact { margin-top: 60px; display: flex; flex-direction: column; gap: 9px; }
.direct-contact span { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.direct-contact a:first-of-type { font-size: 27px; font-weight: 800; color: var(--lime); }
.direct-contact a:last-of-type { color: #ccd3cf; }
.valuation-form { padding: 90px 6vw; background: var(--cream); color: var(--ink); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 22px; }
.valuation-form label { display: flex; flex-direction: column; gap: 9px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.valuation-form input, .valuation-form textarea {
  width: 100%;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(7,17,15,.25);
  background: transparent;
  color: var(--ink);
  outline: none;
  resize: vertical;
  text-transform: none;
}
.valuation-form input:focus, .valuation-form textarea:focus { border-bottom-color: var(--ink); }
.valuation-form textarea { margin-bottom: 20px; }
.form-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 25px; }
.consent { flex-direction: row !important; align-items: flex-start; max-width: 340px; text-transform: none !important; font-weight: 500 !important; color: #59635f; line-height: 1.5; }
.consent input { width: 16px; flex: 0 0 16px; margin-top: 1px; }

.faq {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 8vw;
}
.faq-list details { border-top: 1px solid rgba(7,17,15,.17); }
.faq-list details:last-child { border-bottom: 1px solid rgba(7,17,15,.17); }
.faq-list summary { padding: 28px 0; cursor: pointer; font-size: 18px; font-weight: 800; list-style: none; display: flex; justify-content: space-between; }
.faq-list summary::after { content: "+"; color: #476052; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: #58645e; line-height: 1.65; margin: -4px 0 28px; max-width: 680px; }

footer { background: #030807; padding: 80px 6vw 28px; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 7vw; padding-bottom: 70px; }
.brand-footer { margin-bottom: 26px; }
.footer-main p { color: var(--muted); max-width: 360px; line-height: 1.6; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; gap: 12px; }
.footer-main > div:not(:first-child) > span { color: var(--lime); text-transform: uppercase; font: 700 10px var(--font-geist-mono); letter-spacing: .15em; margin-bottom: 8px; }
.footer-main a { font-size: 14px; color: #c4ccc8; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; color: #65706b; font-size: 12px; }
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  min-width: 155px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}
.whatsapp-float span { font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.whatsapp-float strong { font-size: 14px; margin-top: 3px; }
.mobile-bar { display: none; }

@media (max-width: 1180px) {
  .site-header {
    height: auto;
    min-height: 74px;
    padding: 0 24px 44px;
    position: sticky;
  }
  .site-header nav {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44px;
    padding: 0 20px;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    white-space: nowrap;
    background: #0b1714;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
  }
  .site-header nav::-webkit-scrollbar { display: none; }
  .site-header nav a { flex: 0 0 auto; font-size: 12px; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 90px 7vw 55px; }
  .hero-visual { min-height: 480px; }
  .section-shell { padding-left: 28px; padding-right: 28px; }
  .intro { grid-template-columns: 1fr 1fr; }
  .section-kicker { grid-column: 1 / -1; }
  .benefits { grid-template-columns: 1fr; }
  .benefit-card { min-height: 250px; }
  .accepted { grid-template-columns: 1fr; gap: 60px; }
  .accepted-copy, .accepted-list { padding-left: 0; padding-right: 0; }
  .valuation { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 62px; }
  .site-header { min-height: 118px; padding-bottom: 44px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 12px; }
  .header-phone { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding: 70px 22px 48px; }
  .hero h1 { font-size: 56px; }
  .hero-copy { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 22px; margin-top: 40px; }
  .hero-visual { min-height: 360px; }
  .offer-card { left: 20px; bottom: 24px; width: 220px; }
  .trust-marquee { justify-content: flex-start; padding: 0 22px; white-space: nowrap; overflow-x: hidden; }
  .trust-marquee span:nth-of-type(n+3), .trust-marquee i:nth-of-type(n+2) { display: none; }
  .section-shell { padding-left: 22px; padding-right: 22px; }
  .intro { grid-template-columns: 1fr; padding-top: 80px; gap: 24px; }
  .intro h2, .accepted h2, .process h2, .valuation h2, .faq h2 { font-size: 43px; }
  .benefits { padding-bottom: 80px; }
  .accepted { padding-top: 80px; padding-bottom: 80px; }
  .process { padding-top: 90px; padding-bottom: 90px; }
  .steps { grid-template-columns: 1fr; }
  .steps h3 { margin-top: 40px; }
  .valuation-copy, .valuation-form { padding: 75px 22px; }
  .field-grid { grid-template-columns: 1fr; }
  .form-bottom { align-items: stretch; flex-direction: column; }
  .faq { padding-top: 80px; padding-bottom: 80px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float { display: none; }
  .mobile-bar {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    box-shadow: 0 -8px 30px rgba(0,0,0,.25);
  }
  .mobile-bar a { display: grid; place-items: center; min-height: 62px; background: var(--cream); color: var(--ink); font-weight: 900; font-size: 13px; text-transform: uppercase; }
  .mobile-bar a:last-child { background: var(--lime); }
}

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

.service-hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 55% 45%;
  border-bottom: 1px solid var(--line);
}
.service-hero-copy {
  padding: 120px max(40px, 7vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 18% 30%, rgba(199,247,75,.1), transparent 38%);
}
.service-hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(54px, 6.6vw, 102px);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.service-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #b4bdb8;
  font-size: 18px;
  line-height: 1.7;
  margin: 32px 0;
}
.service-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.service-image-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink), transparent 22%),
    linear-gradient(0deg, rgba(7,17,15,.55), transparent 50%);
}
.service-content {
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 10vw;
  background: var(--paper);
  color: var(--ink);
  max-width: none;
}
.service-content article { padding-left: max(0px, calc((100vw - 1380px)/2)); }
.service-content aside { margin-right: max(0px, calc((100vw - 1380px)/2)); }
.service-content h2 { font-size: clamp(40px, 5vw, 70px); letter-spacing: -.05em; margin: 0 0 26px; }
.service-content article > p:not(.eyebrow) { max-width: 760px; color: #53605b; font-size: 18px; line-height: 1.75; }
.service-content ul { list-style: none; margin: 38px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-content li { border: 1px solid rgba(7,17,15,.16); padding: 20px; font-weight: 700; }
.service-content li::before { content: "✓"; color: #678600; margin-right: 10px; }
.service-content aside { background: var(--ink); color: var(--cream); padding: 36px; align-self: start; display: flex; flex-direction: column; gap: 12px; }
.service-content aside > span { color: var(--lime); font: 700 10px var(--font-geist-mono); text-transform: uppercase; letter-spacing: .15em; }
.service-content aside strong { font-size: 30px; }
.service-content aside p { color: var(--muted); }
.service-content aside a { color: var(--lime); font-weight: 800; margin-top: 18px; }
.service-links { padding-top: 100px; padding-bottom: 110px; }
.services-directory-title {
  margin: 0 0 42px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.055em;
}
.service-links > div { display: grid; grid-template-columns: 1fr 1fr; }
.service-links a { min-height: 90px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-top: 1px solid var(--line); font-size: 20px; font-weight: 800; }
.service-links a:hover { color: var(--lime); }
.service-links a:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
@media (max-width: 900px) {
  .service-hero, .service-content { grid-template-columns: 1fr; }
  .service-image { min-height: 420px; }
  .service-content article { padding-left: 0; }
  .service-content aside { margin-right: 0; }
}
@media (max-width: 640px) {
  .service-hero-copy { padding: 80px 22px 60px; }
  .service-hero h1 { font-size: 52px; }
  .service-image { min-height: 320px; }
  .service-content { padding-top: 80px; padding-bottom: 80px; }
  .service-content ul, .service-links > div { grid-template-columns: 1fr; }
  .service-links a:nth-last-child(-n+2) { border-bottom: 0; }
  .service-links a:last-child { border-bottom: 1px solid var(--line); }
}

/* Expanded editorial content */
.editorial-long { padding-top: 110px; padding-bottom: 110px; }
.editorial-legacy { display: none !important; }
.editorial-long article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}
.editorial-long article:last-child { border-bottom: 1px solid var(--line); }
.editorial-long article > span { color: var(--lime); font: 700 12px var(--font-geist-mono); padding-top: 9px; }
.editorial-long h2 { margin: 0 0 24px; font-size: clamp(34px, 4vw, 58px); letter-spacing: -.05em; }
.editorial-long p { color: #aab4af; line-height: 1.8; font-size: 17px; max-width: 920px; }

/* Dedicated mobile navigation */
.mobile-menu { display: none; }
@media (max-width: 980px) {
  .site-header { min-height: 74px; padding: 0 24px; }
  .site-header > .full-nav { display: none !important; }
  .site-header > .mobile-menu { display: block !important; position: relative; margin-left: auto; }
  .mobile-menu summary {
    list-style: none;
    min-width: 108px;
    height: 44px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--line);
    color: var(--cream);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    cursor: pointer;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary i { color: var(--lime); font-style: normal; font-size: 17px; }
  .mobile-menu[open] summary i { font-size: 0; }
  .mobile-menu[open] summary i::after { content: "×"; font-size: 24px; }
  .site-header .mobile-menu nav {
    display: flex;
    position: fixed;
    z-index: 80;
    top: 74px;
    left: 0;
    right: 0;
    bottom: auto;
    height: auto;
    max-height: calc(100vh - 74px);
    padding: 12px 22px 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    white-space: normal;
    background: #081310;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(0,0,0,.45);
  }
  .site-header .mobile-menu nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .site-header details.mobile-menu:not([open]) > nav { display: none !important; }
  .site-header details.mobile-menu[open] > nav { display: flex !important; }
}
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 640px) {
  .site-header { min-height: 74px; padding: 0 18px; }
  .editorial-long article { grid-template-columns: 1fr; gap: 12px; padding: 42px 0; }
}

/* Mobile menu v2 */
.mobile-menu-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.mobile-menu-button { display: none; }
@media (max-width: 1180px) {
  .site-header { min-height: 74px !important; padding: 0 24px !important; }
  .site-header > nav.full-nav { display: none !important; visibility: hidden !important; pointer-events: none !important; }
  .site-header > .mobile-menu { display: block !important; position: relative; margin-left: auto; }
  .mobile-menu-button {
    display: flex; min-width: 126px; height: 48px; padding: 0 17px;
    align-items: center; justify-content: space-between; gap: 16px;
    appearance: none; -webkit-appearance: none; background: #081310;
    border: 1px solid var(--line); color: var(--cream);
    text-transform: uppercase; font-size: 14px; font-weight: 900;
    letter-spacing: .08em; cursor: pointer; user-select: none;
    touch-action: manipulation; position: relative; z-index: 102;
  }
  .mobile-menu-button:hover,
  .mobile-menu-button:focus-visible {
    background: #10241e;
    border-color: var(--lime);
    color: var(--cream);
    outline: none;
  }
  .mobile-menu-button i { color: var(--lime); font-size: 22px; font-style: normal; line-height: 1; }
  .site-header .mobile-menu > nav {
    display: none !important; visibility: hidden; pointer-events: none;
    position: fixed !important; z-index: 100; top: 74px !important;
    left: 0 !important; right: 0 !important; bottom: auto !important;
    height: auto !important; max-height: calc(100vh - 74px);
    padding: 10px 22px 24px !important; flex-direction: column;
    align-items: stretch; justify-content: flex-start; gap: 0 !important;
    overflow-y: auto; white-space: normal; background: #081310;
    border-top: 1px solid var(--line); box-shadow: 0 24px 40px rgba(0,0,0,.55);
  }
  .mobile-menu-toggle:checked + .mobile-menu-button i { font-size: 0; }
  .mobile-menu-toggle:checked + .mobile-menu-button i::after { content: "×"; font-size: 28px; }
  .mobile-menu-toggle:checked ~ nav { display: flex !important; visibility: visible !important; pointer-events: auto !important; }
  .site-header .mobile-menu > nav a {
    display: flex; align-items: center; min-height: 56px;
    border-bottom: 1px solid var(--line); font-size: 16px !important;
    font-weight: 750; line-height: 1.25;
  }
}
@media (max-width: 640px) {
  .site-header { padding: 0 18px !important; }
  .mobile-menu-button { min-width: 118px; }
}
