/* ==========================================================================
   TechTicket — Brand stylesheet
   Tokens → Base → Header → Components → Pages → Footer → Responsive
   ========================================================================== */

:root {
  /* Colors — "Ink & Paper" with industrial stamp accent */
  --ink:         #0F1115;
  --ink-soft:    #1A1D24;
  --ink-line:    #2A2E37;
  --ink-text:    #F4EFE3;
  --ink-mute:    #8A8F9A;

  --paper:       #F4EFE3;
  --paper-2:     #ECE5D2;
  --paper-line:  #D8D0BC;
  --paper-text:  #1A1A1A;
  --paper-mute:  #6A6354;

  --stamp:       #D9602B;  /* signature color */
  --stamp-deep:  #B84A1F;

  /* Type */
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --container: 1200px;
  --gutter:    clamp(20px, 4vw, 48px);
}

/* === Base ============================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--ink-text);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.theme-paper {
  background: var(--paper);
  color: var(--paper-text);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.center-narrow { max-width: 720px; margin: 0 auto; }

/* === Eyebrow / labels =================================================== */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stamp);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--stamp);
  display: inline-block;
}

/* === Header ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 17, 21, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.theme-paper .site-header {
  background: rgba(244, 239, 227, 0.88);
  border-bottom-color: var(--paper-line);
}
.site-header > .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand-text {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink-text);
}
.theme-paper .brand-text { color: var(--paper-text); }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  transition: color 0.15s ease;
  position: relative;
}
.nav a:hover { color: var(--ink-text); }
.nav a.active { color: var(--ink-text); }
.nav a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--stamp);
}
.theme-paper .nav a { color: var(--paper-mute); }
.theme-paper .nav a:hover, .theme-paper .nav a.active { color: var(--paper-text); }

/* === Hero (home) ======================================================= */
.hero {
  padding: clamp(80px, 13vw, 160px) 0 clamp(48px, 8vw, 96px);
  position: relative;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 136px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink-text);
  max-width: 16ch;
  margin-top: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--ink-text);
}
.hero-sub {
  margin-top: 36px;
  max-width: 60ch;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-mute);
}
.hero-sub strong { color: var(--ink-text); font-weight: 500; }

/* === Ticket signature component ======================================== */
.ticket-section { padding: 0 0 clamp(72px, 12vw, 140px); }
.ticket {
  --stub-w: 200px;
  --punch: 28px;
  position: relative;
  background: var(--paper);
  color: var(--paper-text);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr var(--stub-w);
  overflow: visible;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,0.55), 0 2px 0 rgba(255,255,255,0.04) inset;
}
.theme-paper .ticket {
  box-shadow: 0 30px 70px -30px rgba(60,40,20,0.35);
}
/* punch-out perforation circles at the seam (page-bg color) */
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: var(--punch); height: var(--punch);
  background: var(--ink);
  border-radius: 50%;
  right: var(--stub-w);
  transform: translateX(50%);
  z-index: 2;
}
.theme-paper .ticket::before, .theme-paper .ticket::after {
  background: var(--paper);
}
.ticket::before { top: calc(var(--punch) * -0.5); }
.ticket::after  { bottom: calc(var(--punch) * -0.5); }

.ticket-main { padding: clamp(32px, 5vw, 56px); }
.ticket-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 24px;
}
.ticket-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.ticket-date {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--paper-mute);
  margin-bottom: 36px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 600px;
}
.cd-cell {
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
  border-radius: 6px;
  padding: 18px 10px 14px;
  text-align: center;
}
.cd-num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--paper-text);
}
.cd-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-top: 10px;
}

.ticket-stub {
  background: var(--stamp);
  color: var(--paper);
  padding: clamp(28px, 4vw, 44px) clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  border-radius: 0 10px 10px 0;
  text-align: center;
}
/* dashed perforation line on the stub's left edge */
.ticket-stub::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  border-left: 2px dashed rgba(244, 239, 227, 0.6);
}
.stub-stamp {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.stub-no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.stub-rule {
  width: 60%;
  border-top: 1px solid rgba(244,239,227,0.4);
}

/* === Services / rails =================================================== */
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section-head { margin-bottom: clamp(48px, 7vw, 80px); max-width: 60ch; }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
}
.section-title em { font-style: italic; }
.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-mute);
  line-height: 1.55;
}
.theme-paper .section-lead { color: var(--paper-mute); }

.rails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  overflow: hidden;
}
.rail {
  background: var(--ink);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: background 0.2s ease;
}
.rail:hover { background: var(--ink-soft); }
.rail-code {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stamp);
  margin-bottom: 24px;
  display: flex; gap: 12px; align-items: center;
}
.rail-code .sep { color: var(--ink-line); }
.rail-code .tag { color: var(--ink-mute); }
.rail-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.rail-title em { font-style: italic; }
.rail-body {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-top: auto;
}

/* === Differentiators (the bridge concept) =============================== */
.diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.diff-points { display: flex; flex-direction: column; gap: 28px; }
.diff-point {
  border-top: 1px solid var(--ink-line);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
}
.diff-point-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--stamp);
  letter-spacing: 0.1em;
}
.diff-point h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.diff-point h3 em { font-style: italic; }
.diff-point p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* === About page ======================================================== */
.about-hero {
  padding: clamp(100px, 14vw, 180px) 0 clamp(40px, 6vw, 80px);
}
.about-hero .eyebrow { color: var(--stamp); }
.about-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-top: 28px;
  color: var(--paper-text);
  max-width: 16ch;
}
.about-title em { font-style: italic; }
.about-sub {
  margin-top: 32px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--paper-mute);
  max-width: 60ch;
}

.about-narrative {
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--paper-line);
}
.narrative-body {
  max-width: 64ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--paper-text);
}
.narrative-body p { margin: 0 0 1.2em; }
.narrative-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.12em 0 0;
  color: var(--stamp);
}

/* States grid */
.states {
  padding: clamp(60px, 9vw, 120px) 0;
  border-top: 1px solid var(--paper-line);
}
.states-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 48px;
  list-style: none;
  padding: 0;
}
.state {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--paper-line);
}
.state:nth-last-child(-n+2) { border-bottom: 1px solid var(--paper-line); }
.state-code {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--stamp);
}
.state-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--paper-text);
}
.state-name em { font-style: italic; }
.state-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* Relaunch panel on about */
.relaunch {
  padding: clamp(60px, 9vw, 120px) 0;
  border-top: 1px solid var(--paper-line);
}
.stamp-block {
  display: inline-block;
  border: 3px solid var(--stamp);
  color: var(--stamp);
  padding: 18px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  transform: rotate(-2deg);
  margin: 24px 0 36px;
}
.relaunch-body {
  max-width: 60ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--paper-text);
}

/* === Contact page ====================================================== */
.contact-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 6vw, 80px);
}
.contact-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-top: 28px;
  max-width: 16ch;
}
.contact-title em { font-style: italic; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin: 40px 0 120px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 90px -30px rgba(0,0,0,0.5);
}
.contact-form-side {
  background: var(--paper);
  color: var(--paper-text);
  padding: clamp(36px, 5vw, 64px);
}
.contact-info-side {
  background: var(--ink-soft);
  color: var(--ink-text);
  padding: clamp(36px, 5vw, 64px);
  display: flex; flex-direction: column;
  gap: 40px;
}

.form-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stamp);
  margin-bottom: 20px;
}
.form-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  margin: 0 0 36px;
  letter-spacing: -0.01em;
}
.field { display: block; margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--paper-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--paper-line);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--stamp);
}
.field textarea { resize: vertical; min-height: 100px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 28px;
  border-radius: 4px;
  transition: background 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--stamp); color: var(--paper); }
.btn-stamp {
  background: var(--stamp);
  color: var(--paper);
}
.btn-stamp:hover { background: var(--stamp-deep); }

.form-success {
  background: var(--paper-2);
  border-left: 4px solid var(--stamp);
  padding: 24px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--paper-text);
}
.form-success small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-top: 12px;
}

.info-block .info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stamp);
  margin-bottom: 12px;
}
.info-block .info-value {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink-text);
  margin-bottom: 8px;
}
.info-block .info-meta {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}
.info-block .info-meta strong { color: var(--ink-text); font-weight: 500; }

/* === Footer ============================================================ */
.site-footer {
  border-top: 1px solid var(--ink-line);
  padding: 56px 0 32px;
  margin-top: 80px;
}
.theme-paper .site-footer {
  border-top-color: var(--paper-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-text { color: var(--ink-text); font-size: 22px; }
.theme-paper .footer-brand .brand-text { color: var(--paper-text); }
.footer-tagline {
  margin-top: 18px;
  max-width: 36ch;
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.55;
}
.theme-paper .footer-tagline { color: var(--paper-mute); }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stamp);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--ink-mute); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--ink-text); }
.theme-paper .footer-col a { color: var(--paper-mute); }
.theme-paper .footer-col a:hover { color: var(--paper-text); }

.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.theme-paper .footer-bottom { border-top-color: var(--paper-line); color: var(--paper-mute); }

/* === Brand kit page =================================================== */
.kit-hero { padding: clamp(80px, 12vw, 140px) 0 60px; }
.kit-section { padding: 60px 0; border-top: 1px solid var(--paper-line); }
.kit-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
}
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.swatch {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--paper-line);
}
.swatch-color { aspect-ratio: 4 / 3; }
.swatch-info {
  background: var(--paper);
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 12px;
}
.swatch-info .name {
  color: var(--paper-text); font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 4px;
}
.swatch-info .hex { color: var(--paper-mute); letter-spacing: 0.05em; }
.swatch-info .role { color: var(--paper-mute); margin-top: 8px; font-size: 11px; line-height: 1.4; text-transform: none; letter-spacing: 0; }

.type-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--paper-line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: baseline;
}
.type-row:last-child { border-bottom: none; }
.type-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--paper-mute);
  letter-spacing: 0.05em;
}
.type-meta strong { color: var(--paper-text); font-weight: 700; display: block; margin-bottom: 4px; }
.type-sample-serif { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -0.02em; }
.type-sample-serif em { font-style: italic; }
.type-sample-sans { font-family: var(--sans); font-size: clamp(20px, 2vw, 28px); line-height: 1.4; }
.type-sample-mono { font-family: var(--mono); font-size: clamp(16px, 1.6vw, 22px); letter-spacing: 0.05em; }

.logo-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.logo-card {
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 48px;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
}
.logo-card.on-ink { background: var(--ink); border-color: var(--ink-line); }
.logo-card .brand-mark { width: 80px; height: 80px; }
.logo-card.wordmark { gap: 16px; }
.logo-card.wordmark .brand-text { font-size: 28px; }
.logo-card.on-ink .brand-text { color: var(--ink-text); }
.logo-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  text-align: center;
  margin-top: 16px;
}

/* === Responsive ======================================================== */
@media (max-width: 860px) {
  .rails { grid-template-columns: 1fr; }
  .diff { grid-template-columns: 1fr; }
  .states-list { grid-template-columns: 1fr; }
  .state:nth-last-child(-n+2) { border-bottom: none; }
  .state:last-child { border-bottom: 1px solid var(--paper-line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .type-row { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 700px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
  .brand-text { font-size: 16px; }

  /* Ticket flips to stacked on mobile */
  .ticket {
    --stub-w: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
  .ticket::before, .ticket::after {
    right: auto; left: var(--punch); top: auto;
    transform: translateY(50%);
  }
  .ticket::before { bottom: auto; top: 50%; left: calc(var(--punch) * -0.5); }
  .ticket::after  { top: auto; bottom: auto; left: auto; right: calc(var(--punch) * -0.5); }
  /* simpler approach: hide punch circles on mobile, perforation becomes horizontal */
  .ticket::before, .ticket::after { display: none; }
  .ticket-stub {
    border-radius: 0 0 10px 10px;
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 28px;
    gap: 20px;
  }
  .ticket-stub::before {
    left: 14px; right: 14px; top: 0; bottom: auto;
    border-left: none;
    border-top: 2px dashed rgba(244, 239, 227, 0.6);
  }
  .countdown { gap: 8px; }
  .cd-cell { padding: 14px 8px 12px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* === Reduced motion ===================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
