/* DELUXE PAVING — site3 — Photo-led Documentary (rebuild #2 with spine layout)
   Structural changes to differentiate from site1 (work-truck) and site2 (editorial):
   - SPINE column on left (CSS grid, not fixed position — fixes overlap)
     spine holds: file number marker, vertical brand wordmark, section count
   - Asymmetric hero: typographic composition with offset lines over photo
   - Services as a MAGAZINE SPREAD (lead photo + 2-col text), not alternating rows
   - Forms with offset photo column

   Impeccable v3 laws still applied: OKLCH neutrals, no #000/#fff, Committed cyan,
   no side-stripe borders >1px, no em-dashes. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

:root {
  --ink:        oklch(0.10 0.012 220);
  --ink-2:      oklch(0.16 0.012 220);
  --ink-3:      oklch(0.22 0.010 220);
  --bone:       oklch(0.94 0.010 75);
  --bone-soft:  oklch(0.94 0.010 75 / 0.72);
  --bone-dim:   oklch(0.94 0.010 75 / 0.55);
  --rule:       oklch(0.94 0.010 75 / 0.14);
  --cyan:       oklch(0.78 0.13 220);
  --cyan-soft:  oklch(0.78 0.13 220 / 0.7);
  --spine-w:    96px;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Typography ---------- */

.eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow.dim { color: var(--bone-dim); }

.h-display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 7.5vw, 116px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--bone);
  text-transform: uppercase;
  text-wrap: balance;
}
.h-display .accent { color: var(--cyan); }

.h-section {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

.lead {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--bone-soft);
  max-width: 60ch;
}
p { color: var(--bone-soft); }
p + p { margin-top: 1em; }

/* ---------- Utility bar ---------- */

.utility-bar {
  background: var(--ink-2);
  color: var(--bone-soft);
  border-bottom: 1px solid var(--rule);
}
.utility-bar-inner {
  max-width: 100%;
  padding: 8px 48px 8px calc(var(--spine-w) + 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.utility-bar-inner .left { color: var(--bone-dim); }
.utility-bar-inner .right { display: flex; align-items: center; }
.utility-bar-inner .right span { padding: 0 16px; color: var(--bone-soft); }
.utility-bar-inner .right span + span { border-left: 1px solid var(--rule); }
.utility-bar-inner .right span:last-child { padding-right: 0; }
.utility-bar-inner .right .accent { color: var(--cyan); }

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 241, 233, 0.25);
  margin-right: 8px;
  vertical-align: middle;
}
.status-dot.is-open {
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
  animation: pulse-open 2s ease-in-out infinite;
}
@keyframes pulse-open {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2); }
  50% { box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.06); }
}

/* ---------- Hamburger ---------- */

.mobile-toggle { position: absolute; left: -9999px; opacity: 0; }
.mobile-burger { display: none; cursor: pointer; padding: 12px; }
.mobile-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bone);
  margin: 5px 0;
  transition: transform 0.18s, opacity 0.18s;
}
.mobile-toggle:checked ~ .bar .mobile-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle:checked ~ .bar .mobile-burger span:nth-child(2) { opacity: 0; }
.mobile-toggle:checked ~ .bar .mobile-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Main bar ---------- */

.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.bar-inner {
  padding: 18px 48px 18px calc(var(--spine-w) + 32px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bone);
}
.brand-stack {
  display: flex;
  flex-direction: column;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-stack .stripe { display: block; width: 28px; height: 3px; background: var(--cyan); margin: 2px 0; }

.nav { display: flex; justify-content: center; gap: 4px; }
.nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  color: var(--bone-soft);
  padding: 12px 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.15s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.nav a:hover { color: var(--bone); }
.nav a.active { color: var(--bone); }
.nav a.active::after { transform: scaleX(1); }

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--ink);
  padding: 12px 22px;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.18s;
}
.phone-btn:hover { background: var(--bone); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--ink);
  transition: background 0.2s;
}
.btn::after { content: "→"; transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover { background: var(--bone); }
.btn:hover::after { transform: translateX(6px); }
.btn.outline {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid var(--bone-dim);
  padding: 14.5px 30.5px;
}
.btn.outline:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* ============================================================
   SPINE LAYOUT — left column reserves space, content offsets right.
   This is the structural difference from site1/site2.
   ============================================================ */

.frame {
  display: grid;
  grid-template-columns: var(--spine-w) 1fr;
  align-items: stretch;
}

.spine {
  background: var(--ink-2);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  position: sticky;
  top: 0;
  height: 100vh;
}
.spine .file {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.spine .mark {
  writing-mode: vertical-rl;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bone);
  transform: rotate(180deg);
}
.spine .mark .accent { color: var(--cyan); }
.spine .index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.frame .content { min-width: 0; }

/* ---------- HERO: asymmetric typographic composition ---------- */

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.9);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, oklch(0.10 0.012 220 / 0.92) 0%, oklch(0.10 0.012 220 / 0.5) 60%, oklch(0.10 0.012 220 / 0.2) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 56px 96px;
  min-height: calc(100vh - 130px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
}
.hero-eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero-eyebrow-row .meta { color: var(--bone-dim); }

/* Poetic offset typography composition — indent kept small enough that no line wraps */
.poem {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  white-space: nowrap;
}
.poem .line { display: block; white-space: nowrap; }
.poem .l1 { text-align: left; }
.poem .l2 { text-align: left; padding-left: 3vw; }
.poem .l3 { text-align: left; padding-left: 6vw; color: var(--cyan); }

@media (max-width: 720px) {
  .poem, .poem .line { white-space: normal; }
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stamp {
  padding: 14px 18px;
  border: 1px solid var(--cyan);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  background: oklch(0.10 0.012 220 / 0.6);
}
.hero-stamp .row { display: flex; gap: 14px; }
.hero-stamp .row + .row { margin-top: 6px; }
.hero-stamp .lbl { color: var(--cyan); }

/* ---------- PAGE HEAD (interior) ---------- */

.page-head {
  padding: 64px 56px 48px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.page-head .head-text .eyebrow { display: block; margin-bottom: 14px; }
.page-head h1 { margin-bottom: 14px; max-width: 16ch; }
.page-head .head-text .lead { margin: 0; }
.page-head .head-meta {
  text-align: right;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  line-height: 1.7;
}
.page-head .head-meta .accent { color: var(--cyan); }

/* ============================================================
   SERVICES — magazine spread: one big lead photo + 2-col text below
   Structurally different from site2's 3-up card grid AND from earlier
   alternating photo-rows.
   ============================================================ */

.svc-lead {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.svc-lead img {
  width: 100%; height: 100%; min-height: 460px;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.92);
  position: absolute; inset: 0;
}
.svc-lead .stamp {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 8px 12px;
  border: 1px solid var(--cyan);
  background: oklch(0.10 0.012 220 / 0.7);
}
.svc-lead .pin {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  max-width: 20ch;
}
.svc-lead .pin .accent { color: var(--cyan); }

.svc-columns {
  padding: 56px 56px 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
  border-bottom: 1px solid var(--rule);
}
.svc-col {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.svc-col .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.svc-col h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 0.95;
}
.svc-col p { font-size: 15px; color: var(--bone-soft); line-height: 1.5; max-width: 36ch; }
.svc-col .tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.svc-col .tags span { padding: 3px 8px; border: 1px solid var(--rule); }

/* ============================================================
   ABOUT — offset photo (breaks out left) + narrow text rail right
   ============================================================ */

.about-frame {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.about-photo-col {
  position: relative;
  min-height: 540px;
  background: var(--ink-2);
}
.about-photo-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.92);
}
.about-photo-col .stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 8px 12px;
  border: 1px solid var(--cyan);
  background: oklch(0.10 0.012 220 / 0.7);
}
.about-text-rail {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 56ch;
}
.about-text-rail h2 { margin-bottom: 8px; }

.creds-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--rule);
}
.creds-row .cell { padding: 32px 24px; border-right: 1px solid var(--rule); }
.creds-row .cell:last-child { border-right: 0; }
.creds-row .cell .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.creds-row .cell h4 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 6px;
}
.creds-row .cell p { font-size: 13px; line-height: 1.5; color: var(--bone-dim); }

/* ---------- REVIEWS ---------- */

.review-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.review-frame .bg { position: absolute; inset: 0; z-index: 0; }
.review-frame .bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.85);
}
.review-frame .inner {
  position: relative;
  z-index: 1;
  padding: 72px 56px;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review-frame .stars {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
}
.review-frame blockquote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  max-width: 22ch;
}
.review-frame blockquote::before { content: "\201C"; color: var(--cyan); }
.review-frame blockquote::after  { content: "\201D"; color: var(--cyan); }
.review-frame .attrib {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--bone-soft);
  text-transform: uppercase;
}
.review-frame .attrib .name { color: var(--cyan); }

.review-empty {
  padding: 56px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-empty h4 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.review-empty p { color: var(--bone-dim); }

/* ---------- FORMS: photo column LEFT, form RIGHT ---------- */

.form-frame {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.form-photo-col {
  position: relative;
  background: var(--ink-2);
  min-height: 600px;
}
.form-photo-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.85);
}
.form-photo-col .stamp {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 8px 12px;
  border: 1px solid var(--cyan);
  background: oklch(0.10 0.012 220 / 0.7);
}
.form-photo-col .floating {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-photo-col .floating .block {
  border-left: 1px solid var(--cyan);
  padding-left: 14px;
}
.form-photo-col .floating .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.form-photo-col .floating .val {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
}
.form-photo-col .floating .sub {
  font-size: 12px;
  color: var(--bone-dim);
  margin-top: 4px;
}

.form-body {
  padding: 64px 56px;
}
.form .field { margin-bottom: 18px; }
.form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--ink-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--bone);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--cyan); }
.form textarea { min-height: 110px; resize: vertical; }
.form button { margin-top: 6px; }

/* ---------- SMS BUTTON ---------- */

.sms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--cyan-soft);
  color: var(--bone);
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.sms-btn:hover { background: var(--cyan); color: var(--ink); }
.sms-btn svg { width: 16px; height: 16px; }
.nav-cta-group { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- SKIP LINK ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--cyan);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 16px; outline: 2px solid var(--cyan); outline-offset: 2px; }

/* ---------- GALLERY (Past Work) ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 40px 0;
}
.gallery a.shot {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--cyan-soft);
  transition: transform 0.18s, border-color 0.18s;
}
.gallery a.shot:hover { border-color: var(--cyan); transform: translateY(-2px); }
.gallery a.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery a.shot:hover img { transform: scale(1.04); }
.gallery a.shot .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(10,12,16,0.9));
  color: var(--bone);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.gallery a.shot .caption .accent { color: var(--cyan); margin-right: 6px; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10,12,16,0.95);
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox:target { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border: 1px solid var(--cyan); }
.lightbox .close {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--bone);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--cyan-soft);
}
.lightbox .close:hover { border-color: var(--cyan); color: var(--cyan); }

@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}


/* (scroll-to-top FAB removed: build-website anti-pattern ban) */

/* ---------- FOOTER ---------- */

.foot {
  background: var(--ink-2);
  color: var(--bone-dim);
  padding: 14px 48px 14px calc(var(--spine-w) + 32px);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-top: 1px solid var(--rule);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 28px;
}
.foot-inner a { color: var(--bone-soft); }
.foot-inner a:hover { color: var(--cyan); }
.foot-inner .dot { color: var(--cyan); margin: 0 4px; }

/* ============================================================
   Responsive: spine collapses below 980px
   ============================================================ */

@media (max-width: 980px) {
  :root { --spine-w: 0px; }
  .frame { grid-template-columns: 1fr; }
  .spine { display: none; }
  .utility-bar-inner { padding: 8px 24px; }
  .bar-inner { padding: 14px 24px; gap: 16px; }
  .hero-inner { padding: 56px 24px 64px; }
  .page-head { padding: 56px 24px 40px; grid-template-columns: 1fr; gap: 16px; }
  .page-head .head-meta { text-align: left; }
  .poem .l1, .poem .l2, .poem .l3 { padding-left: 0; }
  .svc-columns { padding: 40px 24px 48px; grid-template-columns: 1fr; gap: 32px; }
  .about-frame { grid-template-columns: 1fr; }
  .about-photo-col { min-height: 360px; }
  .about-text-rail { padding: 40px 24px; }
  .creds-row { grid-template-columns: 1fr 1fr 1fr; }
  .creds-row .cell:nth-child(3n) { border-right: 0; }
  .creds-row .cell:nth-child(n+4) { border-top: 1px solid var(--rule); }
  .review-frame .inner { padding: 56px 24px; }
  .review-empty { padding: 40px 24px; }
  .form-frame { grid-template-columns: 1fr; }
  .form-photo-col { min-height: 280px; }
  .form-photo-col .floating { display: none; }
  .form-body { padding: 40px 24px; }
  .foot { padding: 14px 24px; }
}

@media (max-width: 720px) {
  .utility-bar { display: none; }
  .bar { position: relative; }
  .bar-inner {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
  }
  .brand { margin-right: auto; min-width: 0; flex-shrink: 1; }
  .brand-stack { font-size: 16px; }
  .brand-stack .stripe { width: 20px; }
  .phone-btn { padding: 8px 10px; font-size: 11px; flex-shrink: 0; }
  .sms-btn { display: none; }
  .mobile-burger { display: block; flex-shrink: 0; padding: 8px; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 8px 0;
    z-index: 60;
  }
  .mobile-toggle:checked ~ .bar .nav { display: flex; }
  .nav a {
    padding: 14px 24px;
    font-size: 14px;
    border-bottom: 1px solid var(--rule);
  }
  .nav a:last-of-type { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav a.active { background: var(--cyan); color: var(--ink); }
  .nav-mobile-phone {
    display: block;
    background: var(--cyan);
    color: var(--ink);
    padding: 16px 24px;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
  }
  .creds-row { grid-template-columns: 1fr; }
  .creds-row .cell { border-right: 0 !important; border-bottom: 1px solid var(--rule); }
  .creds-row .cell:last-child { border-bottom: 0; }
  .form .field-row { grid-template-columns: 1fr; gap: 0; }
}
