/* ==========================================================================
   CH Enterprizes LLC — site styles

   Palette is neutral on purpose: graphite, paper and hairline greys. The
   hi-vis yellow is brand equipment, not decoration — it appears in the logo
   mark and the focus ring, and nowhere else. Colour on this site comes from
   the photographs.

   Rhythm: three grounds only — ink (dark), paper (default light), and white
   (--paper-up, for a quiet lift). Sections are punctuated by a tracked
   eyebrow label and, between two light bands, a single hairline.
   ========================================================================== */

:root {
  /* Ground + ink */
  --ink:       #17181a;   /* dark ground */
  --ink-up:    #202226;   /* raised surface on dark */
  --paper:     #f6f6f5;   /* default light ground */
  --paper-up:  #ffffff;   /* lifted light ground */

  /* Text */
  --mute-d:    #a6aab1;   /* muted text on dark */
  --mute-l:    #61646a;   /* muted text on light */

  /* Lines */
  --line:      #e3e3e0;
  --line-2:    #d2d2ce;   /* hover / emphasis hairline on light */
  --line-d:    #2b2d31;
  --line-d2:   #454951;   /* hover / emphasis hairline on dark */

  /* Brand — logo mark and focus ring only */
  --hivis:     #e6ff00;

  /* Semantic */
  --ok:        #276749;
  --err:       #9c2b0f;

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, system-ui, sans-serif;
  --text: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-md:   1.1875rem;
  --t-lg:   1.375rem;
  --t-xl:   1.75rem;

  /* Space */
  --gap: 1.5rem;
  --pad-block: clamp(3.25rem, 6.5vw, 5.25rem);
  --pad-tight: clamp(2.25rem, 4.5vw, 3.25rem);
  --maxw: 1200px;
  --readable: 62ch;

  /* Form */
  --r: 4px;
  --fast: .14s;
  --med: .24s;
  --ease: cubic-bezier(.2, .6, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--t-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--ink); color: var(--paper-up); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.021em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1rem; max-width: var(--readable); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* The one place the hi-vis still earns its keep besides the logo: it is the
   most visible ring we have on both the ink and the paper ground. */
:focus-visible {
  outline: 3px solid var(--hivis);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--paper-up);
  padding: .75rem 1rem; font-weight: 700; z-index: 200; border-radius: var(--r);
}
.skip:focus { left: 1rem; top: 1rem; }

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

/* ---------- Section grounds ----------
   Only three. A hairline separates two consecutive light bands; a change of
   ground is punctuation enough everywhere else. */
.band { padding-block: var(--pad-block); }
.band--tight { padding-block: var(--pad-tight); }
.band--alt { background: var(--paper-up); }
.band--dark { background: var(--ink); color: var(--paper); }
.band--dark h2, .band--dark h3, .band--dark h4 { color: var(--paper-up); }

.band + .band:not(.band--dark) { border-top: 1px solid var(--line); }
.band--dark + .band:not(.band--dark) { border-top: 0; }
.band--alt + .band--alt { border-top: 1px solid var(--line); }

.band__head { margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.band__head h2 { font-size: clamp(1.65rem, 3.2vw, 2.15rem); }
/* :not(.eyebrow) so the label above the heading keeps its own type — a bare
   `.band__head p` outranks `.eyebrow` and would silently swallow it. */
.band__head p:not(.eyebrow) { margin-top: .85rem; color: var(--mute-l); font-size: var(--t-md); }
.band--dark .band__head p:not(.eyebrow) { color: var(--mute-d); }

/* ---------- Eyebrow: the recurring punctuation mark ---------- */
.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--text); font-size: .6875rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--mute-l); margin: 0 0 .85rem; max-width: none;
}
.eyebrow::before {
  content: ""; width: 18px; height: 2px; background: currentColor; flex: none;
}
.band--dark .eyebrow, .hero .eyebrow, .phead .eyebrow { color: var(--mute-d); }

/* ---------- Header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color var(--med), box-shadow var(--med);
}
@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .masthead {
    background: rgba(23, 24, 26, .86);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
  }
}
.masthead.is-stuck {
  border-bottom-color: var(--line-d);
  box-shadow: 0 14px 34px -28px rgba(0, 0, 0, .9);
}
.masthead__in {
  display: flex; align-items: center; gap: var(--gap);
  min-height: 68px;
}
.brand {
  font-family: var(--display); font-weight: 800;
  font-size: 1.24rem; letter-spacing: -0.012em; text-transform: uppercase;
  color: var(--paper-up); text-decoration: none; line-height: 1;
  display: flex; align-items: center; gap: .65rem; margin-right: auto;
}
.brand__mark {
  display: inline-block; width: 11px; height: 28px; background: var(--hivis);
  transform: skewX(-14deg); border-radius: 1px; flex: none;
}
.brand span { display: block; }
.brand small {
  display: block; font-family: var(--text); font-weight: 500;
  font-size: .625rem; letter-spacing: .13em; color: var(--mute-d);
  text-transform: uppercase; margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a {
  position: relative;
  color: var(--mute-d); text-decoration: none; font-size: var(--t-sm);
  font-weight: 500; padding: .4rem 0;
  transition: color var(--fast) var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.nav a:hover { color: var(--paper-up); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--paper-up); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.masthead .btn--call { margin-left: .4rem; }

.burger {
  display: none; background: none; border: 1px solid var(--line-d2);
  color: var(--paper); padding: .55rem .7rem; cursor: pointer; line-height: 0;
  border-radius: var(--r); transition: border-color var(--fast), background-color var(--fast);
}
.burger:hover { border-color: var(--paper); }
.burger svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-d); padding: .25rem 0 .75rem;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: .9rem clamp(1.15rem, 4vw, 2.5rem);
    border-bottom: 1px solid var(--line-d); font-size: var(--t-base);
  }
  .nav a::after { display: none; }
  .nav a[aria-current="page"] { color: var(--paper-up); }
  .masthead .btn--call { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--text); font-weight: 600; font-size: var(--t-sm);
  padding: .8rem 1.35rem; border: 1px solid transparent; border-radius: var(--r);
  text-decoration: none; cursor: pointer;
  transition: background-color var(--fast) var(--ease),
              border-color var(--fast) var(--ease),
              color var(--fast) var(--ease),
              transform var(--fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* Primary. Ink on light grounds, paper on dark ones. */
.btn--call, .btn--dark {
  background: var(--ink); color: var(--paper-up); border-color: var(--ink);
}
.btn--call:hover, .btn--dark:hover { background: #000; border-color: #000; }

.masthead .btn--call, .hero .btn--call, .phead .btn--call, .band--dark .btn--call {
  background: var(--paper-up); color: var(--ink); border-color: var(--paper-up);
}
.masthead .btn--call:hover, .hero .btn--call:hover,
.phead .btn--call:hover, .band--dark .btn--call:hover { background: var(--paper); }

/* Secondary. */
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(23, 24, 26, .04); }
.hero .btn--ghost, .phead .btn--ghost, .band--dark .btn--ghost {
  color: var(--paper); border-color: var(--line-d2); background: transparent;
}
.hero .btn--ghost:hover, .phead .btn--ghost:hover, .band--dark .btn--ghost:hover {
  border-color: var(--paper); background: rgba(255, 255, 255, .06);
}

.btn--lg { font-size: var(--t-base); padding: .95rem 1.7rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.7rem; }

/* ---------- Hero ---------- */
.hero { background: var(--ink); color: var(--paper); }
.hero__in {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(3rem, 6.5vw, 5rem);
}
.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  letter-spacing: -0.02em; line-height: 1.08;
  color: var(--paper-up); max-width: 16ch;
}
.hero__lede {
  margin-top: 1.35rem; font-size: clamp(1.05rem, 1.8vw, var(--t-md));
  color: var(--mute-d); max-width: 42ch;
}
.hero__fig { position: relative; margin: 0; }
.hero__fig img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  background: var(--ink-up); border-radius: var(--r);
}
.hero__stamp {
  position: absolute; left: .75rem; bottom: .75rem;
  background: rgba(23, 24, 26, .82); color: var(--paper-up);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-family: var(--text); font-weight: 600;
  text-transform: uppercase; font-size: var(--t-xs); letter-spacing: .1em;
  padding: .45rem .75rem; border-radius: var(--r);
}
@media (max-width: 860px) {
  .hero__in { grid-template-columns: 1fr; padding-block: 2.75rem 0; }
  .hero__fig { margin-top: 2.5rem; }
  .hero__fig img { aspect-ratio: 16 / 10; }
}

/* ---------- Booking strip ----------
   A status line, not a banner. White so it cuts cleanly off the dark hero. */
.booking {
  background: var(--paper-up); color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.booking__in {
  display: flex; flex-wrap: wrap; align-items: center; gap: .3rem .9rem;
  padding-block: .95rem; font-size: var(--t-sm); color: var(--mute-l);
}
.booking__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink); flex: none;
}
.booking strong {
  font-weight: 600; color: var(--ink); font-size: var(--t-sm);
}
.booking a {
  margin-left: auto; color: var(--ink); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--line-2); padding-bottom: 1px;
  transition: border-color var(--fast);
}
.booking a:hover { border-bottom-color: var(--ink); }
@media (max-width: 640px) { .booking a { margin-left: 0; } }

/* ---------- Season band ---------- */
.seasons {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.season { background: var(--paper-up); padding: 1.4rem 1.25rem 1.5rem; position: relative; }
.season__top {
  display: flex; align-items: baseline; justify-content: space-between; gap: .5rem;
  margin-bottom: .8rem;
}
.season h3 { font-size: var(--t-md); }
.season__months {
  font-size: var(--t-xs); color: var(--mute-l); font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.season ul { list-style: none; margin: 0; padding: 0; }
.season li {
  font-size: var(--t-sm); padding: .28rem 0 .28rem 1rem; position: relative;
  color: var(--mute-l);
}
.season li::before {
  content: ""; position: absolute; left: 0; top: .85em;
  width: 7px; height: 2px; background: #c3c4bf;
}
.season.is-now { box-shadow: inset 0 3px 0 var(--ink); }
.season.is-now li::before { background: var(--ink); }
.season__now {
  display: none; font-family: var(--text); font-size: .625rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--paper-up); background: var(--ink);
  padding: .3rem .5rem; border-radius: 2px; margin-top: 1rem;
  width: max-content;
}
.season.is-now .season__now { display: block; }
@media (max-width: 780px) { .seasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px) { .seasons { grid-template-columns: 1fr; } }

/* ---------- Service cards ---------- */
.svc { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.svc--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .svc--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-up); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--fast) var(--ease),
              transform var(--med) var(--ease),
              box-shadow var(--med) var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: 0 18px 34px -24px rgba(23, 24, 26, .5);
}
.card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--line);
  transition: transform .5s var(--ease);
}
.card:hover img { transform: scale(1.035); }
.card__body { padding: 1.35rem 1.35rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: var(--t-lg); }
.card__price {
  font-family: var(--text); font-weight: 600; font-size: var(--t-sm);
  color: var(--mute-l); margin-top: .4rem; font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}
.card p:not(.card__price) { margin-top: .85rem; color: var(--mute-l); font-size: var(--t-sm); }
.card__link {
  margin-top: auto; padding-top: 1.2rem; font-weight: 600; font-size: var(--t-sm);
  text-decoration: none; color: var(--ink); align-self: flex-start;
  display: inline-flex; align-items: center; gap: .4rem;
}
.card__link::after {
  content: "\2192"; transition: transform var(--med) var(--ease); display: inline-block;
}
.card:hover .card__link::after, .card__link:hover::after { transform: translateX(4px); }
.card__link span {
  border-bottom: 1px solid var(--line-2); padding-bottom: 2px;
  transition: border-color var(--fast);
}
.card:hover .card__link span { border-bottom-color: var(--ink); }

/* ---------- Split content (service pages) ---------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem); align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img { width: 100%; object-fit: cover; background: var(--line); border-radius: var(--r); }

.checks { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.checks li {
  position: relative; padding: .55rem 0 .55rem 1.85rem;
  border-bottom: 1px solid var(--line); max-width: var(--readable);
}
.checks li:last-child { border-bottom: 0; }
.checks li::before {
  content: ""; position: absolute; left: 2px; top: 1.05em;
  width: 9px; height: 5px;
  border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}
.band--dark .checks li { border-bottom-color: var(--line-d); }
.band--dark .checks li::before { border-color: var(--paper-up); }

.pricebox {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--paper-up); color: var(--ink); padding: 1.5rem;
}
.pricebox h3 { font-size: var(--t-md); }
.pricebox dl { margin: 1.1rem 0 0; }
.pricebox dt { font-weight: 600; font-size: var(--t-sm); }
.pricebox dd {
  margin: .15rem 0 .9rem; color: var(--mute-l); font-size: var(--t-sm);
  font-variant-numeric: tabular-nums;
}
.pricebox dd:last-of-type { margin-bottom: 0; }
.pricebox .note {
  margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
  font-size: var(--t-xs); color: var(--mute-l);
}

/* ---------- Service area ---------- */
.towns { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.towns li {
  border: 1px solid var(--line); background: var(--paper-up);
  padding: .45rem .8rem; border-radius: var(--r);
  font-size: var(--t-sm); color: var(--mute-l);
}
.band--dark .towns li { background: transparent; border-color: var(--line-d); color: var(--mute-d); }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 800px) { .quotes { grid-template-columns: 1fr; } }
.quote { margin: 0; }
.quote blockquote {
  margin: 0; font-size: var(--t-md); line-height: 1.55; color: var(--paper);
}
.quote figcaption {
  margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line-d);
  font-size: var(--t-sm); color: var(--mute-d); font-weight: 600;
}
.band:not(.band--dark) .quote blockquote { color: var(--ink); }
.band:not(.band--dark) .quote figcaption { border-top-color: var(--line); color: var(--mute-l); }

/* ---------- Gallery ----------
   A plain photo grid. No captions on the tiles or in the lightbox, only the
   image, so it reads as a body of work rather than a labeled catalog. */
.grid-shots {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 4px;
}
.shot {
  margin: 0; padding: 0; border: 0; background: none; cursor: zoom-in;
  display: block; width: 100%; text-align: left; font: inherit; color: inherit;
  border-radius: var(--r);
}
.shot__frame { display: block; overflow: hidden; border-radius: var(--r); background: var(--line); }
.shot img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .5s var(--ease);
}
.shot:hover img { transform: scale(1.04); }

dialog.lightbox {
  border: 0; padding: 0; background: transparent; max-width: min(94vw, 1100px); max-height: 92vh;
}
dialog.lightbox::backdrop { background: rgba(14, 15, 16, .94); }
dialog.lightbox img { max-height: 92vh; width: auto; margin-inline: auto; border-radius: var(--r); display: block; }
dialog.lightbox .lb-close {
  position: absolute; top: -2.6rem; right: 0;
  background: var(--paper-up); color: var(--ink);
  border: 0; font-weight: 600; font-size: var(--t-sm);
  padding: .45rem .85rem; cursor: pointer; border-radius: var(--r);
}

/* ---------- Form ---------- */
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 640px; }
.formgrid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .formgrid { grid-template-columns: 1fr; } }
label { display: block; font-size: var(--t-sm); font-weight: 600; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; font: inherit; font-size: var(--t-sm);
  padding: .75rem .8rem; border: 1px solid var(--line-2); border-radius: var(--r);
  background: var(--paper-up); color: var(--ink);
  transition: border-color var(--fast), box-shadow var(--fast);
}
textarea { min-height: 130px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #b9b9b4; }
input:focus, select:focus, textarea:focus {
  border-color: var(--ink); box-shadow: 0 0 0 3px rgba(23, 24, 26, .08);
}
/* Text fields match :focus-visible on a plain mouse click, so the hi-vis ring
   would fire every time someone taps the form. The ink border and halo above
   are the focus indicator here instead. */
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }
.hp { position: absolute; left: -9999px; }
.formnote { font-size: var(--t-xs); color: var(--mute-l); margin-top: .9rem; }
.formstatus { margin-top: 1rem; font-weight: 600; font-size: var(--t-sm); }
.formstatus[data-state="err"] { color: var(--err); }
.formstatus[data-state="ok"] { color: var(--ok); }

/* ---------- Contact rail ---------- */
.rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 820px) { .rail { grid-template-columns: 1fr; } }
.rail h3 {
  font-family: var(--text); font-size: .6875rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--mute-l);
  margin-bottom: .55rem;
}
.rail a { color: inherit; }
.rail .big {
  font-family: var(--display); font-weight: 800;
  font-size: var(--t-lg); text-decoration: none; letter-spacing: -0.02em;
  display: inline-block;
}
.rail .big:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink); color: var(--mute-d);
  padding-block: 3.5rem 2rem; font-size: var(--t-sm);
}
.foot__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem 2rem; }
@media (max-width: 820px) { .foot__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__cols { grid-template-columns: 1fr; } }
.foot h4 {
  font-family: var(--text); font-size: .6875rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--paper-up);
  margin-bottom: .9rem;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { padding: .24rem 0; }
.foot a { color: var(--mute-d); text-decoration: none; transition: color var(--fast); }
.foot a:hover { color: var(--paper-up); }
.foot__base {
  margin-top: 2.75rem; padding-top: 1.4rem; border-top: 1px solid var(--line-d);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; font-size: var(--t-xs);
}
.social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social a {
  width: 36px; height: 36px; border: 1px solid var(--line-d);
  border-radius: var(--r); display: grid; place-items: center;
  transition: border-color var(--fast), color var(--fast);
}
.social a:hover { border-color: var(--paper-up); color: var(--paper-up); }
.social svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 760px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; inset: auto 0 0; z-index: 120;
    background: var(--line-d); border-top: 1px solid var(--line-d);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .callbar a {
    padding: .95rem .5rem; text-align: center; text-decoration: none;
    font-weight: 600; font-size: var(--t-sm);
  }
  .callbar .c1 { background: var(--paper-up); color: var(--ink); }
  .callbar .c2 { background: var(--ink); color: var(--paper); }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Interior page header ----------
   A label, not a second hero: short on height, plain in tone. */
.phead {
  background: var(--ink); color: var(--paper);
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
}
.phead h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem); color: var(--paper-up);
  max-width: 26ch;
}
.phead p:not(.crumbs):not(.eyebrow) {
  margin-top: .6rem; color: var(--mute-d); font-size: var(--t-base); max-width: 56ch;
}
.crumbs { font-size: var(--t-xs); color: var(--mute-d); margin-bottom: 1.1rem; letter-spacing: .01em; }
.crumbs a { color: var(--mute-d); text-decoration: none; }
.crumbs a:hover { color: var(--paper-up); }

/* ---------- Prose ---------- */
.prose h2 { font-size: var(--t-xl); margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--t-md); margin-top: 1.8rem; }
.prose p { margin-top: .9rem; }
.prose > p:first-child { margin-top: 0; }

.faq { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 1.05rem 0; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color var(--fast);
}
.faq summary:hover { color: var(--mute-l); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 9px; height: 9px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--med) var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq p { padding-bottom: 1.1rem; margin: 0; color: var(--mute-l); }
.band--dark .faq { border-top-color: var(--line-d); }
.band--dark .faq details { border-bottom-color: var(--line-d); }
.band--dark .faq summary:hover { color: var(--mute-d); }
.band--dark .faq p { color: var(--mute-d); }
