/* ============================================================
   AVENUE CONSULTANTS — concept prototype v2
   Styled with the Avenue Consultants Design System (brand-derived:
   Brand Book 2016 + Color Guide addendum + official logo artwork).
   Core: Avenue Blue #005395 + Cool Gray #65666a; accents ONLY for
   emphasis (orange = the single working accent here). Display type
   Gotham -> Montserrat; body Myriad Pro -> Source Sans 3.
   Dark bands are flat Avenue Blue with the diagonal-line texture.
   ============================================================ */

:root {
  /* ---- Design-system tokens ---- */
  --blue-500: #005395;          /* Avenue Blue — core brand color */
  --blue-75:  #407fb0;
  --blue-50:  #80a9ca;
  --blue-25:  #bfd4e5;
  --blue-900: #003c6b;          /* deepened blue: hovers / dark ground */
  --gray-500: #65666a;          /* Cool Gray */
  --gray-50:  #b2b3b5;          /* 50% tint — the logo-line color */
  --gray-25:  #d9d9da;
  --ink-900:  #2b2d31;
  --off-white:#f4f5f7;
  --hairline: #e4e6ea;
  --accent-orange-500: #ff7f21; /* Pantone 164 C */
  --accent-orange-75:  #ffa16e;
  --accent-orange-50:  #ffc09d;
  --accent-orange-25:  #ffe0cd;
  --accent-lightblue-500: #61b4e4;
  --accent-red-500: #c74b37;
  --accent-green-500: #6cc04a;

  --shadow-sm: 0 1px 3px rgba(0,45,80,0.10), 0 1px 2px rgba(0,45,80,0.06);
  --shadow-lg: 0 12px 28px rgba(0,45,80,0.14), 0 4px 8px rgba(0,45,80,0.06);
  --focus-ring-color: rgba(97,180,228,0.9);
  --ease-standard: cubic-bezier(0.2, 0, 0.2, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;

  /* diagonal-line texture — the brand's signature graphic element */
  --texture-on-blue: repeating-linear-gradient(45deg,
      rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1.5px,
      transparent 1.5px, transparent 14px);

  /* ---- Legacy aliases (inline styles reference these) ---- */
  --av-ink: var(--ink-900);       /* body/emphasis text ink */
  --av-blue-deep: var(--blue-900);
  --av-blue: var(--blue-500);
  --av-steel: var(--blue-50);     /* large text / graphics only */
  --av-mist: var(--off-white);
  --av-line: var(--hairline);
  --av-body: var(--ink-900);
  --av-dim: var(--gray-500);
  --av-amber: var(--accent-orange-500);   /* accent (never text-on-white) */
  --av-amber-deep: var(--blue-900);       /* accent TEXT on white = blue */
  --av-green: var(--accent-green-500);
  --av-red: var(--accent-red-500);
  --max: 1200px;
  --radius: 4px;
  --font-display: "Montserrat", "Gotham", "Helvetica Neue", Arial, sans-serif;
  --font: "Source Sans 3", "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* eyebrow = the brand's tracked-caps display treatment */
  --ls-caps: 0.18em;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: #fff;
  color: var(--av-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--av-blue); transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--av-blue-deep); }
::selection { background: var(--blue-25); color: var(--blue-900); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring-color);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--blue-900); color: #fff; padding: 10px 18px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.pad { padding: 96px 0; }
.mist { background: var(--av-mist); }
/* dark band = flat Avenue Blue ground + faint diagonal texture */
.dark {
  background: var(--blue-500);
  background-image: var(--texture-on-blue);
  color: #fff;
}
.dark a { color: var(--blue-25); }
.dark a:hover { color: #fff; }

/* ---------- chevron motif (»»») — blue on white, white on blue ---------- */
.chevrons {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.chevrons span {
  width: 12px; height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.chevrons.blue span { border-color: var(--blue-500); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--av-line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.wordmark { display: flex; align-items: center; text-decoration: none; }
.wordmark .logo-img { height: 34px; width: auto; }
footer .wordmark .logo-img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 15px; font-weight: 600; color: var(--av-body);
}
.nav-links a:hover { color: var(--av-blue); }
.nav-links a.btn-blue { color: #fff; }
.nav-links a.btn-blue:hover { color: #fff; }
.nav-links a[aria-current="page"] { color: var(--av-blue-deep); border-bottom: 2px solid var(--accent-orange-500); }
.nav-links a.btn-blue[aria-current="page"] { color: #fff; border-bottom: none; box-shadow: inset 0 -3px 0 var(--accent-orange-500); }

.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 15px;
  text-decoration: none;
  padding: 12px 26px; border-radius: var(--radius); border: 2px solid transparent;
  transition: transform var(--dur-fast) var(--ease-standard), background var(--dur-fast) var(--ease-standard);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-blue { background: var(--blue-500); color: #fff; }
.btn-blue:hover { background: var(--blue-900); }
/* orange accent button — dark blue ink for contrast on orange */
.btn-amber { background: var(--accent-orange-500); color: var(--blue-900); }
.btn-amber:hover { background: #ef7622; color: var(--blue-900); }
.btn-outline { border-color: var(--blue-500); color: var(--blue-900); background: transparent; }
.btn-outline:hover { background: var(--av-mist); }
.dark .btn-outline { border-color: var(--blue-25); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ---------- hero (photo + power statement, per employee feedback) ---------- */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0, 45, 80, 0.88) 25%, rgba(0, 45, 80, 0.45) 65%, rgba(0, 45, 80, 0.25));
}
.hero .wrap { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.hero .a-watermark {
  position: absolute; z-index: 1; right: 4vw; bottom: 4vh;
  width: clamp(180px, 26vw, 380px); height: auto;
  opacity: 0.14;
  pointer-events: none; user-select: none;
}
.hero .kicker {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase; color: var(--accent-orange-50); margin-bottom: 18px;
}
.hero h1 {
  font-weight: 700; font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.06; letter-spacing: -0.01em; max-width: 18ch;
}
.hero p.lede { margin-top: 22px; font-size: 19px; max-width: 52ch; color: var(--blue-25); }
.hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- section headers ---------- */
.sec-head { margin-bottom: 44px; }
.sec-head .eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase; color: var(--blue-500); margin-bottom: 12px;
}
.dark .sec-head .eyebrow { color: var(--accent-orange-50); }
.sec-head h2 {
  font-weight: 700; font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1; color: var(--blue-500); letter-spacing: -0.01em;
}
.dark .sec-head h2 { color: #fff; }
.sec-head p.sub { margin-top: 14px; font-size: 17px; color: var(--av-dim); max-width: 62ch; }
.dark .sec-head p.sub { color: var(--blue-25); }

/* placeholder chip — marks content the firm still needs to collect */
.todo-chip {
  display: inline-block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent-orange-25); color: #7a3b00; border: 1px dashed var(--accent-orange-75);
  padding: 3px 9px; border-radius: 3px; vertical-align: middle;
}
.illustrative-flag {
  display: inline-block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--accent-red-500); color: #fff; padding: 4px 10px; border-radius: 3px;
  margin-left: 10px; vertical-align: middle;
}

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc {
  background: #fff; border: 1px solid var(--av-line); border-radius: 6px;
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.svc:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.svc h3 { font-size: 17px; font-weight: 600; color: var(--blue-500); margin-bottom: 10px; }
.svc ul { list-style: none; }
.svc li { font-size: 14px; color: var(--av-dim); padding: 3px 0 3px 18px; position: relative; }
.svc li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 7px; height: 7px;
  border-top: 2px solid var(--blue-50); border-right: 2px solid var(--blue-50);
  transform: rotate(45deg);
}

/* ---------- CFI walkthrough ---------- */
.cfi-band { overflow: hidden; }
.cfi-panel {
  background: var(--blue-900); border-radius: 6px; padding: 28px;
  border: 1px solid rgba(255,255,255,0.24);
}
.cfi-panel svg { width: 100%; height: auto; display: block; }
.cfi-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.cfi-step { display: flex; gap: 14px; align-items: flex-start; }
.cfi-step .n {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-orange-500); color: var(--blue-900);
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px; display: grid; place-items: center;
}
.cfi-step p { font-size: 14.5px; color: var(--blue-25); }
.cfi-step p b { color: #fff; }

/* ---------- projects (project-resume pattern) ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proj {
  background: #fff; border: 1px solid var(--av-line); border-radius: 6px;
  box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column;
}
.proj img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.proj .proj-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.proj .proj-tag {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-500);
}
.proj h3 { font-size: 19px; font-weight: 600; color: var(--blue-500); line-height: 1.25; }
.proj p { font-size: 14.5px; color: var(--av-dim); }
.proj .resume {
  margin-top: auto; border-top: 1px solid var(--av-line); padding-top: 12px;
  font-size: 13.5px; color: var(--av-body);
}
.proj .resume dt { font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--av-dim); margin-top: 6px; }
.proj .resume dd { margin: 0; font-weight: 600; }

.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat-strip .stat {
  border-left: 4px solid var(--accent-orange-500);
  padding: 6px 0 6px 20px;
}
.stat-strip .num { font-family: var(--font-display); font-weight: 700; font-size: 38px; color: var(--blue-500); line-height: 1.1; }
.stat-strip .lbl { font-size: 14px; color: var(--av-dim); }

/* ---------- locations / contact ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.loc {
  background: #fff; border: 1px solid var(--av-line); border-top: 4px solid var(--blue-500);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
}
.loc h3 { font-size: 19px; font-weight: 700; color: var(--blue-500); }
.loc .loc-kind { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--av-dim); margin-bottom: 8px; }
.loc address { font-style: normal; font-size: 14.5px; color: var(--av-body); margin-top: 10px; line-height: 1.7; }
.loc a { font-weight: 600; }

.contact-emails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cemail {
  background: #fff; border: 1px solid var(--av-line); border-radius: var(--radius);
  padding: 16px 18px; font-size: 14px; box-shadow: var(--shadow-sm);
}
.cemail .svc-name { font-weight: 700; color: var(--blue-500); display: block; }
.cemail a { font-size: 13px; word-break: break-all; }

/* ---------- careers pieces ---------- */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle {
  background: #fff; border: 1px solid var(--av-line); border-radius: 6px;
  padding: 28px 26px; box-shadow: var(--shadow-sm);
}
.principle .p-no { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: var(--ls-caps); color: var(--blue-500); text-transform: uppercase; }
.principle h3 { font-size: 20px; font-weight: 700; color: var(--blue-500); margin: 10px 0 8px; }
.principle p { font-size: 14.5px; color: var(--av-dim); }

.salary-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--av-line); }
.salary-table th, .salary-table td { padding: 16px 20px; text-align: left; font-size: 15px; }
.salary-table thead th {
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--blue-500); color: #fff;
}
.salary-table tbody tr { border-top: 1px solid var(--av-line); }
.salary-table .band { font-family: var(--mono); font-weight: 600; color: var(--blue-900); }

.passrate-viz { display: flex; gap: 36px; align-items: flex-end; margin: 28px 0 12px; }
.passrate-bar { flex: 0 0 110px; text-align: center; }
.passrate-bar .bar { width: 100%; border-radius: 3px 3px 0 0; background: var(--blue-50); }
.passrate-bar.hot .bar { background: var(--accent-red-500); }
.passrate-bar .pct { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: #fff; }
.passrate-bar .yr { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-25); margin-top: 8px; }

.pe-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.pe-perk {
  border: 1px solid rgba(255,255,255,0.24); border-radius: var(--radius); padding: 18px 20px;
  font-size: 14.5px; color: #fff; background: var(--blue-900);
  display: flex; gap: 12px; align-items: flex-start;
}
.pe-perk .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-green-500); flex-shrink: 0; margin-top: 7px; }

.role-list { display: flex; flex-direction: column; gap: 12px; }
.role {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: #fff; border: 1px solid var(--av-line); border-left: 4px solid var(--blue-500);
  border-radius: var(--radius); padding: 20px 24px; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.role:hover { border-left-color: var(--accent-orange-500); box-shadow: var(--shadow-lg); }
.role .role-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--blue-500); }
.role .role-loc { font-size: 13.5px; color: var(--av-dim); margin-top: 3px; }
.role .role-arrow { color: var(--blue-900); font-size: 20px; }

.passion-input {
  width: 100%; font-family: var(--font); font-size: 15px; padding: 14px 18px;
  border-radius: var(--radius); border: 2px solid var(--av-line); background: #fff;
  color: var(--av-ink); margin-bottom: 24px;
}
.passion-input:focus { border-color: var(--blue-500); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.ptag {
  font-size: 13px; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--av-line); color: var(--av-body); background: #fff;
  transition: all var(--dur-fast) var(--ease-standard);
}
.ptag.hit { background: var(--accent-orange-500); border-color: var(--accent-orange-500); color: var(--blue-900); font-weight: 600; }
.ptag.miss { opacity: 0.3; }

/* ---------- CTA band — flat Avenue Blue over photo ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 60, 107, 0.88);
  background-image: var(--texture-on-blue);
}
.cta-band .cta-inner { position: relative; z-index: 1; text-align: center; padding: 96px 28px; max-width: var(--max); margin: 0 auto; }
.cta-band h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4.4vw, 52px); color: #fff; line-height: 1.08; }
.cta-band p { margin: 18px auto 0; max-width: 56ch; color: var(--blue-25); font-size: 17px; }

/* ---------- footer — Avenue Blue brand ground ---------- */
footer {
  background: var(--blue-500);
  background-image: var(--texture-on-blue);
  color: var(--blue-25);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 60px 28px 36px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px;
}
footer h2.fw { color: #fff; }
footer h3 {
  font-family: var(--font-display); font-size: 11.5px; letter-spacing: var(--ls-caps);
  text-transform: uppercase; color: #fff; margin-bottom: 14px; font-weight: 700;
}
footer ul { list-style: none; }
footer li { margin-bottom: 7px; font-size: 14px; }
footer a { color: var(--blue-25); text-decoration: none; }
footer a:hover { color: #fff; text-decoration: underline; }
footer address { font-style: normal; font-size: 14px; line-height: 1.8; }
footer .todo-chip { background: rgba(255,255,255,0.1); color: var(--accent-orange-50); border-color: var(--accent-orange-75); }
.footer-note {
  max-width: var(--max); margin: 0 auto; padding: 18px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.24);
  font-family: var(--mono); font-size: 11.5px; color: var(--blue-25); line-height: 1.7;
}

/* reveal — scoped to .js so content is visible when JavaScript fails */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-standard), transform 0.5s var(--ease-standard); }
.js .reveal.in { opacity: 1; transform: none; }

/* labeled generated/concept imagery */
.img-note {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0, 60, 107, 0.85); color: #fff;
  padding: 4px 9px; border-radius: 3px; pointer-events: none;
}

/* salary table scroll region (mobile) */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll table { min-width: 560px; }
.swipe-cue { display: none; font-family: var(--mono); font-size: 12px; color: var(--av-dim); margin: 8px 0 0; }

.concept-ribbon {
  position: fixed; bottom: 16px; left: 16px; z-index: 60;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--blue-900); border: 1px solid var(--blue-50); color: #fff;
  padding: 6px 11px; border-radius: 3px; pointer-events: none;
}

.rm-static { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  .veh, .sig { visibility: hidden; }   /* stop the animated vehicles + signal heads */
  .rm-static { display: block; }       /* show one labeled frozen phase instead */
}

@media print {
  .js .reveal, .reveal { opacity: 1 !important; transform: none !important; }
  .concept-ribbon { position: static; }
}

@media (max-width: 960px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid, .loc-grid, .principles, .cfi-steps, .contact-emails { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; gap: 14px; }
  .pe-perks { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 16px; }
  .nav-links li.hide-m { display: none; }
  .pad { padding: 64px 0; }
  .two-col { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .nav-links li.hide-s { display: none; }   /* keep Careers + Contact — never hide the hiring path */
  .plan-note { display: none; }             /* secondary SVG plan annotations unreadable at this size */
  .swipe-cue { display: block; }
  .nav-inner { padding: 0 16px; gap: 10px; }
  .nav-links { gap: 14px; }
  .wordmark .logo-img { height: 28px; }
  .btn-sm { padding: 8px 13px; font-size: 13px; }
  .wrap { padding: 0 20px; }
  /* concept ribbon: slim full-width bottom bar instead of a floating chip over content */
  .concept-ribbon { left: 0; right: 0; bottom: 0; border-radius: 0; border-left: none; border-right: none; border-bottom: none; text-align: center; padding: 5px 8px; }
  body { padding-bottom: 30px; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
