/* =========================================================
   Smelly Mel's Plumbing — site styles
   Palette: plumber red #E11B22 · charcoal #16181a · steel #6E7378
            navy #16314f · concrete #f1f0ed · paper #faf9f7
   ========================================================= */

/* ---------- reset / base ---------- */
/* This stylesheet is built mobile-first: the base rules below describe the
   phone layout (single column, content-first, full-width controls); the
   min-/max-width blocks lower down progressively enhance it for tablet and
   desktop. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100%;
}
img, svg, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

:root {
  --red: #E11B22;
  --red-dark: #b3151b;
  --red-soft: #fbe9e9;
  --ink: #16181a;
  --ink-2: #33373b;
  --steel: #6E7378;
  --steel-light: #9aa0a4;
  --navy: #14304d;
  --navy-2: #0e2238;
  --concrete: #f1f0ed;
  --paper: #faf9f7;
  --white: #ffffff;
  --line: #e3e1dc;
  --line-dark: rgba(255,255,255,0.12);
  --shadow-sm: 0 1px 2px rgba(20,22,24,0.06), 0 2px 8px rgba(20,22,24,0.05);
  --shadow-md: 0 10px 30px -12px rgba(20,22,24,0.18);
  --shadow-lg: 0 24px 50px -20px rgba(20,22,24,0.28);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Outfit", "Public Sans", system-ui, sans-serif;
}

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2rem, 5.4vw, 3.7rem); overflow-wrap: break-word; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
p { color: var(--ink-2); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-2); max-width: 60ch; }
strong { font-weight: 700; color: var(--ink); }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--concrete { background: var(--concrete); }
.section--ink { background: var(--ink); color: #e9e8e6; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: #b9b9b7; }
.section--navy { background: var(--navy); color: #d9e2ea; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: #b6c4d1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); display: inline-block; }
.section--ink .eyebrow, .section--navy .eyebrow { color: #ff5a60; }
.section--ink .eyebrow::before, .section--navy .eyebrow::before { background: #ff5a60; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 0.98rem;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 22px -10px rgba(225,27,34,0.7); }
.btn--red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(225,27,34,0.75); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,0.45); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-1px); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: #f1f0ed; transform: translateY(-1px); }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink { font-family: var(--display); font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 7px; transition: gap .2s var(--ease); }
.textlink svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.textlink:hover { gap: 11px; }
.section--ink .textlink, .section--navy .textlink { color: #ff7a7f; }

/* ---------- announcement bar ---------- */
.topbar {
  background: var(--red); color: #fff;
  font-size: 0.86rem; font-weight: 600;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.topbar a { font-weight: 800; }
.topbar-tags { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-tags span { display: inline-flex; align-items: center; gap: 7px; opacity: 0.95; }
.topbar-tags svg { width: 15px; height: 15px; }
.topbar-call { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.18); padding: 5px 13px; border-radius: 999px; transition: background .2s var(--ease); }
.topbar-call:hover { background: rgba(0,0,0,0.32); }
.topbar-call svg { width: 15px; height: 15px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,249,247,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(250,249,247,0.97); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; }
.brand { display: inline-flex; align-items: center; line-height: 0; flex: none; }
.brand-logo { display: block; width: auto; height: 40px; }
.site-header .brand-logo { height: 36px; }
.mobile-menu-top .brand-logo { height: 32px; }
.footer-brand .brand { background: #fff; padding: 9px 15px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.footer-brand .brand-logo { height: 30px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li > a, .nav-links > li > .nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  padding: 9px 13px; border-radius: 10px; color: var(--ink-2); cursor: pointer;
  transition: color .18s var(--ease), background .18s var(--ease);
  background: transparent; border: none; white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > .nav-trigger:hover { color: var(--ink); background: rgba(20,22,24,0.055); }
.nav-links > li.current > a, .has-dropdown.current > .nav-trigger { color: var(--red); }
.nav-trigger svg { width: 13px; height: 13px; transition: transform .22s var(--ease); margin-left: 1px; }
.has-dropdown { position: relative; }
.has-dropdown:hover .nav-trigger svg, .has-dropdown.open .nav-trigger svg { transform: rotate(180deg); }
/* invisible hover bridge so the panel doesn't close in the gap */
.has-dropdown::after { content: ""; position: absolute; left: 0; right: -10px; top: 100%; height: 16px; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 9px; width: 380px;
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.985); transform-origin: top left;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown::before {
  content: "Our services"; display: block; font-family: var(--display); font-weight: 700;
  font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; color: var(--steel-light);
  padding: 7px 13px 9px;
}
.dropdown a {
  display: flex; gap: 14px; padding: 11px 13px; border-radius: 12px;
  align-items: center; transition: background .15s var(--ease);
}
.dropdown a:hover { background: var(--concrete); }
.dropdown .di-ic {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: #f0eee7; color: var(--ink); display: grid; place-items: center;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.dropdown a:hover .di-ic { background: var(--red); color: #fff; }
.dropdown .di-ic svg { width: 19px; height: 19px; }
.dropdown .di-t { font-family: var(--display); font-weight: 700; font-size: .97rem; color: var(--ink); display: block; line-height: 1.2; }
.dropdown .di-d { font-size: .79rem; color: var(--steel); line-height: 1.35; display: block; margin-top: 2px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 18px; font-size: 0.92rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 1.02rem; color: var(--ink); padding: 8px 4px; }
.nav-phone svg { width: 17px; height: 17px; color: var(--red); }
.nav-phone:hover { color: var(--red); }

.nav-toggle { display: none; background: var(--ink); color: #fff; border: none; width: 44px; height: 44px; border-radius: 11px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-menu { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 64px); align-items: center; padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 88px); }
.hero-copy { max-width: 620px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; font-family: var(--display);
  padding: 6px 12px; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  color: var(--ink-2); box-shadow: var(--shadow-sm);
}
.pill svg { width: 13px; height: 13px; color: var(--red); }
.pill--red { background: var(--red); color: #fff; border-color: var(--red); }
.pill--red svg { color: #fff; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { color: var(--red); }
.hero-copy .lede { margin-bottom: 26px; }
.hero-cta { margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust .n { font-family: var(--display); font-weight: 800; font-size: 1.45rem; color: var(--ink); line-height: 1; }
.hero-trust .l { font-size: 0.82rem; color: var(--steel); margin-top: 5px; }

.hero-visual { position: relative; }
.hero-photo {
  aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-card {
  position: absolute; left: -28px; bottom: 34px; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 16px 18px; display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--line); max-width: 270px;
}
.hero-card .hc-ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--ink); color: #fff; display: grid; place-items: center; }
.hero-card .hc-ic svg { width: 22px; height: 22px; }
.hero-card .hc-t { font-family: var(--display); font-weight: 800; font-size: 0.98rem; color: var(--ink); line-height: 1.15; }
.hero-card .hc-d { font-size: 0.78rem; color: var(--steel); margin-top: 2px; }
.hero-card--tr { left: auto; right: -22px; bottom: auto; top: 26px; max-width: 220px; }
.hero-stars { color: #f5a623; letter-spacing: 1px; font-size: 0.95rem; }

/* ---------- placeholder image slots ---------- */
.ph {
  position: relative; background:
    linear-gradient(135deg, #20242a 0%, #2c3138 45%, #1c2026 100%);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em;
  overflow: hidden;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 22px 22px;
}
.ph::after {
  content: attr(data-img); position: relative; z-index: 1; padding: 14px 18px; max-width: 80%;
  border: 1px dashed rgba(255,255,255,0.22); border-radius: 8px; backdrop-filter: blur(2px);
}
.ph img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 2; }
/* once a real image is in the slot, kill the placeholder caption + texture entirely */
.ph.has-img::after, .ph.has-img::before { content: none; display: none; }
.ph:has(> img) { background: transparent; color: transparent; }
.ph:has(> img)::before, .ph:has(> img)::after { content: none; display: none; }

/* ---------- trust bar ---------- */
.trustbar { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.trustbar .wrap { display: grid; grid-template-columns: 1.1fr 2fr; gap: 32px; align-items: center; padding-top: 30px; padding-bottom: 30px; }
.trustbar .tb-lead { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: #fff; line-height: 1.35; }
.trustbar .tb-lead span { color: #ff5a60; }
.tb-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tb-stats > div { border-left: 2px solid rgba(255,255,255,0.16); padding-left: 16px; }
.tb-stats .n { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2rem); color: #fff; line-height: 1; }
.tb-stats .l { font-size: 0.8rem; color: #aeb3b8; margin-top: 6px; }
.rating-inline { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #aeb3b8; }
.rating-inline b { color: #fff; font-weight: 800; }

/* ---------- problem picker ---------- */
.picker-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.picker-card {
  display: flex; flex-direction: column; gap: 14px; padding: 22px 18px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  position: relative; overflow: hidden;
}
.picker-card::after { content:""; position:absolute; left:0; right:0; bottom:0; height:3px; background:var(--red); transform: scaleX(0); transform-origin:left; transition: transform .25s var(--ease); }
.picker-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.picker-card:hover::after { transform: scaleX(1); }
.picker-card .pc-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; }
.picker-card .pc-ic svg { width: 23px; height: 23px; }
.picker-card .pc-t { font-family: var(--display); font-weight: 800; font-size: 1.02rem; color: var(--ink); line-height: 1.15; }
.picker-card .pc-d { font-size: 0.84rem; color: var(--steel); }
.picker-card .pc-go { margin-top: auto; font-family: var(--display); font-weight: 700; font-size: 0.82rem; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.picker-card .pc-go svg { width: 13px; height: 13px; }
.picker-foot { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; text-align: center; }
.picker-foot p { font-size: 0.95rem; }

/* ---------- services directory ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  display: flex; flex-direction: column; gap: 14px; padding: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card .sc-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--ink); color: #fff; display: grid; place-items: center; }
.svc-card .sc-ic svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.2rem; }
.svc-card p { font-size: 0.94rem; flex: 1; }
.svc-card .sc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-card .sc-tags span { font-size: 0.72rem; font-weight: 600; padding: 4px 9px; border-radius: 999px; background: var(--concrete); color: var(--ink-2); }
.svc-card .textlink { font-size: 0.9rem; margin-top: 4px; }

/* ---------- feature / zigzag rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.feature + .feature { margin-top: clamp(48px, 7vw, 96px); }
.feature.flip .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media .ph { aspect-ratio: 5/4; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.feature-media .stat-chip {
  position: absolute; bottom: -22px; right: -18px; background: var(--red); color: #fff;
  border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-lg); text-align: center;
}
.feature-media .stat-chip .n { font-family: var(--display); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.feature-media .stat-chip .l { font-size: 0.72rem; opacity: 0.92; margin-top: 4px; }
.feature.flip .feature-media .stat-chip { right: auto; left: -18px; }
.feature-copy h2 { margin-bottom: 16px; }
.feature-copy > p { margin-bottom: 22px; }
.check-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-2); }
.check-list li svg { flex: none; width: 21px; height: 21px; color: var(--red); margin-top: 2px; }
.check-list li b { display: block; color: var(--ink); font-family: var(--display); font-weight: 700; font-size: 1rem; margin-bottom: 1px; }
.section--ink .check-list li { color: #c3c3c1; }
.section--ink .check-list li b { color: #fff; }
.section--ink .check-list li svg { color: #ff5a60; }
.section--navy .check-list li { color: #c0cdd9; }
.section--navy .check-list li b { color: #fff; }
.section--navy .check-list li svg { color: #ff7a7f; }

/* ---------- compliance band ---------- */
.compliance .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.compliance .cmp-list { display: grid; gap: 14px; }
.compliance .cmp-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); }
.compliance .cmp-list .n { flex: none; width: 26px; height: 26px; border-radius: 50%; background: #ff5a60; color: #1a1a1a; font-family: var(--display); font-weight: 800; font-size: 0.85rem; display: grid; place-items: center; margin-top: 2px; }
.compliance .cmp-list b { display: block; color: #fff; font-family: var(--display); font-weight: 700; margin-bottom: 2px; }
.compliance .cmp-list p { font-size: 0.9rem; color: #b6c4d1; }

/* ---------- value props ---------- */
.vp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.vp-cell { background: var(--white); padding: 26px 22px; display: flex; flex-direction: column; gap: 13px; transition: background .2s var(--ease); }
.vp-cell:hover { background: #fff; }
.vp-cell .vp-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; }
.vp-cell .vp-ic svg { width: 21px; height: 21px; }
.vp-cell h3 { font-size: 1.05rem; line-height: 1.2; }
.vp-cell p { font-size: 0.88rem; }

/* ---------- testimonials ---------- */
.tw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.tw-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px;
  display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm);
}
.tw-card.feat { grid-row: span 2; }
.tw-card .tw-photo { aspect-ratio: 16/10; border-radius: var(--r-sm); overflow: hidden; }
.tw-card .tw-photo.ph { font-size: 0.72rem; }
.tw-stars { color: #f5a623; letter-spacing: 1.5px; font-size: 0.95rem; }
.tw-quote { font-size: 0.96rem; color: var(--ink-2); line-height: 1.6; }
.tw-card.feat .tw-quote { font-size: 1.02rem; }
.tw-quote::before { content: "\201C"; }
.tw-quote::after { content: "\201D"; }
.tw-meta { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 4px; }
.tw-avatar { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 800; font-size: 0.9rem; display: grid; place-items: center; }
.tw-name { font-family: var(--display); font-weight: 700; font-size: 0.92rem; color: var(--ink); line-height: 1.2; }
.tw-loc { font-size: 0.78rem; color: var(--steel); }
.tw-src { margin-left: auto; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; color: var(--steel-light); text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; }
.tw-src svg { width: 13px; height: 13px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { position: relative; padding: 0 22px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 22px; right: -2px; width: 4px; height: 4px; }
.step-n {
  width: 46px; height: 46px; border-radius: 13px; background: var(--red); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center;
  margin-bottom: 18px; position: relative;
}
.step-n::after { content:""; position:absolute; left:100%; top:50%; width: 100%; height: 1.5px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px); }
.step:last-child .step-n::after { display: none; }
.section--ink .step-n::after, .section--navy .step-n::after { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 6px, transparent 6px 12px); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ---------- about preview ---------- */
.about-prev .wrap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-prev .ap-media .ph { aspect-ratio: 4/3; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.about-prev blockquote { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.3; color: var(--ink); margin: 22px 0; letter-spacing: -0.015em; }
.about-prev .ap-sign { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.about-prev .ap-sign .av { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 800; display: grid; place-items: center; }
.about-prev .ap-sign b { font-family: var(--display); font-weight: 800; color: var(--ink); display: block; }
.about-prev .ap-sign span { font-size: 0.85rem; color: var(--steel); }

/* ---------- service area ---------- */
.area .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.area-map { aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.area-map iframe { width: 100%; height: 100%; border: 0; }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.area-tags span { font-family: var(--display); font-weight: 600; font-size: 0.86rem; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.area-tags span.hq { background: var(--ink); color: #fff; border-color: var(--ink); }
.area-tags span.hq svg { width: 13px; height: 13px; display: inline; vertical-align: -2px; margin-right: 5px; color: #ff5a60; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
}
.faq-q .faq-ic { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.faq-q .faq-ic svg { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.faq-item.open .faq-q .faq-ic { background: var(--red); border-color: var(--red); color: #fff; }
.faq-item.open .faq-q .faq-ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: var(--ink-2); font-size: 0.98rem; max-width: 70ch; }
.faq-a-inner a { color: var(--red); font-weight: 600; }

/* ---------- closer / CTA band ---------- */
.closer { position: relative; overflow: hidden; }
.closer .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.closer-copy h2 { margin-bottom: 16px; }
.closer-copy .lede { margin-bottom: 24px; }
.closer-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.86rem; color: #aeb3b8; }
.closer-trust span { display: inline-flex; align-items: center; gap: 7px; }
.closer-trust svg { width: 15px; height: 15px; color: #ff5a60; }
.closer-quote { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 20px; font-size: 0.92rem; color: #c8c8c6; margin-top: 18px; }
.closer-quote b { color: #fff; }

/* ---------- forms ---------- */
.estimate-form {
  background: #fff; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.estimate-form.on-light { box-shadow: var(--shadow-md); }
.estimate-form h3 { font-size: 1.35rem; margin-bottom: 4px; }
.estimate-form .ef-sub { font-size: 0.9rem; color: var(--steel); margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-family: var(--display); font-weight: 600; font-size: 0.82rem; color: var(--ink-2); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; font-size: 0.95rem;
  background: var(--paper); color: var(--ink); transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(225,27,34,0.1); }
.field textarea { resize: vertical; min-height: 92px; }
.field .help { font-size: 0.76rem; color: var(--steel); }
.field .err { font-size: 0.76rem; color: var(--red); font-weight: 600; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); }
.field.invalid .err { display: block; }
.field-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; font-size: 0.86rem; color: var(--ink-2); }
.field-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex: none; }
.form-foot { font-size: 0.76rem; color: var(--steel); margin-top: 12px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 20px 10px;
}
.form-success.show { display: block; }
.form-success .fs-ic { width: 56px; height: 56px; border-radius: 50%; background: #e8f6ec; color: #1f9d4d; display: grid; place-items: center; margin: 0 auto 16px; }
.form-success .fs-ic svg { width: 30px; height: 30px; }
.form-success h3 { color: var(--ink); margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; }
.form-success .fs-call { margin-top: 18px; }

/* ---------- page hero (interior pages) ---------- */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0); background-size: 26px 26px; opacity: 0.7; }
.page-hero .wrap { position: relative; z-index: 1; padding-top: clamp(48px, 6vw, 76px); padding-bottom: clamp(48px, 6vw, 76px); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.page-hero.no-media .wrap { grid-template-columns: 1fr; max-width: 820px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: #9aa0a4; margin-bottom: 18px; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero h1 .hl { color: #ff5a60; }
.page-hero .lede { color: #c3c3c1; margin-bottom: 24px; }
.page-hero .hero-cta { margin-bottom: 0; }
.page-hero-media .ph { aspect-ratio: 4/3; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.mini-trust { display: flex; flex-wrap: wrap; gap: 16px 28px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.14); }
.mini-trust div .n { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: #fff; line-height: 1; }
.mini-trust div .l { font-size: 0.78rem; color: #9aa0a4; margin-top: 4px; }

/* ---------- service detail list ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.detail-grid li { background: #fff; padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start; }
.detail-grid li svg { flex: none; width: 20px; height: 20px; color: var(--red); margin-top: 2px; }
.detail-grid li b { display: block; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1rem; margin-bottom: 2px; }
.detail-grid li span { font-size: 0.88rem; color: var(--steel); }

/* ---------- video embed (lite YouTube facade) ---------- */
.video-block { max-width: 900px; margin: 0 auto; }
.video-wrap {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: #0a0a0a; display: block;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-caption { margin-top: 12px; font-size: .85rem; color: var(--steel); text-align: center; }
.section--ink .video-caption, .section--navy .video-caption { color: #9aa0a4; }

/* facade: poster image + play button until clicked */
.yt-facade { cursor: pointer; text-decoration: none; }
.yt-facade .yt-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yt-facade::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.32));
  transition: background .2s var(--ease);
}
.yt-facade:hover::after, .yt-facade:focus-visible::after { background: linear-gradient(rgba(0,0,0,0.06), rgba(0,0,0,0.36)); }
.yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 86px; height: 60px; pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.45)); transition: transform .2s var(--ease);
}
.yt-play svg { width: 100%; height: 100%; display: block; }
.yt-play svg .yt-bg { fill: #1c1c1c; opacity: .82; transition: fill .2s var(--ease), opacity .2s var(--ease); }
.yt-facade:hover .yt-play, .yt-facade:focus-visible .yt-play { transform: translate(-50%, -50%) scale(1.07); }
.yt-facade:hover .yt-play svg .yt-bg, .yt-facade:focus-visible .yt-play svg .yt-bg { fill: #ff0000; opacity: 1; }
.yt-facade:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.yt-facade.yt-loaded { cursor: default; }
.yt-facade.yt-loaded::after, .yt-facade.yt-loaded .yt-play, .yt-facade.yt-loaded .yt-poster { display: none; }

/* ---------- brand strip ---------- */
.brandstrip { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.brandstrip .wrap { display: flex; align-items: center; gap: 14px 38px; flex-wrap: wrap; justify-content: center; }
.brandstrip .bs-label { font-family: var(--display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.brandstrip .bs-item { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--steel-light); letter-spacing: -0.01em; }

/* ---------- careers ---------- */
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.role-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; }
.role-card .rc-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.role-card h3 { font-size: 1.3rem; }
.role-card .rc-tag { font-size: 0.72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: var(--red-soft); color: var(--red); white-space: nowrap; }
.role-card ul { display: flex; flex-direction: column; gap: 9px; margin: 16px 0 20px; }
.role-card ul li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--ink-2); align-items: flex-start; }
.role-card ul li svg { flex: none; width: 17px; height: 17px; color: var(--red); margin-top: 3px; }

/* ---------- contact blocks ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 16px; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); align-items: flex-start; }
.contact-card .cc-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; }
.contact-card .cc-ic svg { width: 22px; height: 22px; }
.contact-card .cc-l { font-family: var(--display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); margin-bottom: 3px; }
.contact-card .cc-v { font-family: var(--display); font-weight: 800; font-size: 1.12rem; color: var(--ink); line-height: 1.25; overflow-wrap: anywhere; }
.contact-card .cc-v a:hover { color: var(--red); }
.contact-card .cc-d { font-size: 0.85rem; color: var(--steel); margin-top: 2px; }
.contact-card.accent { background: var(--red); border-color: var(--red); }
.contact-card.accent .cc-ic { background: rgba(0,0,0,0.2); }
.contact-card.accent .cc-l { color: rgba(255,255,255,0.8); }
.contact-card.accent .cc-v, .contact-card.accent .cc-v a { color: #fff; }
.contact-card.accent .cc-d { color: rgba(255,255,255,0.88); }
.full-map { aspect-ratio: 21/9; width: 100%; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); margin-top: 8px; }
.full-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #b9b9b7; padding: 64px 0 28px; }
.site-footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand small { color: #8a8f93; }
.footer-brand p { font-size: 0.9rem; color: #9a9a98; max-width: 34ch; margin-bottom: 18px; }
.footer-call { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: #fff; }
.footer-call svg { width: 19px; height: 19px; color: #ff5a60; }
.footer-call:hover { color: #ff5a60; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.footer-badges span { font-size: 0.7rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); color: #b9b9b7; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--display); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: #a9a9a7; transition: color .15s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-col .fc-addr { font-size: 0.9rem; color: #a9a9a7; line-height: 1.6; font-style: normal; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.8rem; color: #7d7d7b; }
.footer-bottom a:hover { color: #fff; }

/* ---------- ideaaiincome credit ---------- */
.iai-credit-wrap {
  width: 100%; display: flex; justify-content: center; padding: 8px 10px;
  background: #060606;
}
.iai-credit-btn {
  display: inline-flex; align-items: center; gap: 3px; padding: 5px 12px; border-radius: 999px;
  font-family: inherit; font-size: 10px; font-weight: 500; letter-spacing: 0;
  color: #f5f5f5; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.iai-credit-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.24); transform: translateY(-1px); }
.iai-credit-highlight { color: #ff5a60; font-weight: 700; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive (mobile-first base above; enhancements below) ---------- */

/* tablet & up: slightly larger body copy than the phone baseline */
@media (min-width: 768px) {
  body { font-size: 17px; }
}

@media (max-width: 1120px) {
  .nav-phone { display: none; }
  .dropdown { width: 340px; }
}
@media (max-width: 1080px) {
  .picker-grid { grid-template-columns: repeat(3, 1fr); }
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .step-n::after { display: none; }
  .nav-links > li > a, .nav-links > li > .nav-trigger { padding: 9px 11px; font-size: .92rem; }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn--ghost, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: inline-flex; }
  .site-header .brand-logo { height: 30px; }
  .nav-cta { gap: 8px; }
  /* mobile: copy first, image stacked below it (content-first) */
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: 2; margin-top: clamp(26px, 6vw, 40px); }
  .hero-photo { aspect-ratio: 16/10; }
  .hero-card { left: 12px; bottom: 12px; }
  .hero-card--tr { display: none; }
  .trustbar .wrap { grid-template-columns: 1fr; gap: 22px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .tw-grid { grid-template-columns: repeat(2, 1fr); }
  .tw-card.feat { grid-row: span 1; }
  .feature, .feature.flip { grid-template-columns: 1fr; }
  .feature .feature-media, .feature.flip .feature-media { order: 2; margin-top: clamp(22px, 5vw, 36px); }
  .feature .feature-copy, .feature.flip .feature-copy { order: 1; }
  .feature-media .ph { aspect-ratio: 16/10; }
  .feature-media .stat-chip, .feature.flip .feature-media .stat-chip { right: 14px; left: auto; bottom: -18px; }
  .about-prev .wrap, .area .wrap, .compliance .wrap, .closer .wrap, .page-hero .wrap, .contact-grid { grid-template-columns: 1fr; }
  .about-prev .ap-media { order: 2; margin-top: clamp(22px, 5vw, 36px); }
  .page-hero-media { order: 2; margin-top: clamp(22px, 5vw, 36px); }
  .area .wrap > .reveal:first-child { order: 2; margin-top: clamp(22px, 5vw, 36px); }
  .role-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .full-map { aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .topbar-tags { display: none; }
  .topbar .wrap { justify-content: center; }
  .site-header .brand-logo { height: 26px; }
  .nav-cta .btn--red { padding: 9px 14px; font-size: .85rem; }
  .nav-toggle { width: 40px; height: 40px; }
  .picker-grid { grid-template-columns: 1fr 1fr; }
  .vp-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .tw-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero-card { position: static; max-width: none; margin-top: 14px; }
  .hero-photo { border-radius: var(--r-md); }
  .btn-row .btn { width: 100%; }
  .feature-media .stat-chip { position: static; display: inline-block; margin-top: 14px; }
  .hero-cta.btn-row, .hero .btn-row { width: 100%; }
  .hero-visual { margin-top: 22px; }
  .feature .feature-media, .feature.flip .feature-media, .about-prev .ap-media { margin-top: 18px; }
}
@media (max-width: 400px) {
  .wrap { padding: 0 14px; }
  h1 { font-size: clamp(1.65rem, 8.6vw, 2.05rem); }
  .hero-trust { gap: 14px 0; }
  .hero-trust div { flex: 1 1 100%; }
  .hero-badges .pill { font-size: .72rem; padding: 5px 10px; }
  .hero-card { padding: 13px 14px; }
  .picker-grid { grid-template-columns: 1fr; }
  .nav { padding: 11px 0; }
  .nav-cta .btn--red { padding: 8px 12px; font-size: .82rem; }
  .nav-cta .btn--red svg { width: 15px; height: 15px; }
  .topbar-call { font-size: .8rem; }
  .estimate-form { padding: 18px; }
  .footer-call { font-size: 1.1rem; }
}

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--paper);
  transform: translateX(100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column; padding: 18px;
}
.mobile-menu.open { transform: none; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mobile-menu-close { background: var(--ink); color: #fff; border: none; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; cursor: pointer; }
.mobile-menu-close svg { width: 22px; height: 22px; }
.mobile-nav { display: flex; flex-direction: column; padding: 18px 4px; gap: 2px; overflow-y: auto; flex: 1; }
.mobile-nav > a, .mobile-nav .m-group > .m-trigger {
  font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink);
  padding: 13px 8px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: none; border: none; width: 100%; text-align: left;
}
.mobile-nav .m-trigger svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.mobile-nav .m-group.open .m-trigger svg { transform: rotate(180deg); }
.mobile-nav .m-sub { display: none; padding: 0 0 8px 14px; flex-direction: column; gap: 1px; border-left: 2px solid var(--line); margin-left: 8px; }
.mobile-nav .m-group.open .m-sub { display: flex; }
.mobile-nav .m-sub a { font-family: "Public Sans", sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink-2); padding: 10px 8px; }
.mobile-menu-foot { border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-foot .btn { width: 100%; }
.mobile-menu-foot .mm-call { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--ink); text-align: center; padding: 10px; }
body.menu-open { overflow: hidden; }
