/* ═══════════════════════════════════════════════════════════════════
   SILEX MARKETING  ·  silexmarketing.com  ·  2026
   Direction: Luxury Editorial — Financial Times meets premium B2B consultancy
   Palette: Navy #0B1F2A · Red #7A1F2B · Gold #C69214 · Silver #B1B3B3
   Type: Montserrat (brand spec) + DM Mono (labels) + Cormorant Garamond (display accents)
═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=DM+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --navy:    #0B1F2A;
  --navy2:   #152B3A;
  --navy3:   #1E3A4D;
  --red:     #7A1F2B;
  --red2:    #8E2232;
  --gold:    #C69214;
  --gold2:   #D4A220;
  --silver:  #B1B3B3;
  --black:   #0D0D0D;

  /* Light mode surface */
  --white:   #FFFFFF;
  --cream:   #FAF8F4;
  --oat:     #F4F1EB;
  --buff:    #EDE8DF;
  --bone:    #E4DDD3;
  --muted:   #5C6C7A;
  --border:  #DDD8CF;
  --text:    #1A1A20;

  /* Type */
  --sans:   'Montserrat', sans-serif;
  --serif:  'Montserrat', sans-serif;
  --mono:   'DM Mono', monospace;

  /* Layout */
  --nav-h:  76px;
  --max:    1240px;
  --pad:    2.5rem;
  --r:      1px;
  --ease:   cubic-bezier(.215,.61,.355,1);
}

/* ── RESET ──────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ── LAYOUT UTILITIES ───────────────────────────────────────────────── */
.wrap    { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 8rem 0; }
/* ── GLOBAL HEADING ALIGNMENT ───────────────────────────────────────── */
.section h1, .section h2, .section h3,
.section .eyebrow,
.section-heading, .section-label {
  text-align: center;
}
.section h2, .section h1 {
  margin-left: auto;
  margin-right: auto;
}
.s-sm    { padding: 5.5rem 0; }
.s-cream { background: var(--cream); }
.s-oat   { background: var(--oat); }
.s-buff  { background: var(--buff); }
.s-navy  { background: var(--navy); }
.s-navy .h2, .s-navy h2 { color: var(--white); }
.s-navy p, .s-navy .body { color: var(--silver); }

/* ── TYPOGRAPHY SCALE ───────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
h1, .h1 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -.02em;
  color: var(--navy);
}
h2, .h2 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--navy);
}
h3, .h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.28;
  color: var(--navy);
}
.serif-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0;
}
.body-lg { font-size: 1.05rem; color: var(--muted); line-height: 1.88; }
.body    { font-size: .9rem;  color: var(--muted); line-height: 1.78; }
.mono-sm { font-family: var(--mono); font-size: .63rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.tc { text-align: center; }

/* ── LOGO WORDMARK ──────────────────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: .45rem; }
/* ── IMAGE LOGO ─────────────────────────────────────────────────────── */
.logo-img-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: .1rem;
  /* logo sits on navy footer — transparent bg shows the white/silver logo naturally */
}

.logo-word {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: .22em;
  color: var(--navy);
}
.logo-divider {
  width: 1px; height: 14px;
  background: var(--gold);
  display: inline-block;
  margin: 0 .05rem;
  flex-shrink: 0;
}
.logo-sub {
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── NAV ────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .35s var(--ease);
}
#nav.scrolled { box-shadow: 0 2px 32px rgba(11,31,42,.1); }
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .02em; color: rgba(255,255,255,.72);
  transition: color .2s; position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .52rem 1.45rem;
  font-size: .76rem !important;
  font-weight: 700 !important;
  letter-spacing: .07em;
  transition: background .2s, color .2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red) !important; color: var(--white) !important; }
.nav-cta.active { background: var(--red) !important; color: var(--white) !important; }
.nav-cta-gold {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.nav-cta-gold:hover { background: var(--red) !important; color: var(--white) !important; }
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 5px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  transition: all .3s;
}

/* ── BUTTON SYSTEM ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--sans); font-weight: 700;
  letter-spacing: .07em; font-size: .82rem;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; padding: .9rem 2.2rem; }
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(122,31,43,.28); }
.btn-dark    { background: var(--navy); color: #fff; padding: .9rem 2.2rem; }
.btn-dark:hover { background: var(--navy2); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); padding: .88rem 2.1rem; background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-gold    { background: var(--gold); color: var(--navy); padding: .82rem 2rem; }
.btn-gold:hover { background: var(--gold2); }
.btn-white   { background: #fff; color: var(--navy); padding: .9rem 2.2rem; }
.btn-white:hover { background: var(--gold); }
.btn-lg      { padding: 1.05rem 2.75rem !important; font-size: .9rem !important; }
.btn-sm      { padding: .55rem 1.35rem !important; font-size: .74rem !important; }
.btn-arrow::after { content: ' →'; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 35%; height: 100%;
  background: linear-gradient(to left, rgba(198,146,20,.06), transparent);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
}
.hero-bg-navy, .hero-bg-grid, .hero-bg-rule { display: none; }
.hero-single {
  position: relative; z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem var(--pad) 4rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
}
.hero-lockup {
  max-width: 480px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}
.hero-center-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}
.hero-wordmark {
  font-family: var(--sans);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: #B1B3B3;
  letter-spacing: .14em;
  line-height: 1;
}
.hero-marketing-word {
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: #A33040;
  margin-top: .45rem;
}
.hero-mkt-dash {
  font-weight: 400;
  letter-spacing: .1em;
  opacity: .6;
}
.hero-single .hero-card::before { display: none; }
.hero-single .hero-card { border-left: none; }
.hero-h1-center {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
  white-space: normal;
}
.hero-gold-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-gold-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.hero-card-top-red {
  border-top: 3px solid var(--red);
  border-left: none !important;
}
.hero-card-top-red::before { display: none !important; }
.hero-card-top-gold {
  border-top: 3px solid var(--gold);
  border-left: none !important;
}
.hero-card-top-gold::before { display: none !important; }
.hero-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  width: 100%;
  margin-bottom: 2.5rem;
}
.hero-single .hero-logo-display {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-single .hero-full-logo {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}
.hero-single .hero-h1 {
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}
.hero-single .hero-cards-row {
  width: 100%;
}
.hero-single .hero-stats {
  width: 100%;
  margin-top: 2rem;
  padding-top: 2rem;
  justify-content: space-between;
}
.hero-single .hero-actions {
  width: 100%;
  margin-top: 2rem;
  justify-content: center;
}
.hero-flint-def {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(177,179,179,.75);
  font-style: italic;
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.hero-left { padding: 6rem 5rem 6rem var(--pad); text-align: left; }
.hero-eyebrow {
  font-family: var(--mono);
  font-size: .62rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: flex-start; gap: .8rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--gold);
}
.hero-h1 { margin-bottom: 1.6rem; color: #fff; }
.hero-h1 .break { display: block; }
.hero-h1 .italic { font-family: var(--sans); font-weight: 300; font-style: italic; color: var(--gold); letter-spacing: -.01em; font-size: .75em; }
.hero-sub {
  font-size: .98rem; color: rgba(177,179,179,.85);
  line-height: 1.85; max-width: 430px;
  margin-bottom: 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; }
.hero-stats {
  display: flex; gap: 0; justify-content: space-between;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  width: 100%;
}
.stat-n {
  font-family: var(--sans); font-weight: 900;
  font-size: 3.2rem; line-height: 1; color: #fff;
}
.stat-n .sup { font-size: 2.4rem; color: var(--gold); vertical-align: super; }
.stat-l { font-size: .75rem; color: rgba(177,179,179,.7); margin-top: .3rem; letter-spacing: .02em; }

.hero-right {
  padding: 5rem var(--pad) 5rem 4.5rem;
  display: flex; flex-direction: column; gap: 1.6rem;
}
.hero-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
  width: 100%;
}
.hero-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  position: relative;
  transition: background .25s var(--ease);
  overflow: hidden;
  width: 100%;
}
.hero-card:hover { background: rgba(255,255,255,.1); }
.hero-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
}
.hero-card.red-stripe::before  { background: var(--red); }
.hero-card.gold-stripe::before { background: var(--gold); }
.hc-eye { font-family: var(--mono); font-size: .57rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(177,179,179,.65); margin-bottom: .45rem; }
.hc-title { font-size: 1.08rem; font-weight: 700; color: #fff; margin-bottom: .5rem; line-height: 1.3; }
.hc-body  { font-size: .84rem; color: rgba(177,179,179,.8); line-height: 1.68; }


/* ── HERO FULL LOGO DISPLAY ─────────────────────────────────────────── */
.hero-logo-display {
  display: block;
  text-align: right;
  padding: 2rem 0 1.5rem;
  width: 100%;
}
.hero-full-logo {
  width: 90%;
  max-width: 580px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}
/* ── HERO CARD LAYOUT ───────────────────────────────────────────────── */
.hero-right {
  padding: 4rem 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: center;
}

/* ── SCROLLING MARQUEE ──────────────────────────────────────────────── */
.marquee {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .95rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3.5rem;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--mono); font-size: .59rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(177,179,179,.5); white-space: nowrap;
  display: flex; align-items: center; gap: .8rem;
}
.marquee-item::before { content: '◆'; color: var(--gold); font-size: .44rem; }

/* ── TWO-DIVISION CARDS ─────────────────────────────────────────────── */
.divisions-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 3.5rem;
}
.div-card {
  background: var(--white);
  padding: 3.25rem;
  transition: box-shadow .28s var(--ease), transform .28s var(--ease);
}
.div-card:hover { box-shadow: 0 12px 44px rgba(11,31,42,.09); transform: translateY(-3px); z-index: 1; position: relative; }
.div-num { font-family: var(--mono); font-size: .6rem; letter-spacing: .22em; color: var(--gold); margin-bottom: .8rem; }
.div-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.div-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.div-card h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.div-tagline {
  font-family: var(--serif); font-style: italic;
  color: var(--muted); font-size: .98rem; margin-bottom: 1.75rem;
}
.div-list { border-top: 1px solid var(--border); }
.div-list li {
  padding: .6rem 0 .6rem 1.15rem;
  border-bottom: 1px solid var(--border);
  font-size: .87rem; color: var(--text);
  position: relative;
}
.div-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
}
.div-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.65rem;
  font-family: var(--mono); font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); transition: gap .2s, color .2s;
}
.div-cta:hover { gap: .7rem; color: var(--red2); }

.int-band {
  background: var(--navy);
  padding: 2.5rem 3.25rem;
  margin-top: 2px;
  display: flex; align-items: center;
  gap: 3rem; flex-wrap: wrap;
}
.int-band-label {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; flex-shrink: 0;
}
.int-band-text { flex: 1; color: var(--silver); font-size: .9rem; line-height: 1.68; }

/* ── WHO WE SERVE ───────────────────────────────────────────────────── */
.who-g { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }
.profile-table { border-top: 1px solid var(--border); margin-top: 2rem; }
.pt-row { display: flex; gap: 1.5rem; padding: .9rem 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.pt-key { font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); min-width: 116px; flex-shrink: 0; }
.pt-val { font-size: .87rem; color: var(--navy); font-weight: 600; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.pain-c { background: var(--white); padding: 1.85rem; transition: background .2s; }
.pain-c:hover { background: var(--cream); }
.pain-num { font-family: var(--mono); font-size: .58rem; letter-spacing: .16em; color: var(--gold); margin-bottom: .6rem; }
.pain-title { font-size: .96rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.pain-body  { font-size: .84rem; color: var(--muted); line-height: 1.7; }

/* ── ADVANTAGES ─────────────────────────────────────────────────────── */
.adv-strip { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid rgba(255,255,255,.08); }
.adv-item  { padding: 2.75rem 1.85rem; border-right: 1px solid rgba(255,255,255,.08); transition: background .2s; }
.adv-item:last-child { border-right: none; }
.adv-item:hover { background: rgba(255,255,255,.04); }
.adv-n { font-family: var(--mono); font-size: .58rem; letter-spacing: .22em; color: var(--gold); margin-bottom: .8rem; }
.adv-t { font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: .65rem; }
.adv-b { font-size: .83rem; color: var(--silver); line-height: 1.74; }

/* ── FOUNDERS PREVIEW ───────────────────────────────────────────────── */
.founders-g { display: grid; grid-template-columns: 1fr 1fr; gap: 2.75rem; margin-top: 3rem; }
.founder-card {
  border: 1px solid var(--border);
  padding: 3.25rem;
  position: relative; overflow: hidden;
  transition: box-shadow .28s var(--ease);
}
.founder-card:hover { box-shadow: 0 12px 44px rgba(11,31,42,.09); }
.founder-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}
.founder-card.sam::after { background: linear-gradient(90deg, var(--red), var(--gold)); }
.founder-card.adr::after { background: linear-gradient(90deg, var(--gold), var(--navy)); }
.fc-role { font-family: var(--mono); font-size: .59rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.fc-name { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.fc-creds { font-size: .78rem; color: var(--muted); font-style: italic; margin-bottom: 1.3rem; }
.fc-bio { font-size: .87rem; color: var(--muted); line-height: 1.78; margin-bottom: 1.5rem; }
.fc-link { font-family: var(--mono); font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); transition: gap .2s, color .2s; display: inline-flex; align-items: center; gap: .4rem; }
.fc-link:hover { gap: .65rem; color: var(--red2); }

/* ── CTA BAND ───────────────────────────────────────────────────────── */
.cta-band { background: var(--red); padding: 7.5rem 0; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: center; }
.cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.8; }
.cta-side { text-align: center; flex-shrink: 0; }
.cta-note { margin-top: .85rem; font-size: .73rem; color: rgba(255,255,255,.45); font-style: italic; }

/* ── PAGE HERO (inner pages) ────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 6rem) 0 6rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 35%; height: 100%;
  background: linear-gradient(to left, rgba(198,146,20,.06), transparent);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
}
.page-hero h1 { color: #fff; margin-bottom: 1.35rem; text-align: center; font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.page-hero-desc { color: var(--silver); font-size: 1.04rem; line-height: 1.85; max-width: 580px; text-align: center; margin: 0 auto; }

/* ── SERVICES PAGE ──────────────────────────────────────────────────── */
.svc-section { padding: 7rem 0; }
.svc-section.alt { background: var(--cream); }
.div-header { display: flex; gap: 3rem; align-items: flex-start; margin-bottom: 4.5rem; }
.div-number {
  font-family: var(--sans); font-size: 9rem; font-weight: 900;
  color: var(--bone); line-height: .9; flex-shrink: 0;
  letter-spacing: -.05em; margin-top: -1.5rem;
}
.div-header-text h2 { margin-bottom: .6rem; }
.div-header-sub { color: var(--muted); font-size: .98rem; line-height: 1.78; max-width: 520px; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.svc-card {
  background: var(--white); padding: 2.25rem;
  transition: background .2s;
}
.svc-section.alt .svc-card { background: var(--cream); }
.svc-card:hover { background: var(--oat); }
.svc-num  { font-family: var(--mono); font-size: .58rem; letter-spacing: .16em; color: var(--gold); margin-bottom: .6rem; }
.svc-name { font-size: 1.06rem; font-weight: 700; color: var(--navy); margin-bottom: .7rem; }
.svc-desc { font-size: .86rem; color: var(--muted); line-height: 1.74; margin-bottom: 1.3rem; }
.svc-del  { border-top: 1px solid var(--border); padding-top: .95rem; margin-bottom: .7rem; }
.svc-del-lbl { font-family: var(--mono); font-size: .55rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.svc-del-txt { font-size: .81rem; color: var(--text); line-height: 1.62; }
.svc-price { font-family: var(--mono); font-size: .7rem; color: var(--red); letter-spacing: .05em; }

.int-section { padding: 7rem 0; background: var(--navy); }
.int-center { max-width: 720px; margin: 0 auto; text-align: center; }
.int-center p { color: var(--silver); font-size: 1.02rem; line-height: 1.84; margin: 1.5rem 0 0; }
.int-price { font-family: var(--mono); font-size: .82rem; color: var(--gold); letter-spacing: .08em; margin: 2rem 0 2.5rem; }

.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.pkg-card {
  border: 1px solid var(--border); padding: 2.75rem;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.pkg-card:hover { border-color: var(--navy); box-shadow: 0 8px 36px rgba(11,31,42,.09); }
.pkg-card.featured { border-color: var(--gold); background: var(--cream); }
.pkg-badge {
  position: absolute; top: -1px; right: 1.75rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--mono); font-size: .56rem;
  letter-spacing: .13em; text-transform: uppercase;
  padding: .22rem .65rem; font-weight: 500;
}
.pkg-name  { font-size: 1.38rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.pkg-range { font-family: var(--mono); font-size: .74rem; color: var(--red); letter-spacing: .04em; margin-bottom: .22rem; }
.pkg-term  { font-size: .77rem; color: var(--muted); font-style: italic; margin-bottom: 1.15rem; }
.pkg-desc  { font-size: .87rem; color: var(--muted); line-height: 1.74; margin-bottom: 1.5rem; }
.pkg-feats { border-top: 1px solid var(--border); padding-top: 1.15rem; }
.pkg-feats li {
  font-size: .84rem; color: var(--text);
  padding: .42rem 0 .42rem 1.15rem;
  border-bottom: 1px solid var(--border); position: relative;
}
.pkg-feats li:last-child { border-bottom: none; }
.pkg-feats li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}
.pkg-note { text-align: center; margin-top: 2.75rem; font-size: .83rem; color: var(--muted); font-style: italic; }

/* ── EVENTS PAGE ────────────────────────────────────────────────────── */
.ev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; margin-top: 4rem; }
.ev-card {
  border: 1px solid var(--border);
  overflow: hidden; background: var(--white);
  transition: box-shadow .28s var(--ease), transform .28s var(--ease);
}
.ev-card:hover { box-shadow: 0 16px 48px rgba(11,31,42,.12); transform: translateY(-4px); }
.ev-visual {
  height: 215px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ev-vis-content { position: relative; z-index: 2; text-align: center; }
.ev-vis-sublabel {
  font-family: var(--mono); font-size: .54rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: .75rem;
}
.ev-body { padding: 1.85rem; }
.ev-cat   { font-family: var(--mono); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.ev-title { font-size: 1.14rem; font-weight: 700; color: var(--navy); margin-bottom: .65rem; }
.ev-desc  { font-size: .86rem; color: var(--muted); line-height: 1.74; margin-bottom: 1.05rem; }
.ev-tags  { display: flex; flex-wrap: wrap; gap: .4rem; }
.ev-tag {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--oat); color: var(--muted);
  padding: .23rem .64rem; border-radius: 1px;
}
.ev-tag.sig { background: var(--navy); color: var(--gold); }

.ev-stats-row { background: var(--navy); padding: 3.75rem 0; }
.ev-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.08); }
.ev-stat { padding: 2rem; border-right: 1px solid rgba(255,255,255,.08); text-align: center; }
.ev-stat:last-child { border-right: none; }
.ev-stat-n { font-family: var(--sans); font-weight: 900; font-size: 2.75rem; color: #fff; line-height: 1; }
.ev-stat-n .sup { font-size: 1.2rem; color: var(--gold); vertical-align: super; }
.ev-stat-l { font-size: .74rem; color: var(--silver); margin-top: .42rem; letter-spacing: .04em; }

.ev-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.ev-duo-card {
  min-height: 260px; background: var(--navy2);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 3rem; position: relative; overflow: hidden;
  transition: transform .3s var(--ease);
}
.ev-duo-card:hover { transform: scale(1.012); }
.ev-duo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,42,.95) 0%, rgba(11,31,42,.4) 55%, transparent 100%);
}
.ev-duo-content { position: relative; z-index: 1; }
.ev-duo-cat   { font-family: var(--mono); font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.ev-duo-title { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: .65rem; }
.ev-duo-body  { font-size: .86rem; color: var(--silver); line-height: 1.7; }

.ev-cap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin-top: 3.5rem; }
.ev-cap-card { background: var(--white); padding: 2.25rem; }
.ev-cap-icon { width: 46px; height: 46px; background: var(--oat); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.ev-cap-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.ev-cap-t { font-size: .94rem; font-weight: 700; color: var(--navy); margin-bottom: .48rem; }
.ev-cap-b { font-size: .83rem; color: var(--muted); line-height: 1.68; }

.pull-quote {
  background: var(--cream); border-left: 4px solid var(--gold);
  padding: 2.5rem 3rem; margin: 4rem 0;
}
.pull-quote blockquote {
  font-family: var(--serif); font-size: 1.32rem;
  font-style: italic; color: var(--navy); line-height: 1.7;
  margin-bottom: .85rem;
}
.pull-quote cite { font-family: var(--mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ── ABOUT PAGE ─────────────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }
.about-story .right p { color: var(--muted); font-size: 1.01rem; line-height: 1.88; margin-bottom: 1.3rem; }
.blockquote-pull {
  margin-top: 2.25rem; padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold); background: var(--oat);
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--muted); line-height: 1.72;
}
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.mv-card { background: var(--white); padding: 3.25rem; }
.mv-label { font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.mv-text { font-family: var(--serif); font-size: 1.14rem; color: var(--navy); line-height: 1.72; font-style: italic; }

.ff-section { padding: 7rem 0; }
.ff-section.alt { background: var(--cream); }
.ff-header { margin-bottom: 2.5rem; }
.ff-role  { font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; }
.ff-name  { font-family: var(--sans); font-weight: 900; font-size: clamp(2.4rem,5vw,3.7rem); letter-spacing: -.02em; color: var(--navy); margin-bottom: .4rem; }
.ff-creds { font-style: italic; color: var(--muted); font-size: .88rem; }
.ff-body  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.ff-bio-single { max-width: 760px; }
.ff-bio-single p, .ff-bio p { color: var(--muted); font-size: 1rem; line-height: 1.88; margin-bottom: 1.25rem; }
.career-label { font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.35rem; }
.career-list { border-top: 1px solid var(--border); }
.career-item { padding: 1.15rem 0; border-bottom: 1px solid var(--border); }
.ci-co    { font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .24rem; }
.ci-title { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: .32rem; }
.ci-desc  { font-size: .83rem; color: var(--muted); line-height: 1.64; }

.principles-strip { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.08); }
.principle { padding: 2.75rem 2rem; border-right: 1px solid rgba(255,255,255,.08); }
.principle:last-child { border-right: none; }
.p-title { font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: .65rem; }
.p-body  { font-size: .84rem; color: var(--silver); line-height: 1.74; }

/* ── CONTACT PAGE ───────────────────────────────────────────────────── */
.contact-layout { padding: calc(var(--nav-h) + 5rem) 0 7rem; min-height: 100vh; }
.contact-g { display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start; }
.contact-left h1 { margin-bottom: 1.3rem; }
.contact-left .body-lg { margin-bottom: 2.75rem; }
.cd-table { border-top: 1px solid var(--border); margin-bottom: 2.75rem; }
.cd-row { display: flex; gap: 1.5rem; padding: .9rem 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.cd-key { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); min-width: 68px; flex-shrink: 0; }
.cd-val { font-size: .88rem; color: var(--navy); font-weight: 600; }
.cd-val a { color: var(--red); transition: color .2s; }
.cd-val a:hover { color: var(--red2); }
.contact-founders { display: flex; flex-direction: column; gap: 1.1rem; }
.cf-item { border-left: 3px solid var(--gold); padding-left: 1.15rem; }
.cf-name { font-size: .94rem; font-weight: 700; color: var(--navy); }
.cf-role { font-size: .77rem; color: var(--muted); font-style: italic; }

.form-shell { background: var(--cream); padding: 3rem; border: 1px solid var(--border); }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.fg label { font-family: var(--mono); font-size: .57rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: .42rem; }
.fg input, .fg select, .fg textarea {
  font-family: var(--sans); font-size: .87rem; color: var(--navy);
  background: var(--white); border: 1px solid var(--border);
  padding: .78rem 1.05rem; outline: none;
  transition: border-color .2s; border-radius: var(--r);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); }
.fg textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.fg select { cursor: pointer; -webkit-appearance: none; }
.btn-submit {
  width: 100%; background: var(--navy); color: #fff; border: none;
  padding: 1.05rem; font-family: var(--sans); font-size: .88rem;
  font-weight: 700; letter-spacing: .07em; cursor: pointer;
  transition: background .2s; margin-top: .6rem;
}
.btn-submit:hover { background: var(--red); }
.form-note { text-align: center; margin-top: .95rem; font-size: .73rem; color: var(--muted); font-style: italic; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
footer { background: var(--navy); padding: 5.5rem 0 2.5rem; }
.footer-g {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 5rem; margin-bottom: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-word { color: #fff; }
.footer-tagline { font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: .7rem 0 1.1rem; }
.footer-desc { font-size: .83rem; color: var(--silver); line-height: 1.8; max-width: 370px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.footer-col-head { font-family: var(--mono); font-size: .57rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.05rem; }
.footer-links a { display: block; font-size: .83rem; color: var(--silver); margin-bottom: .55rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .73rem; color: var(--muted); }
.footer-email a { font-size: .8rem; color: var(--gold); transition: color .2s; }
.footer-email a:hover { color: var(--gold2); }
.footer-social { display: inline-flex; gap: .85rem; align-items: center; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--silver); transition: color .2s ease, transform .2s ease; }
.footer-social a:hover { color: var(--gold); transform: translateY(-1px); }
.footer-social svg { width: 17px; height: 17px; display: block; fill: currentColor; }

/* ── SCROLL REVEAL ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .68s var(--ease), transform .68s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .adv-strip   { grid-template-columns: repeat(3,1fr); }
  .adv-item:nth-child(3) { border-right: none; }
  .principles-strip { grid-template-columns: 1fr 1fr; }
  .principle:nth-child(2) { border-right: none; }
  .svc-grid    { grid-template-columns: 1fr 1fr; }
  .ev-grid     { grid-template-columns: 1fr 1fr; }
  .pkg-grid    { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .ev-cap-grid { grid-template-columns: 1fr 1fr; }
  .ev-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --pad: 1.25rem; }

  /* Prevent horizontal scroll — use clip on body only, NOT html, so fixed elements still work */
  body { overflow-x: clip; }

  /* NAV — navy dropdown matching bar */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy) !important;
    flex-direction: column;
    padding: 1.5rem var(--pad);
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
    z-index: 9999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { color: rgba(255,255,255,.85) !important; font-size: 1rem; display: block; padding: 4px 0; }
  .nav-links a:hover, .nav-links a.active { color: #fff !important; }
  .nav-links .nav-cta { background: var(--gold) !important; color: var(--navy) !important; text-align: center; border-radius: 4px; padding: 10px 18px; }
  .burger { display: flex; }
  .burger span { background: #fff; }

  /* HOME HERO */
  .hero-bg-navy, .hero-bg-grid { display: none; }
  .hero-single { padding: 2rem var(--pad) 3rem; }
  .hero-top-row { grid-template-columns: 1fr; gap: 2rem; }
  .hero-wordmark { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-marketing-word { font-size: 1rem; }
  .hero-h1-center { font-size: clamp(1rem, 5vw, 1.6rem); white-space: normal; }
  .hero-flint-def { font-size: .85rem; }
  .hero-cards-row { grid-template-columns: 1fr; gap: .75rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; justify-content: center; display: grid; padding-top: 1.5rem; }
  .stat-n { font-size: 2rem; }
  .stat-n .sup { font-size: 1.4rem; }
  .hero-actions { justify-content: center; }

  /* HERO LAYOUT (other pages) */
  .hero-layout, .who-g, .about-story, .ff-body, .divisions-g, .founders-g, .mv-grid, .ev-duo, .contact-g { grid-template-columns: 1fr; gap: 2rem; }
  .hero-left { padding: 3rem 0 1.5rem; }
  .hero-right { padding: 1.5rem 0 3rem; justify-content: flex-start; }
  .hero-stack { max-width: 100%; height: 260px; }
  .hero-stack-card.back { right: -8px; top: 28px; left: 18px; }
  .hero-stack-card.front { right: 8px; }

  /* SECTIONS */
  .section { padding: 4rem 0; }
  .wrap { padding-left: var(--pad); padding-right: var(--pad); }

  /* CTA BAND */
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .cta-side { align-items: center; }

  /* FOOTER */
  .footer-g  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }

  /* GRIDS */
  .adv-strip { grid-template-columns: 1fr 1fr; }
  .adv-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .svc-grid, .ev-grid { grid-template-columns: 1fr; }
  .div-header { flex-direction: column; gap: 1rem; }
  .div-number { font-size: 5rem; margin-top: 0; }
  .int-band   { flex-direction: column; gap: 1rem; padding: 2rem; }
  .divisions-g { grid-template-columns: 1fr; }
  .principles-strip { grid-template-columns: 1fr; }
  .principle  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .ev-cap-grid { grid-template-columns: 1fr; }
  .ev-stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row2 { grid-template-columns: 1fr; }

  /* TYPOGRAPHY */
  h1, .h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  h2, .h2 { font-size: clamp(1.3rem, 5vw, 1.9rem); }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* CAMPAIGNS PAGE */
  .cp-hero-inner { padding: 3rem var(--pad); }
  .cp-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-h1-center { font-size: clamp(1.2rem, 5vw, 2rem) !important; }
  .cp-hero-desc { font-size: .95rem; }
  .cp-benefits-grid { grid-template-columns: 1fr; }
  .cp-align-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cp-service-map { overflow-x: auto; }

  /* EVENTS PAGE */
  .ev-duo { grid-template-columns: 1fr; }
  .ev-duo-card { min-height: 260px; }

  /* PARTNER PAGE */
  .ev-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ABOUT PAGE */
  .founders-g { grid-template-columns: 1fr; }

  /* SERVICES PAGE TABS */
  .svc-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .svc-tab { font-size: 12px; padding: 12px 14px; white-space: nowrap; flex: none; }
  .svc-grid-5 { grid-template-columns: 1fr; }
  .svc-grid-2 { grid-template-columns: 1fr; }
  .svc-grid-3 { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .svc-section-hd { padding: 32px var(--pad) 24px; }
  .svc-cards-wrap { padding: 24px var(--pad) 40px; }

  /* THREE-COLUMN SECTIONS */
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 5fr 7fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:5fr 7fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1.6fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* INLINE GRID OVERRIDES */
  .div-header[style] { display: flex !important; flex-direction: column !important; }
}

@media (max-width: 480px) {
  :root { --pad: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-n { font-size: 1.75rem; }
  .ev-stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .svc-tab { font-size: 11px; padding: 10px 12px; }
  h1, .h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
}

