@charset "utf-8";
/* ============================================================
   DROIT — design system
   Fraunces (display) + Inter (UI), self-hosted so a slow or
   blocked Google Fonts never delays first paint.
   Both fonts are SIL Open Font License 1.1 — see fonts/*-OFL.txt.
   ============================================================ */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --navy-900: #0b1626;
  --navy-800: #0f1e33;
  --navy-700: #13253f;
  --navy: #1a3157;
  --navy-500: #24457a;
  --navy-400: #41628f;
  --navy-200: #9db0cb;
  --navy-100: #d6e0ed;

  --signal: #e1751f;
  --signal-600: #bd5c11;
  --signal-100: #fdf0e3;

  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-2: #f4f1ec;
  --line: #e6e2db;
  --line-strong: #d3cec4;

  --ink: #141c27;
  --slate: #586274;
  --muted: #828c9d;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --t--1: clamp(0.8rem, 0.78rem + 0.1vw, 0.85rem);
  --t-0: clamp(1rem, 0.97rem + 0.14vw, 1.06rem);
  --t-1: clamp(1.1rem, 1.05rem + 0.24vw, 1.28rem);
  --t-2: clamp(1.35rem, 1.24rem + 0.55vw, 1.75rem);
  --t-3: clamp(1.7rem, 1.47rem + 1.1vw, 2.5rem);
  --t-4: clamp(2.1rem, 1.66rem + 2.1vw, 3.5rem);
  --t-5: clamp(2.6rem, 1.85rem + 3.6vw, 4.75rem);

  --sp-1: 0.35rem;
  --sp-2: 0.7rem;
  --sp-3: 1.1rem;
  --sp-4: 1.7rem;
  --sp-5: 2.6rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(11, 22, 38, 0.05), 0 2px 8px rgba(11, 22, 38, 0.04);
  --shadow-2: 0 2px 4px rgba(11, 22, 38, 0.05), 0 12px 32px rgba(11, 22, 38, 0.09);
  --shadow-3: 0 4px 8px rgba(11, 22, 38, 0.07), 0 24px 56px rgba(11, 22, 38, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --header-h: 4.5rem;
  --wrap: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-0);
  line-height: 1.62;
  letter-spacing: -0.011em;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.1;
  margin: 0 0 var(--sp-2);
  color: var(--navy-900);
  text-wrap: balance;
}
p {
  margin: 0 0 var(--sp-3);
  text-wrap: pretty;
}
a {
  color: var(--navy);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}
a:hover {
  color: var(--signal-600);
}
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 3px;
}
address {
  font-style: normal;
}

/* ---------- Layout ---------- */
.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}
.wrap-narrow {
  width: min(46rem, calc(100% - 2.5rem));
  margin-inline: auto;
}
.section {
  padding-block: var(--sp-6);
}
.section-sm {
  padding-block: var(--sp-5);
}
.section + .section {
  padding-top: 0;
}
.stack > * + * {
  margin-top: var(--sp-3);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--surface);
  color: var(--navy);
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-2);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip:focus-visible {
  top: 1rem;
}

/* ---------- Type helpers ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 var(--sp-2);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--signal-600);
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--signal);
  flex: none;
}
.h-xl {
  font-size: var(--t-5);
  letter-spacing: -0.042em;
}
.h-lg {
  font-size: var(--t-4);
  letter-spacing: -0.038em;
}
.h-md {
  font-size: var(--t-3);
}
.h-sm {
  font-size: var(--t-2);
}
.lede {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 42rem;
}
.measure {
  max-width: 40rem;
}
.micro {
  font-size: var(--t--1);
  color: var(--muted);
  line-height: 1.5;
}
.tabular {
  font-variant-numeric: tabular-nums;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.32s var(--ease), box-shadow 0.32s var(--ease), backdrop-filter 0.32s var(--ease);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.site-header.is-solid {
  background: rgba(11, 22, 38, 0.9);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 28px rgba(11, 22, 38, 0.22);
}
body.no-hero .site-header {
  background: rgba(11, 22, 38, 0.9);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
}

.brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.22em;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: none;
}
.brand:hover {
  color: #fff;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}
.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.845rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.55rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.site-nav a[aria-current="page"] {
  color: #fff;
}
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.header-cta:hover {
  color: #fff;
  background: var(--signal);
  border-color: var(--signal);
  transform: translateY(-1px);
}
.header-cta svg {
  width: 0.85rem;
  height: 0.85rem;
  flex: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-sm);
  color: #fff;
  cursor: pointer;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), background 0.15s linear;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before {
  top: -0.36rem;
}
.nav-toggle span::after {
  top: 0.36rem;
}
.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(0.36rem) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-0.36rem) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: var(--sp-2) 1.25rem var(--sp-4);
    background: rgba(11, 22, 38, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-3);
    transform: translateY(-0.6rem);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }
  .site-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .site-nav a {
    font-size: 1.05rem;
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
  }
  .site-nav a::after {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    margin-right: 0.5rem;
  }
}
@media (max-width: 560px) {
  .header-cta span {
    display: none;
  }
  .header-cta {
    padding: 0.55rem 0.7rem;
  }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-bd: var(--navy);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.4rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease),
    border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.btn:active {
  transform: translateY(0);
}
.btn svg {
  width: 0.9rem;
  height: 0.9rem;
  flex: none;
  transition: transform 0.25s var(--ease);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn-accent {
  --btn-bg: var(--signal);
  --btn-bd: var(--signal);
}
.btn-accent:hover {
  --btn-bg: var(--signal-600);
  --btn-bd: var(--signal-600);
}
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  --btn-bd: var(--line-strong);
}
.btn-ghost:hover {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-bd: var(--navy);
}
.btn-light {
  --btn-bg: #fff;
  --btn-fg: var(--navy-900);
  --btn-bd: #fff;
}
.btn-outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover {
  --btn-bg: #fff;
  --btn-fg: var(--navy-900);
  --btn-bd: #fff;
}
.btn-sm {
  padding: 0.6rem 1.05rem;
  font-size: 0.83rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: var(--sp-4);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(46rem, 92svh);
  padding-top: calc(var(--header-h) + var(--sp-5));
  padding-bottom: var(--sp-6);
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.06);
  animation: hero-drift 18s var(--ease) forwards;
}
@keyframes hero-drift {
  to {
    transform: scale(1);
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      104deg,
      rgba(11, 22, 38, 0.94) 0%,
      rgba(11, 22, 38, 0.82) 38%,
      rgba(11, 22, 38, 0.42) 72%,
      rgba(11, 22, 38, 0.28) 100%
    ),
    linear-gradient(to top, rgba(11, 22, 38, 0.86) 0%, rgba(11, 22, 38, 0) 42%);
}
.hero h1 {
  color: #fff;
  font-size: var(--t-5);
  letter-spacing: -0.042em;
  max-width: 15ch;
  margin-bottom: var(--sp-3);
}
.hero .eyebrow {
  color: #f5b476;
}
.hero .eyebrow::before {
  background: var(--signal);
}
.hero p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 38rem;
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.22rem);
}
.hero-sm {
  min-height: min(34rem, 74svh);
}
.hero-sm h1 {
  font-size: var(--t-4);
}

/* Page head (no photo) */
.page-head {
  padding-top: calc(var(--header-h) + var(--sp-5));
  padding-bottom: var(--sp-5);
  background: linear-gradient(180deg, var(--navy-900), var(--navy-700));
  color: #fff;
}
.page-head h1 {
  color: #fff;
  font-size: var(--t-4);
  max-width: 18ch;
}
.page-head p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 44rem;
}
.page-head .eyebrow {
  color: #f5b476;
}

/* Trust chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.chip b {
  font-weight: 700;
  color: #fff;
}
.chip-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
  flex: none;
}

/* ---------- Store finder ---------- */
.finder {
  position: relative;
  z-index: 5;
  margin-top: calc(var(--sp-6) * -1);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  padding: var(--sp-4);
}
.finder-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.finder-head h2 {
  font-size: var(--t-2);
  margin: 0;
}
.finder-search {
  position: relative;
  display: flex;
  align-items: center;
}
.finder-search svg {
  position: absolute;
  left: 1rem;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--muted);
  pointer-events: none;
}
.finder-search input {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--bg);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.finder-search input::placeholder {
  color: var(--muted);
}
.finder-search input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--navy-400);
  box-shadow: 0 0 0 4px rgba(26, 49, 87, 0.1);
}
.finder-clear {
  position: absolute;
  right: 0.6rem;
  width: 1.9rem;
  height: 1.9rem;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--slate);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.finder-clear.is-on {
  display: inline-flex;
}
.finder-clear:hover {
  background: var(--navy);
  color: #fff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: var(--sp-3);
  padding: 0;
  list-style: none;
}
.filter {
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.filter:hover {
  border-color: var(--navy-400);
  color: var(--navy);
  transform: translateY(-1px);
}
.filter[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.finder-count {
  margin: var(--sp-3) 0 0;
  font-size: 0.85rem;
  color: var(--slate);
}
.finder-count b {
  color: var(--navy-900);
}

/* ---------- Store cards ---------- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: var(--sp-3);
  margin: 0;
  padding: 0;
  list-style: none;
}
.store-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--line-strong);
}
.store-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2) center/cover no-repeat;
}
.store-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.store-card:hover .store-figure img {
  transform: scale(1.05);
}
.badge-open {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-pill);
  background: rgba(11, 22, 38, 0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.badge-open::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #4ade80;
}
.badge-build {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--signal-100);
  color: var(--signal-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.store-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--sp-3);
}
.store-city {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--signal-600);
}
.store-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}
.store-card h3 a {
  color: inherit;
  text-decoration: none;
}
.store-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.store-card {
  position: relative;
}
.store-meta {
  margin: 0 0 var(--sp-3);
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
}
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.store-card.is-hidden {
  display: none;
}
.finder-empty {
  display: none;
  padding: var(--sp-5) var(--sp-3);
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  color: var(--slate);
}
.finder-empty.is-on {
  display: block;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.step {
  position: relative;
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--signal);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}
.step h3 {
  font-size: 1.18rem;
}
.step p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

/* ---------- Bands ---------- */
.band {
  background: var(--navy-900);
  color: #fff;
  padding-block: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60rem 30rem at 15% 0%, rgba(36, 69, 122, 0.55), transparent 70%);
  pointer-events: none;
}
.band > * {
  position: relative;
}
.band h2,
.band h3 {
  color: #fff;
}
.band p {
  color: rgba(255, 255, 255, 0.8);
}
.band .lede {
  color: rgba(255, 255, 255, 0.84);
}
.band-soft {
  background: var(--surface-2);
  padding-block: var(--sp-6);
}

/* Owner split cards */
.offer-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  margin-top: var(--sp-4);
}
.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-4);
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.offer:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-3px);
}
.offer h3 {
  font-size: var(--t-2);
  margin-bottom: var(--sp-2);
}
.offer h3 a {
  color: #fff;
  text-decoration: none;
}
.offer h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.offer p {
  margin-bottom: var(--sp-3);
  font-size: 0.98rem;
}
.offer-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f5b476;
  font-weight: 600;
  font-size: 0.88rem;
}
.offer-more svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.25s var(--ease);
}
.offer:hover .offer-more svg {
  transform: translateX(4px);
}

/* ---------- Stats ---------- */
.stat-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
}
.stat {
  padding: var(--sp-3);
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
}
.band .stat {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.band .stat-num {
  color: #fff;
}
.stat-label {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}
.band .stat-label {
  color: rgba(255, 255, 255, 0.9);
}
.stat-src {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
}
.band .stat-src {
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Charts ---------- */
.chart-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  margin-top: var(--sp-4);
}
.panel {
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}
.panel h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-3);
}
.bar {
  display: grid;
  grid-template-columns: 8rem 1fr 3.6rem;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.75rem;
}
.bar:last-of-type {
  margin-bottom: 0;
}
.bar-label {
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.3;
}
.bar-track {
  height: 0.6rem;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--navy), var(--navy-500));
  transition: width 1.1s var(--ease);
}
.bar-fill.accent {
  background: linear-gradient(90deg, var(--signal-600), var(--signal));
}
.is-in .bar-fill {
  width: var(--w);
}
.bar-val {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy-900);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.chart-note {
  margin: var(--sp-3) 0 0;
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.5;
}
.donut {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: var(--sp-3);
  align-items: center;
}
.donut svg {
  width: 7.5rem;
  height: 7.5rem;
}
.donut-ring {
  stroke-dasharray: 0 999;
  transition: stroke-dasharray 1.3s var(--ease);
}
.is-in .donut-ring {
  stroke-dasharray: var(--dash);
}
.donut p {
  margin: 0 0 0.45rem;
  color: var(--slate);
  font-size: 0.93rem;
}
.donut p:last-child {
  margin-bottom: 0;
}
.caption {
  display: inline-block;
  margin: 0 0 var(--sp-2);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--signal-100);
  color: var(--signal-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ---------- Definition rows / modules ---------- */
.rows {
  margin: var(--sp-4) 0 0;
  border-top: 1px solid var(--line);
}
.rows > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.4rem 1.6rem;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
}
.rows dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--signal-600);
  padding-top: 0.22rem;
}
.rows dd {
  margin: 0;
  max-width: 42rem;
}
.modules {
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.modules li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.3rem 1.2rem;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}
.modules li:hover {
  background: var(--surface);
}
.mod-n {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--signal);
  line-height: 1.15;
}
.modules h3 {
  font-size: 1.12rem;
  margin-bottom: 0.2rem;
}
.modules p {
  margin: 0;
  color: var(--slate);
  max-width: 44rem;
}

/* ---------- Split ---------- */
.split {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 820px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
    align-items: start;
  }
}

/* ---------- Store page ---------- */
.store-detail {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 880px) {
  .store-detail {
    grid-template-columns: 1.35fr 1fr;
    gap: var(--sp-5);
  }
}
.facts {
  margin: 0;
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow-1);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.facts h2 {
  font-size: 1.2rem;
}
.fact {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.fact:last-of-type {
  border-bottom: 0;
}
.fact dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2rem;
}
.fact dd {
  margin: 0;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: var(--sp-3) 0 0;
  padding: 0;
  list-style: none;
}
.tag {
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 600;
}
.nearby {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
}
.nearby a {
  display: block;
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nearby a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--line-strong);
}
.nearby strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.nearby span {
  font-size: 0.83rem;
  color: var(--muted);
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: var(--sp-3);
  max-width: 34rem;
  margin-top: var(--sp-4);
}
.field {
  display: grid;
  gap: 0.35rem;
}
.field > span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
}
.field .optional {
  font-weight: 400;
  color: var(--muted);
}
.field input {
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus {
  outline: none;
  border-color: var(--navy-400);
  box-shadow: 0 0 0 4px rgba(26, 49, 87, 0.1);
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--slate);
}
.consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--navy);
}
.form .btn {
  justify-self: start;
}

/* ---------- Legal ---------- */
.legal {
  max-width: 44rem;
}
.legal h2 {
  font-size: var(--t-2);
  margin-top: var(--sp-5);
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal ul {
  margin: 0 0 var(--sp-3) 1.2rem;
  padding: 0;
}
.legal li {
  margin-bottom: 0.4rem;
}
.callout {
  padding: var(--sp-3);
  border-left: 3px solid var(--signal);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: var(--surface-2);
  color: var(--slate);
  font-size: 0.94rem;
}
.callout p:last-child {
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.68);
  padding: var(--sp-6) 0 var(--sp-4);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand .brand {
  margin-bottom: var(--sp-2);
}
.footer-phone {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.3rem;
}
.footer-phone:hover {
  color: var(--signal);
}
.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-2);
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li {
  margin-bottom: 0.4rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem var(--sp-3);
  justify-content: space-between;
  padding-top: var(--sp-3);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p {
  margin: 0;
}

/* ---------- Reveal motion ----------
   Scoped to .js so that if the script fails to load, every section is
   simply visible rather than permanently transparent. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Print sheets ---------- */
body.sheet {
  background: var(--surface-2);
}
.sheet-stage {
  padding: calc(var(--header-h) + var(--sp-4)) 0 var(--sp-5);
}
.sheet-page {
  width: min(8.5in, calc(100% - 1.5rem));
  margin-inline: auto;
  background: #fff;
  padding: 0.6in 0.68in;
  box-shadow: var(--shadow-3);
  border-radius: 4px;
}
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 0.9rem;
}
.sheet-mark {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-decoration: none;
}
.sheet-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.sheet-page h1 {
  font-size: 1.95rem;
  margin-bottom: 0.5rem;
  max-width: 24ch;
}
.sheet-page .lede {
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.sheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.4rem;
  margin-bottom: 1rem;
}
.sheet-grid h2,
.sheet-list h2 {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--signal-600);
  margin-bottom: 0.3rem;
}
.sheet-grid p,
.sheet-list p {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}
.sheet-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.sheet-item {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.sheet-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.sheet-n {
  font-family: var(--serif);
  color: var(--signal);
  font-weight: 500;
}
.sheet-cta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 2px solid var(--navy);
}
.sheet-cta strong {
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.sheet-cta strong a {
  text-decoration: none;
}
.sheet-cta span {
  font-size: 0.8rem;
  color: var(--muted);
}
.sheet-note {
  margin: 0.5rem 0 0;
  font-size: 0.76rem;
  color: var(--muted);
}

@media print {
  .site-header,
  .site-footer,
  .skip,
  .no-print {
    display: none !important;
  }
  body.sheet {
    background: #fff;
  }
  .sheet-stage {
    padding: 0;
  }
  .sheet-page {
    width: auto;
    margin: 0;
    padding: 0.3in 0.25in;
    box-shadow: none;
    border-radius: 0;
  }
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 1.75rem));
  }
  .rows > div,
  .fact {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .modules li {
    grid-template-columns: 3rem 1fr;
  }
  .bar {
    grid-template-columns: 1fr auto;
  }
  .bar-track {
    grid-column: 1 / -1;
    order: 3;
  }
  .donut {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .sheet-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    position: static;
  }
  .hero {
    min-height: min(38rem, 88svh);
  }
  .finder {
    margin-top: calc(var(--sp-5) * -1);
    padding: var(--sp-3);
  }
  .store-figure {
    aspect-ratio: 2 / 1;
  }
  /* Seven states stacked is a long scroll; two-up keeps them thumb-reachable. */
  .state-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .state-tile a {
    padding: var(--sp-2) var(--sp-3) var(--sp-3);
  }
  .state-abbr {
    font-size: 1.35rem;
  }
  .state-cities {
    display: none;
  }
  .store-body {
    padding: var(--sp-2) var(--sp-3) var(--sp-3);
  }
  .store-card h3 {
    font-size: 1.1rem;
  }
  .store-meta {
    margin-bottom: var(--sp-2);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-media img {
    transform: none;
  }
  .bar-fill {
    width: var(--w);
  }
  .donut-ring {
    stroke-dasharray: var(--dash);
  }
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- State tiles (homepage entry to Locations) ---------- */
.state-grid {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
}
.state-tile a {
  display: grid;
  gap: 0.15rem;
  height: 100%;
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  text-decoration: none;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.state-tile a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--line-strong);
}
.state-abbr {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--signal);
}
.state-name {
  font-weight: 600;
  color: var(--navy-900);
}
.state-count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.state-cities {
  margin-top: 0.2rem;
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.4;
}

/* Offer cards on a light ground (the Owners hub) */
.offer-light {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}
.offer-light:hover {
  background: var(--surface);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-2);
}
.offer-light h3 a {
  color: var(--navy-900);
}
.offer-light p {
  color: var(--slate);
}
.offer-light .offer-more {
  color: var(--signal-600);
}

/* A colour band always keeps its own vertical rhythm, even when it directly
   follows another .section (which would otherwise zero its top padding). */
.section + .band,
.section + .band-soft,
.band + .section,
.band-soft + .section {
  padding-top: var(--sp-6);
}

.footer-h2-gap {
  margin-top: var(--sp-3);
}
