/* ============================================================
   GIZMOOT — styles.css
   Palette + type ported 1:1 from the Claude Design source.
   ============================================================ */

:root {
  --ink: #20244F;        /* deep navy — text, borders, dark panels */
  --cream: #FFF6E4;      /* page background */
  --card: #FFFDF6;       /* card background */
  --yellow: #FFD43D;     /* hero + accents */
  --accent: #FF5B3A;     /* swappable accent (also: #3D63F5, #0FA36B, #C13FD6) */
  --drum-a: #2B3070;
  --drum-b: #454B95;
  --vial-a: #CFE3FF;
  --vial-b: #EAF3FF;
  --muted: #454B78;
  --foot-soft: #D8DCF5;
  --foot-dim: #9BA2D6;
  --shadow-ink: rgba(32, 36, 79, 0.18);
  --dur: 1.3s;           /* one drum revolution — set from js (crank speed) */
  --rise-delay: 0s;      /* hero copy waits for the intro overlay */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}
html.intro-running { --rise-delay: 2.15s; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
:focus-visible { outline: 3px solid #3D63F5; outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--ink); color: var(--yellow); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; }

/* ---------- keyframes ---------- */
@keyframes gz-roll     { to { background-position-x: 36px; } }
@keyframes gz-rollback { to { background-position-x: -28px; } }
@keyframes gz-spin     { to { transform: rotate(360deg); } }
@keyframes gz-spin-c   { to { transform: rotate(-360deg); } }
@keyframes gz-conic    { to { transform: rotate(360deg); } }
@keyframes gz-rise     { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes gz-floaty   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes gz-intro-exit { to { transform: translateY(-101%); } }
@keyframes gz-drum-in-l  { from { transform: translateX(-55vw); } to { transform: translateX(0); } }
@keyframes gz-drum-in-r  { from { transform: translateX(55vw); } to { transform: translateX(0); } }
@keyframes gz-vial-drop  {
  from { opacity: 0; transform: translate(-50%, -110px); }
  70%  { opacity: 1; transform: translate(-50%, 6px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes gz-pop  { from { opacity: 0; transform: translateY(20px) scale(0.85); } to { opacity: 1; transform: none; } }
@keyframes gz-fade { from { opacity: 0; } to { opacity: 1; } }

/* hero copy reveal — per-element delay via --rd */
.rise { animation: gz-rise .7s calc(var(--rise-delay) + var(--rd, 0s)) both; }
.hero-art.rise { animation-duration: .8s; }

/* ============================================================
   INTRO OVERLAY
   ============================================================ */
.gz-intro { display: none; }
html.intro-running .gz-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  overflow: hidden;
  animation: gz-intro-exit .65s cubic-bezier(.75, 0, .2, 1) 2.1s forwards;
}
.gz-intro-rig { position: relative; padding-top: 30px; }
.gz-intro-vial {
  position: absolute;
  top: 0; left: 50%;
  width: 118px; height: 26px;
  border: 3px solid var(--cream);
  border-radius: 13px;
  background: repeating-linear-gradient(90deg, var(--vial-a) 0 12px, var(--vial-b) 12px 24px);
  animation:
    gz-vial-drop .6s cubic-bezier(.3, 1.3, .5, 1) .5s both,
    gz-rollback var(--dur) linear .9s infinite;
  transform: translate(-50%, 0);
}
.gz-intro-drums { display: flex; gap: 18px; }
.gz-intro-drum-wrap { display: block; }
.gz-intro-drum-wrap.from-left  { animation: gz-drum-in-l .55s cubic-bezier(.2, .8, .3, 1) both; }
.gz-intro-drum-wrap.from-right { animation: gz-drum-in-r .55s cubic-bezier(.2, .8, .3, 1) both; }
.gz-intro-drum {
  display: block;
  width: 112px; height: 34px;
  border: 3px solid var(--cream);
  border-radius: 17px;
  background: repeating-linear-gradient(90deg, var(--drum-a) 0 14px, var(--drum-b) 14px 28px);
  animation: gz-roll var(--dur) linear infinite;
}
.gz-intro-logo {
  display: flex;
  align-items: baseline;
  gap: 0.04em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 9vw, 88px);
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
}
.gz-intro-logo .pop { animation: gz-pop .5s both; }
.gz-intro-logo .ring {
  display: inline-block;
  width: 0.66em; height: 0.66em;
  border-radius: 50%;
}
.gz-intro-logo .ring-yellow { border: 0.11em solid var(--yellow); }
.gz-intro-logo .ring-accent { border: 0.11em solid var(--accent); margin-left: 0.05em; }
.gz-intro-tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--foot-dim);
  animation: gz-fade .5s 1.35s both;
}

/* ============================================================
   ANNOUNCEMENT + NAV
   ============================================================ */
.announce {
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.04em;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(255, 246, 228, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-glyph {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--accent);
  align-items: center;
  justify-content: center;
}
.brand-glyph > span {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--cream);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links > a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.nav-links > a:hover { color: var(--accent); }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease;
}
.cart-btn:hover { transform: translateY(-2px); background: var(--accent); }
.cart-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}
.cart-count {
  display: inline-block;
  transition: transform .25s cubic-bezier(.2, 1.6, .4, 1);
}
.cart-count.bump { transform: scale(1.45); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 40px) clamp(56px, 9vw, 110px);
}
.hero-in {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero-copy { flex: 1 1 420px; min-width: 300px; }
.hero-eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6.5vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero-lede {
  margin: 0 0 30px;
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 46ch;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 4px 4px 0 rgba(32, 36, 79, 0.35);
}
.btn-dark:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(32, 36, 79, 0.35);
}
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover {
  transform: translate(-2px, -2px);
  background: var(--accent);
  color: var(--cream);
}

/* ---------- animated mixer illustration ---------- */
.hero-art {
  flex: 1 1 380px;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.mixer {
  position: relative;
  width: min(420px, calc(100% - 72px));
  padding: 30px 0 0;
}
.mixer-chip {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 12px;
}
.chip-left {
  top: 0; left: 4%;
  background: var(--cream);
  animation: gz-floaty 3.4s ease-in-out infinite;
}
.chip-right {
  top: 10px; right: 2%;
  background: var(--accent);
  color: var(--cream);
  animation: gz-floaty 4.1s .6s ease-in-out infinite;
}
.mixer-body {
  position: relative;
  margin-top: 56px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 34px 30px 26px;
  box-shadow: 8px 10px 0 rgba(32, 36, 79, 0.25);
}
.mixer-vial {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 170px; height: 36px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: repeating-linear-gradient(90deg, var(--vial-a) 0 14px, var(--vial-b) 14px 28px);
  background-color: var(--vial-b);
  animation: gz-rollback var(--dur) linear infinite;
  display: flex;
}
.vial-cap {
  width: 34px; height: 100%;
  background: var(--ink);
  border-right: 3px solid var(--ink);
}
.mixer-drums { display: flex; gap: 26px; justify-content: center; }
.drum {
  position: relative;
  width: 158px; height: 46px;
  border: 3px solid var(--ink);
  border-radius: 23px;
  overflow: hidden;
  background: repeating-linear-gradient(90deg, var(--drum-a) 0 18px, var(--drum-b) 18px 36px);
  animation: gz-roll var(--dur) linear infinite;
}
.oring {
  position: absolute;
  top: 0; bottom: 0;
  width: 12px;
  background: var(--accent);
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}
.oring-l { left: 20px; }
.oring-r { right: 20px; }
.mixer-base {
  margin-top: 18px;
  height: 26px;
  background: var(--ink);
  border-radius: 10px;
}
.mixer-label {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mixer-label-text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.mixer-dots { display: flex; gap: 6px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.dot-yellow { background: var(--yellow); }
.dot-accent { background: var(--accent); }
.crank {
  position: absolute;
  right: -34px; top: 34px;
  width: 64px; height: 64px;
  animation: gz-spin var(--dur) linear infinite;
}
.crank-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 5px solid var(--ink);
  background: var(--yellow);
}
.crank-knob {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--ink);
}
.crank-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section {
  padding: clamp(56px, 8vw, 100px) clamp(16px, 4vw, 40px);
  max-width: 1160px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.section-head h2,
.made h2,
.feature-copy h2,
.founder-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
}
.section-aside {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-accent { color: var(--accent); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 22px;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--shadow-ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(32, 36, 79, 0.22);
}
.card-media {
  position: relative;
  height: 170px;
  border-bottom: 2px solid var(--ink);
  background: repeating-linear-gradient(-45deg, var(--tint, var(--yellow)) 0 12px, var(--card) 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-photo {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  padding: 4px 10px;
}
.card-part {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 5px;
  padding: 3px 8px;
  letter-spacing: 0.06em;
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.card-body h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.01em;
}
.card-sub { margin: 0; font-size: 15px; color: var(--muted); }
.card-dims {
  margin: 2px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.card-buy {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.card-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}
.btn-add {
  background: var(--accent);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  min-height: 44px;
}
.btn-add:hover { transform: scale(1.06); background: var(--ink); }

/* ============================================================
   MIXER FEATURE (dark)
   ============================================================ */
.feature {
  background: var(--ink);
  color: var(--cream);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: clamp(56px, 8vw, 100px) clamp(16px, 4vw, 40px);
}
.feature-in {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.feature-art {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  justify-content: center;
}
.endview { position: relative; width: 300px; height: 300px; }
.endview-label {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--yellow);
}
.wheel {
  position: absolute;
  bottom: 20px;
  width: 132px; height: 132px;
  border-radius: 50%;
  border: 4px solid var(--cream);
  overflow: hidden;
}
.wheel-left { left: 0; }
.wheel-right { right: 0; }
.wheel-face {
  position: absolute;
  inset: -20%;
  background: repeating-conic-gradient(var(--drum-a) 0 20deg, var(--drum-b) 20deg 40deg);
  animation: gz-conic calc(var(--dur) * 2) linear infinite;
  border-radius: 50%;
  display: block;
}
.wheel-hub {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--cream);
}
.vial-circle {
  position: absolute;
  top: 34px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 4px solid var(--cream);
  overflow: hidden;
  background: var(--vial-b);
}
.vial-face {
  position: absolute;
  inset: -20%;
  background: repeating-conic-gradient(var(--vial-a) 0 25deg, var(--vial-b) 25deg 50deg);
  animation: gz-spin-c calc(var(--dur) * 1.5) linear infinite;
  border-radius: 50%;
  display: block;
}
.vial-hub {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
}
.feature-copy { flex: 1 1 400px; min-width: 300px; }
.feature-copy h2 { margin: 0 0 16px; text-wrap: balance; }
.feature-lede {
  margin: 0 0 26px;
  font-size: 17px;
  max-width: 52ch;
  color: var(--foot-soft);
}
.spec-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
}
.spec-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.spec-list li::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transform: translateY(1px);
}
.btn-feature {
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-feature:hover {
  transform: translate(-2px, -2px);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.founder-copy { flex: 1 1 400px; min-width: 300px; }
.founder-copy h2 { margin: 0 0 16px; text-wrap: balance; }
.founder-copy p { margin: 0 0 16px; font-size: 17px; max-width: 54ch; }
.guardian-note {
  font-family: var(--font-mono);
  font-size: 13px !important;
  color: var(--muted);
  border: 1.5px dashed var(--muted);
  border-radius: 10px;
  padding: 10px 14px;
  display: inline-block;
  margin: 0 !important;
}
.founder-media { flex: 1 1 380px; min-width: 300px; }
.founder-video,
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--shadow-ink);
}
.founder-video { display: block; background: var(--ink); object-fit: cover; }
.founder-video[hidden] { display: none; }
.video-placeholder {
  position: relative;
  background: repeating-linear-gradient(-45deg, #FFE9A8 0 14px, var(--cream) 14px 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.play-badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.video-placeholder:hover .play-badge { transform: scale(1.08); }
.play-tri {
  width: 0; height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid var(--yellow);
  margin-left: 5px;
}
.video-tag {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  padding: 4px 10px;
}
.video-note {
  margin: 12px 4px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   HOW IT'S MADE
   ============================================================ */
.made {
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  padding: clamp(56px, 8vw, 100px) clamp(16px, 4vw, 40px);
}
.made-in { max-width: 1160px; margin: 0 auto; }
.made h2 { margin: 0 0 36px; }
.step {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 4px 4px 0 var(--shadow-ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.step:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(32, 36, 79, 0.22);
}
.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.step-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.08em;
}
.step-shape {
  width: 16px; height: 16px;
  background: var(--accent);
  border: 2px solid var(--ink);
  display: inline-block;
}
.step h3 { margin: 0 0 8px; font-size: 24px; }
.step p { margin: 0; font-size: 15.5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 40px);
}
.footer-in {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}
.footer-brand-row { color: var(--cream); }
.footer-brand .brand-name { font-size: 22px; }
.glyph-light {
  width: 30px; height: 30px;
  border-color: var(--cream);
}
.glyph-light > span {
  width: 10px; height: 10px;
  border: 3px solid var(--cream);
  background: transparent;
}
.footer-tagline { margin: 0; font-size: 15px; color: var(--foot-soft); }
.footer-legal {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--foot-dim);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
}
.footer-col-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--yellow);
}
.footer-col a {
  color: var(--cream);
  text-decoration: none;
}
.footer-col a:hover { color: var(--accent); }
.footer-fine {
  max-width: 1160px;
  margin: 36px auto 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--foot-dim);
  border-top: 1px solid #3A3F7E;
  padding-top: 18px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  .gz-intro { display: none !important; }
}
