/* =========================================================
   Design tokens — "trading ledger / confirmation slip"
   ========================================================= */
:root {
  --paper: #EDEEEB;
  --paper-card: #FAFAF8;
  --paper-raised: #FFFFFF;

  --ink: #17181A;
  --ink-soft: #4A4B4E;
  --ink-faint: #8B8C8E;
  --ink-whisper: #B7B8B4;

  --rule: #D6D7D2;
  --rule-strong: #B9BAB5;

  --navy: #1D2B4F;
  --navy-soft: #34456F;
  --profit: #1F7A4D;
  --loss: #B23A2E;

  --font-display: 'Tajawal', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --font-serif: 'Zilla Slab', serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  background-image: repeating-linear-gradient(var(--paper) 0px, var(--paper) 47px, var(--rule) 48px);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.mono { font-family: var(--font-mono); direction: ltr; unicode-bidi: isolate; }
.serif-figure { font-family: var(--font-serif); font-weight: 700; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 2rem) 1.5rem;
}
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: 40px; display: block; }
.footer-logo .logo-img { height: 32px; width: 32px; }
.main-nav { display: flex; gap: 2.5rem; font-size: 0.92rem; color: var(--ink-soft); }
.main-nav a { transition: color 0.15s ease; }
.main-nav a:hover { color: var(--ink); }

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  font-size: 0.86rem;
  font-weight: 700;
}
.nav-cta:hover { background: var(--navy-soft); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.5rem clamp(1.25rem, 4vw, 2rem) 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: center;
}
.hero > div { min-width: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 48ch;
  margin-bottom: 2rem;
}

.headline-figure {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}
.headline-figure .figure {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
}
.headline-figure .figure-label {
  font-size: 0.85rem;
  color: var(--ink-faint);
  max-width: 18ch;
  line-height: 1.5;
}

.actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 3px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-soft); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: rgba(23,24,26,0.05); }
.btn-block { width: 100%; justify-content: center; }

/* --- confirmation slip visual (hero) --- */
.slip-wrap { display: flex; justify-content: center; }
.slip {
  position: relative;
  background: var(--paper-card);
  width: 100%;
  max-width: 340px;
  padding: 2rem 1.6rem 1.75rem;
  box-shadow: 0 24px 48px -20px rgba(23,24,26,0.25);
  transform: rotate(2deg);
}
.slip::before {
  content: "";
  position: absolute;
  top: -6px; right: -6px; bottom: -6px; left: -6px;
  border: 1px solid var(--rule);
  z-index: -1;
}
.slip-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-faint);
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}
.slip-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--rule);
}
.slip-row .pair { color: var(--ink); font-weight: 500; }
.slip-row .val { color: var(--ink-soft); }
.slip-row .delta.up { color: var(--profit); }
.slip-row .delta.down { color: var(--loss); }

.stamp {
  position: absolute;
  top: 38%;
  left: -18px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-14deg);
  background: var(--paper-card);
}
.stamp span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.slip-footer {
  margin-top: 1rem;
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
}
.cut-edge {
  height: 10px;
  margin-top: 0.5rem;
  background-image: radial-gradient(circle at 10px 0, transparent 6px, var(--paper) 6.5px);
  background-size: 20px 10px;
  background-repeat: repeat-x;
}

/* --- stats strip below hero --- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  max-width: var(--container);
  margin: 0 auto 4.5rem;
}
.strip-item { padding: 1.75rem 1.5rem; border-inline-start: 1px solid var(--rule); }
.strip-item:first-child { border-inline-start: none; }
.strip-item b { display: block; font-family: var(--font-mono); font-size: 1.4rem; font-weight: 500; margin-bottom: 0.3rem; color: var(--ink); }
.strip-item span { font-size: 0.82rem; color: var(--ink-faint); }

/* =========================================================
   Video section (placeholder until a real clip is uploaded)
   ========================================================= */
.video-section { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem) 4.5rem; }
.video-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-placeholder-note { position: relative; text-align: center; color: rgba(255,255,255,0.65); font-family: var(--font-mono); font-size: 0.85rem; }
.video-placeholder-note span { display: block; margin-top: 0.5rem; font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.play-ring {
  width: 56px; height: 56px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.play-ring::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent rgba(255,255,255,0.8);
  margin-inline-start: 3px;
}

/* =========================================================
   Generic sections
   ========================================================= */
.section { max-width: var(--container); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem); }

.section-head { max-width: 62ch; margin-bottom: 2.5rem; }
.section-head .eyebrow { margin-bottom: 0.75rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-head p { color: var(--ink-soft); margin-top: 0.75rem; font-size: 1.02rem; }

/* --- capability grid --- */
.capability-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); border-top: 1px solid var(--rule-strong); border-inline-start: 1px solid var(--rule-strong); }
.capability-card { padding: 1.75rem 1.5rem; border-inline-end: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong); }
.capability-card .tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--navy); border: 1px solid var(--rule-strong); border-radius: 100px; padding: 0.2rem 0.65rem; display: inline-block; margin-bottom: 0.9rem; }
.capability-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.capability-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* --- process steps --- */
.process-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border-top: 1px solid var(--rule-strong); border-inline-start: 1px solid var(--rule-strong); }
.process-step { padding: 1.75rem 1.5rem; border-inline-end: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong); }
.process-step .num { font-family: var(--font-mono); color: var(--navy); font-size: 0.85rem; }
.process-step h3 { font-size: 1rem; margin: 0.6rem 0 0.4rem; }
.process-step p { color: var(--ink-soft); font-size: 0.88rem; margin: 0; }

/* =========================================================
   Packages
   ========================================================= */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.package-card {
  position: relative;
  background: var(--paper-card);
  border: 1px solid var(--rule-strong);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.package-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -22px rgba(23,24,26,0.35); }
.package-card.highlight { border-color: var(--navy); }

.package-badge {
  position: absolute;
  top: -0.65rem;
  inset-inline-start: 1.75rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.package-number { font-family: var(--font-mono); color: var(--ink-faint); font-size: 0.8rem; }
.package-card h3 { font-size: 1.25rem; margin: 0.5rem 0 0.35rem; }
.package-tagline { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1rem; font-weight: 500; }
.package-intro { color: var(--ink-faint); font-size: 0.86rem; line-height: 1.75; margin-bottom: 1.5rem; }

.package-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--rule-strong);
}
.package-price span { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-faint); font-weight: 400; }

.package-features { list-style: none; padding: 0; margin: 0 0 1.75rem; flex-grow: 1; }
.package-features li { padding: 0.6rem 0; border-top: 1px solid var(--rule); font-size: 0.9rem; color: var(--ink-soft); display: flex; gap: 0.6rem; }
.package-features li::before { content: "—"; color: var(--navy); flex-shrink: 0; }

.package-meta { border-top: 1px solid var(--rule-strong); padding-top: 1rem; margin-bottom: 1.5rem; }
.meta-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.82rem; padding: 0.35rem 0; }
.meta-row span { color: var(--ink-faint); white-space: nowrap; }
.meta-row b { color: var(--ink-soft); font-weight: 500; text-align: end; }
.meta-row.suitable b { color: var(--ink); }

/* =========================================================
   Forms
   ========================================================= */
.form-card { background: var(--paper-card); border: 1px solid var(--rule-strong); padding: 2rem; max-width: 620px; }

.form-summary { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px dashed var(--rule-strong); padding-bottom: 1.25rem; margin-bottom: 1.5rem; }
.form-summary .price { font-family: var(--font-serif); font-weight: 700; color: var(--navy); font-size: 1.5rem; }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0.45rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--paper-raised);
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); outline: none; }
.field-hint { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.35rem; }

/* --- customer auth pages (login/register/account) --- */
.auth-telegram { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.82rem;
  margin: 1.25rem 0;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--rule-strong);
}
.auth-divider span { padding: 0 1rem; }
.auth-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: 0.86rem;
}
.auth-links a { color: var(--navy); font-weight: 600; }

/* Honeypot spam-trap field — hidden from sighted users and keyboard/tab
   order, but still present in the DOM for simple bots to fill in. */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =========================================================
   Confirmation page — styled as a full-size version of the slip
   ========================================================= */
.confirmation-wrap { display: flex; justify-content: center; padding: 1rem 0; }
.confirmation-slip {
  position: relative;
  background: var(--paper-card);
  width: 100%;
  max-width: 480px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 24px 48px -20px rgba(23,24,26,0.25);
}
.confirmation-slip::before {
  content: "";
  position: absolute;
  top: -6px; right: -6px; bottom: -6px; left: -6px;
  border: 1px solid var(--rule);
  z-index: -1;
}
.confirmation-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
  border-bottom: 1px dashed var(--rule-strong);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}
.confirmation-slip h2 { font-size: 1.4rem; margin-bottom: 0.35rem; }
.confirmation-slip .order-number { font-family: var(--font-mono); font-size: 1.5rem; color: var(--navy); margin: 0.25rem 0 1.5rem; }
.summary-table { width: 100%; border-collapse: collapse; margin-bottom: 1.75rem; font-size: 0.92rem; }
.summary-table td { padding: 0.6rem 0; border-top: 1px solid var(--rule); color: var(--ink-soft); }
.summary-table td:last-child { text-align: start; color: var(--ink); font-family: var(--font-mono); }

.confirmation-steps { list-style: decimal; padding-inline-start: 1.3rem; color: var(--ink-soft); line-height: 1.9; font-size: 0.94rem; }
.confirmation-steps li b { color: var(--ink); }
.confirmation-steps li a { color: var(--navy); font-weight: 600; }

/* =========================================================
   Flash messages
   ========================================================= */
.flash-wrap { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }
.flash { border-radius: 3px; padding: 0.85rem 1.1rem; margin-bottom: 0.75rem; font-size: 0.9rem; border: 1px solid; }
.flash-error { background: rgba(178,58,46,0.08); border-color: var(--loss); color: var(--loss); }
.flash-success { background: rgba(31,122,77,0.08); border-color: var(--profit); color: var(--profit); }

/* =========================================================
   Admin (kept plain and functional — this page is for one person)
   ========================================================= */
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.admin-nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-faint);
  padding: 0.35rem 0.2rem;
}
.admin-nav-link.active { color: var(--navy); border-bottom: 2px solid var(--navy); }
.admin-nav-sep { width: 1px; height: 18px; background: var(--rule-strong); margin: 0 0.5rem; align-self: center; }
.filter-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.filter-chip { font-size: 0.8rem; font-family: var(--font-mono); padding: 0.35rem 0.8rem; border-radius: 100px; border: 1px solid var(--rule-strong); color: var(--ink-soft); }
.filter-chip.active { border-color: var(--navy); color: var(--navy); }

.orders-table-wrap { overflow-x: auto; border: 1px solid var(--rule-strong); }
table.orders-table { width: 100%; border-collapse: collapse; min-width: 900px; background: var(--paper-card); }
.orders-table th { text-align: start; font-size: 0.76rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; padding: 0.9rem 1rem; border-bottom: 1px solid var(--rule-strong); }
.orders-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--rule); font-size: 0.88rem; vertical-align: top; }
.orders-table tr:last-child td { border-bottom: none; }
.orders-table .mono-cell { font-family: var(--font-mono); }

.status-select { background: var(--paper-raised); border: 1px solid var(--rule-strong); color: var(--ink); border-radius: 3px; padding: 0.4rem 0.6rem; font-size: 0.82rem; }

.legal-doc { max-width: 72ch; }
.legal-doc h3 {
  font-size: 1.1rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule-strong);
}
.legal-doc h3:first-child { margin-top: 0; }
.legal-doc p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.85; margin: 0 0 1rem; }
.legal-doc ul { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.85; padding-inline-start: 1.4rem; margin: 0 0 1rem; }
.legal-doc li { margin-bottom: 0.3rem; }
.legal-doc a { color: var(--navy); font-weight: 600; }
.legal-doc b { color: var(--ink); }
.legal-note {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--paper-card);
  border: 1px dashed var(--rule-strong);
  font-size: 0.85rem !important;
  color: var(--ink-faint) !important;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 72ch; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--paper-card);
  border: 1px solid var(--rule-strong);
  padding: 1.1rem 1.4rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--navy);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-inline-start: 1rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0.9rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--rule-strong);
}

/* =========================================================
   Blog
   ========================================================= */
.blog-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.blog-card {
  display: block;
  background: var(--paper-card);
  border: 1px solid var(--rule-strong);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -22px rgba(23,24,26,0.35); }
.blog-date { color: var(--ink-faint); font-size: 0.78rem; }
.blog-card h3 { font-size: 1.1rem; margin: 0.6rem 0 0.6rem; }
.blog-card p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.7; margin: 0 0 1rem; }
.blog-read-more { color: var(--navy); font-weight: 700; font-size: 0.88rem; }

.blog-back { display: inline-block; color: var(--navy); font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem; }
.blog-article { max-width: 72ch; }
.blog-article h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.75rem 0 0.6rem; }
.blog-body { margin-top: 2rem; }
.blog-body h3 { font-size: 1.15rem; margin: 2rem 0 0.75rem; }
.blog-body p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.9; margin: 0 0 1.1rem; }
.blog-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--paper-card);
  border: 1px dashed var(--rule-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-cta p { margin: 0; color: var(--ink); font-weight: 500; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { border-top: 1px solid var(--rule-strong); margin-top: 3rem; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.footer-col a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-col a:hover { color: var(--navy); }
.footer-logo { margin-bottom: 0.4rem; }
.footer-tagline { color: var(--ink-faint); font-size: 0.85rem; margin: 0; max-width: 30ch; }

.footer-bottom { border-top: 1px solid var(--rule); }
.footer-bottom-inner {
  display: block;
  padding: 1.25rem clamp(1.25rem, 4vw, 2rem);
  color: var(--ink-faint);
  font-size: 0.8rem;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .slip { transform: none; margin-top: 1rem; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3) { border-inline-start: none; }
}
