/* ============================================================
   Дезвенткомплекс — Website UI kit styles
   Composes the design-system tokens (styles.css).
   Concept: "Невидимое — под контролем" — graphite interior,
   coral signal, scan-line reveal motif.
   ============================================================ */

.page { position: relative; overflow-x: clip; }

/* ---------- Shared layout helpers ---------- */
.section { position: relative; z-index: 1; padding: var(--section-y) var(--section-x); }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; }
.surface-raised { background: var(--surface-raised); }
.surface-sunken { background: var(--surface-sunken); }
/* "clean air" — the light editorial exhale */
.surface-light { background: var(--surface-inverse); color: var(--text-on-light); }
.surface-light .eyebrow { color: var(--coral-600); }

/* Section header block */
.sec-head { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.sec-head.center { text-align: center; }
.sec-head.center .scan { margin-left: auto; margin-right: auto; }
.scan { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.scan .tick { width: 38px; height: 1px; background: var(--coral-500); position: relative; }
.scan .tick::after { content:''; position:absolute; right:0; top:-2px; width:5px; height:5px; border-radius:50%; background:var(--coral-500); box-shadow:0 0 8px var(--coral-glow); }
.sec-title { font-size: var(--text-h2); font-weight: var(--fw-extrabold); letter-spacing: var(--ls-snug); }
.sec-sub { font-size: var(--text-lg); color: var(--text-secondary); margin-top: 16px; max-width: 46ch; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }
.surface-light .sec-sub { color: var(--text-on-light-muted); }

/* ---------- Backdrop ---------- */
.backdrop { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.backdrop .grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 70% 0%, #000 0%, transparent 70%);
}
.backdrop .glow {
  position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, var(--coral-tint-12), transparent 65%);
  filter: blur(20px);
}
.backdrop .glow.a { top: -180px; right: -120px; }
.backdrop .glow.b { top: 80vh; left: -160px; opacity: 0.5; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; padding: 0 var(--section-x);
  background: rgba(20,23,28,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: height var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.nav.scrolled { height: 62px; background: rgba(16,17,21,0.92); border-bottom-color: var(--border-subtle); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { display: inline-flex; height: 34px; }
.brand .mark svg { height: 34px; width: auto; display: block; }
.brand .mark :is(svg, path) { fill: var(--white) !important; }
.brand .name { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 15px; letter-spacing: 0.14em; color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative; font-family: var(--font-body); font-size: 15px; font-weight: var(--fw-medium);
  color: var(--graphite-200); padding: 6px 0; transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--coral-500); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--coral-500); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 9px; height: 44px; padding: 0 22px;
  border-radius: var(--radius-pill); background: var(--coral-500); color: var(--white);
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: 14px; border: none;
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--coral-400); box-shadow: var(--shadow-coral); }
.nav-cta:active { transform: translateY(1px); background: var(--coral-600); }
.burger { display: none; background: none; border: none; color: var(--white); width: 44px; height: 44px; }
.burger svg { width: 26px; height: 26px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 30px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--text-base);
  border: 1px solid transparent; transition: all var(--dur-base) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--coral-500); color: var(--white); }
.btn-primary:hover { background: var(--coral-400); box-shadow: var(--shadow-coral); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); background: var(--coral-600); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--coral-500); color: var(--coral-500); }
.surface-light .btn-ghost { color: var(--text-on-light); border-color: var(--border-on-light); }
.surface-light .btn-ghost:hover { border-color: var(--coral-500); color: var(--coral-600); }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 124px var(--section-x) 72px; }
.hero-inner {
  width: 100%; max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 5rem); align-items: center;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--coral-500); }
/* slogan superlabel — the concept line */
.hero-slogan {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: var(--ls-snug); color: var(--white);
}
.hero-slogan .accent { color: var(--coral-500); }
.hero-slogan .bar { width: 3px; height: 1.1em; background: var(--coral-500); box-shadow: 0 0 12px var(--coral-glow); border-radius: 2px; }
.hero h1 {
  font-size: var(--text-h1); font-weight: var(--fw-extrabold);
  line-height: var(--lh-snug); letter-spacing: var(--ls-snug); margin-bottom: 24px; max-width: 16ch;
}
.hero .lede { font-size: var(--text-lg); color: var(--text-secondary); line-height: var(--lh-relaxed); max-width: 34em; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .stat .num { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 30px; color: var(--white); line-height: 1; }
.hero-stats .stat .num .unit { color: var(--coral-500); }
.hero-stats .stat .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }
.hero-stats .divider { width: 1px; align-self: stretch; background: var(--border-subtle); }

/* ---------- Before / After (signature reveal) ---------- */
.reveal-wrap { position: relative; }
.reveal-tag { position: absolute; top: -32px; left: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.ba {
  position: relative; width: 100%; aspect-ratio: 4 / 5; max-height: 600px;
  border-radius: var(--radius-lg); overflow: hidden; cursor: ew-resize;
  border: 1px solid var(--border-default); box-shadow: var(--shadow-lg);
  user-select: none; -webkit-user-select: none;
  /* >>> To drop in REAL photos, set on the .ba element:
     style="--before-img:url('assets/duct-before.jpg'); --after-img:url('assets/duct-after.jpg')"
     The photos then cover the CSS-rendered duct automatically. <<< */
}
.duct { position: absolute; inset: 0; }
.duct img.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ba-before-clip { position: absolute; inset: 0; }
.ba-label {
  position: absolute; top: 16px; z-index: 4; font-family: var(--font-mono); font-size: 12px; font-weight: var(--fw-medium);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white);
  padding: 6px 12px; border-radius: var(--radius-xs);
  background: rgba(14,17,21,0.6); backdrop-filter: blur(6px); border: 1px solid var(--border-default);
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; border-color: var(--coral-500); color: var(--coral-300); }
.ba-handle { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--coral-500); z-index: 5; transform: translateX(-50%); box-shadow: 0 0 18px var(--coral-glow); }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: var(--coral-500); display: grid; place-items: center; box-shadow: 0 0 22px var(--coral-glow); cursor: grab; }
.ba-knob:active { cursor: grabbing; }
.ba-knob svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }

/* ---------- About + counters (dark graphite band) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-lead { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: var(--fw-medium); line-height: 1.45; letter-spacing: -0.01em; color: var(--white); }
.about-lead .hl { color: var(--coral-500); }
.about-body { font-size: var(--text-base); color: var(--text-secondary); line-height: var(--lh-relaxed); margin-top: 20px; max-width: 46ch; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: var(--text-sm); font-weight: var(--fw-medium); color: var(--graphite-100);
  background: var(--surface-sunken); border: 1px solid var(--border-default);
}
.tag svg { width: 15px; height: 15px; color: var(--coral-500); }
.counters { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
.counter { background: var(--surface-sunken); padding: clamp(1.5rem, 3vw, 2.5rem); }
.counter:last-child { grid-column: 1 / -1; }
.counter .num { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: clamp(2.75rem, 5vw, 4rem); color: var(--coral-500); line-height: 1; letter-spacing: -0.02em; }
.counter .lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 12px; }

/* ---------- Services (01–06) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  position: relative; background: var(--surface-raised); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 30px 26px 28px; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.svc::before { /* scan line that sweeps on hover */
  content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%;
  background: var(--coral-500); box-shadow: 0 0 14px var(--coral-glow);
  transform: scaleY(0); transform-origin: top; transition: transform var(--dur-base) var(--ease-out);
}
.svc:hover { transform: translateY(-6px); border-color: var(--border-default); }
.svc:hover::before { transform: scaleY(1); }
.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.svc-ico { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--accent-soft); display: grid; place-items: center; transition: background var(--dur-base) var(--ease-out); }
.svc-ico svg { width: 26px; height: 26px; color: var(--coral-500); }
.svc:hover .svc-ico { background: var(--coral-tint-18); }
.svc-num { font-family: var(--font-mono); font-size: 13px; font-weight: var(--fw-medium); letter-spacing: 0.1em; color: var(--text-muted); }
.svc h3 { font-size: var(--text-h4); font-weight: var(--fw-bold); line-height: 1.3; color: var(--white); }
.svc p { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--lh-normal); margin-top: 12px; }

/* ---------- Projects gallery ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proj {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border-subtle); cursor: pointer; background: var(--graphite-800);
}
.proj .img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform var(--dur-slow) var(--ease-out); }
.proj .fallback { position: absolute; inset: 0; background: linear-gradient(135deg, var(--graphite-700), var(--graphite-900)); }
.proj:hover .img { transform: scale(1.06); }
.proj .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,15,0.92) 0%, rgba(10,12,15,0.2) 55%, transparent 100%); }
.proj .meta { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; }
.proj .cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-400); margin-bottom: 6px; }
.proj .pname { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-lg); color: var(--white); }
.proj .line { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--coral-500); box-shadow: 0 0 12px var(--coral-glow); transition: width var(--dur-slow) var(--ease-out); z-index: 3; }
.proj:hover .line { width: 100%; }

/* ---------- Certificates ---------- */
.cert-row { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.cert {
  width: 188px; aspect-ratio: 3 / 4; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, #fbfcfd, #eef1f4); border: 1px solid var(--air-200);
  box-shadow: var(--shadow-md); position: relative; padding: 18px 16px; display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.cert:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.cert .seal { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--coral-500); display: grid; place-items: center; margin-bottom: 14px; }
.cert .seal svg, .cert .seal .mk { width: 22px; height: 22px; }
.cert .seal .mk svg { width: 22px; height: auto; }
.cert .seal .mk :is(svg, path) { fill: var(--coral-600) !important; }
.cert .ctype { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-600); }
.cert .cname { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 14px; color: var(--graphite-900); line-height: 1.25; margin-top: 6px; }
.cert .clines { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.cert .clines span { height: 5px; border-radius: 3px; background: var(--air-200); }
.cert .clines span:nth-child(2) { width: 80%; }
.cert .clines span:nth-child(3) { width: 60%; }
.cert .cnum { font-family: var(--font-mono); font-size: 10px; color: var(--text-on-light-muted); margin-top: 12px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,9,12,0.92); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 5vh 24px; }
.lightbox.open { display: flex; }
.lightbox .cert { width: min(360px, 80vw); cursor: default; transform: none; }

/* ---------- Calculator ---------- */
.calc { max-width: 880px; margin: 0 auto; background: var(--surface-raised); border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow-lg); }
.calc-step { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-400); margin-bottom: 16px; }
.calc-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.calc-tab {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-default); background: transparent; color: var(--text-secondary);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: var(--fw-medium);
  transition: all var(--dur-base) var(--ease-out);
}
.calc-tab svg { width: 17px; height: 17px; }
.calc-tab:hover { border-color: var(--border-strong); color: var(--white); }
.calc-tab.active { border-color: var(--coral-500); background: var(--coral-tint-18); color: var(--coral-300); box-shadow: var(--shadow-coral-sm); }
.calc-range-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.calc-range-head .lo, .calc-range-head .hi { font-size: var(--text-sm); color: var(--text-muted); font-family: var(--font-mono); }
.calc-range-head .cur { font-family: var(--font-mono); font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--white); }
.calc-slider { width: 100%; height: 6px; border-radius: var(--radius-pill); cursor: pointer; margin-bottom: 34px; }
.calc-result { border-top: 1px solid var(--border-default); padding-top: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.calc-result .pl { font-size: var(--text-sm); color: var(--text-muted); }
.calc-price { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: clamp(2.25rem, 5vw, 3.25rem); color: var(--white); line-height: 1; margin: 8px 0; letter-spacing: -0.02em; }
.calc-price .cur { color: var(--coral-500); }
.calc-detail { font-size: var(--text-sm); color: var(--text-secondary); }
.calc-fine { font-size: var(--text-xs); color: var(--text-muted); margin-top: 8px; }

/* ---------- Contacts ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.field { margin-bottom: 18px; }
.input {
  width: 100%; height: 56px; padding: 0 20px; border-radius: var(--radius-sm);
  background: var(--surface-sunken); border: 1px solid var(--border-default); color: var(--white);
  font-family: var(--font-body); font-size: var(--text-base); transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.input::placeholder { color: var(--text-muted); }
.input:focus { outline: none; border-color: var(--coral-500); box-shadow: 0 0 0 3px var(--coral-tint-18); }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 4px 0 22px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--coral-500); flex-shrink: 0; }
.consent label { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--lh-normal); }
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border-subtle); }
.info-row:last-of-type { border-bottom: none; }
.info-ico { width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1px solid var(--coral-500); background: var(--accent-soft); display: grid; place-items: center; flex-shrink: 0; }
.info-ico svg { width: 20px; height: 20px; color: var(--coral-500); }
.info-row h4 { font-size: var(--text-base); font-weight: var(--fw-semibold); color: var(--white); margin-bottom: 5px; }
.info-row p { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.5; }
.info-row a { color: var(--text-secondary); transition: color var(--dur-fast); }
.info-row a:hover { color: var(--coral-400); }

/* ---------- Footer ---------- */
.footer { background: var(--surface-sunken); border-top: 1px solid var(--border-subtle); padding: 56px var(--section-x) 40px; position: relative; z-index: 1; }
.footer-inner { max-width: var(--container-max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.footer .brand .mark svg { height: 30px; }
.footer .copy { font-size: var(--text-sm); color: var(--text-muted); }
.footer .copy a { color: var(--text-secondary); }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
  [data-reveal].is-in { opacity: 1; transform: none; }
  [data-reveal][data-d="1"] { transition-delay: .08s; }
  [data-reveal][data-d="2"] { transition-delay: .16s; }
  [data-reveal][data-d="3"] { transition-delay: .24s; }
  [data-reveal][data-d="4"] { transition-delay: .32s; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .reveal-wrap { order: -1; }
  .ba { aspect-ratio: 16/11; max-height: 420px; }
}
@media (max-width: 640px) {
  .svc-grid, .proj-grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr; }
  .counter:last-child { grid-column: auto; }
  .nav .name { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 0 14px; }
  .hero-stats { gap: 22px; }
  .hero-stats .divider { display: none; }
}

/* ---------- Mobile drawer ---------- */
.drawer-scrim { position: fixed; inset: 0; z-index: 48; background: rgba(8,9,12,0.8); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-out); }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw); z-index: 49; background: var(--surface-raised); border-left: 1px solid var(--border-subtle); padding: 96px 32px 32px; transform: translateX(100%); transition: transform var(--dur-base) var(--ease-out); display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer a { font-size: 19px; font-weight: var(--fw-medium); color: var(--graphite-200); padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
.drawer a:hover { color: var(--coral-500); }
.drawer .btn { margin-top: auto; }
