/* Window Blasters — public site design system.
   Premium local-craft: navy ink on warm paper, one confident blue for
   action, generous air, typography doing the talking. Shares the brand's
   bones with the platform (Archivo/Public Sans, the navy, the blue) but
   deliberately NOT the internal app's look. Desktop is designed, not
   inflated. */

@font-face { font-family: "Archivo"; src: url("/fonts/Archivo-var.woff2") format("woff2");
  font-weight: 400 900; font-display: swap; }
@font-face { font-family: "Public Sans"; src: url("/fonts/PublicSans-var.woff2") format("woff2");
  font-weight: 300 800; font-display: swap; }

:root {
  --navy: #10215E;          /* the brand anchor — TYPE and accents, never big fields
                               (a navy page + the yellow logo read as Blockbuster —
                               Paul's call, 2026-08-13) */
  --navy-deep: #0A1540;     /* footer only */
  --ink: #16224A;           /* headings on paper */
  --body: #3D4A63;          /* long-form text */
  --slate: #5E7086;         /* secondary, captions */
  --blue: #2966F4;          /* links, small accents */
  --blue-down: #1E52D0;
  --green: #1B8A5A;         /* savings, confirmations */
  --yellow: #FFC629;        /* the brand's action color — trucks, jerseys, buttons */
  --yellow-down: #F2B903;
  --paper: #F7F8F5;         /* page ground */
  --card: #FFFFFF;
  --line: #E4E8EE;
  --wash: #EDF1F6;          /* tinted section ground */
  --gold: #F5B82E;          /* review stars */
  --r: 14px;
  --shadow: 0 1px 2px rgba(16,33,94,.05), 0 8px 28px -12px rgba(16,33,94,.14);
  --wrap: 1180px;
  --sp: clamp(3.5rem, 9vw, 6.5rem);   /* section rhythm */
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font: 400 17px/1.65 "Public Sans", system-ui, sans-serif;
  color: var(--body); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
p a { text-decoration: underline; text-underline-offset: 2px; }

h1, h2, h3, h4 { font-family: "Archivo", sans-serif; color: var(--ink);
  letter-spacing: -0.025em; line-height: 1.06; font-weight: 750; }
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; line-height: 1.25; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.eyebrow { font-family: "Archivo", sans-serif; font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: .9rem; }
.lede { font-size: clamp(1.05rem, 1.9vw, 1.22rem); line-height: 1.6; max-width: 42em; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.skip { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: .6rem 1rem; z-index: 99; }
.skip:focus { left: 0; }

/* ---- buttons -------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: 640 1rem/1 "Archivo", sans-serif; letter-spacing: -0.01em;
  padding: .95rem 1.55rem; border-radius: 11px; border: 0; cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease; }
.btn:active { transform: translateY(1px); }
/* Primary action is BRAND YELLOW with navy type — the trucks and jerseys
   already taught the whole county what that combination means. */
.btn-solid { background: var(--yellow); color: var(--navy);
  box-shadow: 0 6px 18px -8px rgba(214,164,7,.75); }
.btn-solid:hover { background: var(--yellow-down); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
/* The secondary action in the brand's own blue — lighter than navy, so a
   membership CTA reads as an invitation rather than a second primary
   competing with the yellow (Paul, 2026-08-14). */
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-down); }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn-sm { padding: .62rem 1.05rem; font-size: .92rem; }
.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.08rem; }

/* ---- header --------------------------------------------------------- */
.hd { position: sticky; top: 0; z-index: 50; background: rgba(247,248,245,.88);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.hd-in { display: flex; align-items: center; gap: 2rem; height: 68px; }
.hd-brand { display: flex; align-items: center; gap: .6rem; font-family: "Archivo", sans-serif;
  font-size: 1.18rem; font-weight: 650; color: var(--ink); letter-spacing: -0.02em; }
.hd-brand b { font-weight: 820; }
.hd-nav { display: flex; gap: 1.7rem; margin-left: auto; }
.hd-nav a { font: 560 .97rem/1 "Public Sans", sans-serif; color: var(--ink);
  padding: .5rem 0; border-bottom: 2px solid transparent; }
.hd-nav a:hover { color: var(--blue); }
.hd-nav a[aria-current] { border-bottom-color: var(--blue); color: var(--blue); }
.hd-cta { display: flex; gap: .6rem; }
.hd-burger { display: none; margin-left: auto; background: none; border: 0; padding: .55rem;
  cursor: pointer; }
.hd-burger span { display: block; width: 22px; height: 2.5px; background: var(--ink);
  border-radius: 2px; margin: 4.5px 0; transition: transform .18s ease, opacity .18s ease; }
.hd-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hd-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hd-mnav { display: none; }

@media (max-width: 880px) {
  .hd-nav, .hd-cta { display: none; }
  .hd-burger { display: block; }
  .hd-mnav { display: grid; gap: .25rem; padding: .8rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line); background: var(--paper); }
  .hd-mnav[hidden] { display: none; }
  .hd-mnav a { font: 600 1.15rem/1 "Archivo", sans-serif; color: var(--ink); padding: .8rem 0; }
  .hd-mnav .btn { margin-top: .5rem; }
  .hd-mnav-tel { color: var(--slate) !important; font-size: .95rem !important;
    font-family: "Public Sans", sans-serif !important; font-weight: 500 !important; }
}

/* ---- hero: light, photo-forward — the sky supplies the blue --------- */
.hero { background: linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%); overflow: hidden; }
.hero-in { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: var(--sp); }
.hero .lede { margin: 1.3rem 0 2.1rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.6rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust b { display: block; font-family: "Archivo", sans-serif; font-size: 1.25rem;
  color: var(--ink); letter-spacing: -0.02em; }
.hero-trust span { font-size: .84rem; color: var(--slate); }
.hero-photo { border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 56px -22px rgba(16,33,94,.38); aspect-ratio: 4 / 5;
  position: relative; background: var(--wash); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.stars { color: var(--gold); letter-spacing: .1em; }

@media (max-width: 880px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 16 / 10; order: -1; margin-top: 1.8rem; }
  .hero-ctas .btn { flex: 1 1 100%; }
}

/* ---- sections ------------------------------------------------------- */
.sec { padding-top: var(--sp); padding-bottom: var(--sp); }
.sec-wash { background: var(--wash); }
.sec-head { max-width: 46em; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.sec-head.center { margin-inline: auto; }

/* ---- service cards (hydrated from the platform) --------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 1.15rem; }
.svc { background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.5rem 1.4rem; box-shadow: var(--shadow); display: flex;
  flex-direction: column; gap: .55rem; transition: transform .15s ease, box-shadow .15s ease; }
.svc:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(16,33,94,.06), 0 18px 44px -14px rgba(16,33,94,.2); }
.svc-cat { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate); }
.svc p { font-size: .95rem; flex: 1; }
.svc-price { font-family: "Archivo", sans-serif; color: var(--ink); font-weight: 750;
  font-size: 1.15rem; }
.svc-price small { font-family: "Public Sans", sans-serif; font-weight: 500;
  color: var(--slate); font-size: .82rem; letter-spacing: 0; }
.svc-cta { margin-top: .45rem; font: 640 .95rem/1 "Archivo", sans-serif; color: var(--blue); }
.svc-cta::after { content: " →"; }
.svc.skel { min-height: 210px; animation: skel 1.1s ease-in-out infinite alternate; }
@keyframes skel { from { opacity: .45; } to { opacity: .8; } }

/* ---- steps ---------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.5rem; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero);
  font: 800 .95rem/1 "Archivo", sans-serif; color: var(--blue); display: block;
  margin-bottom: .8rem; letter-spacing: .06em; }
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .95rem; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---- plan cards (hydrated) ------------------------------------------ */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem; max-width: 900px; }
/* On a desktop the configurator stops being a lid on top of the prices and
   becomes a sidebar beside them: the point of this page is the plans, and
   they belong on the first screen. The cap comes off the card grid at the
   same time — it is no longer competing with a full-width panel above it.
   Phones and tablets keep the honest single column. */
@media (min-width: 1080px) {
  .plans-layout { display: grid; grid-template-columns: minmax(330px, 380px) 1fr;
    gap: clamp(1.6rem, 3vw, 2.6rem); align-items: start; }
  /* Sticky only earns its keep while the panel is SHORTER than the screen —
     a sticky element taller than the viewport pins its top and puts its own
     bottom out of reach. The size pills therefore have to pair up rather
     than run one-per-row, which is what the tighter padding buys. */
  .plans-layout .cfg { position: sticky; top: 88px; margin-bottom: 0; }
  .plans-layout .cfg .pill { padding: .55rem .8rem; }
  .plans-layout .plan-grid { max-width: none; }
}
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow); }
.plan--hot { position: relative; border: 2px solid var(--yellow);
  box-shadow: 0 18px 44px -16px rgba(214,164,7,.45); }
.plan-flag { position: absolute; top: -11px; left: 1.4rem; background: var(--yellow);
  color: var(--navy); font: 700 .72rem/1 "Archivo", sans-serif; letter-spacing: .08em;
  text-transform: uppercase; padding: .32rem .6rem; border-radius: 6px; }
.plan-name { font-family: "Archivo", sans-serif; font-weight: 750; font-size: 1.18rem;
  color: var(--ink); }
.plan-price { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.9rem;
  letter-spacing: -0.03em; margin: .55rem 0 .2rem; color: var(--navy); }
.plan-price small { font-size: .95rem; font-weight: 500; letter-spacing: 0; color: var(--slate); }
.plan p { font-size: .93rem; }

/* ---- trust / local -------------------------------------------------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
/* A grid item's min-width is its CONTENT's minimum unless told otherwise —
   so the plan-grid hydrating two 250px cards into a .duo column forced the
   column to 518px and the whole home page sideways on phones. min-width: 0
   lets the column stay honest and the auto-fit inside it wrap to one. */
.duo > * { min-width: 0; }
@media (max-width: 820px) { .duo { grid-template-columns: 1fr; } }
.photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--wash);
  border: 1px solid var(--line); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.checks { list-style: none; padding: 0; display: grid; gap: .7rem; margin-top: 1.4rem; }
.checks li { padding-left: 1.9rem; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: .32em; width: 1.15rem;
  height: 1.15rem; border-radius: 50%; background: var(--green); }
.checks li::after { content: ""; position: absolute; left: .27rem; top: .62em; width: .58rem;
  height: .3rem; border-left: 2.6px solid #fff; border-bottom: 2.6px solid #fff;
  transform: rotate(-45deg); }

.quote { border-left: 3px solid var(--blue); padding: .2rem 0 .2rem 1.3rem; margin-top: 1.6rem; }
.quote p { font-size: 1.05rem; color: var(--ink); }
.quote footer { font-size: .88rem; color: var(--slate); margin-top: .5rem; }

/* ---- account band --------------------------------------------------- */
.band { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.9rem 2rem; box-shadow: var(--shadow); }
.band h3 { font-size: 1.35rem; }
.band p { font-size: .97rem; }
.band > div { flex: 1 1 24rem; }

/* ---- footer --------------------------------------------------------- */
.ft { background: var(--navy-deep); color: #9FB0D6; margin-top: var(--sp); }
.ft a { color: #C9D5F1; font-size: .95rem; }
.ft a:hover { color: #fff; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-top: 3.6rem; padding-bottom: 2.6rem; }
.ft-brand p { font-size: .93rem; max-width: 26em; margin-top: .9rem; }
.ft-tel { display: inline-block; margin-top: .9rem; font: 700 1.15rem/1 "Archivo", sans-serif; }
.ft h3 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1rem; font-weight: 700; }
.ft nav { display: grid; gap: .55rem; align-content: start; }
.ft-legal { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem;
  padding-bottom: 1.6rem; font-size: .84rem; }
@media (max-width: 820px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ft-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---- final CTA ------------------------------------------------------ */
.cta-final { text-align: center; }
.cta-final .btn { margin-top: 1.8rem; }
.cta-sub { font-size: .9rem; color: var(--slate); margin-top: .9rem; }

/* ---- inner pages ---------------------------------------------------- */
.page-hero { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.page-hero .lede { margin-top: 1.1rem; }
/* A wider page must not mean a wider headline: past about fifteen words a
   line stops being readable and starts being a banner. The measure grows;
   the sentence does not. */
.page-hero h1 { max-width: 15em; }
/* Desktop screens are wide and SHORT — many sit under 700 points of page
   height once the browser chrome takes its share. An inner page's intro is
   a doorway, not the destination: on desktop it spends less air and less
   type so the content it introduces (the plan cards, the service list)
   lands on the first screen. Home's hero is untouched — that page IS its
   hero. Must stay AFTER the base .page-hero rules above — equal
   specificity, so source order is what decides this. */
@media (min-width: 1080px) {
  .page-hero { padding-top: 2.2rem; padding-bottom: 1.2rem; }
  .page-hero h1 { font-size: clamp(2.1rem, 3.4vw, 3rem); }
  .page-hero .lede { font-size: 1.08rem; margin-top: .9rem; }
}

.prose { max-width: 46em; }
.prose h2 { font-size: 1.25rem; margin: 2rem 0 .6rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }
.prose .small { font-size: .85rem; color: var(--slate); }

/* category header inside the services listing */
.svc-cat-head { grid-column: 1 / -1; margin-top: 1.2rem; }
.svc-cat-head:first-child { margin-top: 0; }
.svc-cat-head h3 { font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--slate); font-weight: 700; }

/* the plans configurator */
/* The configurator is the TOOL and the plan cards are the PRODUCT — so the
   panel sits flat on a quiet tint while the cards keep the elevation.
   Giving both the same white-plus-shadow was why they blended together. */
.cfg { background: #F1F5FA; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.5rem; margin-bottom: 1.6rem; }

/* ---- the Membership page keeps the polish pass ----------------------
   Paul reviewed the 2026-08-13 polish side by side and chose the original
   look for the site overall but the polished look for THIS page. The
   treatments live here as a page scope, not sprinkled through the rules:
   the tokens are inherited custom properties, so re-declaring them on the
   page body restyles every var() consumer below it in one move. If he
   later wants the polish site-wide, promote this block's values into
   :root and delete the scope. */
.page-plans { --wash: #E8EDF5; --line: #DCE2EB;
  --shadow: 0 1px 2px rgba(16,33,94,.06), 0 10px 32px -12px rgba(16,33,94,.17); }
.page-plans .sec-wash { border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); }
.page-plans .sec-head .eyebrow::before { content: ""; display: block; width: 2rem;
  height: 4px; border-radius: 2px; background: var(--yellow); margin-bottom: .6rem; }
.page-plans .sec-head.center .eyebrow::before { margin-inline: auto; }
.page-plans .btn-ghost { background: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(16,33,94,.22); }
.page-plans .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy); }
.cfg-label { font: 700 .8rem/1 "Archivo", sans-serif; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate); margin-bottom: .7rem; }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { font: 620 .95rem/1 "Archivo", sans-serif; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 999px; padding: .62rem 1.05rem; cursor: pointer;
  transition: border-color .12s ease, background .12s ease; }
.pill:hover { border-color: var(--slate); }
.pill[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.pill small { display: block; font: 500 .72rem/1.2 "Public Sans", sans-serif; color: inherit;
  opacity: .72; margin-top: .2rem; letter-spacing: 0; }
.cfg-row + .cfg-row { margin-top: 1.3rem; }
.plan-meta { list-style: none; padding: 0; margin: .8rem 0 0; display: grid; gap: .4rem; }
.plan-meta li { font-size: .9rem; padding-left: 1.5rem; position: relative; }
.plan-meta li::before { content: ""; position: absolute; left: .1rem; top: .5em; width: .45rem;
  height: .45rem; border-radius: 50%; background: var(--green); }
.plan .btn { width: 100%; margin-top: 1.1rem; }
.plan-quarterly { font-size: .88rem; color: var(--slate); margin-top: .1rem; }
.save-note { color: var(--green); font-weight: 600; font-size: .95rem; }

/* my-account form */
.acct { max-width: 30rem; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow); padding: 1.9rem 1.7rem; }
.acct label { display: block; font: 640 .92rem/1 "Archivo", sans-serif; color: var(--ink);
  margin: 1.1rem 0 .45rem; }
.acct input { width: 100%; font: 400 1.05rem/1.3 "Public Sans", sans-serif; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .8rem .9rem; }
.acct input:focus { outline: none; border-color: var(--blue); background: #fff; }
.acct .btn { width: 100%; margin-top: 1.4rem; }
.acct-or { text-align: center; color: var(--slate); font-size: .85rem; margin: .9rem 0 -.2rem; }
.acct-done { border-left: 3px solid var(--green); background: #F2FAF6; padding: 1rem 1.2rem;
  border-radius: 8px; margin-top: 1.3rem; }
.acct-done p { font-size: .95rem; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.15rem; max-width: 820px; }
.ccard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow); }
.ccard h3 { margin-bottom: .35rem; }
.ccard p { font-size: .93rem; }
.ccard a.big { display: inline-block; font: 750 1.25rem/1 "Archivo", sans-serif; margin-top: .6rem; }

/* ---- live Google reviews -------------------------------------------- */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.15rem; }
.rev { background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow); margin: 0;
  display: flex; flex-direction: column; gap: .7rem; }
.rev-stars { color: var(--gold); letter-spacing: .12em; font-size: 1.05rem; }
.rev blockquote { margin: 0; font-size: .96rem; line-height: 1.6; flex: 1; }
.rev figcaption { font: 640 .92rem/1.3 "Archivo", sans-serif; color: var(--ink); }
.rev figcaption span { display: block; font: 500 .78rem/1.4 "Public Sans", sans-serif;
  color: var(--slate); }

/* ---- the first screen composes itself to the window ------------------
   Paul's screenshot (2026-08-13): on a big monitor the hero photo's
   bottom edge was chopped by the fold and the page read as a narrow
   column adrift in white. The hero now sizes to the viewport so the
   whole composition — headline, buttons, trust row, full photo — lands
   inside the first screen, and very wide monitors get a wider measure. */
@media (min-width: 881px) {
  .hero-in { min-height: calc(100vh - 68px); min-height: calc(100svh - 68px); }
  .hero-photo { max-height: 74vh; }
}
/* A laptop is a desktop too. The measure used to sit at 1180px until a
   1680px monitor, so a 1512pt MacBook got the same column as a small
   laptop and every page had to stack — the plan cards landed below the
   fold (Paul, 2026-08-13: "still not fitting the page on desktop"). */
@media (min-width: 1280px) {
  :root { --wrap: 1300px; }
}
@media (min-width: 1680px) {
  :root { --wrap: 1400px; }
}

/* ---- live availability rail ------------------------------------------
   The next real openings as day cards: glanceable on desktop, a
   scroll-snap rail on phones, every card a door into booking. */
.days-sec { padding-top: clamp(2.2rem, 5vw, 3.5rem); padding-bottom: clamp(2.2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line); background: #fff; }
.days-head { display: flex; flex-wrap: wrap; gap: 1rem 3rem; align-items: end;
  justify-content: space-between; margin-bottom: 1.6rem; }
.days-head h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.days-head .eyebrow { display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; }
.days-note { font-size: .92rem; color: var(--slate); max-width: 24em; }
.avail-dot { width: .6rem; height: .6rem; border-radius: 50%; background: var(--green);
  flex-shrink: 0; animation: avail-pulse 1.8s ease-in-out infinite; }
@keyframes avail-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(27,138,90,.45); }
  50% { box-shadow: 0 0 0 6px rgba(27,138,90,0); } }
.days-rail { display: flex; gap: .8rem; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 14px 2px; margin: -14px -2px 0; -webkit-overflow-scrolling: touch; }
.day { scroll-snap-align: start; flex: 0 0 auto; min-width: 106px; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r);
  padding: 1.1rem 1rem .95rem; text-align: center;
  transition: transform .13s ease, border-color .13s ease, box-shadow .13s ease; }
.day:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: var(--shadow); }
.day-wd { font: 750 1.2rem/1 "Archivo", sans-serif; color: var(--ink); }
.day-date { font-size: .88rem; color: var(--body); }
.day-win { font-size: .76rem; color: var(--slate); margin-top: .3rem; }
.day--next { border-color: var(--green); box-shadow: 0 10px 26px -12px rgba(27,138,90,.45); }
.day--next .day-win { color: var(--green); font-weight: 600; }
.day-flag { position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font: 700 .66rem/1 "Archivo", sans-serif;
  letter-spacing: .07em; text-transform: uppercase; padding: .28rem .5rem;
  border-radius: 5px; white-space: nowrap; }
.day--more { border-style: dashed; }
.day--more .day-win { color: var(--blue); }

/* ---- stage two of the day rail: the window chips --------------------- */
.day[aria-expanded="true"] { border-color: var(--navy); background: var(--wash); }
.win-panel { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
  margin-top: 1rem; padding: 1.05rem 1.2rem; background: var(--wash);
  border-radius: var(--r); }
.win-label { font: 640 .92rem/1.4 "Archivo", sans-serif; color: var(--ink);
  margin-right: .4rem; }
.win-chip { font: 600 .93rem/1 "Public Sans", sans-serif; color: var(--navy);
  background: var(--card); border: 1.5px solid var(--line); border-radius: 999px;
  padding: .6rem 1rem; transition: border-color .12s ease, background .12s ease; }
.win-chip:hover { border-color: var(--yellow); background: #FFF9E6; }

/* ---- desktop uses the desktop --------------------------------------- */
@media (min-width: 1280px) {
  /* the hero photo runs to the screen's right edge — the page belongs to
     the width it is given, not to a centered column (Paul, 2026-08-13) */
  .hero-in { max-width: none;
    padding-left: max(calc((100vw - var(--wrap)) / 2 + 2rem), 2rem);
    padding-right: 0; }
  .hero-photo { border-radius: 18px 0 0 18px; }
}
@media (min-width: 1920px) {
  :root { --wrap: 1560px; }
}

/* ---- per-area soonest cards ----------------------------------------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .9rem; margin-bottom: 1.4rem; }
.area { display: flex; flex-direction: column; gap: .2rem; text-align: left;
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r);
  padding: 1.25rem 1.3rem 1.15rem; cursor: pointer;
  transition: transform .13s ease, border-color .13s ease, box-shadow .13s ease; }
.area:hover { transform: translateY(-2px); border-color: var(--navy); box-shadow: var(--shadow); }
.area[aria-expanded="true"] { border-color: var(--navy); background: var(--wash); }
.area-name { font: 700 .78rem/1 "Archivo", sans-serif; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate); }
.area-day { font: 780 1.55rem/1.15 "Archivo", sans-serif; color: var(--ink);
  letter-spacing: -0.02em; margin-top: .25rem; }
.area-sub { font-size: .84rem; color: var(--slate); }
.area--soon { border-color: var(--green); }
.area--soon .area-day { color: var(--green); }
.days-sub { font: 700 .78rem/1 "Archivo", sans-serif; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate); margin: .4rem 0 .7rem; }

/* ---- the area calendar cards: a page off a real calendar ------------- */
.cal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1.1rem; max-width: 820px; }
.cal { display: flex; flex-direction: column; align-items: center; cursor: pointer;
  background: var(--card); border: 1.5px solid var(--line); border-radius: 16px;
  overflow: hidden; padding: 0 0 1.15rem; text-align: center; box-shadow: var(--shadow);
  transition: transform .13s ease, border-color .13s ease, box-shadow .13s ease; }
.cal:hover { transform: translateY(-3px); border-color: var(--navy); }
.cal[aria-expanded="true"] { border-color: var(--yellow);
  box-shadow: 0 14px 34px -14px rgba(214,164,7,.5); }
.cal-area { align-self: stretch; background: var(--navy); color: #fff;
  font: 700 .78rem/1 "Archivo", sans-serif; letter-spacing: .1em;
  text-transform: uppercase; padding: .6rem; }
.cal-mo { font: 700 .8rem/1 "Archivo", sans-serif; letter-spacing: .18em;
  text-transform: uppercase; color: #C0392B; margin-top: .95rem; }
.cal-num { font: 820 3.4rem/1 "Archivo", sans-serif; color: var(--ink);
  letter-spacing: -0.04em; margin: .1rem 0; }
.cal-wd { font: 600 1rem/1 "Public Sans", sans-serif; color: var(--body); }
.cal-note { font-size: .78rem; color: var(--slate); margin-top: .6rem; }
.cal-note b { color: var(--green); }
.win-chip--best { border-color: var(--yellow); background: #FFF9E6; font-weight: 700; }
.win-note { flex-basis: 100%; font-size: .8rem; color: var(--slate); margin-top: .2rem; }

/* ---- solar-screen fabric explorer ------------------------------------
   Tiles are real HTML (crawlable, fine without JS); the detail card is
   painted by site.js. Swatches are approximations of woven fabric on a
   screen — the page says so, the way Twitchell's own literature does. */
.fx { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .fx { grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr); align-items: start; } }
.fx-group-label { font: 700 .8rem/1 "Archivo", sans-serif; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate); margin: 1.3rem 0 .6rem; }
.fx-group-label:first-child { margin-top: 0; }
.fx-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: .6rem; }
.fx-tile { display: flex; flex-direction: column; gap: .35rem; padding: .45rem;
  background: var(--card); border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer; font-family: inherit; text-align: center;
  transition: border-color .12s ease, transform .12s ease; }
.fx-tile:hover { transform: translateY(-2px); border-color: var(--slate); }
.fx-tile[aria-pressed="true"] { border-color: var(--navy); box-shadow: 0 0 0 1.5px var(--navy); }
.fx-swatch { display: block; width: 100%; aspect-ratio: 4 / 3; border-radius: 8px;
  border: 1px solid rgba(16,33,94,.14); }
.fx-swatch--lg { width: 58px; aspect-ratio: 1; flex-shrink: 0; border-radius: 10px; }
.fx-tile span:last-child { font-size: .74rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.fx-detail { background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.4rem 1.4rem 1.2rem; box-shadow: var(--shadow); position: sticky; top: 84px; }
.fx-d-head { display: flex; gap: .8rem; align-items: center; margin-bottom: .9rem; }
.fx-d-name { font: 750 1.25rem/1.15 "Archivo", sans-serif; color: var(--ink); }
.fx-d-line { font-size: .78rem; color: var(--slate); margin-top: .15rem; }
.fx-meter { height: 7px; background: var(--wash); border-radius: 4px; overflow: hidden; }
.fx-meter span { display: block; height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--yellow), #E8960C); }
.fx-d-shade { font-size: .82rem; font-weight: 700; color: var(--ink); margin: .4rem 0 .7rem; }
.fx-d-tone { font-size: .95rem; }
.fx-d-best { margin-top: .8rem; }
.fx-d-best li { font-size: .9rem; }
.fx-d-note { font-size: .82rem; color: var(--slate); margin-top: .9rem;
  padding-top: .8rem; border-top: 1px solid var(--line); }
.fx-fine { font-size: .82rem; color: var(--slate); margin-top: 1.1rem; }

/* ---- install gallery ---- */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.shots .photo { aspect-ratio: 4 / 3; }

/* ---- FAQs (native details/summary — accessible, JS-free) ---- */
.faq { max-width: 46em; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0 1.2rem; margin-bottom: .7rem; }
.faq summary { font: 640 1rem/1.4 "Archivo", sans-serif; color: var(--ink);
  padding: 1rem 0; cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 1rem; font-size: .95rem; }
