/* =====================================================================
   FIRST CITY STORAGE LLC — Abbotsford, WI
   "Every night with us is a safe knight."
   Brand: deep navy + sky blue + steel (from the knight logo)
   Single-page, mobile-first, performance-minded stylesheet.
   ===================================================================== */

/* ------------------------------------------------------------------
   0. Fonts
   ------------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

/* ------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------ */
:root {
  /* Brand — sampled from the First City Storage knight logo */
  --navy-900: #0c2537;
  --navy-800: #103049;
  --navy-700: #14405c;   /* primary */
  --navy-600: #1b537a;
  --sky-600:  #2f95c4;
  --sky-500:  #45b1e0;   /* accent / knight body */
  --sky-400:  #67c4ea;
  --sky-300:  #9bd9f2;
  --sky-100:  #e3f3fb;
  --sky-50:   #f0f9fd;
  --steel-600:#63707a;
  --steel-500:#8a949c;   /* "STORAGE" gray */
  --steel-200:#d6dde2;

  /* Semantic */
  --color-primary:      var(--navy-700);
  --color-primary-ink:  #ffffff;
  --color-accent:       var(--sky-500);
  --color-bg:           #f5f8fb;
  --color-surface:      #ffffff;
  --color-surface-2:    #eef4f9;
  --color-ink:          #0f2233;
  --color-ink-soft:     #47586a;
  --color-ink-faint:    #7b8998;
  --color-border:       #e2e9f0;
  --color-border-strong:#cfdae4;
  --color-ring:         rgba(69,177,224,0.45);
  --color-star:         #f2b53c;

  /* Typography */
  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.875rem;
  --text-base: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  --text-lg: clamp(1.125rem, 1.06rem + 0.3vw, 1.25rem);
  --text-xl: clamp(1.35rem, 1.2rem + 0.7vw, 1.6rem);
  --h3: clamp(1.4rem, 1.25rem + 0.8vw, 1.85rem);
  --h2: clamp(2rem, 1.55rem + 2.1vw, 3.15rem);
  --h1: clamp(2.6rem, 1.75rem + 4.1vw, 5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Radius */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(12,37,55,0.06), 0 1px 1px rgba(12,37,55,0.04);
  --shadow-md: 0 6px 20px -6px rgba(12,37,55,0.14);
  --shadow-lg: 0 18px 45px -14px rgba(12,37,55,0.22);
  --shadow-xl: 0 34px 70px -22px rgba(12,37,55,0.30);
  --shadow-glow: 0 12px 34px -10px rgba(69,177,224,0.55);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(2rem, 4vw, 3rem); }
.bg-surface { background: var(--color-surface); }
.bg-tint { background: var(--color-surface-2); }
.text-center { text-align: center; }
.mono-tnum { font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------------
   3. Section headings / eyebrows
   ------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-600);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--sky-500), var(--navy-600));
  border-radius: 2px;
}
.eyebrow.is-center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--h2); margin-top: 0.9rem; }
.section-head p {
  margin-top: 1rem;
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  max-width: 60ch;
}
.section-head.is-center p { margin-inline: auto; }

/* ------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--navy-700);
  --btn-ink: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  color: var(--btn-ink);
  background: var(--btn-bg);
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: var(--shadow-glow); }

.btn-accent {
  --btn-ink: var(--navy-900);
  background: linear-gradient(135deg, var(--sky-400), var(--sky-500));
  box-shadow: var(--shadow-md);
}
.btn-accent:hover { box-shadow: var(--shadow-glow); }

.btn-secondary {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--color-border-strong);
}
.btn-secondary:hover { border-color: var(--navy-700); background: var(--color-surface); }

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: var(--text-lg); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------------
   5. Custom cursor
   ------------------------------------------------------------------ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--sky-500);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(20,64,92,0.55);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease),
              opacity 0.3s ease;
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }
body.cursor-ready { cursor: none; }
body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready input,
body.cursor-ready select,
body.cursor-ready textarea,
body.cursor-ready label { cursor: none; }
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  background: rgba(69,177,224,0.12);
  border-color: rgba(69,177,224,0.7);
}
.cursor-ring.is-down { width: 30px; height: 30px; }

/* Hide custom cursor on touch / coarse pointers */
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body.cursor-ready { cursor: auto; }
}

/* ------------------------------------------------------------------
   6. Header / navigation
   ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-top: clamp(0.6rem, 1.5vw, 1rem);
  transition: padding 0.4s var(--ease);
}
.site-header > .container { padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.6rem 0.6rem 1.1rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px -12px rgba(12,37,55,0.18);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-scrolled .nav-shell {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 34px -12px rgba(12,37,55,0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand .emblem { width: 42px; height: 42px; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word .l1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--navy-800);
  text-transform: uppercase;
}
.brand-word .l2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--navy-900);
  text-transform: uppercase;
  margin-top: 2px;
}
.brand-word .l2 span { color: var(--steel-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-ink-soft);
  border-radius: var(--radius-pill);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a:hover { color: var(--navy-900); background: var(--sky-50); }
.nav-links a[aria-current="page"] { color: var(--navy-900); background: var(--sky-50); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--navy-800);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: background 0.25s ease;
}
.nav-phone svg { width: 1.05em; height: 1.05em; color: var(--sky-600); }
.nav-phone:hover { background: var(--sky-50); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy-800);
  background: var(--color-surface-2);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 6rem 1.5rem 2rem;
  background: rgba(245,248,251,0.97);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--navy-900);
  padding: 0.6rem 0.4rem;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu a.btn { border-bottom: 0; color: #fff; }
.mobile-menu .btn { margin-top: 1.4rem; font-size: 1.1rem; }

/* ------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-top: clamp(8rem, 12vh, 11rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
}
.hero-bg .b1 {
  width: 520px; height: 520px;
  top: -160px; right: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(103,196,234,0.5), rgba(103,196,234,0) 70%);
}
.hero-bg .b2 {
  width: 460px; height: 460px;
  bottom: -180px; left: -140px;
  background: radial-gradient(circle at 50% 50%, rgba(20,64,92,0.16), rgba(20,64,92,0) 70%);
}
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,64,92,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,64,92,0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(circle at 72% 34%, #000 5%, transparent 62%);
          mask-image: radial-gradient(circle at 72% 34%, #000 5%, transparent 62%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 42ch; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem 0.45rem 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 1.4rem;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #35c07a; box-shadow: 0 0 0 4px rgba(53,192,122,0.18); }
.hero h1 { font-size: var(--h1); font-weight: 800; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--sky-600), var(--navy-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  margin-top: 1.4rem;
  font-size: var(--text-lg);
  color: var(--color-ink-soft);
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-badges {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--sky-600); }

/* Hero visual — emblem shield */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-shield {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-shield .halo {
  position: absolute; inset: 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(103,196,234,0.4), rgba(20,64,92,0.05) 58%, transparent 72%);
}
.hero-shield .ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(20,64,92,0.22);
}
.hero-shield .ring.r2 { inset: 12%; border-style: solid; border-color: rgba(20,64,92,0.10); }
.hero-emblem-lg { position: relative; width: 70%; filter: drop-shadow(0 22px 40px rgba(12,37,55,0.28)); }
.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-800);
  white-space: nowrap;
}
.hero-chip svg { width: 17px; height: 17px; color: var(--sky-600); }
.hero-chip.c1 { top: 10%; left: -4%; }
.hero-chip.c2 { bottom: 16%; right: -6%; }
.hero-chip.c3 { bottom: 0%; left: 10%; }

/* ------------------------------------------------------------------
   8. Marquee tagline strip
   ------------------------------------------------------------------ */
.tagline-strip {
  background: var(--navy-800);
  color: #fff;
  overflow: hidden;
  padding-block: 0.9rem;
  border-block: 1px solid rgba(255,255,255,0.06);
}
.marquee { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding-inline: 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  white-space: nowrap;
}
.marquee span::after { content: "◆"; color: var(--sky-400); font-style: normal; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }
.tagline-strip:hover .marquee { animation-play-state: paused; }

/* ------------------------------------------------------------------
   9. Stat bar
   ------------------------------------------------------------------ */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat {
  background: var(--color-surface);
  padding: clamp(1.4rem, 3vw, 2.2rem) 1.4rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  color: var(--navy-800);
  line-height: 1;
}
.stat .num .unit { color: var(--sky-500); }
.stat .label {
  margin-top: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
  font-weight: 500;
}

/* ------------------------------------------------------------------
   10. Unit size guide (interactive)
   ------------------------------------------------------------------ */
.units-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.size-list { display: flex; flex-direction: column; gap: 0.7rem; }
.size-btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.3rem;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
}
.size-btn:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--sky-300); }
.size-btn .sz {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}
.size-btn .meta { display: flex; flex-direction: column; }
.size-btn .meta strong { font-weight: 600; font-size: 0.98rem; color: var(--color-ink); }
.size-btn .meta small { color: var(--color-ink-faint); font-size: 0.82rem; }
.size-btn .sqft {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sky-600);
  background: var(--sky-50);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.size-btn.is-active {
  border-color: var(--navy-700);
  background: linear-gradient(180deg, var(--color-surface), var(--sky-50));
  box-shadow: var(--shadow-md);
}
.size-btn.is-active .sz { color: var(--navy-900); }

/* Visualizer panel */
.size-panel {
  position: sticky;
  top: 6.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.size-stage {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(103,196,234,0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: grid;
  place-items: center;
  min-height: 320px;
}
.footprint {
  position: relative;
  border: 2px solid rgba(103,196,234,0.55);
  border-radius: 6px;
  background:
    repeating-linear-gradient(0deg, rgba(103,196,234,0.10) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(103,196,234,0.10) 0 1px, transparent 1px 26px),
    rgba(69,177,224,0.06);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.35);
  transition: width 0.6s var(--ease), height 0.6s var(--ease);
  display: grid;
  place-items: center;
}
.footprint .door {
  position: absolute;
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
  height: 5px;
  background: var(--sky-400);
  border-radius: 3px;
  box-shadow: 0 0 12px var(--sky-400);
  transition: width 0.6s var(--ease);
}
.footprint .fp-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.footprint .fp-label small { display:block; font-weight:500; font-size:0.68rem; color: var(--sky-300); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px;}

.size-info { padding: clamp(1.3rem, 3vw, 1.8rem); }
.size-info h3 { font-size: var(--h3); }
.size-info .good {
  margin-top: 0.6rem;
  color: var(--color-ink-soft);
}
.size-facts { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.size-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--color-surface-2);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
}
.size-fact svg { width: 15px; height: 15px; color: var(--sky-600); }
.size-info .btn { margin-top: 1.4rem; }

/* ------------------------------------------------------------------
   11. Feature cards
   ------------------------------------------------------------------ */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(103,196,234,0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-300); }
.feature-card:hover::after { opacity: 1; }
.icon-tile {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.1rem;
}
.icon-tile svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--color-ink-soft); font-size: 0.98rem; }

/* Split feature (safe-knight band) */
.safe-band {
  background: linear-gradient(140deg, var(--navy-900), var(--navy-700) 60%, var(--navy-600));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.safe-band::before {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(103,196,234,0.25), transparent 65%);
}
.safe-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.safe-band h2 { color: #fff; font-size: var(--h2); }
.safe-band .eyebrow { color: var(--sky-300); }
.safe-band .eyebrow::before { background: linear-gradient(90deg, var(--sky-400), transparent); }
.safe-band > .safe-grid > div > p { color: rgba(255,255,255,0.78); margin-top: 1rem; }
.safe-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.safe-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.safe-item .chk {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(103,196,234,0.16);
  color: var(--sky-300);
}
.safe-item .chk svg { width: 19px; height: 19px; }
.safe-item strong { display: block; color: #fff; font-size: 1.05rem; margin-bottom: 2px; }
.safe-item span { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.safe-emblem { display: grid; place-items: center; }
.safe-emblem .emblem { width: min(72%, 300px); filter: drop-shadow(0 20px 44px rgba(0,0,0,0.4)); }

/* ------------------------------------------------------------------
   12. Steps
   ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-600));
  box-shadow: var(--shadow-glow);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--color-ink-soft); font-size: 0.96rem; }

/* ------------------------------------------------------------------
   13. Reserve form
   ------------------------------------------------------------------ */
.reserve-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.reserve-aside {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  position: relative;
  overflow: hidden;
}
.reserve-aside::after {
  content:"";
  position:absolute; left:-60px; bottom:-60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(103,196,234,0.22), transparent 65%);
}
.reserve-aside .eyebrow { color: var(--sky-300); }
.reserve-aside .eyebrow::before { background: linear-gradient(90deg, var(--sky-400), transparent); }
.reserve-aside h2 { color: #fff; font-size: var(--h2); margin-top: 0.8rem; }
.reserve-aside > p { color: rgba(255,255,255,0.78); margin-top: 1rem; position: relative; z-index: 1; }
.reserve-points { display: grid; gap: 0.9rem; margin-top: 1.8rem; position: relative; z-index: 1; }
.reserve-points li { display: flex; gap: 0.7rem; align-items: flex-start; color: rgba(255,255,255,0.86); font-size: 0.95rem; }
.reserve-points svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--sky-400); margin-top: 2px; }
.reserve-contact { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.14); position: relative; z-index: 1; display: grid; gap: 0.7rem; }
.reserve-contact a, .reserve-contact span { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; }
.reserve-contact a svg, .reserve-contact span svg { width: 18px; height: 18px; color: var(--sky-400); }

.reserve-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-800); }
.field label .req { color: #d0554a; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  color: var(--color-ink);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-500);
  background: var(--color-surface);
  box-shadow: 0 0 0 4px var(--color-ring);
}
.field input::placeholder, .field textarea::placeholder { color: var(--color-ink-faint); }
.field .err { font-size: 0.78rem; color: #d0554a; font-weight: 500; display: none; }
.field.has-error input,
.field.has-error select { border-color: #d0554a; }
.field.has-error .err { display: block; }
.form-foot { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.form-note { font-size: 0.82rem; color: var(--color-ink-faint); display: flex; gap: 0.5rem; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--sky-600); margin-top: 2px; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-status.is-visible { display: flex; }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.form-status.ok { background: #e7f7ee; color: #176b3c; }
.form-status.warn { background: #fff5e6; color: #8a5a00; }
.form-status.bad { background: #fdecea; color: #a32c1e; }

/* ------------------------------------------------------------------
   14. Reviews
   ------------------------------------------------------------------ */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; }
.rating-badge { display: flex; align-items: center; gap: 0.8rem; }
.rating-badge .score { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--navy-800); line-height: 1; }
.stars { display: inline-flex; gap: 2px; color: var(--color-star); }
.stars svg { width: 18px; height: 18px; }
.rating-badge small { color: var(--color-ink-faint); font-size: 0.85rem; }

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card .stars { margin-bottom: -0.3rem; }
.review-card p { color: var(--color-ink); font-size: 1rem; flex-grow: 1; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--navy-700), var(--sky-600));
  flex-shrink: 0;
}
.reviewer .who strong { display: block; font-size: 0.95rem; color: var(--navy-900); }
.reviewer .who small { color: var(--color-ink-faint); font-size: 0.82rem; }

/* ------------------------------------------------------------------
   15. FAQ accordion
   ------------------------------------------------------------------ */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.is-open { border-color: var(--sky-300); box-shadow: var(--shadow-md); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy-900);
}
.faq-trigger .ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--sky-50);
  color: var(--sky-600);
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
}
.faq-trigger .ic svg { width: 16px; height: 16px; }
.faq-item.is-open .faq-trigger .ic { transform: rotate(45deg); background: var(--navy-700); color: #fff; }
.faq-panel { overflow: hidden; height: 0; transition: height 0.4s var(--ease); }
.faq-panel-inner { padding: 0 1.4rem 1.3rem; color: var(--color-ink-soft); }
.faq-panel-inner a { color: var(--sky-600); font-weight: 600; }

/* ------------------------------------------------------------------
   16. Moving tips
   ------------------------------------------------------------------ */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tip-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tip-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--sky-600);
}
.tip-card .tip-ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sky-50);
  color: var(--navy-700);
  margin: 0.8rem 0 1rem;
}
.tip-card .tip-ic svg { width: 24px; height: 24px; }
.tip-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.tip-card p { color: var(--color-ink-soft); font-size: 0.95rem; }

/* ------------------------------------------------------------------
   17. Location / map
   ------------------------------------------------------------------ */
.location-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.location-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.loc-rows { display: grid; gap: 1.3rem; margin-top: 1.6rem; }
.loc-row { display: flex; gap: 1rem; align-items: flex-start; }
.loc-row .li {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff;
}
.loc-row .li svg { width: 21px; height: 21px; }
.loc-row .lc strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky-600); margin-bottom: 3px; }
.loc-row .lc span, .loc-row .lc a { color: var(--color-ink); font-size: 1.02rem; font-weight: 500; }
.loc-row .lc a:hover { color: var(--sky-600); }
.loc-actions { margin-top: auto; padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.map-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  min-height: 380px;
  background: var(--color-surface-2);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ------------------------------------------------------------------
   18. Final CTA band
   ------------------------------------------------------------------ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-band::before {
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(103,196,234,0.28), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(103,196,234,0.18), transparent 45%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: var(--h2); }
.cta-band p { color: rgba(255,255,255,0.82); margin-top: 0.9rem; font-size: var(--text-lg); max-width: 52ch; margin-inline: auto; }
.cta-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ------------------------------------------------------------------
   19. Footer
   ------------------------------------------------------------------ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand .emblem { width: 46px; height: 46px; }
.footer-brand .fb-word { display: flex; flex-direction: column; line-height: 1.05; }
.footer-brand .fb-word .l1 { font-family: var(--font-display); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.7); text-transform: uppercase; }
.footer-brand .fb-word .l2 { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; color: #fff; text-transform: uppercase; }
.site-footer .tagline { font-style: italic; font-family: var(--font-display); color: var(--sky-300); font-weight: 500; margin-bottom: 1rem; }
.site-footer p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { font-size: 0.95rem; color: rgba(255,255,255,0.72); transition: color 0.25s ease; }
.footer-links a:hover { color: var(--sky-300); }
.footer-contact { display: grid; gap: 0.85rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--sky-400); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--sky-300); }
.social-row { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}
.social-row a:hover { background: var(--sky-600); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--sky-300); }

/* ------------------------------------------------------------------
   20. Scroll reveal
   ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.34s; }
/* No-JS / no reveal fallback: everything visible */
html:not(.js) .reveal,
html:not(.js) .reveal-stagger > * { opacity: 1; transform: none; }

/* ------------------------------------------------------------------
   21. Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-visual { order: -1; }
  .hero-shield { width: min(78%, 340px); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .safe-grid { grid-template-columns: 1fr; }
  .safe-emblem { display: none; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .units-layout { grid-template-columns: 1fr; }
  .size-panel { position: static; order: -1; }
  .reserve-wrap { grid-template-columns: 1fr; }
  .location-layout { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  /* Header CTA crowds the hamburger on phones — Reserve stays in the menu, hero, and CTA band */
  .site-header .nav-actions .btn-primary { display: none; }
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-chip.c1 { left: 0; }
  .hero-chip.c2 { right: 0; }
  .hero-actions .btn { flex: 1 1 auto; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   23. Real-logo helpers
   ------------------------------------------------------------------ */
.emblem-img { display: block; object-fit: contain; }
.brand .emblem-img { width: 46px; height: 46px; }
.footer-brand .emblem-img { width: 46px; height: 46px; }
.hero-logo {
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(12,37,55,0.30));
}

/* ------------------------------------------------------------------
   24. Pricing on unit cards + specials
   ------------------------------------------------------------------ */
.specials-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--sky-400), var(--sky-500));
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
}
.specials-pill svg { width: 16px; height: 16px; }

.size-btn .price-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.size-btn .price-tag small { font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; color: var(--color-ink-faint); }
.size-info .price-lead {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 0.9rem;
}
.size-info .price-lead .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: var(--navy-800); line-height: 1; }
.size-info .price-lead .per { color: var(--color-ink-faint); font-size: 0.9rem; }

/* Full pricing table (units subpage + homepage) */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.price-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-300); }
.price-card.is-featured { border-color: var(--navy-700); box-shadow: var(--shadow-md); }
.price-card .pc-badge {
  position: absolute; top: -12px; left: 1.5rem;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: var(--radius-pill);
}
.price-card .pc-size { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--navy-900); }
.price-card .pc-desc { color: var(--color-ink-soft); font-size: 0.92rem; margin-top: 0.35rem; min-height: 2.6em; }
.price-card .pc-price { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.3rem; }
.price-card .pc-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.3rem; color: var(--sky-600); line-height: 1; }
.price-card .pc-price .per { color: var(--color-ink-faint); font-size: 0.9rem; }
.price-card .btn { margin-top: 1.3rem; }
.price-note { margin-top: 1.6rem; text-align: center; color: var(--color-ink-faint); font-size: 0.88rem; }

/* ------------------------------------------------------------------
   25. Google review badge
   ------------------------------------------------------------------ */
.google-badge {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
}
.google-badge .g-logo { width: 40px; height: 40px; flex-shrink: 0; }
.google-badge .g-score { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--navy-800); line-height: 1; }
.google-badge .g-meta { display: flex; flex-direction: column; gap: 3px; }
.google-badge .g-meta .g-line { display: flex; align-items: center; gap: 0.5rem; }
.google-badge small { color: var(--color-ink-faint); font-size: 0.82rem; }
.google-badge .g-cta { margin-left: auto; }
@media (max-width: 560px) { .google-badge { flex-wrap: wrap; } .google-badge .g-cta { margin-left: 0; width: 100%; } .google-badge .g-cta .btn { width: 100%; } }

/* Featured single review (real Google review) */
.review-featured {
  max-width: 780px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
}
.review-featured .rf-google { width: 40px; height: 40px; margin: 0 auto 1.1rem; }
.review-featured .stars { justify-content: center; margin-bottom: 1.2rem; }
.review-featured .stars svg { width: 24px; height: 24px; }
.review-featured blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1rem + 1.5vw, 1.95rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.review-featured .rf-by { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 1.8rem; }
.review-featured .rf-by .who { text-align: left; }
.review-featured .rf-by .who strong { display: block; color: var(--navy-900); font-size: 1rem; }
.review-featured .rf-by .who small { color: var(--color-ink-faint); font-size: 0.85rem; }

/* ------------------------------------------------------------------
   26. Sub-page hero + breadcrumb
   ------------------------------------------------------------------ */
.subhero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(7.5rem, 11vh, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 85% 0%, rgba(103,196,234,0.16), transparent 55%),
    linear-gradient(180deg, #fff, var(--color-bg));
  border-bottom: 1px solid var(--color-border);
}
.subhero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--color-ink-faint); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--sky-600); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { opacity: 0.5; }
.subhero h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.6rem); max-width: 20ch; }
.subhero p { margin-top: 1.1rem; font-size: var(--text-lg); color: var(--color-ink-soft); max-width: 62ch; }
.subhero .subhero-actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ------------------------------------------------------------------
   22. Reduced motion
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .marquee { animation: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
  body.cursor-ready { cursor: auto; }
}
