/* Ohio Valley Flooring — concept site (JAK APPS demo)
   v3 design system: corporate/editorial. Gallery white + graphite,
   black primary actions, hairline grid, red confined to the mark. */

:root {
  --ink: #111214;
  --body: #3F434A;
  --muted: #676D75;
  --faint: #9BA0A7;
  --bg: #FFFFFF;
  --bg-alt: #F6F6F4;
  --bg-alt-2: #EFEFEC;
  --line: #E4E4E0;
  --line-2: #D2D2CD;
  --dark: #101113;
  --dark-2: #17181B;
  --line-dark: #292B30;
  --on-dark: #F4F4F2;
  --on-dark-muted: #A2A7AE;
  --red: #B01B2E;
  --ok: #1F7A38;
  --warn: #A05C10;
  --r: 12px;
  --r-lg: 18px;
  --pad: clamp(20px, 4.5vw, 64px);
  --font-display: "Inter Tight", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--body); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--ink); color: #fff; }

.wrap { max-width: 1240px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.fi { width: 20px; height: 20px; stroke-width: 1.6; flex: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--ink); letter-spacing: -0.025em; }
h1 { font-size: clamp(40px, 5.2vw, 68px); line-height: 1.04; letter-spacing: -0.032em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.028em; }
h3 { font-size: 19px; letter-spacing: -0.015em; }
.lead { font-size: clamp(16px, 1.55vw, 18.5px); line-height: 1.65; color: var(--muted); max-width: 58ch; }
.dark .lead { color: var(--on-dark-muted); }
h1 .tint, h2 .tint { color: var(--faint); }
.dark h1 .tint, .dark h2 .tint { color: #6E747C; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; background: var(--red); flex: none; }
.dark .eyebrow { color: var(--on-dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 15px; font-weight: 550;
  padding: 15px 28px; border-radius: 8px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap; letter-spacing: -0.005em;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn .fi { width: 16px; height: 16px; }
.btn-red { background: var(--ink); color: #fff; }
.btn-red:hover { background: #000; box-shadow: 0 8px 24px -10px rgba(17,18,20,.5); }
.btn-outline { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }
.dark .btn-red { background: #fff; color: var(--ink); }
.dark .btn-red:hover { background: var(--on-dark); box-shadow: none; }
.dark .btn-outline { border-color: rgba(244,244,242,.28); color: var(--on-dark); }
.dark .btn-outline:hover { border-color: var(--on-dark); background: rgba(244,244,242,.06); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Announce ---------- */
.announce {
  background: var(--dark); color: var(--on-dark-muted);
  font-size: 12.5px; font-weight: 500; letter-spacing: .02em;
  text-align: center; padding: 9px var(--pad);
}
.announce strong { color: var(--on-dark); font-weight: 600; }
.announce a { color: var(--on-dark); font-weight: 600; text-underline-offset: 3px; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 30px; height: 78px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 8px; background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0;
  display: flex; align-items: center; justify-content: center;
}
.brand .name {
  font-family: var(--font-display); font-weight: 650; font-size: 16px;
  letter-spacing: -0.015em; line-height: 1.12; color: var(--ink);
}
.brand .name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-top: 3px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .15s; letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current] { color: var(--ink); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .ghost {
  font-size: 14px; font-weight: 550; color: var(--ink); text-decoration: none;
  padding: 10px 16px; border: 1px solid var(--line-2); border-radius: 8px;
  font-family: var(--font-display); transition: border-color .15s;
}
.nav-cta .ghost:hover { border-color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5.5px 0; }
.mobile-only { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--bg); border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 5.5vw, 90px);
  align-items: center; padding-top: clamp(56px, 6.5vw, 100px); padding-bottom: clamp(56px, 6.5vw, 100px);
}
.hero .lead { margin: 26px 0 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 0; margin-top: 52px; border-top: 1px solid var(--line); }
.hero-meta .m { flex: 1; padding: 20px 22px 0 0; border-right: 1px solid var(--line); margin-right: 22px; border-right: 0; }
.hero-meta .m + .m { border-left: 1px solid var(--line); padding-left: 22px; }
.hero-meta b { display: block; font-family: var(--font-display); font-weight: 650; font-size: 26px; letter-spacing: -0.03em; color: var(--ink); }
.hero-meta span { font-size: 12.5px; color: var(--faint); }

.hero-art { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; }
.hero-art .ph-main {
  grid-column: 1 / -1; height: clamp(300px, 30vw, 440px);
  border-radius: var(--r-lg); overflow: hidden;
}
.hero-art .ph-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .ph-sub {
  height: clamp(130px, 12vw, 180px); border-radius: var(--r);
  overflow: hidden; margin-top: -56px; margin-left: -20px;
  border: 6px solid var(--bg); box-shadow: 0 24px 60px -28px rgba(17,18,20,.35);
}
.hero-art .ph-sub img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .ring {
  margin-top: -56px; justify-self: end; align-self: center; margin-right: 8px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 22px; max-width: 220px;
  font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--muted); line-height: 1.7;
  box-shadow: 0 24px 60px -28px rgba(17,18,20,.3);
}
.hero-art .ring b { display: block; font-family: var(--font-display); font-weight: 650; font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 2px; }

/* ---------- Logo strip ---------- */
.logostrip { border-bottom: 1px solid var(--line); background: var(--bg); color: var(--faint); overflow: hidden; }
.logostrip .inner { display: flex; align-items: center; }
.logostrip .label { font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: 24px 28px 24px var(--pad); border-right: 1px solid var(--line); white-space: nowrap; color: var(--faint); }
.mq { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.mq .track { display: flex; width: max-content; animation: mq 48s linear infinite; }
.mq .set { display: flex; align-items: center; flex: none; }
.mq .set span {
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em;
  color: #B4B8BD; white-space: nowrap; padding: 26px 0;
}
.mq .set i { font-style: normal; color: var(--line-2); padding: 0 24px; font-size: 9px; }
@keyframes mq { to { transform: translateX(-50%); } }

/* logo images in marquee */
.mq .set img {
  height: 30px; width: auto; max-width: 150px; object-fit: contain;
  display: inline-block; align-self: center;
  filter: grayscale(1); mix-blend-mode: multiply; opacity: .7;
  transition: filter .25s, opacity .25s;
}
.mq .set img:hover { filter: none; opacity: 1; }
.mq .set img.inv { filter: invert(1) grayscale(1); mix-blend-mode: normal; }
.mq .set img.inv:hover { filter: invert(1); }

/* ---------- Brand wall ---------- */
.brandwall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.brandwall .b {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  min-height: 96px; display: flex; align-items: center; justify-content: center;
  padding: 20px 22px; text-align: center; transition: border-color .2s, box-shadow .2s;
}
.brandwall .b:hover { border-color: var(--line-2); box-shadow: 0 18px 36px -26px rgba(17,18,20,.25); }
.brandwall .b img {
  max-height: 42px; max-width: 82%; object-fit: contain;
  filter: grayscale(1); mix-blend-mode: multiply; opacity: .78; transition: filter .25s, opacity .25s;
}
.brandwall .b:hover img { filter: none; opacity: 1; }
.brandwall .b img.inv { filter: invert(1) grayscale(1); mix-blend-mode: normal; }
.brandwall .b:hover img.inv { filter: invert(1); }
.brandwall .b span { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; color: var(--muted); line-height: 1.3; }
.brandwall .b span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-top: 4px; }

/* ---------- Coverage map ---------- */
.map-card {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  height: clamp(380px, 46vw, 540px); position: relative; z-index: 0;
}
#covmap { width: 100%; height: 100%; background: var(--bg-alt); }
.leaflet-container { font-family: var(--font-body) !important; }
.leaflet-popup-content-wrapper { border-radius: 12px !important; box-shadow: 0 20px 40px -18px rgba(17,18,20,.35) !important; }
.leaflet-popup-content { margin: 14px 18px !important; font-size: 13px !important; line-height: 1.6 !important; color: var(--body) !important; }
.leaflet-popup-content b { font-family: var(--font-display); font-size: 14px; color: var(--ink); display: block; margin-bottom: 2px; }
.leaflet-popup-content a { color: var(--ink); font-weight: 600; text-decoration: none; }
.map-legend { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend i { width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line-2); }
.map-legend .hq { background: var(--red); }
.map-legend .wh { background: var(--ink); }

/* ---------- Page hero with photo ---------- */
.ph-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 84px); align-items: center; }
.ph-side { height: clamp(240px, 24vw, 360px); border-radius: var(--r-lg); overflow: hidden; }
.ph-side img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- JAK credit ---------- */
.jak-credit { display: inline-flex; align-items: center; gap: 9px; }
.jak-credit img { height: 30px; width: auto; display: block; opacity: .8; transition: opacity .25s; }
.jak-credit a:hover img { opacity: 1; }

/* ---------- Sections ---------- */
section.block { padding-top: clamp(76px, 8.5vw, 128px); padding-bottom: clamp(76px, 8.5vw, 128px); }
section.tight { padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(48px, 6vw, 84px); }
.dark { background: var(--dark); color: var(--on-dark-muted); }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.cream2 { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lead { margin-top: 18px; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(40px, 5vw, 64px); }
.head-row .section-head { margin-bottom: 0; }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  display: flex; align-items: center; gap: 26px; width: 100%;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 28px 0; font-family: var(--font-display);
}
.acc-head .no { font-size: 12px; font-weight: 550; color: var(--faint); width: 36px; flex: none; letter-spacing: .06em; }
.acc-head h3 { font-size: clamp(20px, 2.3vw, 27px); font-weight: 600; letter-spacing: -0.022em; flex: 1; transition: color .2s; }
.acc-head:hover h3 { color: var(--muted); }
.acc-head .toggle {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  border: 1px solid var(--line-2); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.acc-head .toggle svg { width: 15px; height: 15px; stroke-width: 1.8; }
.acc-head .toggle .v { transition: transform .3s ease, opacity .2s; }
.acc-item.open .acc-head .toggle { background: var(--ink); border-color: var(--ink); color: #fff; }
.acc-item.open .acc-head .toggle .v { transform: rotate(90deg); opacity: 0; }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.6,0,.2,1); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-inner { overflow: hidden; }
.acc-content { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(26px, 4vw, 60px); padding: 4px 0 36px 62px; align-items: center; }
.acc-content p { color: var(--muted); font-size: 15px; max-width: 52ch; }
.acc-brands { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 24px; }
.acc-brands span {
  font-size: 12px; font-weight: 550; font-family: var(--font-display); letter-spacing: .01em;
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); color: var(--muted);
}
.acc-content .ph { height: clamp(180px, 17vw, 250px); border-radius: var(--r); overflow: hidden; }
.acc-content .ph img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-dark); border-radius: var(--r-lg); overflow: hidden; background: var(--dark-2); }
.stat { padding: clamp(28px, 3vw, 42px) clamp(22px, 2.5vw, 38px); border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-display); font-weight: 650; font-size: clamp(30px, 3.2vw, 44px); letter-spacing: -0.035em; color: #fff; line-height: 1.08; }
.stat b span { color: #6E747C; }
.stat small { font-size: 12.5px; color: var(--on-dark-muted); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5.5vw, 92px); align-items: center; }
.split .content .lead { margin: 18px 0 28px; }
.feature-list { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.feature-list .ic {
  width: 40px; height: 40px; border-radius: 9px; flex: none;
  background: rgba(244,244,242,.06); color: var(--on-dark);
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
}
.feature-list .ic .fi { width: 18px; height: 18px; }
.feature-list b { display: block; font-family: var(--font-display); font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
.feature-list span { font-size: 13.5px; color: var(--on-dark-muted); }
.light-ic .feature-list { border-top-color: var(--line); }
.light-ic .feature-list li { border-bottom-color: var(--line); }
.light-ic .feature-list .ic { background: var(--bg-alt); color: var(--ink); border-color: var(--line); }
.light-ic .feature-list b { color: var(--ink); }
.light-ic .feature-list span { color: var(--muted); }

/* ---------- Portal mock ---------- */
.mock {
  background: #fff; border-radius: var(--r-lg); overflow: hidden; font-size: 13px; color: var(--body);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 60px 120px -50px rgba(0,0,0,.8);
}
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.mock-bar .url { margin-left: 10px; flex: 1; background: var(--bg-alt-2); border-radius: 7px; padding: 6px 12px; color: var(--faint); font-size: 11.5px; font-weight: 500; }
.mock-body { padding: 22px; }
.mock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mock-head b { font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.mock-head .pill { background: rgba(31,122,56,.1); color: var(--ok); font-weight: 600; font-size: 11px; padding: 5px 11px; border-radius: 999px; }
.mock-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 9px; }
.mock-row .sw { width: 34px; height: 34px; border-radius: 8px; flex: none; }
.mock-row .nm { flex: 1; min-width: 0; }
.mock-row .nm b { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-row .nm span { font-size: 11px; color: var(--faint); }
.mock-row .qty { font-weight: 650; font-size: 12px; color: var(--ok); white-space: nowrap; }
.mock-row .qty.low { color: var(--warn); }
.mock-foot { display: flex; gap: 9px; margin-top: 16px; }
.mock-foot .mbtn { flex: 1; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; padding: 11px; border-radius: 8px; background: var(--ink); color: #fff; }
.mock-foot .mbtn.ghost { background: var(--bg-alt-2); color: var(--ink); }

/* ---------- Photo cards / grids ---------- */
.ph-card { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.ph-card img { width: 100%; height: 100%; object-fit: cover; }

.grid { display: grid; gap: 20px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; transition: border-color .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--line-2); box-shadow: 0 24px 48px -32px rgba(17,18,20,.18); }
a.card { text-decoration: none; display: block; }
.card .icon { width: 44px; height: 44px; border-radius: 11px; margin-bottom: 22px; background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink); display: flex; align-items: center; justify-content: center; }
.card .icon .fi { width: 19px; height: 19px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 14.5px; color: var(--muted); }

/* ---------- Location cards ---------- */
.loc {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; display: flex; flex-direction: column; gap: 4px;
}
.loc .tag { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.loc .tag::before { content: ""; width: 8px; height: 8px; background: var(--red); }
.loc h3 { font-size: 21px; }
.loc .role { font-size: 13px; color: var(--faint); font-weight: 500; margin-bottom: 18px; }
.loc dl { display: grid; gap: 10px; font-size: 14px; }
.loc dl div { display: flex; gap: 11px; align-items: flex-start; }
.loc dl .fi { width: 16px; height: 16px; color: var(--faint); margin-top: 4px; }
.loc dl a { color: var(--ink); text-decoration: none; }
.loc dl a:hover { text-decoration: underline; text-underline-offset: 3px; }
.loc .muted2 { color: var(--muted); }

/* territory strip */
.terr { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4vw, 64px); align-items: stretch; }
.terr .ph-card { min-height: 340px; }
.terr-list { display: grid; align-content: center; border-top: 1px solid var(--line); }
.terr-list a {
  display: flex; align-items: baseline; gap: 18px; padding: 19px 4px;
  border-bottom: 1px solid var(--line); text-decoration: none;
  transition: padding-left .22s ease;
}
.terr-list a:hover { padding-left: 14px; }
.terr-list .city { font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 1.9vw, 21px); letter-spacing: -0.02em; color: var(--ink); flex: 1; }
.terr-list .role { font-size: 12.5px; color: var(--faint); }
.terr-list .go { color: var(--faint); font-weight: 600; transition: color .2s, transform .2s; }
.terr-list a:hover .go { color: var(--ink); }

/* ---------- Notice ---------- */
.notice {
  display: flex; gap: 18px; background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 28px; align-items: flex-start;
}
.notice .ic { width: 42px; height: 42px; border-radius: 10px; flex: none; background: var(--bg); border: 1px solid var(--line); color: var(--ink); display: flex; align-items: center; justify-content: center; }
.notice .ic .fi { width: 18px; height: 18px; }
.notice b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.notice p { font-size: 14px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: calc(var(--r-lg) + 4px); overflow: hidden;
  background: var(--dark); color: var(--on-dark-muted); padding: clamp(44px, 6vw, 88px);
}
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: var(--on-dark-muted); margin: 18px 0 32px; max-width: 54ch; }
.cta-band .photo {
  position: absolute; right: 0; top: 0; bottom: 0; width: 44%;
  mask-image: linear-gradient(90deg, transparent, #000 55%);
  opacity: .38; filter: grayscale(1) contrast(1.05);
}
.cta-band .photo img { width: 100%; height: 100%; object-fit: cover; }
.cta-band > *:not(.photo) { position: relative; z-index: 1; }
.cta-band .eyebrow { color: var(--on-dark-muted); }
.cta-band .btn-red { background: #fff; color: var(--ink); }
.cta-band .btn-red:hover { background: var(--on-dark); box-shadow: none; }
.cta-band .btn-outline { border-color: rgba(244,244,242,.28); color: var(--on-dark); }
.cta-band .btn-outline:hover { border-color: var(--on-dark); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding-top: clamp(56px, 6.5vw, 92px); padding-bottom: clamp(56px, 6.5vw, 92px);
}
.page-hero h1 { max-width: 17ch; }
.page-hero .lead { margin-top: 24px; }
.page-hero .hero-ctas { margin-top: 32px; }
.page-hero .hero-note { margin-top: 22px; font-size: 13.5px; color: var(--faint); }
.page-hero .hero-note a { color: var(--ink); font-weight: 600; }

/* ---------- Forms ---------- */
.form-shell { background: var(--bg); border: 1px solid var(--line); border-radius: calc(var(--r-lg) + 2px); padding: clamp(26px, 4vw, 46px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.005em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-2); border-radius: 9px; background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17,18,20,.08);
}
.field ::placeholder { color: var(--faint); }
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-actions .fine { font-size: 13px; color: var(--faint); }
.form-success { text-align: center; padding: 34px 10px; }
.form-success h3 { font-size: 26px; margin: 18px 0 10px; }
.form-success p { color: var(--muted); max-width: 46ch; margin: 0 auto; }
.form-success .big { display: flex; justify-content: center; }
.form-success .big svg { color: var(--ink) !important; }

/* ---------- Dept cards ---------- */
.dept { display: flex; gap: 18px; align-items: flex-start; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.dept .icon { width: 44px; height: 44px; border-radius: 11px; background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink); display: flex; align-items: center; justify-content: center; flex: none; }
.dept .icon .fi { width: 18px; height: 18px; }
.dept b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.01em; }
.dept a { font-size: 14.5px; color: var(--muted); text-decoration: none; display: block; padding: 1.5px 0; }
.dept a:hover { color: var(--ink); }
.dept small { font-size: 12.5px; color: var(--faint); }

/* ---------- Footer ---------- */
footer.site { background: var(--dark); color: var(--on-dark-muted); }
footer.site .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-top: clamp(56px, 6vw, 80px); padding-bottom: 52px; }
footer.site .brand .name { color: #fff; }
footer.site .brand .name small { color: var(--on-dark-muted); }
footer.site p.blurb { font-size: 13.5px; margin-top: 20px; max-width: 34ch; line-height: 1.8; }
footer.site h4 { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #6E747C; margin-bottom: 20px; }
footer.site ul { list-style: none; display: grid; gap: 11px; font-size: 14px; }
footer.site ul a { color: var(--on-dark-muted); text-decoration: none; transition: color .15s; }
footer.site ul a:hover { color: var(--on-dark); }
footer.site .legal {
  border-top: 1px solid var(--line-dark);
  padding: 24px var(--pad); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: #6E747C;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .mq .track { animation: none; }
}

/* ---------- Demo ribbon ---------- */
.demo-ribbon {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 100;
  background: var(--dark); color: var(--on-dark); border: 1px solid var(--line-dark);
  font-size: 12px; font-weight: 500; padding: 9px 10px 9px 16px; border-radius: 999px;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.45);
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.demo-ribbon button { background: rgba(244,244,242,.1); color: var(--on-dark); border: 0; border-radius: 99px; width: 22px; height: 22px; cursor: pointer; font-size: 11px; line-height: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid, .split, .terr, .ph-grid { grid-template-columns: 1fr; }
  .brandwall { grid-template-columns: repeat(3, 1fr); }
  .hero-art { max-width: 560px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line-dark); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .grid.c3 { grid-template-columns: repeat(2, 1fr); }
  .acc-content { grid-template-columns: 1fr; padding-left: 62px; }
  .acc-content .ph { order: -1; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
  .head-row { flex-direction: column; align-items: flex-start; }
  .cta-band .photo { display: none; }
}
@media (max-width: 700px) {
  .nav { height: 70px; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 8px var(--pad) 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .nav-cta .ghost, .nav-cta .btn { display: none; }
  .mobile-only { display: block; }
  .grid.c2, .grid.c3 { grid-template-columns: 1fr; }
  .brandwall { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .acc-content { padding-left: 0; }
  .acc-head .no { display: none; }
  .logostrip .label { display: none; }
  footer.site .cols { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { flex-wrap: wrap; }
  .hero-meta .m { flex: 1 1 40%; padding-top: 16px; }
  .hero-art .ring { display: none; }
  .hero-art .ph-sub { grid-column: 1 / -1; margin: 0; border: 0; box-shadow: none; }
}
