
/* Self-hosted Inter — avoid Google Fonts render-block */
@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url("/fonts/inter-400.woff2") format("woff2")}
@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url("/fonts/inter-400.woff2") format("woff2")}
@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url("/fonts/inter-600.woff2") format("woff2")}
@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url("/fonts/inter-600.woff2") format("woff2")}

/* United Mobile RV  -  SpaceX-inspired staging prototype */
:root {
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gold: #C9972C;
  --gray: #666666;
  --light: #F5F5F5;
  --rule: rgba(255,255,255,0.12);
  --rule-dark: rgba(26,26,26,0.12);
  --font: "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --space: 8px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }
a:hover { color: #e0b04a; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.skip-link {
  position: absolute; left: -9999px; top: var(--space);
  background: var(--gold); color: var(--black); padding: 12px 16px; z-index: 10000; font-weight: 600;
}
.skip-link:focus { left: var(--space); }
.wrap { width: min(100% - 48px, var(--max)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 48px, 760px); margin-inline: auto; }
.micro {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; display: block; margin-bottom: calc(var(--space) * 2);
}
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 calc(var(--space) * 3); }
h1 { font-size: clamp(2.25rem, 5.5vw, 5rem); font-weight: 400; } /* P0: 36–80px */
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; } /* P0: 32–56px */
h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); font-weight: 500; } /* P0: 22–28px */
p { margin: 0 0 calc(var(--space) * 2); color: rgba(255,255,255,0.78); max-width: 62ch; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,0.85); max-width: 48ch; }
.rule { border: 0; border-top: 1px solid var(--rule); margin: calc(var(--space) * 8) 0; }
.band { padding: calc(var(--space) * 12) 0; }
.band-tight { padding: calc(var(--space) * 8) 0; }
.band-light { background: var(--white); color: var(--black); }
.band-light p { color: var(--gray); }
.band-light .micro { color: var(--gold); }
.band-light .rule { border-top-color: var(--rule-dark); }
.band-gray { background: var(--light); color: var(--black); }
.band-gray p { color: var(--gray); }
.band-gray .micro { color: var(--gold); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,26,26,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 16px;
}
.brand {
  color: var(--white); font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 13px; white-space: nowrap;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: rgba(255,255,255,0.72); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-phone { color: var(--white) !important; font-size: 13px; letter-spacing: 0.04em; white-space: nowrap; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--rule);
  color: var(--white); width: 44px; height: 44px; cursor: pointer;
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 64px;
    background: var(--black); padding: 24px; border-bottom: 1px solid var(--rule); gap: 20px;
  }
  .site-header.is-open .nav-cta .nav-phone { display: inline; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 28px; border: 1px solid transparent;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: #e0b04a; color: var(--black); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #000; color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: calc(var(--space) * 4); }

/* Hero */
.hero { padding: calc(var(--space) * 16) 0 calc(var(--space) * 14); min-height: 78vh; display: flex; align-items: flex-end; }
.hero .lead { margin-top: calc(var(--space) * 3); }
.hero-tagline { margin-top: calc(var(--space) * 2); color: rgba(255,255,255,0.55); font-size: 14px; letter-spacing: 0.04em; }

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: calc(var(--space) * 4) 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center;
  justify-content: space-between;
}
.trust-chip {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); white-space: nowrap;
}
.trust-chip strong { color: var(--white); font-weight: 500; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--space) * 4); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: calc(var(--space) * 4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--space) * 3); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.offer-card, .service-card, .price-card, .step, .faq-item, .guide-card, .area-card {
  border-top: 1px solid var(--rule); padding-top: calc(var(--space) * 3);
}
.band-light .offer-card, .band-light .service-card, .band-light .price-card,
.band-light .step, .band-light .faq-item, .band-light .guide-card, .band-light .area-card,
.band-gray .offer-card, .band-gray .service-card, .band-gray .price-card,
.band-gray .step, .band-gray .faq-item, .band-gray .guide-card, .band-gray .area-card {
  border-top-color: var(--rule-dark);
}
.offer-card h3, .service-card h3 { margin-bottom: calc(var(--space) * 2); }
.offer-card p, .service-card p { font-size: 0.95rem; }
.price-card .amount {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; letter-spacing: -0.04em;
  color: var(--white); line-height: 1; margin: calc(var(--space) * 2) 0;
}
.band-light .price-card .amount, .band-gray .price-card .amount { color: var(--black); }
.price-card .unit { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.north-star {
  font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.02em; line-height: 1.25;
  max-width: 28ch; color: var(--white); font-weight: 400;
}
.proof-list { list-style: none; padding: 0; margin: calc(var(--space) * 4) 0 0; }
.proof-list li {
  border-top: 1px solid var(--rule); padding: calc(var(--space) * 2.5) 0;
  display: flex; gap: 16px; align-items: baseline;
}
.proof-list .lab { color: var(--gold); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; min-width: 88px; }
.stars { color: var(--gold); letter-spacing: 0.15em; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--space) * 3); }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
label .req { color: var(--gold); }
input, select, textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--rule);
  color: var(--white); padding: 14px 0; font: inherit; border-radius: 0;
}
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: calc(var(--space) * 3); }
.form-status { margin-top: 16px; font-size: 14px; }
.form-status.ok { color: var(--gold); }
.form-status.err { color: #ff6b6b; }

/* Sticky mobile bar */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(26,26,26,0.96); border-top: 1px solid var(--rule);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar .btn { flex: 1; min-height: 44px; }
@media (max-width: 900px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* Footer */
.site-footer { border-top: 1px solid var(--rule); padding: calc(var(--space) * 8) 0 calc(var(--space) * 6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: calc(var(--space) * 4); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid a { color: rgba(255,255,255,0.6); display: block; margin-bottom: 10px; font-size: 14px; }
.footer-grid a:hover { color: var(--white); }
.footer-note { margin-top: calc(var(--space) * 6); font-size: 12px; color: rgba(255,255,255,0.35); max-width: 70ch; }
.footer-brand { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }

/* Page hero compact */
.page-hero { padding: calc(var(--space) * 12) 0 calc(var(--space) * 8); border-bottom: 1px solid var(--rule); }
.crumbs { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: calc(var(--space) * 3); }
.crumbs a { color: rgba(255,255,255,0.55); }

/* Guide library */
.guide-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
@media (max-width: 800px) { .guide-list { grid-template-columns: 1fr; } }
.guide-card { padding: calc(var(--space) * 3) 0; }
.guide-card a { color: var(--white); font-size: 1.05rem; letter-spacing: -0.01em; }
.guide-card a:hover { color: var(--gold); }
.guide-card .cat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

/* 404 */
.err-page { min-height: 70vh; display: flex; align-items: center; padding: calc(var(--space) * 12) 0; }

/* Utility */
.mt-6 { margin-top: calc(var(--space) * 6); }
.mt-8 { margin-top: calc(var(--space) * 8); }
.mb-0 { margin-bottom: 0; }
.text-white { color: var(--white) !important; }
.muted { color: rgba(255,255,255,0.55); }
.band-light .muted, .band-gray .muted { color: var(--gray); }

/* AI Chat  -  SpaceX dark panel + gold FAB */
.chat-fab {
  position: fixed; right: calc(var(--space) * 3); bottom: calc(var(--space) * 3); z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--black); border: 0; cursor: pointer;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
}
.chat-fab:hover { background: #e0b04a; }
@media (max-width: 900px) {
  .chat-fab { bottom: 84px; right: 16px; }
}
.chat-panel {
  position: fixed; right: calc(var(--space) * 3); bottom: 88px; z-index: 301;
  width: min(400px, calc(100vw - 24px)); height: min(560px, calc(100vh - 120px));
  background: #111111; border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--gold);
  display: none; flex-direction: column; overflow: hidden;
}
.chat-panel.is-open { display: flex; }
@media (max-width: 900px) {
  .chat-panel { bottom: 148px; right: 12px; height: min(520px, calc(100vh - 180px)); }
}
.chat-head {
  padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.chat-head h2 { font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0; font-weight: 500; }
.chat-head .sub { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; margin-top: 4px; }
.chat-close {
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 36px; height: 36px; cursor: pointer; font-size: 18px;
}
.chat-msgs {
  flex: 1; overflow-y: auto; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px;
}
.chat-bubble {
  max-width: 92%; padding: 12px 14px; font-size: 14px; line-height: 1.45;
  border: 1px solid rgba(255,255,255,0.08);
}
.chat-bubble.bot { align-self: flex-start; background: var(--black); color: rgba(255,255,255,0.88); }
.chat-bubble.user { align-self: flex-end; background: rgba(201,151,44,0.15); border-color: rgba(201,151,44,0.35); color: var(--white); }
.chat-bubble a { color: var(--gold); }
.chat-lead, .chat-compose {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 14px 18px; background: #0c0c0c;
}
.chat-lead label { font-size: 10px; }
.chat-lead input, .chat-lead select, .chat-compose textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 10px 0; font: inherit; font-size: 14px; margin-bottom: var(--space);
}
.chat-compose { display: flex; gap: var(--space); align-items: flex-end; }
.chat-compose textarea { min-height: 44px; margin: 0; flex: 1; resize: none; }
.chat-send {
  background: var(--gold); color: var(--black); border: 0; min-height: 44px; padding: 0 16px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; cursor: pointer;
}
.chat-send:disabled { opacity: 0.5; cursor: wait; }
.chat-softfail { font-size: 12px; color: rgba(255,255,255,0.5); padding: 0 18px 12px; }
.chat-softfail a { color: var(--gold); }
.chat-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space) 12px; }
.chat-lead-grid .full { grid-column: 1 / -1; }
@media (max-width: 420px) { .chat-lead-grid { grid-template-columns: 1fr; } }


/* Brand mark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
.brand-text { line-height: 1.1; }
.cred-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 20px;
}
.cred-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
}
.cred-logos .cred-text {
  font-size: 12px;
  color: var(--muted, #999);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* Visual density — UMRT mark + official badges (2026-09-10) */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 4px;
}
.hero-lockup {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: calc(var(--space) * 3);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201,151,44,0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255,255,255,0.04), transparent 50%),
    var(--black);
}
.hero h1 { max-width: 14ch; }
.btn {
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}
.btn-gold {
  box-shadow: 0 8px 24px rgba(201,151,44,0.28);
}
.btn-gold:hover { box-shadow: 0 10px 28px rgba(201,151,44,0.38); }
.trust-strip {
  background: rgba(255,255,255,0.02);
}
.cred-logos {
  gap: 20px 28px;
  padding: calc(var(--space) * 2) 0;
}
.cred-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.offer-card, .service-card, .price-card, .step, .faq-item, .guide-card, .area-card {
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.offer-card:hover, .service-card:hover, .guide-card:hover, .area-card:hover {
  border-top-color: var(--gold);
}


/* Job photo density — Matt part-1 2026-09-10 */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: calc(var(--space) * 6);
  align-items: end;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}
.hero-split .hero-copy { min-width: 0; }
.hero-media {
  border: 1px solid var(--rule);
  overflow: hidden;
  min-height: 280px;
  background: #0c0c0c;
}
.hero-media img {
  width: 100%;
  height: auto;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  filter: contrast(1.02) saturate(0.94);
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: calc(var(--space) * 4); }
  .hero-media img { min-height: 220px; max-height: 320px; }
}
.photo-band h2 { margin-bottom: calc(var(--space) * 2); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--space) * 4);
  margin-top: calc(var(--space) * 4);
}
.photo-card {
  margin: 0;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: #0c0c0c;
  aspect-ratio: 4 / 5;
}
.photo-card-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ease);
}
.photo-card:hover img { transform: scale(1.03); }
.photo-cap {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}
@media (max-width: 900px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-card-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card-wide { grid-column: span 1; aspect-ratio: 16 / 10; }
}


a.trust-chip { text-decoration: none; color: inherit; cursor: pointer; }
a.trust-chip:hover { border-color: var(--gold); color: #fff; }
.cred-logos a { text-decoration: none; color: inherit; }
.cred-logos a:hover { color: var(--gold); }
.brand-logo { height: 48px; width: auto; display: block; border-radius: 4px; }


/* Enterprise media density — WP Media hotlinks + Peplink mark */
.cred-logos a img { display: block; }
.page-hero + .photo-band { border-top: 1px solid var(--rule); }


/* Claude look bar elevation (2026-09-10) — mothership quality bar */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: calc(var(--space) * 2);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,151,44,0.18);
}
.hero-media { position: relative; }
.badge-float {
  position: absolute; left: 12px; bottom: 12px; right: 12px; z-index: 2;
  display: flex; gap: 12px; align-items: center;
  background: rgba(26,26,26,0.92); border: 1px solid var(--rule);
  border-radius: 12px; padding: 12px 14px; backdrop-filter: blur(10px);
}
.badge-float strong { display: block; font-size: 13px; color: var(--white); }
.badge-float span { font-size: 12px; color: rgba(255,255,255,0.55); }
.offer-card, .service-card, .guide-card, .area-card, .price-card {
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.offer-card:hover, .service-card:hover, .guide-card:hover, .area-card:hover, .price-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-2px);
}
.btn { transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn-gold { box-shadow: 0 10px 28px rgba(201,151,44,0.28); }


/* ========== Premium P0 — type / spacing / hero / CTA (2026-09-10 Brand memo) ========== */
:root {
  --max: 1160px; /* 1120–1200 craft width */
  --gold-hover: #e0b04a; /* tint of canon gold — not a new brand color */
}
.wrap { width: min(100% - 48px, var(--max)); margin-inline: auto; }
@media (max-width: 560px) {
  .wrap, .wrap-narrow { width: min(100% - 24px, var(--max)); }
}
/* Type weights: 400 body/display, 500 labels/H3, 600 buttons only */
body { font-weight: 400; }
.micro, .eyebrow, .nav a, .trust-chip { font-weight: 500; }
.btn, .chat-send, .mobile-bar a.btn { font-weight: 600; }
h1, h2 { font-weight: 400; letter-spacing: -0.03em; }
/* Hero presence + craft frame */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: calc(var(--space) * 6);
  align-items: end;
}
.hero-media picture,
.hero-media > img {
  display: block;
  width: 100%;
}
.hero-media img {
  min-height: 360px;
  max-height: 520px;
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; align-items: start; }
  .hero-media img { min-height: 220px; max-height: 320px; }
}
/* Soften gold wash if present */
.hero-media::before {
  opacity: 0.12 !important;
}
/* Trust strip denser chips */
.trust-chip {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 0;
}
.trust-row { gap: 12px 28px; }
/* CTA hierarchy — gold hover tint locked */
.btn-gold:hover { background: var(--gold-hover); color: var(--black); }
/* Card gaps / band rhythm already 96/64 — reinforce grid */
.photo-grid { gap: calc(var(--space) * 4); }
.offer-grid, .services-grid, .price-grid {
  gap: calc(var(--space) * 4);
}
/* Footer quiet disclaimer */
.footer-quiet, .footer .footer-quiet {
  opacity: 0.55;
  font-size: 12px;
}
/* Tap targets */
.btn, .mobile-bar a {
  min-height: 44px;
}
@media (min-width: 1100px) {
  h1 { font-size: clamp(3.5rem, 5vw, 5rem); } /* intentional ≤80px */
}


/* ========== P1 craft — cred scrub + offer links (2026-09-10) ========== */
.cred-logos-scrubbed {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
}
.cred-pill {
  display: inline-flex; align-items: center;
  background: #FFFFFF; border: 1px solid rgba(26,26,26,0.10);
  border-radius: 999px; padding: 8px 14px; line-height: 0;
}
.cred-pill img { height: 36px; width: auto; background: transparent; padding: 0; border: 0; }
.cred-logos-scrubbed .cred-text {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); border-bottom: 1px solid rgba(255,255,255,0.22); padding-bottom: 2px;
}
.offer-num { color: var(--gold); letter-spacing: 0.14em; }
.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: calc(var(--space) * 2); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.text-link::after { content: "→"; color: var(--gold); transition: transform .2s var(--ease); }
.text-link:hover { color: var(--gold-hover, #e0b04a); }
.text-link:hover::after { transform: translateX(3px); }
.photo-cap {
  margin-top: 10px; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.footer-quiet { opacity: 0.55; font-size: 12px; }
