/* ============================================================
   JEISA GAS — POWERING EVERYDAY LIFE
   concrete gray · matte black · flame orange · cobalt blue
   (brand colors from the JEISA Enterprises logo)
   ============================================================ */

:root {
  --concrete: #2E3130;
  --concrete-deep: #232626;
  --ink: #131414;
  --ink-2: #0C0E0E;
  --jeisa: #1D3C8F;      /* cobalt from logo subtitle */
  --jeisa-dim: #13234E;  /* deep navy sections */
  --acid: #F4711F;       /* flame orange — primary accent */
  --bone: #ECE9E2;
  --steel: #9AA19C;
  --line: rgba(236, 233, 226, 0.14);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --header-h: 64px;
  --pad: clamp(20px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--concrete);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  /* poured-concrete texture */
  background-image:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(236,233,226,0.045), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.92 0 0 0 0 0.91 0 0 0 0 0.88 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mono { font-family: var(--font-mono); letter-spacing: 0.12em; }

::selection { background: var(--acid); color: var(--ink); }

a { color: inherit; text-decoration: none; }

:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn--acid {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(244, 113, 31, 0);
}
.btn--acid:hover { box-shadow: 0 0 34px rgba(244, 113, 31, 0.45); background: #ff8a3c; }

.btn--ghost {
  background: rgba(18, 20, 19, 0.35);
  color: var(--bone);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--acid); color: var(--acid); }

.btn--text {
  padding-inline: 8px;
  color: rgba(236, 233, 226, 0.82);
  border-color: transparent;
}
.btn--text:hover { color: var(--acid); }

.btn--outline {
  background: transparent;
  color: var(--bone);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--acid); color: var(--acid); }

.btn--whatsapp {
  background: #103527;
  color: #7ee2a8;
  border-color: rgba(126, 226, 168, 0.35);
}
.btn--whatsapp:hover { background: #14432f; box-shadow: 0 0 24px rgba(126, 226, 168, 0.2); }

.btn--sm { padding: 11px 14px; font-size: 11px; }
.btn--full { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 var(--pad);
  background: linear-gradient(rgba(12, 14, 13, 0.94), rgba(12, 14, 13, 0.78));
  border-bottom: 1px solid rgba(236, 233, 226, 0.08);
  transition: background 0.3s ease;
}
.site-header.solid { background: rgba(12, 14, 13, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { height: 34px; width: auto; display: block; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--acid);
}
.brand-name b { color: var(--bone); font-weight: 400; }

.site-nav { display: flex; gap: 28px; margin-left: 12px; }
.site-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(236, 233, 226, 0.7);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--acid); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-call {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--steel); transition: color 0.2s;
}
.header-call:hover { color: var(--acid); }

.cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.cart-btn:hover { border-color: var(--acid); color: var(--acid); }

.cart-count[hidden] { display: none; }
.cart-count {
  position: absolute;
  top: -7px; right: -7px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ---------- hero ---------- */
.hero-scrub { height: 300vh; position: relative; }
.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--ink-2);
}

.hero-canvas, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video { display: none; }
.hero-stage.has-video .hero-video { display: block; }
.hero-stage.has-video .hero-canvas { display: none; }

.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23g)'/%3E%3C/svg%3E");
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,9,9,0.5) 0%, rgba(7,9,9,0.18) 48%, transparent 72%),
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 55%, rgba(0,0,0,0.65)),
    linear-gradient(rgba(0,0,0,0.35), transparent 30%, transparent 70%, rgba(0,0,0,0.55));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--header-h) + 20px) var(--pad) 90px;
  z-index: 3;
  max-width: min(1120px, 62vw);
}

.hero-eyebrow {
  font-size: 12px;
  color: var(--acid);
  margin-bottom: 18px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 20px;
}
.hero-line {
  display: block;
  font-size: clamp(64px, 10vw, 148px);
  letter-spacing: 0.01em;
  color: var(--bone);
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
}
.hero-line--sub {
  font-size: clamp(30px, 4.3vw, 64px);
  color: rgba(236, 233, 226, 0.9);
  -webkit-text-stroke: 0;
  margin-top: 10px;
  line-height: 0.94;
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.88);
}

.hero-promise {
  max-width: 52ch;
  margin-bottom: 24px;
  color: rgba(236, 233, 226, 0.74);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
}

/* countdown */
.countdown { margin-bottom: 26px; }
.countdown-label { font-size: 11px; color: rgba(236, 233, 226, 0.64); margin-bottom: 10px; }
.countdown-label time { color: var(--bone); }
.countdown-grid { display: flex; align-items: baseline; gap: 12px; }
.cd-cell { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  color: var(--acid);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  text-shadow: 0 0 30px rgba(244, 113, 31, 0.4);
  font-variant-numeric: tabular-nums;
}
.cd-unit { font-size: 10px; color: var(--steel); }
.cd-sep { font-family: var(--font-display); font-size: clamp(24px, 4vw, 44px); color: rgba(236,233,226,0.3); align-self: flex-start; }

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  color: rgba(236, 233, 226, 0.64);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust span { color: var(--acid); font-size: 12px; }

.hero-scrollcue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  color: var(--steel);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scrollcue-bar {
  width: 1px; height: 44px;
  background: linear-gradient(var(--acid), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.marquee--green { background: var(--jeisa-dim); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 30px);
  letter-spacing: 0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 113, 31, 0.6);
  white-space: nowrap;
}
.marquee--green .marquee-track span { -webkit-text-stroke: 1px rgba(236, 233, 226, 0.5); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections shared ---------- */
.eyebrow { font-size: 12px; color: var(--steel); margin-bottom: 14px; }
.eyebrow--acid { color: var(--acid); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ---------- services ---------- */
.services {
  background: var(--ink);
  padding: clamp(70px, 10vw, 130px) var(--pad);
  background-image:
    linear-gradient(rgba(244,113,31,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,113,31,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.section-head { margin-bottom: clamp(40px, 6vw, 70px); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}

.card {
  background: var(--concrete-deep);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  border-color: rgba(244, 113, 31, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(244, 113, 31, 0.08);
}

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 20%, #3a3e3c, #23262500 70%),
    linear-gradient(#2b2e2d, #191c1b);
}
.card-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.card-media.has-video .card-video { display: block; }
.card-media.has-video .card-placeholder { display: none; }

.card-placeholder { position: absolute; inset: 0; display: grid; place-items: center; }
.ph-svg { width: 88%; height: 88%; }

.ph-badge {
  position: absolute;
  left: 12px; bottom: 12px;
  font-size: 9px;
  color: rgba(236, 233, 226, 0.4);
  border: 1px solid rgba(236, 233, 226, 0.15);
  padding: 4px 8px;
  background: rgba(12, 14, 13, 0.5);
}

/* placeholder motion — plays on card hover (mirrors video hover-to-play) */
.cyl-text { font-family: var(--font-display); font-size: 30px; fill: rgba(236,233,226,0.85); letter-spacing: 2px; }
.cyl-text-sm { font-family: var(--font-display); font-size: 18px; fill: rgba(236,233,226,0.7); writing-mode: vertical-rl; }
.strap-text { font-family: var(--font-mono); font-size: 10px; font-weight: 700; fill: #121413; letter-spacing: 1px; }
.gauge-text { font-family: var(--font-mono); font-size: 11px; fill: #121413; }
.label-brand { font-family: var(--font-display); font-size: 34px; fill: #ECE9E2; letter-spacing: 2px; }
.label-sub { font-family: var(--font-mono); font-size: 12px; fill: #FF9A4D; letter-spacing: 2px; }

.spin-label { animation: spin-label 9s linear infinite paused; }
.card:hover .spin-label, .card.playing .spin-label { animation-play-state: running; }
@keyframes spin-label { from { transform: translateX(0); } to { transform: translateX(-420px); } }

.pan-group { animation: pan 8s ease-in-out infinite paused; }
.card:hover .pan-group, .card.playing .pan-group { animation-play-state: running; }
@keyframes pan { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-24px); } }

.rock-group { transform-origin: 200px 340px; animation: rock 6s ease-in-out infinite paused; }
.card:hover .rock-group, .card.playing .rock-group { animation-play-state: running; }
@keyframes rock { 0%, 100% { transform: rotate(-1.4deg); } 50% { transform: rotate(1.4deg); } }

.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 27px);
  letter-spacing: 0.02em;
  color: var(--bone);
}
.card-desc { color: var(--steel); font-size: 15px; }
.card-detail { color: rgba(236, 233, 226, 0.55); font-size: 13px; }
.card-price { font-size: 11px; color: var(--acid); margin-top: 4px; }

.size-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.size-chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 8px 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.size-chip:hover { border-color: var(--acid); color: var(--acid); }
.size-chip.is-active { background: var(--acid); border-color: var(--acid); color: var(--ink); font-weight: 700; }

.card-controls { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 12px; }

.qty { display: inline-flex; border: 1px solid var(--line); width: max-content; }
.qty-btn {
  width: 38px; height: 38px;
  background: transparent;
  border: 0;
  color: var(--bone);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.qty-btn:hover { color: var(--acid); background: rgba(244, 113, 31, 0.08); }
.qty-input {
  width: 46px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 14px;
  text-align: center;
}

.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---------- safety ---------- */
.safety {
  padding: clamp(70px, 10vw, 130px) var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.safety-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.safety-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.safety-media.has-video .safety-video { display: block; }
.safety-media.has-video .safety-placeholder { display: none; }
.safety-placeholder { position: absolute; inset: 0; }
.macro-svg { width: 100%; height: 100%; }

.macro-pan { animation: macropan 16s ease-in-out infinite alternate; }
@keyframes macropan { from { transform: translateX(0); } to { transform: translateX(-360px); } }

.manifesto {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--steel);
  margin: 22px 0 30px;
  max-width: 52ch;
}

.safety-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.safety-points li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  color: var(--bone);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.safety-points .pt {
  flex: 0 0 92px;
  font-size: 11px;
  color: var(--acid);
}

/* ---------- sales points ---------- */
.stations {
  background: var(--ink);
  padding: clamp(70px, 10vw, 130px) var(--pad);
}
.stations-sub { color: var(--steel); margin-top: 18px; max-width: 52ch; font-size: 16px; }

.stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.station {
  background: var(--ink);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s;
}
.station:hover { background: var(--concrete-deep); }
.station:hover .station-contact { color: var(--acid); }
.station-name { font-family: var(--font-display); font-size: 19px; letter-spacing: 0.03em; color: var(--bone); }
.station-area { font-size: 10px; color: var(--steel); letter-spacing: 0.16em; }
.station-contact { font-size: 11px; color: rgba(236, 233, 226, 0.7); margin-top: 6px; transition: color 0.2s; }

/* ---------- notify ---------- */
.notify {
  background: var(--jeisa-dim);
  background-image:
    radial-gradient(ellipse 80% 100% at 100% 0%, rgba(244, 113, 31, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(12, 14, 13, 0.55), transparent 60%);
  padding: clamp(70px, 10vw, 130px) var(--pad);
}
.notify-inner { max-width: 860px; }
.notify-sub { color: rgba(236, 233, 226, 0.75); margin: 18px 0 30px; font-size: 17px; }

.notify-topics { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.topic { position: relative; cursor: pointer; }
.topic input { position: absolute; opacity: 0; pointer-events: none; }
.topic span {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 16px;
  border: 1px solid rgba(236, 233, 226, 0.25);
  color: var(--bone);
  transition: all 0.2s;
}
.topic:hover span { border-color: var(--acid); }
.topic input:checked + span { background: var(--acid); color: var(--ink); border-color: var(--acid); font-weight: 700; }
.topic input:focus-visible + span { outline: 2px solid var(--acid); outline-offset: 3px; }

.notify-fields { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 12px; }

.field {
  background: rgba(12, 14, 13, 0.45);
  border: 1px solid rgba(236, 233, 226, 0.2);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 15px 16px;
  transition: border-color 0.2s;
}
.field::placeholder { color: rgba(236, 233, 226, 0.4); }
.field:focus { outline: none; border-color: var(--acid); }
.field.error { border-color: #ff6b57; }

.form-note { font-size: 10px; color: rgba(236, 233, 226, 0.5); margin-top: 14px; min-height: 14px; }

/* ---------- footer ---------- */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(50px, 7vw, 80px) var(--pad) 30px;
}
.footer-brand { margin-bottom: 40px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.footer-plate {
  background: #F7F5F0;
  padding: 18px 26px;
  display: inline-block;
}
.footer-plate img { display: block; height: clamp(64px, 9vw, 104px); width: auto; }
.footer-tag { color: var(--steel); font-size: 11px; letter-spacing: 0.2em; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 220px));
  gap: 28px;
  margin-bottom: 44px;
}
.footer-cols h4 { font-size: 11px; color: var(--acid); margin-bottom: 10px; letter-spacing: 0.16em; }
.footer-cols p { color: var(--steel); font-size: 14px; }
.footer-cols a:hover { color: var(--acid); }

.footer-legal { font-size: 10px; color: rgba(236, 233, 226, 0.35); border-top: 1px solid var(--line); padding-top: 22px; }

/* ---------- drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 70;
  opacity: 0;
  transition: opacity 0.3s;
}
.drawer-overlay.open { opacity: 1; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100vw);
  background: var(--ink);
  border-left: 1px solid var(--line);
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.open { transform: none; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--ink);
  z-index: 1;
}
.drawer-title { font-family: var(--font-display); font-weight: 400; font-size: 24px; letter-spacing: 0.03em; }
.drawer-close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  width: 36px; height: 36px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.drawer-close:hover { border-color: var(--acid); color: var(--acid); }

.drawer-items { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.drawer-empty { font-size: 11px; color: var(--steel); text-align: center; padding: 26px 0; line-height: 2; }

.drawer-item {
  border: 1px solid var(--line);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer-item-info { flex: 1; }
.drawer-item-name { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.03em; }
.drawer-item-qty { font-family: var(--font-mono); font-size: 11px; color: var(--acid); margin-top: 3px; }
.drawer-item-remove {
  background: transparent; border: 0;
  color: var(--steel);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.2s;
}
.drawer-item-remove:hover { color: #ff6b57; }

.drawer-form {
  margin-top: auto;
  padding: 20px 24px 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 14px 22px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  max-width: 90vw;
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero-content { max-width: 72vw; }
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .safety { grid-template-columns: 1fr; }
  .safety-media { order: -1; }
}

@media (max-width: 760px) {
  .site-nav, .header-call span { display: none; }
  .hero-scrub { height: 220vh; }
  .hero-content {
    justify-content: flex-end;
    max-width: none;
    padding: calc(var(--header-h) + 24px) var(--pad) 88px;
  }
  .hero-title { margin-bottom: 16px; }
  .hero-line { font-size: clamp(56px, 21vw, 92px); }
  .hero-line--sub { font-size: clamp(30px, 11vw, 48px); }
  .hero-promise { margin-bottom: 18px; }
  .countdown { margin-bottom: 20px; }
  .hero-ctas .btn:not(.btn--text) { flex: 1 1 100%; }
  .hero-ctas .btn--text { padding-left: 0; }
  .hero-trust { gap: 8px 14px; margin-top: 18px; }
  .countdown-grid { gap: 8px; }
  .notify-fields { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .card-actions { grid-template-columns: 1fr; }
  .safety-points .pt { flex-basis: 74px; }
}

@media (max-height: 800px) and (min-width: 761px) {
  .hero-content { padding-top: calc(var(--header-h) + 12px); padding-bottom: 50px; }
  .hero-eyebrow { margin-bottom: 10px; }
  .hero-title { margin-bottom: 14px; }
  .hero-line { font-size: clamp(58px, 8.2vw, 118px); }
  .hero-line--sub { font-size: clamp(28px, 3.7vw, 50px); margin-top: 7px; }
  .hero-promise { margin-bottom: 15px; }
  .countdown { margin-bottom: 16px; }
  .cd-num { font-size: clamp(32px, 4vw, 46px); }
  .hero-trust { margin-top: 15px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .scrollcue-bar, .macro-pan { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .spin-label, .pan-group, .rock-group { animation: none; }
}
