/* DELUXE PAVING — site2 — Editorial Contractor (clean rebuild)
   Built to ~/.claude/skills/build-website/SKILL.md rules:
   - Multi-page (7 pages); each page contains its own content only
   - No aggregator home — Home is hero + thin footer, nothing else
   - Two-tier navbar (utility-bar + sticky main-bar)
   - Thin single-row footer (~50px)
   - Each page fits roughly 1 viewport
   - CSS-only hamburger (sibling selector targets .bar, not .bar-inner)
   - Roboto Slab (slab serif display) + Inter (sans body) + JetBrains Mono (labels)
   - White + near-black + signal red (no purple, no warm cream) */

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  font-family: 'JetBrains 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(--signal); outline-offset: 2px; }
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 {
  --paper:     oklch(0.98 0.005 25);   /* warm-tinted near-white, hue toward signal red */
  --white:     oklch(0.99 0.004 25);   /* not pure #fff */
  --ink:       oklch(0.16 0.012 25);   /* warm-tinted near-black */
  --ink-2:     oklch(0.22 0.012 25);
  --ink-soft:  oklch(0.35 0.010 25);
  --gray:      oklch(0.50 0.008 25);
  --gray-soft: oklch(0.65 0.006 25);
  --rule:      oklch(0.91 0.005 25);
  --rule-deep: oklch(0.82 0.005 25);
  --signal:    oklch(0.62 0.21 25);    /* signal red, OKLCH */
  --signal-dark: oklch(0.48 0.20 25);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', 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: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
}
.eyebrow.gray { color: var(--gray); }

.h-display {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.024em;
  color: var(--ink);
  white-space: nowrap;
}
.h-display .accent { color: var(--signal); }

@media (max-width: 560px) {
  .h-display { white-space: normal; word-break: keep-all; hyphens: none; font-size: clamp(36px, 9vw, 54px); }
}

.h-section {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.lead {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}

p { color: var(--ink-soft); }
p + p { margin-top: 0.9em; }

/* ---------- Layout primitives ---------- */

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- TIER 1 · Utility bar ---------- */

.utility-bar {
  background: var(--ink);
  color: var(--gray-soft);
}
.utility-bar-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.utility-bar-inner .left { color: var(--gray); }
.utility-bar-inner .right { display: flex; align-items: center; }
.utility-bar-inner .right span {
  color: var(--gray-soft);
  padding: 0 16px;
}
.utility-bar-inner .right span + span {
  border-left: 1px solid rgba(255,255,255,0.14);
}
.utility-bar-inner .right span:last-child { padding-right: 0; }
.utility-bar-inner .right .accent { color: var(--signal); }

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
  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 toggle (placed BEFORE .bar so .bar is a sibling) ---------- */

.mobile-toggle {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.mobile-burger {
  display: none;
  cursor: pointer;
  padding: 12px;
  margin-right: -10px;
}
.mobile-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  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);
}

/* ---------- TIER 2 · Main bar ---------- */

.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.bar-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 18px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  color: var(--white);
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 2px;
  background: var(--signal);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand-text .name {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.014em;
  color: var(--ink);
}
.brand-text .stamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}
.nav a {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2);
  padding: 12px 14px;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.15s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--ink); font-weight: 700; }
.nav a.active::after { transform: scaleX(1); }

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.18s;
}
.phone-btn::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--signal);
}
.phone-btn:hover { background: var(--signal); }
.phone-btn:hover::before { background: var(--white); }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  background: var(--ink);
  color: var(--white);
  transition: background 0.18s;
}
.btn::after { content: "→"; transition: transform 0.18s; }
.btn:hover { background: var(--signal); }
.btn:hover::after { transform: translateX(4px); }

.btn.signal { background: var(--signal); }
.btn.signal:hover { background: var(--ink); }
.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 14.5px 26.5px;
}
.btn.outline:hover { background: var(--ink); color: var(--white); }

/* ---------- HERO (Home only — full viewport minus chrome) ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: calc(100vh - 130px);
  background: var(--paper);
}
.hero-left {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  max-width: 760px;
  margin-left: auto;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.hero-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--signal);
  color: var(--white);
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.page-head {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--rule);
}
.page-head .eyebrow { display: block; margin-bottom: 14px; }
.page-head h1 { margin-bottom: 14px; }

/* ---------- SERVICES — project card grid ---------- */

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 0;
}
.proj {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  transition: border-color 0.18s, transform 0.18s;
}
.proj:hover { border-color: var(--ink); transform: translateY(-2px); }
.proj .photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.proj .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.proj:hover .photo img { transform: scale(1.04); }
.proj .photo .num {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.proj:hover .photo .num { background: var(--signal); }
.proj .body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.proj h3 {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.proj p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}
.proj .tags {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.proj .tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 3px 9px;
  border: 1px solid var(--rule);
}

/* ---------- ABOUT — editorial + creds ---------- */

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0;
}
.editorial .text .eyebrow { display: block; margin-bottom: 14px; }
.editorial .text h2 { margin-bottom: 20px; }
.editorial .photo {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.editorial .photo img { width: 100%; height: 100%; object-fit: cover; }
.editorial .photo .tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--ink);
  padding: 6px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.creds {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.creds .cell {
  padding: 18px 16px;
  border-right: 1px solid var(--rule);
}
.creds .cell:last-child { border-right: 0; }
.creds .cell .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--signal);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.creds .cell h4 {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin-bottom: 4px;
}
.creds .cell p { font-size: 12px; line-height: 1.5; color: var(--gray); }

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

.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 0;
}
.review {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.review::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 3px;
  background: var(--signal);
}
.review .stars {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--signal);
  text-transform: uppercase;
}
.review blockquote {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.review .attrib {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
.review .attrib .where {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  color: var(--gray);
  margin-top: 6px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.review-empty {
  background: var(--paper);
  border: 1px dashed var(--rule-deep);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.review-empty h4 {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.014em;
  color: var(--ink-2);
}
.review-empty p { color: var(--gray); font-size: 14px; }

/* ---------- FORMS (Estimates / Schedule / Contact) ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  padding: 40px 0;
}
.form .field { margin-bottom: 18px; }
.form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--ink); }
.form textarea { min-height: 110px; resize: vertical; }
.form button { margin-top: 6px; }

.aside-card {
  background: var(--ink);
  color: var(--white);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: start;
  position: relative;
}
.aside-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px;
  height: 3px;
  background: var(--signal);
}
.aside-card .block .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 8px;
}
.aside-card .block .val {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.014em;
  color: var(--white);
}
.aside-card .block .sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--gray-soft);
  line-height: 1.5;
}

/* ---------- 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(--rule);
  transition: transform 0.18s, border-color 0.18s;
}
.gallery a.shot:hover { border-color: var(--ink); 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,10,10,0.85));
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

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

/* (sticky bottom CTA + scroll-to-top FAB removed: build-website anti-pattern bans) */

/* ---------- FOOTER (thin single row) ---------- */

.foot {
  background: var(--ink);
  color: var(--gray-soft);
  padding: 14px 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-inner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 28px;
}
.foot-inner a { color: var(--gray-soft); }
.foot-inner a:hover { color: var(--white); }
.foot-inner .dot { color: var(--signal); margin: 0 4px; }

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .wrap { padding: 0 28px; }
  .bar-inner { padding: 14px 28px; gap: 16px; }
  .utility-bar-inner { padding: 8px 28px; }
  .foot { padding: 14px 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px 28px; max-width: 100%; margin-left: 0; }
  .hero-right { aspect-ratio: 4 / 3; }
  .projects { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; gap: 32px; }
  .reviews { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
  .creds { grid-template-columns: 1fr 1fr 1fr; }
  .creds .cell:nth-child(3n) { border-right: 0; }
  .creds .cell:nth-child(n+4) { border-top: 1px solid var(--rule); }
}

@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-mark { width: 36px; height: 36px; font-size: 15px; }
  .brand-text { display: none; }
  .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(--paper);
    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: 16px;
    border-bottom: 1px solid var(--rule);
  }
  .nav a:last-of-type { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav a.active { background: var(--ink); color: var(--white); }
  .nav-mobile-phone {
    display: block;
    background: var(--signal);
    color: var(--white);
    padding: 16px 24px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .nav-mobile-phone:hover { background: var(--ink); color: var(--white); }
  .projects { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .creds .cell { border-right: 0 !important; border-bottom: 1px solid var(--rule); }
  .creds .cell:last-child { border-bottom: 0; }
  .form .field-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .brand-text { display: none; }
}
