/* =============================================================================
   TASMU Logistics & Supply Chain Solutions — one-page site
   Design system variables live here. Swap these for your own values.
   ============================================================================= */
:root {
  /* ---- Color (sampled from the TASMU logo) ---- */
  --color-navy:        #002A6E;   /* primary — wordmark navy */
  --color-navy-deep:   #001E55;   /* hover / pressed */
  --color-navy-ink:    #0A1733;   /* darkest sections */
  --color-teal:        #0094BB;   /* accent — logo arrows */
  --color-teal-deep:   #007E9E;
  --color-bg:          #FFFFFF;
  --color-surface:     #F6F8FB;   /* tinted panels */
  --color-surface-2:   #EAF1F8;   /* navy-tinted panels */
  --color-line:        #E3E8F0;   /* hairline borders */
  --color-line-strong: #C9D3E2;
  --color-ink:         #0F172A;   /* primary text */
  --color-muted:       #50607A;   /* secondary text */
  --color-faint:       #8A96AB;   /* tertiary text */
  --color-success:     #1F9D57;
  --color-on-navy:     #FFFFFF;
  --color-on-navy-mut: #CBD9EE;

  /* ---- Type ---- */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  /* Headings use sans by default. The Tweaks panel can switch this to the serif. */
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Spectral", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* fluid type scale */
  --fs-eyebrow: 0.78rem; /* @kind font */
  --fs-body:    1rem; /* @kind font */
  --fs-lead:    clamp(1.15rem, 0.9rem + 1vw, 1.5rem); /* @kind font */
  --fs-h4:      1.25rem; /* @kind font */
  --fs-h3:      clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); /* @kind font */
  --fs-h2:      clamp(1.9rem, 1.3rem + 2.6vw, 3rem); /* @kind font */
  --fs-h1:      clamp(2.6rem, 1.4rem + 5.2vw, 5.25rem); /* @kind font */
  --fs-mega:    clamp(3.4rem, 1.2rem + 9vw, 9rem); /* @kind font */

  /* ---- Spacing (4px base) ---- */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.5rem;   --space-6: 2rem;    --space-7: 3rem;    --space-8: 4rem;
  --space-9: 6rem;     --space-10: 8rem;
  --section-y: clamp(4rem, 2rem + 8vw, 8.5rem); /* @kind spacing */
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 3rem); /* @kind spacing */
  --maxw: 1240px; /* @kind spacing */

  /* ---- Radius ---- */
  --radius-sm: 6px;  --radius-md: 12px; --radius-lg: 20px; --radius-xl: 28px;
  --radius-pill: 999px;

  /* ---- Elevation ---- */
  --shadow-sm: 0 1px 2px rgba(10,23,51,0.06);
  --shadow-md: 0 8px 24px -10px rgba(10,23,51,0.18);
  --shadow-lg: 0 30px 60px -24px rgba(10,23,51,0.30);

  --ease: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
}

/* =============================================================================
   Reset & base
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--color-teal); outline-offset: 3px; border-radius: 4px; }

/* skip link */
.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 200;
  background: var(--color-navy); color: #fff; padding: 0.6rem 1rem;
  border-radius: var(--radius-sm); transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--space-4); }

/* =============================================================================
   Layout helpers
   ============================================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-teal-deep);
}
.eyebrow::before {
  content: ""; width: 1.75rem; height: 2px; background: var(--color-teal);
}
.eyebrow.on-navy { color: var(--color-teal); }
.eyebrow.center { justify-content: center; }

h1, h2, h3, h4 { line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; }
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.015em; line-height: 1.04; }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--color-muted); font-weight: 400; }
.section-head { max-width: 56ch; }
.section-head h2 { font-size: var(--fs-h2); margin-top: var(--space-4); }
.section-head p { margin-top: var(--space-4); }
.text-teal { color: var(--color-teal-deep); }

/* =============================================================================
   Buttons
   ============================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 0.95rem 1.6rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--color-navy); color: #fff; }
.btn-primary:hover { background: var(--color-teal); transform: translateY(-2px); }
.btn-teal { background: var(--color-teal); color: #fff; }
.btn-teal:hover { background: var(--color-teal-deep); transform: translateY(-2px); }
.btn-ghost { border-color: var(--color-line-strong); color: var(--color-ink); }
.btn-ghost:hover { border-color: var(--color-navy); color: var(--color-navy); }
.btn-light { background: #fff; color: var(--color-navy); }
.btn-light:hover { background: var(--color-surface-2); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* =============================================================================
   Header
   ============================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5); min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand .brand-fallback {
  font-weight: 800; font-size: 1.35rem; letter-spacing: 0.06em; color: var(--color-navy);
}
/* mobile nav toggle (CSS-only) */
.nav-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nav-burger { display: none; }
.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--color-muted);
  position: relative; padding-block: 0.3rem; transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--color-navy); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--color-teal); transition: width 0.25s var(--ease);
}
.nav a:hover::after { width: 100%; }
.header-cta { display: none; }
.nav-cta-mobile { display: none; }
@media (min-width: 940px) {
  .nav, .header-cta { display: flex; }
}
@media (max-width: 939px) {
  .nav-burger {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; width: 44px; height: 44px; border-radius: var(--radius-sm);
    cursor: pointer; flex-shrink: 0; background: transparent; border: 1px solid var(--color-line);
  }
  .nav-burger span {
    width: 22px; height: 2px; background: var(--color-navy); border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  .nav {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--color-line); box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height 0.32s var(--ease);
  }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: var(--space-2) var(--gutter) var(--space-4); }
  .nav li { border-bottom: 1px solid var(--color-line); }
  .nav li:last-child { border-bottom: none; }
  .nav a { display: block; padding: var(--space-4) 0; font-size: 1.05rem; color: var(--color-navy); }
  .nav a::after { display: none; }
  .nav-cta-mobile { display: block; margin-top: var(--space-3); }
  .nav-cta-mobile a { color: #fff; background: var(--color-navy); border-radius: var(--radius-pill); text-align: center; padding: var(--space-4); }
  .nav-toggle:checked ~ .nav { max-height: 460px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =============================================================================
   Hero
   ============================================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(2.5rem, 4vw, 5rem); }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-7);
  align-items: end;
}
.hero-tag {
  display: inline-flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; align-items: center;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-faint); margin-bottom: var(--space-5);
}
.hero-tag span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-tag span::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--color-teal); }
.hero h1 { font-size: var(--fs-h1); }
.hero h1 .hl { display: block; }
.hero h1 .accent { color: var(--color-teal-deep); }
.hero-right { display: flex; flex-direction: column; gap: var(--space-5); }
.hero-right .lead { max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero-media {
  margin-top: var(--space-7); position: relative;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7; background: var(--color-surface-2);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(105deg, rgba(0,42,110,0.55) 0%, rgba(0,42,110,0) 55%);
}
.hero-badge {
  position: absolute; left: var(--space-5); bottom: var(--space-5); z-index: 2;
  display: flex; align-items: center; gap: 0.9rem;
  background: rgba(255,255,255,0.95); border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem; box-shadow: var(--shadow-md);
}
.hero-badge .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-navy); line-height: 1; }
.hero-badge .lbl { font-size: 0.8rem; color: var(--color-muted); line-height: 1.3; }
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.45fr 1fr; }
}

/* marquee-free trust strip */
.trust {
  border-block: 1px solid var(--color-line);
  background: var(--color-surface);
}
.trust .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-4) var(--space-6); padding-block: var(--space-5);
}
.trust .label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-faint); }
.trust .sectors { display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; }
.trust .sectors span {
  font-size: 0.9rem; font-weight: 600; color: var(--color-muted);
  padding: 0.3rem 0.85rem; border: 1px solid var(--color-line-strong); border-radius: var(--radius-pill);
}

/* =============================================================================
   About — vision / mission
   ============================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-7); align-items: start; }
.about-statement .display { font-size: var(--fs-h2); color: var(--color-ink); }
.about-statement .display em { color: var(--color-teal-deep); font-style: italic; }
.vm-stack { display: grid; gap: var(--space-4); }
.vm-card {
  border: 1px solid var(--color-line); border-radius: var(--radius-md);
  padding: var(--space-6); background: var(--color-bg); transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vm-card .kicker { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--color-teal-deep); }
.vm-card h3 { font-size: var(--fs-h4); margin-block: 0.75rem 0.5rem; color: var(--color-navy); }
.vm-card p { color: var(--color-muted); font-size: 1rem; }
@media (min-width: 920px) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-9); }
}

/* =============================================================================
   Services — editorial numbered index
   ============================================================================= */
.services { background: var(--color-navy-ink); color: var(--color-on-navy); }
.services .section-head h2 { color: #fff; }
.services .section-head p { color: var(--color-on-navy-mut); }
.svc-grid {
  margin-top: var(--space-8);
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.svc {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-4) var(--space-5);
  padding-block: var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: background 0.25s var(--ease);
}
.svc:hover { background: rgba(255,255,255,0.04); }
.svc .no {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--color-teal);
  padding-top: 0.4rem; font-weight: 500;
}
.svc h3 { font-size: var(--fs-h4); color: #fff; font-weight: 600; letter-spacing: -0.01em; }
.svc p { color: var(--color-on-navy-mut); font-size: 0.98rem; margin-top: 0.4rem; max-width: 60ch; }
@media (min-width: 760px) {
  .svc-grid { grid-template-columns: 1fr 1fr; column-gap: var(--space-8); }
  .svc { padding-inline: 0; }
}

/* =============================================================================
   Why TASMU — feature cards
   ============================================================================= */
.why-grid { margin-top: var(--space-8); display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.feature {
  border: 1px solid var(--color-line); border-radius: var(--radius-md);
  padding: var(--space-6); background: var(--color-bg);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--color-line-strong); }
.feature .ic {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: grid; place-items: center; background: var(--color-surface-2); color: var(--color-navy);
  margin-bottom: var(--space-4);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: var(--fs-h4); color: var(--color-navy); }
.feature p { color: var(--color-muted); font-size: 1rem; margin-top: 0.6rem; }
@media (min-width: 680px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================================
   Process timeline  (unique section)
   ============================================================================= */
.process { background: var(--color-surface); }
.timeline { margin-top: var(--space-8); display: grid; grid-template-columns: 1fr; gap: var(--space-6); counter-reset: step; list-style: none; padding: 0; }
.step {
  position: relative; padding-left: var(--space-7);
  border-left: 2px solid var(--color-line-strong);
  padding-bottom: var(--space-5);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: -1.05rem; top: -0.2rem;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--color-navy); color: #fff;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  display: grid; place-items: center;
}
.step h3 { font-size: var(--fs-h4); color: var(--color-navy); }
.step p { color: var(--color-muted); margin-top: 0.4rem; max-width: 52ch; }
@media (min-width: 880px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
  .step { padding-left: 0; padding-top: var(--space-6); border-left: none; border-top: 2px solid var(--color-line-strong); }
  .step::before { left: 0; top: -1.05rem; }
}

/* =============================================================================
   Collaborate — image + text (replaces old stats band)
   ============================================================================= */
.collab-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: center; }
.collab-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: var(--space-4); }
.cm { margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.cm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cm-tall { grid-row: 1 / 3; min-height: 320px; }
.cm-top { min-height: 150px; }
.cm-card {
  background: var(--color-navy); color: #fff; border-radius: var(--radius-md);
  padding: var(--space-5); display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
}
.cm-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: rgba(255,255,255,0.12); color: var(--color-teal); margin-bottom: 0.25rem; }
.cm-icon svg { width: 24px; height: 24px; }
.cm-card-h { font-weight: 700; font-size: 1.05rem; color: #fff; line-height: 1.2; }
.cm-card-p { font-size: 0.9rem; color: var(--color-on-navy-mut); }
.collab-text .eyebrow { margin-bottom: var(--space-4); }
.collab-text h2 { font-size: var(--fs-h2); color: var(--color-navy); }
.collab-text h2 em { color: var(--color-teal-deep); font-style: italic; }
.collab-text p { color: var(--color-muted); margin-top: var(--space-4); max-width: 56ch; }
.collab-text .btn { margin-top: var(--space-6); }
@media (min-width: 920px) {
  .collab-grid { grid-template-columns: 1fr 1fr; gap: var(--space-9); }
}
@media (max-width: 560px) {
  .collab-media { grid-template-columns: 1fr; }
  .cm-tall { grid-row: auto; min-height: 220px; }
}

/* =============================================================================
   FAQ accordion  (unique section, pure CSS)
   ============================================================================= */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-7); align-items: start; }
.faq-list { display: grid; gap: var(--space-3); }
.faq {
  border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-bg);
  overflow: hidden; transition: box-shadow 0.2s var(--ease);
}
.faq[open] { box-shadow: var(--shadow-sm); border-color: var(--color-line-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--space-5) var(--space-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font-weight: 600; font-size: 1.08rem; color: var(--color-navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { position: relative; width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.faq summary .plus::before, .faq summary .plus::after {
  content:""; position:absolute; background: var(--color-teal); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq summary .plus::before { width: 1.25rem; height: 2px; }
.faq summary .plus::after { width: 2px; height: 1.25rem; transition: transform 0.25s var(--ease); }
.faq[open] summary .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq p { padding: 0 var(--space-6) var(--space-5); color: var(--color-muted); }
@media (min-width: 1040px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; gap: var(--space-9); } }

/* =============================================================================
   Contact / CTA
   ============================================================================= */
.contact { background: var(--color-navy-ink); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: start; }
.contact-info h2 { font-size: var(--fs-h2); color: #fff; }
.contact-info .lead { color: var(--color-on-navy-mut); margin-top: var(--space-4); }
.contact-points { margin-top: var(--space-6); display: grid; gap: var(--space-4); }
.contact-points a, .contact-points span {
  display: flex; align-items: center; gap: 0.85rem; color: #fff; font-weight: 500;
}
.contact-points svg { width: 22px; height: 22px; color: var(--color-teal); flex-shrink: 0; }
.contact-points small { display:block; color: var(--color-on-navy-mut); font-weight: 400; font-size: 0.82rem; }

.form {
  background: #fff; color: var(--color-ink);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.form h3 { font-size: var(--fs-h4); color: var(--color-navy); }
.field { display: grid; gap: 0.4rem; margin-top: var(--space-4); }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--color-ink); }
.field label .req { color: var(--color-teal-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--color-line-strong); border-radius: var(--radius-sm);
  background: var(--color-bg); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0,42,110,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form .row { display: grid; gap: var(--space-4); }
@media (min-width: 560px) { .form .row { grid-template-columns: 1fr 1fr; } }
.form button { margin-top: var(--space-5); width: 100%; justify-content: center; }
.form .consent { margin-top: var(--space-4); font-size: 0.82rem; color: var(--color-muted); display:flex; gap:0.6rem; align-items:flex-start; }
.form .consent input { width: auto; margin-top: 0.25rem; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: var(--space-9); } }

/* =============================================================================
   Footer
   ============================================================================= */
.site-footer { background: #060E22; color: var(--color-on-navy-mut); padding-block: var(--space-8) var(--space-6); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: var(--space-7); }
.footer-brand .footer-wordmark { font-weight: 800; font-size: 1.5rem; letter-spacing: 0.08em; color: #fff; margin-bottom: var(--space-4); }
.footer-brand p { max-width: 38ch; font-size: 0.95rem; }
.footer-socials { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18); color: #fff; transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-socials a:hover { background: var(--color-teal); border-color: var(--color-teal); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.footer-cols h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--space-4); }
.footer-cols a { display: block; padding-block: 0.35rem; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-cols a:hover { color: var(--color-teal); }
.footer-bottom {
  margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); align-items: center; justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom .legal { display: flex; gap: var(--space-5); }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr; } .footer-cols { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .footer-top { grid-template-columns: 1.6fr 1.4fr; } }
