/* CRATON home — v6, one system. Palette per the operator's XWeather mandate:
   near-black navy, grey-blue light, ice-blue action, cyan data accent.
   Exactly two radii (18px surfaces, 999px pills). Type does the talking;
   photographs do the selling; the receipts fold away tidy. System fonts,
   nothing loaded from anywhere. */

:root {
  --night: #0a141d;
  --night-2: #101f2b;
  --day: #f2f4f6;
  --paper: #ffffff;
  --ink: #0e1b26;
  --ink-2: #3d5261;
  --muted: #5b6e7c;
  --snow: #eef4f8;
  --mist: #9db0bd;
  --hair: #e2e8ec;
  --hair-dark: rgba(255, 255, 255, 0.1);
  --sky: #d5eaf3;
  --sky-hover: #e6f3f9;
  --glow: #7fd4f2;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --body: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Helvetica,
          Arial, sans-serif;
  --r: 18px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15.5px/1.6 var(--body);
}
a { color: inherit; }
img, video { display: block; }

.wrap { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

h1 {
  margin: 0 0 26px;
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 350;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h3 { margin: 0; font-size: 17px; font-weight: 550; letter-spacing: -0.01em; }

/* ---------- buttons: one solid, one line ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 550;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.btn.solid { background: var(--sky); color: var(--night); }
.btn.solid:hover { background: var(--sky-hover); }
.btn.line { border: 1px solid var(--hair-dark); color: var(--snow); }
.btn.line:hover { border-color: var(--mist); }
.btn.dark-line { border-color: var(--hair); color: var(--ink); }
.ctas { margin: 0; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ctas.center { justify-content: center; margin-top: 48px; }
.a { font-weight: 400; }

/* ---------- nav (shared classes from the site chrome) ---------- */
.topbar {
  position: sticky; top: 0; z-index: 10;
  background: var(--night); color: var(--snow);
  border-bottom: 1px solid var(--hair-dark);
}
.topbar-inner, .doc.wide.topbar-inner {
  max-width: 1220px; margin: 0 auto; padding: 15px 28px;
  display: flex; align-items: center; gap: 30px;
}
.wordmark {
  font-family: var(--mono); font-weight: 700; font-size: 15px;
  letter-spacing: 0.24em; text-decoration: none;
}
.topnav { display: flex; gap: 24px; flex-wrap: wrap; }
.topnav a { font-size: 14.5px; color: var(--mist); text-decoration: none; }
.topnav a:hover { color: var(--snow); }
.menu { position: relative; }
.menu > a::after { content: " \25BE"; font-size: 10px; }
.menu .drop {
  display: none; position: absolute; top: 100%; left: -16px; z-index: 20;
  min-width: 230px; padding: 10px 0;
  background: var(--night-2); border: 1px solid var(--hair-dark);
  border-radius: var(--r);
}
.menu:hover .drop, .menu:focus-within .drop { display: block; }
.menu .drop a { display: block; padding: 9px 20px; color: var(--snow); }
.menu .drop a:hover { background: rgba(255, 255, 255, 0.06); }
.topbar .cta, .topbar a.cta {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky); color: var(--night);
  font-size: 14px; font-weight: 550; padding: 10px 20px;
  border-radius: 999px; text-decoration: none; white-space: nowrap;
}
.topbar .cta:hover { background: var(--sky-hover); }
.b-arr { font-weight: 400; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--night); color: var(--snow);
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero .backdrop { position: absolute; inset: 0; }
.hero .backdrop video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.8;
}
.hero .backdrop::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 30% 45%, rgba(10, 20, 29, 0.82) 0%, rgba(10, 20, 29, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 20, 29, 0.25) 70%, rgba(10, 20, 29, 0.95) 100%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; padding-block: 120px; }
.hero .sub {
  margin: 0 auto 40px; max-width: 44ch;
  font-size: clamp(17px, 2vw, 21px); color: var(--mist);
}
.hero .ctas { justify-content: center; }
.ticks { margin: 44px 0 0; display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.ticks span { font-size: 14px; color: var(--mist); }
.ticks span::before { content: "\2713\00a0\00a0"; color: var(--glow); }

/* ---------- light strips ---------- */
.strip { background: var(--day); padding: 84px 0; }
.strip-line { margin: 0; font-size: 17px; color: var(--ink-2); max-width: 58ch; }
.numbers {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px; align-items: baseline; margin-top: 48px;
}
.numbers b {
  display: block; font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 300; letter-spacing: -0.03em; line-height: 1;
}
.numbers span { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); }

.pricing-strip {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.pricing-strip h2 { margin-bottom: 10px; }
.pricing-strip .btn.solid { background: var(--night); color: var(--snow); }
.pricing-strip .btn.solid:hover { background: var(--night-2); }

/* ---------- photo card blocks ---------- */
.cards-block { background: var(--paper); padding: 150px 0 140px; }
.cards-block.dark { background: var(--night); color: var(--snow); }
.photo-cards { display: grid; gap: 22px; margin-top: 52px; }
.photo-cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pcard {
  display: block; text-decoration: none;
  background: var(--day); border-radius: var(--r); overflow: hidden;
}
.cards-block.dark .pcard { background: var(--night-2); }
.pcard .img { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.pcard .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.pcard:hover .img img { transform: scale(1.035); }
.pcard .body { display: block; padding: 22px 24px 20px; }
.pcard p { margin: 6px 0 14px; font-size: 14px; color: var(--muted); }
.cards-block.dark .pcard p { color: var(--mist); }
.go { font-size: 13.5px; font-weight: 550; color: var(--ink); }
.cards-block.dark .go, .band .go { color: var(--glow); }
.pcard:hover .go .a { padding-left: 4px; }

/* ---------- photo bands with trios ---------- */
.band {
  position: relative; overflow: hidden;
  background: var(--night); color: var(--snow);
  padding: 150px 0 140px;
}
.band .backdrop { position: absolute; inset: 0; }
.band .backdrop img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.band .backdrop::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 29, 0.82) 0%,
    rgba(10, 20, 29, 0.55) 55%, rgba(10, 20, 29, 0.9) 100%);
}
.band .wrap { position: relative; z-index: 1; }
.segments { margin: 0 0 44px; max-width: 66ch; font-size: 15px; color: var(--mist); }
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.trio a {
  display: flex; flex-direction: column; gap: 10px;
  padding: 26px 0 0; text-decoration: none;
  border-top: 1px solid var(--hair-dark);
}
.trio a:hover { border-top-color: var(--glow); }
.trio p { margin: 0; font-size: 14px; color: var(--mist); }
.light-trio a { border-top-color: var(--hair); }
.light-trio p { color: var(--muted); }
.light-trio .go { color: var(--ink); }

/* ---------- under the hood ---------- */
.hood { background: var(--night); color: var(--snow); padding: 130px 0 120px; }
.hood-line {
  margin: 0 0 40px; max-width: 76ch;
  font-size: 13.5px; line-height: 1.75; color: var(--mist);
}
.hood-line [data-figure] { color: var(--snow); }
.bt-wrap { position: relative; }
.bt-wrap svg { display: block; width: 100%; height: auto; }
.bt-tick { font-family: var(--mono); font-size: 10px; fill: var(--mist); }
.bar.zero { fill: #2c3f4d; }
.bar.paid { fill: var(--glow); }
.mark { fill: #ffc487; }
#bt-tip {
  display: none; position: absolute; top: 8px;
  background: var(--night-2); border: 1px solid var(--mist);
  color: var(--snow); font-family: var(--mono); font-size: 12px;
  padding: 5px 10px; border-radius: 8px;
  white-space: nowrap; pointer-events: none;
}
.fold {
  margin-top: 18px;
  border: 1px solid var(--hair-dark); border-radius: var(--r);
  overflow: hidden;
}
.fold summary {
  cursor: pointer; list-style-position: inside;
  padding: 16px 22px; font-size: 14px; color: var(--snow);
}
.fold summary:hover { background: rgba(255, 255, 255, 0.04); }
.fold pre {
  margin: 0 22px 10px; padding: 0;
  font-family: var(--mono); font-size: 12px; line-height: 1.7;
  color: var(--mist); overflow-x: auto; white-space: pre;
}
.fold pre .k { color: var(--glow); }
.fold-note { margin: 12px 22px 18px; font-size: 12.5px; color: var(--mist); }
.fold-note a { color: var(--snow); }
.fold .provenance {
  margin: 4px 22px 18px; font-family: var(--mono);
  font-size: 11.5px; line-height: 1.7; color: var(--mist);
}
.scope-strip { margin-top: 56px; border-top: 1px solid var(--hair-dark); padding-top: 40px; }
.clause {
  margin: 0 0 14px; padding-left: 20px;
  border-left: 2px solid var(--glow);
  font-size: 16px; line-height: 1.6; max-width: 66ch;
}
.scope-line { margin: 0; font-size: 13.5px; color: var(--mist); max-width: 76ch; }
.scope-line b { color: var(--snow); font-weight: 550; }

/* ---------- close ---------- */
.band.close { text-align: center; padding: 170px 0 160px; }
.center-wrap h2 { font-size: clamp(40px, 5.5vw, 64px); }
.band.close .ctas { justify-content: center; margin-top: 40px; }

/* ---------- footer ---------- */
footer { background: var(--night); color: var(--mist); padding: 90px 0 48px; }
.foot-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  border-bottom: 1px solid var(--hair-dark);
  padding-bottom: 44px; margin-bottom: 52px;
}
.foot-top .btn.solid { background: var(--sky); color: var(--night); }
.foot-cols {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px; padding-bottom: 56px;
}
.foot-col h4 {
  margin: 0 0 18px; font-family: var(--mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mist);
}
.foot-col a {
  display: block; padding: 5px 0;
  font-size: 14.5px; color: var(--snow); opacity: 0.85; text-decoration: none;
}
.foot-col a:hover { opacity: 1; }
.foot-legal { border-top: 1px solid var(--hair-dark); padding-top: 28px; }
.foot-legal p { margin: 0 0 18px; font-size: 13px; max-width: 74ch; }
.foot-line {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
}

/* ---------- narrow ---------- */
@media (max-width: 900px) {
  .photo-cards.three, .trio, .foot-cols { grid-template-columns: minmax(0, 1fr); }
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .numbers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-block, .band { padding: 90px 0 84px; }
  .hero { min-height: 72vh; }
  .topnav { gap: 14px; }
}

/* receipts trio + rate row + scope section */
.proofs-trio h3.proof { font-size: 16px; }
.rate-row { display: flex; flex-direction: column; gap: 22px; align-items: flex-end; }
.rates { border-collapse: collapse; }
.rates td { padding: 4px 10px 4px 22px; font-size: 13.5px; color: var(--muted); }
.rates td.price { padding-left: 6px; color: var(--ink); font-weight: 550; }
.scope-section { padding-top: 0; }
.scope-section .scope-strip { margin-top: 0; }

/* night photography needs lift on dark cards; daylight needs none */
.pcard .img img { filter: brightness(1.04); }
.cards-block.dark .pcard .img img { filter: brightness(1.32) saturate(1.05) contrast(1.04); }
.band .backdrop img { opacity: 0.62; }
