/* ============================================================
   Ebenezer Transport — Static Site Stylesheet
   Faithful conversion of the Lovable "Nocturnal Amber Luxury"
   design system. Pure CSS, no Tailwind, no build step.
   ============================================================ */

:root {
  /* Brand palette — matched to original Lovable oklch values */
  --obsidian:       #060709;
  --background:     #050507;
  --carbon:         #101114;
  --card:           #0C0D0F;
  --foreground:     #F0F1F5;
  --muted:          #141518;
  --muted-foreground: #83858C;
  --border:         #252628;
  --border-soft:    rgba(37, 38, 40, 0.6);
  --zinc-line:      #2E2F32;

  --amber-glow:     #FFB113;
  --amber-deep:     #DA6D00;
  --amber-shadow:   rgba(255, 177, 19, 0.45);

  --primary-foreground: #060709;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection { background: var(--amber-glow); color: var(--obsidian); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
button { font: inherit; }

/* Technical grid background overlay */
.technical-grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, var(--zinc-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--zinc-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}

.page-wrap { position: relative; z-index: 1; }

/* Container */
.container {
  max-width: 80rem; /* 1280px = max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ============================================================
   Typography helpers
   ============================================================ */
.text-amber { color: var(--amber-glow); }
.text-muted { color: var(--muted-foreground); }
.text-balance { text-wrap: balance; }
.italic { font-style: italic; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-extralight { font-weight: 200; }

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-foreground);
}

/* Section labels (with accent bar) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--amber-glow);
}
@media (min-width: 768px) { .section-label { font-size: 1.125rem; } }
.section-label::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: rgba(245, 180, 85, 0.6);
}

/* Headings */
h1, h2, h3, h4, h5 { margin: 0; font-weight: 300; letter-spacing: -0.02em; line-height: 1.1; }

.h-display {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.h-section {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.h-card {
  font-size: 1.5rem;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.2;
}
@media (min-width: 768px) { .h-card { font-size: 1.875rem; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.5s ease;
  text-decoration: none;
}
.btn-amber {
  background: var(--amber-glow);
  color: var(--primary-foreground);
}
.btn-amber:hover {
  box-shadow: 0 0 40px -10px var(--amber-shadow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(5, 5, 7, 0.4);
  border: 1px solid var(--border);
  color: var(--foreground);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--amber-glow);
  color: var(--amber-glow);
}
.btn .arrow { display: inline-block; transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(5, 5, 7, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2rem; } }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 2.25rem; width: auto; object-fit: contain; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}
.nav-links a:hover { color: var(--amber-glow); }
.nav-links a.active { color: var(--amber-glow); }
@media (min-width: 768px) { .nav-links { display: flex; } }

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: -0.5rem;
  background: transparent;
  border: 0;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s;
}
.mobile-toggle:hover { color: var(--amber-glow); }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.nav-spacer { width: 2.5rem; }
@media (min-width: 768px) { .nav-spacer { display: none; } }

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(12px);
}
.mobile-drawer.open { display: block; }
.mobile-drawer ul {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-drawer a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}
.mobile-drawer a:hover, .mobile-drawer a.active { color: var(--amber-glow); }

/* ============================================================
   Hero (used on home, about, services)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-image.dim { opacity: 0.8; }
.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,7,0.85), rgba(5,5,7,0.3) 60%, transparent);
  z-index: 2;
}
.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), rgba(5,5,7,0.4) 50%, transparent);
  z-index: 2;
}
.hero-overlay-mid {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,7,0.4), transparent 30%, var(--background));
  z-index: 2;
}

.hero-home {
  margin-top: -4rem;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) { .hero-home { min-height: 88vh; } }

.hero-page {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 6rem 1.5rem 3rem;
}
@media (min-width: 768px) { .hero-content { padding: 7rem 2rem 5rem; } }

.hero-content-page {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .hero-content-page { padding: 0 2rem; } }

.hero-inner { max-width: 80rem; margin: 0 auto; }

.hero h1 {
  margin-bottom: 1.5rem;
}
.hero p {
  max-width: 52ch;
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.65;
}
@media (min-width: 768px) { .hero p { font-size: 1.125rem; } }

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .hero-actions { margin-top: 2.5rem; gap: 1rem; }
}

/* ============================================================
   Generic sections
   ============================================================ */
section {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  section { padding: 6rem 2rem; }
}
section.alt { background: rgba(16, 17, 20, 0.3); }

.section-content { max-width: 80rem; margin: 0 auto; }

/* Two-column layout (for "advantage intro" etc) */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
}
@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 5fr 7fr;
  }
}

.two-col h2 {
  margin-top: 1.5rem;
}
.two-col-intro {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.65;
}
@media (min-width: 768px) { .two-col-intro { font-size: 1.125rem; } }

/* ============================================================
   Bordered card grid (used for advantages, values, services, etc)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-left: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}
.card-grid > article {
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .card-grid.cols-md-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid.cols-lg-3 { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid.cols-lg-5 { grid-template-columns: repeat(5, 1fr); } }

/* No outside border variant: looks tighter without the wrap */
.card-grid.no-outside {
  border: 0;
}
.card-grid.no-outside > article {
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
  margin: -0.5px;
}

.card {
  padding: 2.5rem;
  transition: background 0.5s;
}
@media (min-width: 768px) { .card { padding: 3rem; } }
.card:hover { background: rgba(16, 17, 20, 0.5); }

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.card-dot {
  margin-top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: all 0.5s;
}
.card:hover .card-dot {
  background: var(--amber-glow);
  box-shadow: 0 0 14px -2px var(--amber-shadow);
}
.card h3 { transition: color 0.5s; }
.card:hover h3.h-card { color: var(--amber-glow); }
.card p {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.65;
  max-width: 34ch;
  margin: 0;
}

/* ============================================================
   Mission/Vision two-card
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-left: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
}
@media (min-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mv-grid > div + div {
    border-left: 1px solid var(--border-soft);
  }
}
.mv-card {
  padding: 2.5rem;
}
@media (min-width: 768px) { .mv-card { padding: 4rem; } }
.mv-card.alt-bg { background: rgba(16, 17, 20, 0.3); }
.mv-card .label-mono {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--amber-glow);
}
@media (min-width: 768px) { .mv-card .label-mono { font-size: 1.125rem; } }
.mv-card h3 {
  margin: 1.5rem 0 1.5rem;
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 768px) { .mv-card h3 { font-size: 2.25rem; } }
.mv-card p {
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.65;
  max-width: 36ch;
  margin: 0;
}

/* ============================================================
   Service item rows (numbered list with arrow)
   ============================================================ */
.svc-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  transition: background 0.3s;
}
@media (min-width: 768px) { .svc-row { padding: 2rem; } }
.svc-row:hover { background: rgba(16, 17, 20, 0.4); }
.svc-row .num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.22em;
  color: rgba(245, 180, 85, 0.7);
  padding-top: 0.35rem;
  transition: color 0.3s;
}
.svc-row:hover .num { color: var(--amber-glow); }
.svc-row .label {
  flex: 1;
  font-size: 1rem;
  font-weight: 300;
  color: var(--foreground);
  line-height: 1.4;
}
@media (min-width: 768px) { .svc-row .label { font-size: 1.125rem; } }
.svc-row .arrow-right {
  color: rgba(245, 180, 85, 0.4);
  font-size: 1.125rem;
  transition: all 0.3s;
}
.svc-row:hover .arrow-right { color: var(--amber-glow); transform: translateX(4px); }

/* ============================================================
   Sectors (small text cards, used in About + Clients)
   ============================================================ */
.sector-card {
  padding: 2rem;
  transition: background 0.3s;
}
.sector-card:hover { background: rgba(16, 17, 20, 0.4); }
.sector-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.3s;
  margin: 0;
}
.sector-card:hover h3 { color: var(--amber-glow); }
.sector-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 300;
}
.sector-card .num-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(140, 140, 142, 0.6);
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}
.sector-card:hover .num-label { color: var(--amber-glow); }

/* ============================================================
   Cert grid
   ============================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}
@media (min-width: 640px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cert-grid { grid-template-columns: repeat(5, 1fr); } }
.cert-cell {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(16, 17, 20, 0.4);
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s;
}
.cert-cell:hover { background: rgba(16, 17, 20, 0.7); }
.cert-cell img {
  max-height: 5rem;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
@media (min-width: 768px) { .cert-cell img { max-height: 6rem; } }

/* ============================================================
   Clients marquee
   ============================================================ */
.clients-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(16, 17, 20, 0.2);
}
@media (min-width: 768px) { .clients-section { padding: 7rem 0; } }
.clients-head {
  max-width: 80rem;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .clients-head { padding: 0 2rem; } }
.clients-head .max-3xl { max-width: 48rem; }

.marquee {
  position: relative;
  overflow: hidden;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
@media (min-width: 768px) { .marquee { padding: 0 2rem; } }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-cell {
  flex-shrink: 0;
  width: 180px;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 5, 7, 0.4);
  transition: background 0.5s;
}
.marquee-cell:hover { background: rgba(245, 180, 85, 0.04); }
.marquee-cell img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.marquee-cell:hover img { opacity: 1; }
@media (min-width: 768px) { .marquee-cell { width: 220px; } }

/* Client logo wall (clients page) */
.client-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
}
@media (min-width: 640px) { .client-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .client-wall { grid-template-columns: repeat(4, 1fr); } }
.client-cell {
  aspect-ratio: 3 / 2;
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(5, 5, 7, 0.4);
  transition: background 0.5s;
}
.client-cell:hover { background: rgba(245, 180, 85, 0.05); }
.client-cell img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity 0.5s;
}
.client-cell:hover img { opacity: 1; }

/* ============================================================
   CTA section (large headline + button)
   ============================================================ */
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cta-row { flex-direction: row; align-items: flex-end; }
}
.cta-row h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  max-width: 32rem;
  margin: 0;
}

/* ============================================================
   Contact form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 4fr 8fr;
    gap: 5rem;
  }
}
.contact-aside { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-aside .field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.contact-aside p {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}
.contact-aside a { color: inherit; }
.contact-aside a:hover { color: var(--amber-glow); }
.contact-aside .phone {
  font-size: 1.5rem;
  color: var(--foreground);
  font-variant-numeric: tabular-nums;
}
.contact-aside .email-link {
  color: var(--amber-glow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
}
@media (min-width: 768px) {
  .contact-form { grid-template-columns: 1fr 1fr; }
}
.field-full { grid-column: 1 / -1; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(140, 140, 142, 0.5);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--amber-glow);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%238c8c8e' stroke-width='1.5'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
  background-position: right center;
  background-size: 12px;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
}
.contact-form select option {
  background: var(--background);
  color: var(--foreground);
}
.contact-form textarea { resize: vertical; }
.form-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
}
@media (min-width: 640px) {
  .form-foot { flex-direction: row; align-items: center; }
}
.form-foot .legal {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 300;
  max-width: 28rem;
  margin: 0;
}
.form-status {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.form-status.success { color: #5ec77b; }
.form-status.error { color: #e87664; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: rgba(16, 17, 20, 0.4);
}
.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-inner { padding: 4rem 2rem; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
.footer-brand img { height: 2.25rem; width: auto; margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.65;
  max-width: 28rem;
  margin: 0;
}
@media (min-width: 768px) {
  .footer-brand { grid-column: span 1; }
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber-glow);
  margin: 0 0 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 300;
}
.footer-col a:hover { color: var(--foreground); }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
}
.footer-bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(140, 140, 142, 0.7);
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; padding: 1.25rem 2rem; }
}
