/* Siteward contractor portal — lifted from getsiteward.com/index.html design
 * tokens (forest/sage/mint palette, Inter, rounded soft-shadowed cards) and
 * extended with portal-specific layouts. */

:root {
  --paper: #F6FBF7;
  --surface: #FFFFFF;
  --mint: #D8F3DC;
  --mint-soft: #ECF8EE;
  --ink: #1A2E22;
  --ink-soft: #4A5E52;
  --forest-deep: #0B3D2E;
  --forest: #1B5E3F;
  --sage: #52B788;
  --warning: #E08A1F;
  --warning-soft: #FCEFD9;
  --danger: #B5371D;
  --danger-soft: #FBE1DA;
  --neutral: #D7DEDB;
  --neutral-soft: #ECF0EE;
  --shadow-sm: 0 1px 2px rgba(11, 61, 46, 0.05), 0 1px 3px rgba(11, 61, 46, 0.04);
  --shadow-md: 0 4px 12px rgba(11, 61, 46, 0.06), 0 2px 4px rgba(11, 61, 46, 0.04);
  --shadow-lg: 0 20px 50px rgba(11, 61, 46, 0.12), 0 6px 16px rgba(11, 61, 46, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--forest-deep); }
h1, h2, h3, h4 { color: var(--forest-deep); margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.005em; }
p  { margin: 0; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 251, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(11, 61, 46, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.brand .mark { width: 36px; height: 36px; flex: none; }
.nav-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.nav-meta .user-email { font-weight: 500; color: var(--forest-deep); }
/* Units radio cards on /settings */
.units-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) {
  .units-options { grid-template-columns: 1fr; }
}
.units-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.units-option:hover { border-color: var(--forest); }
.units-option.is-selected {
  border-color: var(--forest);
  background: var(--mint-soft);
}
.units-option input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--forest);
  flex: none;
}
.units-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.units-option-text strong { color: var(--forest-deep); }

/* Settings page */
.pref-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(11, 61, 46, 0.06);
}
.pref-row:first-of-type { border-top: none; padding-top: 0; }
.pref-row input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
  flex: none;
}
.pref-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
}
.pref-text strong { color: var(--forest-deep); }
.pref-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.callout {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.callout-ok {
  background: var(--mint-soft);
  color: var(--forest-deep);
  border: 1px solid var(--mint);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
  color: var(--forest-deep);
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-deep); color: #fff; }
.btn-secondary { background: var(--mint); color: var(--forest); }
.btn-secondary:hover { background: #C5EBC9; color: var(--forest-deep); }
.btn-ghost { background: transparent; color: var(--forest-deep); }
.btn-ghost:hover { background: rgba(11, 61, 46, 0.06); }
.btn-danger { background: var(--danger-soft); color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-sm { padding: 7px 12px; font-size: 0.84rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* ---------- Main layout ---------- */
main { padding: 32px 0 80px; }
.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.page-header p { margin-top: 6px; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid rgba(11, 61, 46, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.card + .card { margin-top: 16px; }
.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Login ---------- */
.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(82, 183, 136, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 100%, rgba(216, 243, 220, 0.6), transparent 60%),
    var(--paper);
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.auth-card .brand {
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 1.25rem;
}
.auth-card .brand .mark { width: 40px; height: 40px; }
.auth-card h1 { font-size: 1.65rem; margin-bottom: 14px; text-align: center; }
.auth-card .sub {
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input[type="email"], .field input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral);
  background: var(--paper);
  font-family: inherit;
  color: var(--ink);
}
.field input:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
  border-color: var(--forest);
  background: #fff;
}
.auth-hint {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-align: center;
}
.auth-back {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 500;
}
.auth-back:hover { color: var(--forest-deep); }

/* ---------- Filter chips ---------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(11, 61, 46, 0.08);
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration: none;
}
.chip:hover { color: var(--forest-deep); border-color: var(--forest); }
.chip.is-active {
  background: var(--forest-deep);
  color: #fff;
  border-color: var(--forest-deep);
}
.chip-count {
  background: rgba(11, 61, 46, 0.08);
  color: var(--forest-deep);
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}
.chip.is-active .chip-count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ---------- RfQ list ---------- */
.rfq-list { display: grid; gap: 12px; }
.rfq-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  background: var(--surface);
  border: 1px solid rgba(11, 61, 46, 0.06);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.18s ease;
  color: var(--ink);
}
.rfq-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
/* Stretched-link pattern: the title's anchor becomes a transparent overlay
   covering the entire card, so any click on the card navigates. Explicit
   form buttons sit above via z-index. */
.rfq-card-title {
  margin: 0 0 4px;
  color: var(--forest-deep);
  font-size: 1.1rem;
}
.rfq-card-title a {
  color: inherit;
  text-decoration: none;
}
.rfq-card-title a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.rfq-card form, .rfq-card .rfq-card-hide {
  position: relative;
  z-index: 2;
}
.rfq-card-desc {
  font-size: 0.92rem;
  color: var(--ink);
  margin-top: 2px;
}
.rfq-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.rfq-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.rfq-card-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 130px;
}
.rfq-card-time { font-size: 0.78rem; color: var(--ink-soft); }
.rfq-card-hide { margin-top: 4px; }
.rfq-empty {
  background: var(--surface);
  border: 1px dashed rgba(11, 61, 46, 0.15);
  border-radius: var(--radius-md);
  padding: 48px 24px;
  text-align: center;
}
.rfq-empty p { margin-top: 8px; }

/* Hidden-view affordance in the page header. */
.hidden-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: var(--mint-soft);
  color: var(--forest-deep);
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid rgba(11, 61, 46, 0.08);
}
.hidden-link:hover { background: var(--mint); color: var(--forest-deep); }

/* Back link used on the hidden list + detail pages. */
.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 12px;
  text-decoration: none;
}
.back:hover { color: var(--forest); }

/* ---------- Status pill ---------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.status-pill.s-new       { background: var(--mint-soft); color: var(--sage); }
.status-pill.s-accepted  { background: var(--mint);      color: var(--forest); }
.status-pill.s-scheduled { background: var(--mint);      color: var(--forest-deep); }
.status-pill.s-completed { background: var(--neutral-soft); color: var(--forest-deep); }
.status-pill.s-declined  { background: var(--neutral-soft); color: var(--ink-soft); }
.status-pill.s-external  { background: var(--warning-soft); color: var(--warning); }
.status-pill.s-withdrawn { background: var(--neutral-soft); color: var(--ink-soft); text-decoration: line-through; }

/* ---------- Detail page ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: flex-start;
}
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.detail-header .back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.detail-header .back:hover { color: var(--forest); }
.kv {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px 14px;
  font-size: 0.9rem;
}
.kv dt { color: var(--ink-soft); font-weight: 500; }
.kv dd { margin: 0; color: var(--ink); word-break: break-word; }
.kv dd a { color: var(--forest); }

.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.budget-chip {
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  background: var(--mint-soft);
}
.budget-chip h4 { color: var(--forest-deep); margin-bottom: 2px; }
.budget-chip p { font-size: 0.85rem; }
.budget-chip .tier-label {
  display: inline-block;
  background: var(--surface);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.photo-tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--neutral-soft);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-tile .photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 10px 8px;
  background: linear-gradient(to top, rgba(11, 61, 46, 0.72), transparent);
  color: #fff;
  font-size: 0.78rem;
  text-align: left;
}

dialog.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: min(95vw, 1200px);
  max-height: 92vh;
}
dialog.lightbox::backdrop {
  background: rgba(11, 61, 46, 0.85);
  backdrop-filter: blur(4px);
}
dialog.lightbox img { width: 100%; height: auto; max-height: 88vh; object-fit: contain; border-radius: var(--radius-md); }
dialog.lightbox .lightbox-close {
  position: absolute; top: -40px; right: 0;
  background: transparent; color: #fff; border: none; font-size: 1.5rem; cursor: pointer;
}

.media-block { margin-top: 16px; }
.media-block video, .media-block audio { width: 100%; border-radius: var(--radius-sm); background: #000; }
.media-block audio { background: var(--neutral-soft); }
.media-caption {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Spatial blocks ---------- */
.lidar-room { margin-bottom: 24px; }
.lidar-room:last-child { margin-bottom: 0; }
.lidar-canvas {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--radius-md);
  background: var(--mint-soft);
  overflow: hidden;
  touch-action: none; /* OrbitControls handles its own gestures */
}
.lidar-canvas-status {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  pointer-events: none;
}
.lidar-canvas-status.is-error {
  color: var(--warning);
  padding: 0 20px;
  text-align: center;
}
.lidar-overlay {
  position: absolute;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-deep);
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 8px;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 1px 4px rgba(11, 61, 46, 0.12);
  max-width: calc(100% - 24px);
}
.lidar-overlay-extents { top: 12px; }
.lidar-overlay-measure {
  bottom: 12px;
  background: rgba(11, 61, 46, 0.92);
  color: #fff;
}
.lidar-actions { margin-top: 12px; }
.lidar-blurb {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.5;
}
.lidar-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lidar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.lidar-meta strong { color: var(--forest-deep); font-weight: 600; }
@media (max-width: 600px) {
  .lidar-canvas { height: 320px; }
  .lidar-buttons { width: 100%; }
  .lidar-buttons .btn { flex: 1; }
}

.manual-svg-figure {
  margin: 0 0 16px;
  background: var(--surface);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
}
.manual-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
}
.manual-svg-room-label {
  fill: var(--forest-deep);
  font-weight: 600;
  font-family: inherit;
  paint-order: stroke;
  stroke: var(--surface);
  stroke-width: 0.04;
  stroke-linejoin: round;
}
.manual-svg-measure {
  fill: var(--ink-soft);
  font-family: inherit;
  paint-order: stroke;
  stroke: var(--surface);
  stroke-width: 0.04;
  stroke-linejoin: round;
}
.manual-svg-conn-label {
  fill: var(--forest);
  font-family: inherit;
  font-weight: 500;
  paint-order: stroke;
  stroke: var(--surface);
  stroke-width: 0.05;
  stroke-linejoin: round;
}
.manual-svg-caption {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.manual-room {
  background: var(--mint-soft);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
}
.manual-room:last-child { margin-bottom: 0; }
.manual-room h4 { color: var(--forest-deep); margin-bottom: 8px; }
.manual-room table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.manual-room th, .manual-room td {
  text-align: left;
  padding: 4px 8px;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}
.manual-room th { color: var(--ink-soft); font-weight: 500; }
.manual-room td { color: var(--ink); }
.manual-room tr:last-child td { border-bottom: none; }

/* ---------- Status updater (HTMX target) ---------- */
.status-region {
  background: var(--mint-soft);
  border-radius: var(--radius-md);
  padding: 16px;
}
.status-region .current {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.status-region .blurb { color: var(--ink-soft); font-size: 0.85rem; }
.status-transitions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.status-history {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid rgba(11, 61, 46, 0.08);
  padding-top: 10px;
}
.status-history-entry { padding: 4px 0; }

.badge {
  display: inline-block;
  background: var(--warning-soft);
  color: var(--warning);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-muted {
  background: var(--neutral-soft);
  color: var(--ink-soft);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 14px;
}
.section-title h2 { font-size: 1.05rem; }
.section-title .count {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* ---------- Error pages ---------- */
.error-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}
.error-card {
  max-width: 460px;
  text-align: center;
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.error-card h1 { font-size: 1.5rem; margin-bottom: 12px; }
.error-card p { margin-bottom: 20px; }

footer.site-footer {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(11, 61, 46, 0.06);
  color: var(--ink-soft);
  font-size: 0.82rem;
}
footer.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Support bubble ---------- */
.support-bubble {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.support-bubble:hover {
  background: var(--forest-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(11, 61, 46, 0.18), 0 8px 20px rgba(11, 61, 46, 0.10);
}
.support-bubble-icon {
  flex-shrink: 0;
}
.support-bubble-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .rfq-card { grid-template-columns: 1fr; }
  .rfq-card-aside { align-items: flex-start; }
}
@media (max-width: 600px) {
  .nav-meta .user-email { display: none; }
  .budget-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .kv { grid-template-columns: 1fr; }
  .kv dt { margin-top: 6px; }
  .support-bubble {
    right: 14px;
    bottom: 14px;
    height: 52px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }
  .support-bubble-label { display: none; }
}
