/* Morter Web Co — agency-premium stylesheet (DM Sans + Instrument Sans) */
:root {
  --charcoal: #0b1017;
  --charcoal-soft: #141c28;
  --navy: #0a1628;
  --navy-mid: #132033;
  --slate: #2c3a50;
  --muted: #7e90a8;
  --text: #e6eef8;
  --text-dim: #9aabc2;
  --white: #ffffff;
  --accent: #00d4c8;
  --accent-bright: #2affe8;
  --accent-deep: #00a89e;
  --electric: #4f8cff;
  --glow: rgba(0, 212, 200, 0.28);
  --card: rgba(20, 28, 40, 0.92);
  --card-solid: #141c28;
  --border: rgba(158, 178, 204, 0.14);
  --border-strong: rgba(158, 178, 204, 0.28);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px rgba(0, 212, 200, 0.12), 0 24px 64px rgba(0, 212, 200, 0.12);
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Instrument Sans", "DM Sans", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --max: 1160px;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 15% -15%, rgba(0, 212, 200, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 5%, rgba(79, 140, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 55% 35% at 60% 105%, rgba(0, 168, 158, 0.08), transparent 45%),
    linear-gradient(180deg, #0b1017 0%, #0e1520 100%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-bright); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: var(--white); }
ul { list-style: none; }

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ——— Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 16, 23, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--electric) 100%);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--charcoal);
  box-shadow: 0 0 28px var(--glow), inset 0 1px 0 rgba(255,255,255,0.35);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  color: var(--text-dim);
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 550;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: none !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)) !important;
  color: var(--charcoal) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 20px var(--glow);
  margin-left: 0.35rem;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent)) !important;
  color: var(--charcoal) !important;
  box-shadow: 0 10px 28px rgba(0, 212, 200, 0.4);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-strong);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(0, 212, 200, 0.1);
  border-color: rgba(0, 212, 200, 0.35);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.65rem 0 1.4rem;
  border-top: 1px solid var(--border);
  gap: 0.2rem;
  animation: navSlide 0.25s ease;
}

@keyframes navSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--text-dim);
  padding: 0.9rem 0.85rem;
  font-weight: 550;
  border-radius: 10px;
  font-size: 1.02rem;
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-mobile .nav-cta-mobile {
  margin-top: 0.65rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--charcoal) !important;
  font-weight: 700;
  padding: 0.95rem !important;
  box-shadow: 0 8px 24px var(--glow);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex !important; align-items: center; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.975rem;
  letter-spacing: -0.015em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.25s, border-color 0.2s;
  font-family: inherit;
  text-decoration: none;
  line-height: 1.2;
}

.btn:active { transform: scale(0.975); }

.btn-primary {
  background: linear-gradient(145deg, var(--accent-bright) 0%, var(--accent) 45%, var(--accent-deep) 100%);
  color: var(--charcoal);
  box-shadow: 0 10px 36px var(--glow), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #5ffff0 0%, var(--accent-bright) 50%, var(--accent) 100%);
  color: var(--charcoal);
  box-shadow: 0 14px 44px rgba(0, 212, 200, 0.45), inset 0 1px 0 rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-ghost:hover {
  border-color: rgba(0, 212, 200, 0.55);
  color: var(--accent-bright);
  background: rgba(0, 212, 200, 0.08);
  box-shadow: 0 8px 24px rgba(0, 212, 200, 0.12);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

/* ——— Typography ——— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

h1, h2, h3 {
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.22rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.lead {
  font-size: 1.14rem;
  color: var(--text-dim);
  max-width: 38rem;
  line-height: 1.72;
  font-weight: 450;
}

.section {
  padding: 5.5rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 2.85rem;
  max-width: 40rem;
}

.section-header.centered {
  text-align: center;
  margin-inline: auto;
  max-width: 42rem;
}

.section-header.centered .eyebrow {
  justify-content: center;
}

.section-header.centered .eyebrow::before { display: none; }

.section-header.centered .lead {
  margin-inline: auto;
}

/* ——— Hero ——— */
.hero {
  padding: 4rem 0 5rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 3.25rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.75rem;
  }
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--accent-bright) 10%, var(--electric) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-visual {
  position: relative;
  padding: 0.5rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse at 50% 40%, rgba(0, 212, 200, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

.hero-visual > * { position: relative; z-index: 1; }

.browser-mock {
  background: var(--navy-mid);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.28));
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--slate);
  box-shadow: inset 0 -1px 1px rgba(0,0,0,0.35);
}

.browser-dots i:nth-child(1) { background: #ff5f57; }
.browser-dots i:nth-child(2) { background: #febc2e; }
.browser-dots i:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-url:empty { min-height: 1.5em; }

.browser-body {
  padding: 1.45rem 1.5rem 1.6rem;
  min-height: 240px;
  color: #fff;
  font-family: var(--font);
  user-select: none;
}

.browser-body .mini-btn,
.browser-body .mini-nav-links span,
.browser-body .mini-chips span,
.browser-body .mini-badges span {
  pointer-events: none;
}

/* ——— Mini-site mocks ——— */
.mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.mini-logo {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0,0,0,0.2);
}

.mini-brand-name {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-display);
}

.mini-nav-links {
  display: flex;
  gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}

.mini-nav-links .is-active {
  color: #fff;
  position: relative;
}

.mini-nav-links .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.72rem;
  height: 2px;
  border-radius: 2px;
  background: var(--mini-accent, #c4a35a);
  box-shadow: 0 0 8px var(--mini-accent, #c4a35a);
}

.mini-hero { margin-bottom: 0.7rem; }
.mini-hero.tight { margin-bottom: 0.55rem; }

.mini-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mini-accent, #c4a35a);
}

.mini-headline {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  font-family: var(--font-display);
}

.mini-sub {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32em;
}

.mini-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 750;
  background: var(--mini-accent, #c4a35a);
  color: var(--mini-accent-ink, #1a1a1a);
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}

.mini-btn.ghost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.mini-badges span {
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin-top: 0.5rem;
}

.mini-chips span {
  font-size: 0.56rem;
  font-weight: 600;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-cards {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.mini-cards.cols-2 { grid-template-columns: 1fr 1fr; }
.mini-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }

.mini-card {
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 12px rgba(0,0,0,0.15);
  min-width: 0;
}

.mini-card-icon {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 7px;
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-card strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.015em;
  font-family: var(--font-display);
}

.mini-card p {
  margin: 0;
  font-size: 0.56rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.mini-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.45rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-form.compact {
  margin-top: 0;
  padding: 0.55rem;
}

.mini-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mini-label {
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-input {
  display: block;
  height: 1.35rem;
  width: 100%;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
}

.mini-input.mid { width: 78%; }
.mini-input.tall { height: 2.25rem; }

.mini-steps {
  display: flex;
  gap: 6px;
  margin: 0.2rem 0 0.1rem;
}

.mini-steps i {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.mini-steps i:first-child {
  background: var(--mini-accent, #c4a35a);
  box-shadow: 0 0 8px var(--mini-accent, #c4a35a);
}

.mini-about {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.mini-avatar {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.mini-about-text { flex: 1; min-width: 0; }

.mini-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0.55rem 0 0.4rem;
}

.mini-map {
  min-height: 5.2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 42% 48%, rgba(255,255,255,0.14), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.06) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.06) 25%, transparent 25%),
    rgba(0, 0, 0, 0.32);
  background-size: auto, 14px 14px, 14px 14px, auto;
}

/* Gallery card density — still readable, larger than before */
.work-card .mini-nav { margin-bottom: 0.55rem; padding-bottom: 0.48rem; }
.work-card .mini-nav-links { font-size: 0.52rem; gap: 0.45rem; }
.work-card .mini-nav-links .is-active::after { bottom: -0.5rem; }
.work-card .mini-logo { width: 1.35rem; height: 1.35rem; font-size: 0.65rem; border-radius: 6px; }
.work-card .mini-brand-name { font-size: 0.6rem; }
.work-card .mini-kicker { font-size: 0.5rem; }
.work-card .mini-headline { font-size: 1rem; }
.work-card .mini-sub {
  font-size: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work-card .mini-btn { font-size: 0.56rem; padding: 0.32rem 0.65rem; border-radius: 6px; }
.work-card .mini-badges span { font-size: 0.46rem; padding: 0.2rem 0.4rem; }
.work-card .mini-cards { display: none; }
.work-card .mini-chips span:nth-child(n+4) { display: none; }
.photo-grid .work-card .browser-body {
  overflow: hidden;
  padding: 0.9rem 1rem 1rem;
}

/* Hero mock — large screenshot quality */
.hero-visual .browser-mock {
  border-radius: var(--radius-xl);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.4s ease;
}

.hero-visual:hover .browser-mock {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.hero-visual .browser-body { padding: 1.5rem 1.65rem 1.75rem; min-height: 320px; }
.hero-visual .mini-headline { font-size: 1.45rem; }
.hero-visual .mini-sub { font-size: 0.8rem; max-width: 36em; }
.hero-visual .mini-nav-links { font-size: 0.68rem; gap: 0.9rem; }
.hero-visual .mini-btn { font-size: 0.72rem; padding: 0.5rem 1rem; border-radius: 9px; }
.hero-visual .mini-card { padding: 0.75rem 0.8rem; }
.hero-visual .mini-card strong { font-size: 0.76rem; }
.hero-visual .mini-card p { font-size: 0.62rem; }
.hero-visual .mini-card-icon { width: 1.75rem; height: 1.75rem; font-size: 0.8rem; }
.hero-visual .mini-brand-name { font-size: 0.78rem; }
.hero-visual .mini-logo { width: 2rem; height: 2rem; font-size: 0.95rem; }
.hero-visual .mini-kicker { font-size: 0.68rem; }
.hero-visual .mini-badges span { font-size: 0.58rem; }

/* Detail pages: roomier type */
.project-mock .browser-body { padding: 1.35rem 1.4rem 1.5rem; min-height: 230px; }
.project-mock .mini-headline { font-size: 1.2rem; }
.project-mock .mini-sub { font-size: 0.76rem; }
.project-mock .mini-nav-links { font-size: 0.66rem; gap: 0.8rem; }
.project-mock .mini-btn { font-size: 0.68rem; padding: 0.45rem 0.9rem; }
.project-mock .mini-card strong { font-size: 0.72rem; }
.project-mock .mini-card p { font-size: 0.6rem; }
.project-mock .mini-card-icon { width: 1.65rem; height: 1.65rem; }
.project-mock .mini-badges span { font-size: 0.56rem; }
.project-mock .mini-brand-name { font-size: 0.74rem; }
.project-mocks .project-mock:first-child .mini-headline { font-size: 1.45rem; }
.project-mocks .project-mock:first-child .mini-sub { font-size: 0.82rem; }
.project-mocks .project-mock:first-child .browser-body { min-height: 300px; padding: 1.55rem 1.65rem 1.7rem; }

.hero-float {
  position: absolute;
  bottom: -16px;
  right: -4px;
  background: rgba(20, 28, 40, 0.95);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(0, 212, 200, 0.15);
  font-size: 0.82rem;
  color: var(--text-dim);
  backdrop-filter: blur(12px);
  max-width: 11rem;
  line-height: 1.35;
}

.hero-float strong {
  display: block;
  color: var(--accent-bright);
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 0.15rem;
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .hero-float { right: 8px; bottom: -12px; }
  .hero-visual .browser-mock { transform: none; }
}

/* ——— Trust stats ——— */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; gap: 1.15rem; }
}

.stat {
  padding: 0.25rem 0;
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--white);
  font-weight: 750;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
  line-height: 1.15;
}

.stat span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* ——— Cards / grids ——— */
.card-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 600px) {
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.65rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.card:hover {
  border-color: rgba(0, 212, 200, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.35), 0 0 0 1px rgba(0, 212, 200, 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0, 212, 200, 0.18), rgba(79, 140, 255, 0.12));
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(0, 212, 200, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.card p { color: var(--text-dim); font-size: 0.96rem; line-height: 1.65; }

/* ——— Featured work strip ——— */
.work-strip {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .work-strip { grid-template-columns: repeat(3, 1fr); }
}

.work-card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.28s, transform 0.28s, box-shadow 0.28s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.work-card:hover {
  border-color: rgba(0, 212, 200, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 212, 200, 0.15);
}

.work-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.work-card-link:hover { color: inherit; }

.work-card .browser-mock {
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s ease;
  transform-origin: center center;
}

.work-card-link:hover .browser-mock,
.work-card:hover .browser-mock {
  transform: scale(1.035);
}

.work-card .browser-body {
  min-height: 160px;
  padding: 1.1rem;
}

.photo-grid .work-card {
  aspect-ratio: 5 / 4;
}

.photo-grid .work-card .browser-mock {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.photo-grid .work-card .browser-body {
  flex: 1;
  min-height: 0;
}

.work-meta {
  padding: 1.2rem 1.3rem 1.4rem;
  border-top: 1px solid var(--border);
}

.work-meta .trade {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.work-meta h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.work-meta p { font-size: 0.875rem; color: var(--text-dim); }

/* Legacy theme aliases (prefer layout-* systems) */
.theme-electric {
  --mini-accent: #c4a35a;
  --mini-accent-ink: #0c1017;
}
.theme-electric .browser-body {
  background: #0c1017;
}
.theme-electric .mini-logo { background: rgba(196, 163, 90, 0.18); }

.theme-plumb {
  --mini-accent: #1e3a5f;
  --mini-accent-ink: #fff;
}
.theme-plumb .browser-body {
  background: #ffffff;
}
.theme-plumb .mini-logo { background: rgba(30, 58, 95, 0.12); }

.theme-hvac {
  --mini-accent: #64748b;
  --mini-accent-ink: #0f172a;
}
.theme-hvac .browser-body {
  background: #f1f5f9;
}
.theme-hvac .mini-logo { background: rgba(100, 116, 139, 0.18); }

.theme-build {
  --mini-accent: #78716c;
  --mini-accent-ink: #1c1917;
}
.theme-build .browser-body {
  background: #fafaf9;
}
.theme-build .mini-logo { background: rgba(120, 113, 108, 0.18); }

.theme-land {
  --mini-accent: #5c6b4a;
  --mini-accent-ink: #f7f6f2;
}
.theme-land .browser-body {
  background: #f7f6f2;
}
.theme-land .mini-logo { background: rgba(92, 107, 74, 0.18); }

.theme-handy {
  --mini-accent: #b45309;
  --mini-accent-ink: #fafaf9;
}
.theme-handy .browser-body {
  background: #1c1917;
}
.theme-handy .mini-logo { background: rgba(180, 83, 9, 0.18); }

/* ——— Steps ——— */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.step {
  position: relative;
  padding: 1.75rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transition: border-color 0.2s, transform 0.2s;
}

.step:hover {
  border-color: rgba(0, 212, 200, 0.3);
  transform: translateY(-2px);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.85rem;
  font-family: var(--mono);
}

.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ——— CTA band ——— */
.cta-band {
  margin: 2.5rem 0 5rem;
  padding: 3.25rem 2.25rem;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(0, 212, 200, 0.22), transparent 55%),
    linear-gradient(145deg, var(--navy-mid), var(--charcoal-soft));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.cta-band h2 { position: relative; }
.cta-band p {
  color: var(--text-dim);
  max-width: 30rem;
  margin: 0.85rem auto 1.65rem;
  position: relative;
  font-size: 1.05rem;
}

.cta-band .btn { position: relative; }

/* ——— About ——— */
.about-grid {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 3.75rem;
  }
}

.about-prose p {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-prose p:last-child { margin-bottom: 0; }

.values {
  display: grid;
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.25rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.value-item:hover {
  border-color: rgba(0, 212, 200, 0.35);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.value-item .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(0, 212, 200, 0.18), rgba(79, 140, 255, 0.1));
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: 0.85rem;
  font-family: var(--mono);
  border: 1px solid rgba(0, 212, 200, 0.2);
}

.value-item h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.value-item p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.55; }

/* ——— Contact form ——— */
.contact-layout {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: 0.95fr 1.25fr;
    gap: 3.25rem;
    align-items: start;
  }
}

.contact-info p {
  color: var(--text-dim);
  margin-bottom: 1.6rem;
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 1.3rem;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--accent-bright);
  font-weight: 650;
  font-size: 1.02rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.contact-email:hover {
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(0, 212, 200, 0.15);
  transform: translateY(-1px);
}

.contact-email svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.04);
}

.form-group { margin-bottom: 1.25rem; }

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 500px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

label {
  display: block;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1.05rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

input::placeholder, textarea::placeholder {
  color: rgba(158, 178, 204, 0.45);
}

input:hover, select:hover, textarea:hover {
  border-color: var(--border-strong);
  background: rgba(0, 0, 0, 0.42);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
  background: rgba(0, 0, 0, 0.45);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237e90a8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  padding-right: 2.6rem;
}

select option { background: var(--navy); color: var(--white); }

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.65rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.75rem 1rem;
}

.form-success.visible { display: block; }
.form-card.submitted .form-fields { display: none; }

.success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  background: rgba(0, 212, 200, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  border: 1px solid rgba(0, 212, 200, 0.3);
  box-shadow: 0 0 32px var(--glow);
}

.form-success h3 { margin-bottom: 0.55rem; }
.form-success p { color: var(--text-dim); margin-bottom: 1.6rem; }

/* ——— Portfolio page grid ——— */
.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 1000px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 1.65rem; }
}

.portfolio-grid .work-card .browser-body { min-height: 180px; }

.portfolio-intro {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.portfolio-intro h1 { margin-bottom: 1rem; }
.portfolio-intro .lead { font-size: 1.18rem; max-width: 40rem; }

/* ——— Project detail pages ——— */
.crumb {
  color: var(--accent);
  text-decoration: none;
}
.crumb:hover { color: var(--white); }

.project-trade-tag {
  display: inline-block;
  margin-top: 1.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 200, 0.3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 212, 200, 0.1);
}

.project-mocks {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.25rem;
}

@media (min-width: 700px) {
  .project-mocks { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .project-mocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.15rem;
  }
  .project-mocks .project-mock:first-child {
    grid-column: 1 / -1;
  }
}

.project-mock { margin: 0; }

.project-mock .browser-mock {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-mock:hover .browser-mock {
  transform: translateY(-3px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.55), var(--shadow-glow);
}

.project-mock figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.1rem;
  margin-top: 0.9rem;
  padding: 0 0.2rem;
}

.mock-page-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.mock-feature-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.project-features {
  margin-bottom: 2.75rem;
  padding: 2rem 1.85rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .feature-list { grid-template-columns: 1fr 1fr; }
}

.feature-list li {
  color: var(--text-dim);
  font-size: 0.96rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(0, 212, 200, 0.45);
  background: rgba(0,0,0,0.15);
  border-radius: 0 10px 10px 0;
  line-height: 1.55;
}

.feature-list strong {
  color: var(--white);
  font-weight: 650;
  display: block;
  margin-bottom: 0.15rem;
}

.project-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* ——— 404 ——— */
.page-404 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
}

.page-404 .code {
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--accent), var(--electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
}

/* ——— Footer ——— */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2.25rem;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.32);
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3.25rem;
  }
}

.footer-brand .logo { margin-bottom: 0.95rem; }

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 24rem;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.95rem;
  font-family: var(--font-display);
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.35rem 0;
}

.footer-col a:hover { color: var(--accent-bright); }

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.65rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ——— Utilities ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

main { flex: 1; }

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.trust-pills span {
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
}


/* ============================================================
   Per-project LAYOUT SYSTEMS — mature / premium register
   .layout-emergency | .layout-residential | .layout-catalog
   .layout-editorial | .layout-organic | .layout-industrial
   ============================================================ */

.work-card .browser-body,
.browser-body--compact {
  overflow: hidden;
}
.work-card .em-sub,
.work-card .rs-sub,
.work-card .cat-sub,
.work-card .ed-lede,
.work-card .org-sub,
.work-card .ind-sub { display: none; }
.work-card .em-dense-row span:nth-child(n+4),
.photo-grid .work-card .em-photo-badge { display: none; }
.work-card .em-urgency span:nth-child(n+3) { display: none; }
.work-card .cat-tiles .cat-tile:nth-child(n+4) { display: none; }
.work-card .ind-check li:nth-child(n+4) { display: none; }
.work-card .ed-masonry .ed-block.wide { display: none; }

/* ---------- 01 Electrician — corporate dark utility ---------- */
.layout-emergency {
  --mini-accent: #c4a35a;
  --mini-accent-ink: #0a0e14;
}
.layout-emergency .browser-body {
  padding: 0 !important;
  background: #0c1017;
  color: #e8eaed;
}
.em-callbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: #0c1017;
  border-bottom: 1px solid rgba(196, 163, 90, 0.45);
  color: #c4a35a;
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.em-callbar.slim { padding: 0.32rem 0.9rem; }
.em-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c4a35a;
  flex-shrink: 0;
}
.em-call-cta {
  background: transparent;
  color: #e8eaed;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(196, 163, 90, 0.55);
  border-radius: 2px;
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-weight: 650;
}
.em-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem 0.55rem;
  align-items: stretch;
}
.em-copy { min-width: 0; }
.em-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c4a35a;
}
.em-h {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f4f5f7;
}
.em-h.sm { font-size: 1.05rem; }
.em-sub {
  margin: 0 0 0.6rem;
  font-size: 0.66rem;
  line-height: 1.45;
  color: rgba(232, 234, 237, 0.62);
}
.em-urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.em-urgency span {
  font-size: 0.48rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
  background: transparent;
  border: 1px solid rgba(196, 163, 90, 0.35);
  color: rgba(232, 234, 237, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.em-btns { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.em-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.85rem;
  border-radius: 2px;
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  background: #c4a35a;
  color: #0c1017;
  box-shadow: none;
}
.em-btn.ghost {
  background: transparent;
  color: #e8eaed;
  border: 1px solid rgba(232, 234, 237, 0.3);
}
.em-btn.block { width: 100%; margin-top: 0.35rem; }
.em-photo {
  position: relative;
  border-radius: 2px;
  min-height: 7.5rem;
  background:
    linear-gradient(165deg, rgba(12,16,23,0.15) 0%, rgba(12,16,23,0.55) 100%),
    linear-gradient(135deg, #2a3344 0%, #1a2230 45%, #3d4555 100%);
  border: 1px solid rgba(196, 163, 90, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,234,237,0.4);
}
.em-photo-badge {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  background: rgba(12,16,23,0.85);
  color: #c4a35a;
  font-size: 0.45rem;
  font-weight: 650;
  padding: 0.18rem 0.4rem;
  border: 1px solid rgba(196, 163, 90, 0.4);
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.em-dense-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.4rem 0.95rem 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.em-dense-row.wrap { padding: 0; border: 0; margin-top: 0.4rem; }
.em-dense-row span {
  font-size: 0.48rem;
  font-weight: 550;
  padding: 0.16rem 0.4rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: rgba(232,234,237,0.55);
  letter-spacing: 0.02em;
}
.em-svc-head { padding: 0.8rem 0.95rem 0.4rem; }
.em-svc-list { padding: 0 0.7rem 0.9rem; display: flex; flex-direction: column; gap: 0.3rem; }
.em-svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.55rem 0.6rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
}
.em-svc-ico {
  width: 1.5rem; height: 1.5rem;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid rgba(196,163,90,0.35);
  border-radius: 2px;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #c4a35a;
  text-transform: uppercase;
}
.em-svc-row strong { display: block; font-size: 0.66rem; color: #f4f5f7; font-weight: 600; }
.em-svc-row p { margin: 0.1rem 0 0; font-size: 0.52rem; color: rgba(232,234,237,0.5); }
.em-tag {
  font-size: 0.45rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.4rem;
  border-radius: 2px;
  background: transparent;
  border: 1px solid #c4a35a;
  color: #c4a35a;
}
.em-tag.muted {
  border-color: rgba(255,255,255,0.2);
  color: rgba(232,234,237,0.55);
}
.em-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem 1rem;
}
.em-form {
  padding: 0.7rem;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(196,163,90,0.22);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.em-field span:first-child {
  display: block;
  font-size: 0.46rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,234,237,0.45);
  margin-bottom: 0.15rem;
}
.em-input {
  display: block;
  height: 1.3rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  font-size: 0.52rem;
  color: rgba(232,234,237,0.5);
  padding: 0 0.4rem;
  line-height: 1.3rem;
}
.em-input.short { width: 70%; }
.em-input.tall { height: 2.2rem; }
.em-about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem 1rem;
}
.em-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.em-cred {
  padding: 0.55rem 0.4rem;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(196,163,90,0.28);
  border-radius: 2px;
}
.em-cred strong { display: block; font-size: 0.85rem; color: #c4a35a; font-family: var(--font-display); font-weight: 650; }
.em-cred span { font-size: 0.45rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(232,234,237,0.5); }
.em-contact { padding: 0.8rem 0.95rem 1rem; }
.em-contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 0.55rem 0 0.75rem; }
.em-contact-card {
  padding: 0.7rem 0.65rem;
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}
.em-contact-card.hot {
  background: rgba(196,163,90,0.08);
  border-color: rgba(196,163,90,0.4);
}
.em-contact-card strong { display: block; font-size: 0.7rem; margin-bottom: 0.2rem; font-weight: 650; }
.em-contact-card p { margin: 0 0 0.5rem; font-size: 0.52rem; color: rgba(232,234,237,0.55); }
.work-card .em-split { grid-template-columns: 1.2fr 0.8fr; padding: 0.55rem 0.65rem 0.35rem; gap: 0.45rem; }
.work-card .em-h { font-size: 0.95rem; }
.work-card .em-photo { min-height: 4.8rem; }
.work-card .em-callbar { font-size: 0.46rem; padding: 0.3rem 0.55rem; }
.work-card .em-btn { font-size: 0.5rem; padding: 0.28rem 0.55rem; }
.hero-visual .em-h { font-size: 1.35rem; }
.hero-visual .em-split { padding: 1rem 1.1rem 0.6rem; }
.hero-visual .em-photo { min-height: 10rem; }
.project-mock .em-h { font-size: 1.15rem; }
.project-mocks .project-mock:first-child .em-h { font-size: 1.35rem; }
.project-mocks .project-mock:first-child .em-photo { min-height: 9rem; }

/* ---------- 02 Plumber — clinical residential ---------- */
.layout-residential {
  --mini-accent: #1e3a5f;
  --mini-accent-ink: #fff;
}
.layout-residential .browser-body {
  background: #ffffff;
  color: #0f172a;
  padding: 0.9rem 1rem 1.05rem !important;
}
.rs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #e2e8f0;
}
.rs-brand {
  font-size: 0.7rem;
  font-weight: 650;
  color: #0f172a;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.rs-links { display: flex; gap: 0.75rem; font-size: 0.52rem; font-weight: 550; color: #94a3b8; letter-spacing: 0.02em; }
.rs-links .on { color: #1e3a5f; font-weight: 650; }
.rs-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.rs-h {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}
.rs-h.sm { font-size: 1.05rem; }
.rs-sub { margin: 0 0 0.75rem; font-size: 0.68rem; line-height: 1.45; color: #64748b; max-width: 34em; }
.rs-cta-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; }
.rs-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 2px;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  background: #1e3a5f;
  color: #fff;
  box-shadow: none;
}
.rs-cta.soft {
  background: transparent;
  color: #1e3a5f;
  border: 1px solid #cbd5e1;
}
.rs-cta.block { width: 100%; margin-top: 0.45rem; }
.rs-quote-bubble {
  position: relative;
  margin: 0.5rem 0 0.8rem;
  padding: 0.75rem 0 0.75rem 0.85rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-left: 2px solid #1e3a5f;
  box-shadow: none;
}
.rs-quote-bubble::before { display: none; }
.rs-quote-bubble p {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-style: italic;
  color: #334155;
  line-height: 1.45;
}
.rs-quote-bubble span { font-size: 0.5rem; font-weight: 650; color: #64748b; letter-spacing: 0.04em; text-transform: uppercase; }
.rs-quote-bubble.small { padding: 0.55rem 0 0.55rem 0.7rem; margin: 0.55rem 0 0; }
.rs-suburb-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0;
  background: transparent;
  border-radius: 0;
  border-top: 1px solid #e2e8f0;
  font-size: 0.52rem;
  font-weight: 550;
  color: #64748b;
}
.rs-pin {
  width: 0.4rem; height: 0.4rem;
  border-radius: 0;
  background: #1e3a5f;
  transform: none;
  margin-right: 0.1rem;
}
.rs-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.7rem 0 0.8rem;
}
.rs-svc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 0.7rem 0.65rem;
  box-shadow: none;
}
.rs-ico {
  display: block;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e3a5f;
  margin-bottom: 0.35rem;
}
.rs-svc strong { display: block; font-size: 0.66rem; color: #0f172a; margin-bottom: 0.15rem; font-weight: 650; }
.rs-svc p { margin: 0; font-size: 0.52rem; color: #64748b; }
.rs-book, .rs-contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0.9rem;
  align-items: start;
}
.rs-form-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 0.75rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rs-field label {
  display: block;
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.15rem;
}
.rs-input {
  display: block;
  height: 1.35rem;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
}
.rs-input.mid { width: 75%; }
.rs-input.tall { height: 2.2rem; border-radius: 2px; }
.rs-slots { display: flex; gap: 0.3rem; flex-wrap: wrap; margin: 0.15rem 0; }
.rs-slots span {
  font-size: 0.5rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #475569;
}
.rs-slots .on { background: #1e3a5f; color: #fff; border-color: #1e3a5f; }
.rs-map-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.7rem;
  margin-top: 0.7rem;
}
.rs-map {
  min-height: 7rem;
  border-radius: 2px;
  background:
    linear-gradient(145deg, #e8eef5 0%, #d4dde8 50%, #c5d0dd 100%);
  border: 1px solid #e2e8f0;
  display: grid;
  place-items: center;
  position: relative;
}
.rs-map-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1e3a5f;
  box-shadow: 0 0 0 4px rgba(30,58,95,0.15);
}
.rs-map-label {
  position: absolute;
  bottom: 0.55rem;
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}
.rs-suburb-list {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.rs-suburb-list li {
  font-size: 0.6rem;
  font-weight: 550;
  color: #0f172a;
  padding: 0.35rem 0.5rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e2e8f0;
}
.work-card .rs-h { font-size: 0.95rem; }
.work-card .rs-cta { font-size: 0.52rem; padding: 0.32rem 0.75rem; }
.work-card .rs-quote-bubble { padding: 0.45rem 0 0.45rem 0.6rem; }
.work-card .rs-quote-bubble p { font-size: 0.52rem; }
.project-mocks .project-mock:first-child .rs-h { font-size: 1.3rem; }

/* ---------- 03 HVAC — technical B2B catalog ---------- */
.layout-catalog {
  --mini-accent: #94a3b8;
  --mini-accent-ink: #0f172a;
}
.layout-catalog .browser-body {
  padding: 0 !important;
  background: #f1f5f9;
  color: #0f172a;
}
.cat-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.38rem 0.9rem;
  background: #334155;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
}
.cat-banner.soft { background: #e2e8f0; color: #475569; }
.cat-chip {
  background: transparent;
  color: #e2e8f0;
  padding: 0.15rem 0.4rem;
  border: 1px solid rgba(226,232,240,0.4);
  border-radius: 2px;
  font-size: 0.48rem;
  font-weight: 650;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem 0.45rem;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.cat-logo {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #334155;
  font-family: var(--font-display);
}
.cat-nav { display: flex; gap: 0.6rem; font-size: 0.48rem; font-weight: 650; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
.cat-nav .on { color: #0f172a; }
.cat-intro { padding: 0.7rem 0.9rem 0.35rem; background: #fff; }
.cat-kicker {
  margin: 0;
  padding: 0.65rem 0.9rem 0.2rem;
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  background: #fff;
}
.cat-h {
  margin: 0;
  padding: 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  color: #0f172a;
  background: #fff;
}
.cat-intro .cat-h { padding: 0; background: transparent; }
.cat-h.sm { font-size: 0.98rem; padding-bottom: 0.45rem; }
.cat-sub { margin: 0.3rem 0 0; font-size: 0.62rem; color: #64748b; line-height: 1.4; }
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  padding: 0.55rem 0.8rem 0.95rem;
  background: #fff;
}
.cat-tile {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 0.5rem 0.4rem;
  text-align: left;
  min-width: 0;
}
.cat-tile-img {
  width: 100%;
  height: 2.2rem;
  border-radius: 2px;
  margin-bottom: 0.4rem;
  display: block;
  font-size: 0;
  color: transparent;
  background: linear-gradient(145deg, #94a3b8 0%, #64748b 40%, #475569 100%);
}
.cat-tile:nth-child(2) .cat-tile-img { background: linear-gradient(145deg, #cbd5e1 0%, #94a3b8 50%, #64748b 100%); }
.cat-tile:nth-child(3) .cat-tile-img { background: linear-gradient(160deg, #64748b 0%, #334155 100%); }
.cat-tile:nth-child(4) .cat-tile-img { background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%); }
.cat-tile strong { display: block; font-size: 0.55rem; color: #0f172a; margin-bottom: 0.25rem; line-height: 1.25; font-weight: 650; }
.cat-from {
  display: inline-block;
  font-size: 0.46rem;
  font-weight: 650;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-row-tiles { padding: 0.35rem 0.8rem 0.95rem; display: flex; flex-direction: column; gap: 0.3rem; background: #fff; }
.cat-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.6rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  font-size: 0.62rem;
}
.cat-row strong { color: #0f172a; font-weight: 600; }
.cat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.65rem;
  border-radius: 2px;
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #334155;
  color: #f1f5f9;
}
.cat-btn.block { width: 100%; margin-top: 0.35rem; }
.cat-config { padding: 0.75rem 0.9rem 1rem; background: #fff; }
.cat-steps { display: flex; gap: 0; flex-wrap: wrap; margin-bottom: 0.7rem; border-bottom: 1px solid #e2e8f0; }
.cat-steps span {
  font-size: 0.48rem;
  font-weight: 650;
  padding: 0.35rem 0.55rem;
  border-radius: 0;
  background: transparent;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.cat-steps .on { background: transparent; color: #0f172a; border-bottom-color: #334155; }
.cat-options { display: flex; gap: 0.3rem; margin-bottom: 0.7rem; }
.cat-opt {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 2px;
  font-size: 0.6rem;
  font-weight: 650;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-opt.on { border-color: #334155; color: #0f172a; background: #fff; }
.cat-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.8rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  font-size: 0.52rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cat-price-box strong { font-size: 1.05rem; color: #0f172a; font-family: var(--font-display); font-weight: 650; letter-spacing: -0.02em; text-transform: none; }
.cat-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem 0.5rem;
  background: #fff;
}
.cat-price-card {
  padding: 0.7rem 0.65rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
}
.cat-price-card span { display: block; font-size: 0.5rem; color: #64748b; margin-bottom: 0.25rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.cat-price-card strong { font-size: 0.85rem; color: #0f172a; font-family: var(--font-display); font-weight: 650; }
.cat-fine { padding: 0 0.9rem 0.9rem; margin: 0; font-size: 0.46rem; color: #94a3b8; background: #fff; }
.cat-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.9rem;
  background: #fff;
}
.cat-chips { display: flex; flex-wrap: wrap; gap: 0.28rem; margin-top: 0.55rem; }
.cat-chips span {
  font-size: 0.48rem;
  padding: 0.18rem 0.4rem;
  border-radius: 2px;
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #64748b;
  letter-spacing: 0.02em;
}
.cat-form { display: flex; flex-direction: column; gap: 0.35rem; }
.cat-input {
  display: block;
  height: 1.3rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
}
.cat-input.mid { width: 70%; }
.cat-input.tall { height: 2.1rem; }
.work-card .cat-tiles { grid-template-columns: repeat(3, 1fr); }
.work-card .cat-h { font-size: 0.9rem; padding: 0.35rem 0.65rem 0; }
.work-card .cat-tile-img { height: 1.5rem; }
.project-mocks .project-mock:first-child .cat-h { font-size: 1.2rem; }

/* ---------- 04 Builder — architectural editorial ---------- */
.layout-editorial {
  --mini-accent: #78716c;
  --mini-accent-ink: #1c1917;
}
.layout-editorial .browser-body {
  background: #fafaf9;
  color: #1c1917;
  padding: 1rem 1.1rem 1.2rem !important;
}
.ed-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.ed-mark {
  font-size: 0.58rem;
  font-weight: 550;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #78716c;
}
.ed-links { display: flex; gap: 0.9rem; font-size: 0.52rem; font-weight: 500; color: #a8a29e; letter-spacing: 0.04em; }
.ed-links .on { color: #1c1917; }
.ed-display {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #1c1917;
}
.ed-display.sm { font-size: 1.35rem; }
.ed-lede {
  margin: 0 0 1.1rem;
  font-size: 0.68rem;
  line-height: 1.5;
  color: #78716c;
  max-width: 32em;
}
.ed-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.5rem;
  font-weight: 550;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a8a29e;
}
.ed-masonry {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
}
.ed-masonry.dense { grid-template-columns: 1fr 1fr; }
.ed-block {
  min-height: 3.5rem;
  border-radius: 0;
  background:
    linear-gradient(160deg, rgba(28,25,23,0.12), rgba(28,25,23,0.04)),
    linear-gradient(135deg, #d6d3d1 0%, #a8a29e 100%);
  display: flex;
  align-items: flex-end;
  padding: 0.5rem 0.6rem;
  font-size: 0.5rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #44403c;
}
.ed-block.tall {
  grid-row: span 2;
  min-height: 7.4rem;
  background:
    linear-gradient(200deg, rgba(28,25,23,0.25), rgba(28,25,23,0.55)),
    linear-gradient(145deg, #a8a29e, #57534e);
  color: #fafaf9;
}
.ed-block.wide { grid-column: 1 / -1; min-height: 2.9rem; }
.ed-stack { display: flex; flex-direction: column; gap: 0.5rem; }
.ed-case {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
  align-items: start;
}
.ed-case-hero {
  min-height: 8.2rem;
  border-radius: 0;
  background: linear-gradient(145deg, #d6d3d1 0%, #78716c 55%, #57534e 100%);
  display: grid;
  place-items: center;
  font-size: 0.52rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.7);
}
.ed-dl { margin: 0.8rem 0 0; display: flex; flex-direction: column; gap: 0.45rem; }
.ed-dl div { display: grid; grid-template-columns: 5rem 1fr; gap: 0.35rem; font-size: 0.6rem; }
.ed-dl dt { color: #a8a29e; font-weight: 550; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.48rem; padding-top: 0.15rem; }
.ed-dl dd { margin: 0; color: #1c1917; font-weight: 500; }
.ed-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.ed-step {
  padding: 0.7rem 0.45rem 0.5rem;
  border-top: 1px solid #1c1917;
}
.ed-step span {
  display: block;
  font-size: 0.52rem;
  font-weight: 550;
  color: #a8a29e;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  font-family: var(--mono, ui-monospace, monospace);
}
.ed-step strong { display: block; font-size: 0.66rem; margin-bottom: 0.2rem; font-family: var(--font-display); font-weight: 600; }
.ed-step p { margin: 0; font-size: 0.5rem; color: #78716c; line-height: 1.35; }
.ed-enquire { max-width: 22rem; }
.ed-form { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.ed-line {
  display: block;
  height: 1px;
  background: #d6d3d1;
  position: relative;
  margin: 0.9rem 0 0.2rem;
}
.ed-line::before {
  content: "";
  position: absolute;
  left: 0; top: -0.9rem;
  width: 40%;
  height: 0.5rem;
  background: #e7e5e4;
  border-radius: 0;
}
.ed-line.mid::before { width: 55%; }
.ed-line.tall { height: 2.2rem; background: #f5f5f4; border: 1px solid #e7e5e4; border-radius: 0; margin-top: 0.4rem; }
.ed-line.tall::before { display: none; }
.ed-submit {
  display: inline-flex;
  margin-top: 0.4rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.58rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #1c1917;
  color: #1c1917;
  background: transparent;
  border-radius: 0;
}
.work-card .ed-display { font-size: 1.25rem; margin-bottom: 0.4rem; }
.work-card .ed-block { min-height: 2.2rem; font-size: 0.42rem; }
.work-card .ed-block.tall { min-height: 4.6rem; }
.work-card .ed-nav { margin-bottom: 0.55rem; }
.project-mocks .project-mock:first-child .ed-display { font-size: 2.1rem; }
.hero-visual .ed-display { font-size: 2rem; }

/* ---------- 05 Landscaper — refined outdoor lifestyle ---------- */
.layout-organic {
  --mini-accent: #5c6b4a;
  --mini-accent-ink: #f7f6f2;
}
.layout-organic .browser-body {
  background: #f7f6f2;
  color: #2c3326;
  padding: 0.9rem 1rem 1.05rem !important;
}
.org-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.95rem;
}
.org-brand {
  font-size: 0.66rem;
  font-weight: 550;
  color: #3d4a32;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.org-links { display: flex; gap: 0.7rem; font-size: 0.5rem; font-weight: 500; color: #8a9478; letter-spacing: 0.04em; }
.org-links .on { color: #3d4a32; font-weight: 600; }
.org-hero-asym {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0.85rem;
  align-items: center;
}
.org-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.5rem;
  font-weight: 550;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7a5a;
}
.org-h {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #2c3326;
}
.org-h.sm { font-size: 1.05rem; }
.org-sub { margin: 0 0 0.75rem; font-size: 0.66rem; line-height: 1.45; color: #5c6654; }
.org-cta {
  display: inline-flex;
  padding: 0.45rem 0.95rem;
  border-radius: 2px;
  font-size: 0.6rem;
  font-weight: 550;
  letter-spacing: 0.04em;
  background: #5c6b4a;
  color: #f7f6f2;
  box-shadow: none;
}
.org-circles {
  position: relative;
  min-height: 8.2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 0.7fr;
  gap: 0.4rem;
}
.org-circles.small {
  min-height: 3.8rem;
  margin-bottom: 0.6rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.org-circle {
  position: static;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: linear-gradient(155deg, #8a9478 0%, #5c6b4a 50%, #3d4a32 100%);
  overflow: hidden;
  display: block;
  min-height: 100%;
}
.org-circle.c1 { grid-row: 1 / 3; }
.org-circle.c2 { background: linear-gradient(145deg, #c5cbb8 0%, #8a9478 60%, #6b7a5a 100%); }
.org-circle.c3 { background: linear-gradient(160deg, #a8b09a 0%, #6b7a5a 100%); grid-column: 2; }
.org-circle.mini {
  position: static;
  display: block;
  width: 100%;
  height: 2rem;
  margin-bottom: 0.5rem;
  border-radius: 0;
  background: linear-gradient(145deg, #8a9478, #5c6b4a);
}
.org-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0.7rem 0 0.4rem;
  border-radius: 0;
  overflow: visible;
  border: none;
}
.org-ba-divider { display: none; }
.org-ba-pane {
  min-height: 6.5rem;
  display: grid;
  place-items: end start;
  padding: 0.55rem 0.65rem;
  font-size: 0.5rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
}
.org-ba-pane.before {
  background: linear-gradient(160deg, #a8a29e 0%, #78716c 100%);
  color: rgba(255,255,255,0.8);
}
.org-ba-pane.after {
  background: linear-gradient(160deg, #8a9478 0%, #5c6b4a 55%, #3d4a32 100%);
  color: #f7f6f2;
}
.org-ba-caption {
  font-size: 0.52rem;
  font-weight: 500;
  color: #5c6654;
  text-align: left;
  letter-spacing: 0.04em;
}
.org-svc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.7rem;
}
.org-svc-card {
  background: #fff;
  border: 1px solid #e4e2da;
  border-radius: 0;
  padding: 0.7rem 0.55rem;
  text-align: left;
}
.org-svc-card strong { display: block; font-size: 0.62rem; color: #2c3326; margin-bottom: 0.25rem; font-weight: 600; }
.org-svc-card p { margin: 0; font-size: 0.5rem; color: #5c6654; line-height: 1.4; }
.org-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.85rem;
  border-top: 1px solid #e4e2da;
}
.org-flow-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e4e2da;
}
.org-num {
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
  font-size: 0.55rem;
  font-weight: 550;
  background: transparent;
  color: #8a9478;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  font-family: var(--mono, ui-monospace, monospace);
  min-width: 1.5rem;
}
.org-flow-step strong { font-size: 0.66rem; color: #2c3326; font-weight: 550; }
.org-form { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.6rem; max-width: 16rem; }
.org-input {
  display: block;
  height: 1.4rem;
  border-radius: 0;
  background: #fff;
  border: 1px solid #d4d1c7;
}
.work-card .org-h { font-size: 0.95rem; }
.work-card .org-circles { min-height: 5.2rem; }
.work-card .org-cta { font-size: 0.5rem; padding: 0.32rem 0.7rem; }
.project-mocks .project-mock:first-child .org-h { font-size: 1.35rem; }

/* ---------- 06 Handyman — practical tradesman ---------- */
.layout-industrial {
  --mini-accent: #b45309;
  --mini-accent-ink: #fafaf9;
}
.layout-industrial .browser-body {
  background: #1c1917;
  color: #fafaf9;
  padding: 0.85rem 0.95rem 1.05rem !important;
  border-top: 2px solid #b45309;
}
.ind-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.ind-top.slim { margin-bottom: 0.55rem; }
.ind-logo {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fafaf9;
  font-family: var(--font-display);
  text-transform: uppercase;
  background: transparent;
  border: none;
  padding: 0;
  transform: none;
}
.ind-stickers { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ind-stickers.side { flex-direction: column; margin-top: 0.55rem; gap: 0.35rem; }
.ind-sticker {
  display: inline-block;
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  background: transparent;
  color: #d6d3d1;
  border: 1px solid rgba(214,211,209,0.35);
  box-shadow: none;
  transform: none;
  border-radius: 2px;
}
.ind-sticker.alt {
  background: transparent;
  color: #b45309;
  border-color: rgba(180,83,9,0.5);
  transform: none;
}
.ind-h {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fafaf9;
  text-transform: none;
}
.ind-h.sm { font-size: 1.05rem; }
.ind-sub { margin: 0 0 0.7rem; font-size: 0.66rem; color: rgba(250,250,249,0.55); line-height: 1.4; }
.ind-check {
  list-style: none;
  margin: 0 0 0.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ind-check.small { margin: 0; border-top: none; }
.ind-check li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: #e7e5e4;
  padding: 0.45rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ind-box {
  display: grid;
  place-items: center;
  width: 0.9rem;
  height: 0.9rem;
  background: transparent;
  color: #b45309;
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(180,83,9,0.55);
  border-radius: 2px;
}
.ind-btns { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ind-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  font-size: 0.6rem;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0.02em;
  background: #b45309;
  color: #fafaf9;
  border: none;
  box-shadow: none;
  border-radius: 2px;
}
.ind-btn.ghost {
  background: transparent;
  color: #d6d3d1;
  border: 1px solid rgba(214,211,209,0.35);
  box-shadow: none;
}
.ind-btn.block { width: 100%; }
.ind-job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.6rem;
}
.ind-job {
  padding: 0.65rem 0.5rem;
  background: transparent;
  color: #fafaf9;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
  text-align: left;
  border-radius: 2px;
}
.ind-num {
  display: block;
  font-size: 0.55rem;
  font-weight: 550;
  font-family: var(--mono, ui-monospace, monospace);
  margin-bottom: 0.25rem;
  color: #b45309;
  letter-spacing: 0.06em;
}
.ind-job strong { font-size: 0.6rem; text-transform: none; letter-spacing: 0; font-weight: 600; }
.ind-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-top: 0.7rem;
}
.ind-step {
  padding: 0.7rem 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  border-radius: 2px;
}
.ind-giant {
  display: block;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1;
  color: #b45309;
  font-family: var(--mono, ui-monospace, monospace);
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
}
.ind-step strong { display: block; font-size: 0.62rem; text-transform: none; margin-bottom: 0.2rem; font-weight: 600; }
.ind-step p { margin: 0; font-size: 0.5rem; color: rgba(250,250,249,0.5); }
.ind-book {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 0.85rem;
  align-items: start;
}
.ind-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.7rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
}
.ind-form.compact { padding: 0.55rem; }
.ind-field span:first-child {
  display: block;
  font-size: 0.46rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.45);
  margin-bottom: 0.15rem;
}
.ind-input {
  display: block;
  height: 1.35rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(250,250,249,0.45);
  font-size: 0.52rem;
  padding: 0 0.4rem;
  line-height: 1.35rem;
  border-radius: 2px;
}
.ind-input.short { width: 65%; }
.ind-input.tall { height: 2.2rem; }
.ind-contact-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.7rem;
  margin-top: 0.55rem;
}
.work-card .ind-h { font-size: 1rem; }
.work-card .ind-logo { font-size: 0.6rem; }
.work-card .ind-sticker { font-size: 0.4rem; padding: 0.15rem 0.35rem; }
.work-card .ind-check li { font-size: 0.52rem; padding: 0.3rem 0; }
.work-card .ind-btn { font-size: 0.5rem; padding: 0.3rem 0.6rem; box-shadow: none; }
.project-mocks .project-mock:first-child .ind-h { font-size: 1.45rem; }
.project-mocks .project-mock:first-child .ind-giant { font-size: 0.75rem; }

/* Compact card heights */
.photo-grid .work-card .browser-body { min-height: 200px; }
.portfolio-grid .work-card .browser-body { min-height: 210px; }
.work-strip .work-card .browser-body { min-height: 200px; }

.rs-hero { margin-bottom: 0.15rem; }
.org-copy { min-width: 0; }
.em-about-copy { min-width: 0; }
.em-quote-left { min-width: 0; }
.em-contact-main { min-width: 0; }
.em-area { margin-top: 0.35rem; }
.ed-case-meta { min-width: 0; }

.browser-body--compact .em-sub,
.browser-body--compact .rs-sub,
.browser-body--compact .ind-sub,
.browser-body--compact .org-sub,
.browser-body--compact .ed-lede,
.browser-body--compact .cat-sub { display: none; }

.browser-body--compact .em-h { font-size: 0.95rem !important; }
.browser-body--compact .rs-h { font-size: 0.95rem !important; }
.browser-body--compact .cat-h { font-size: 0.88rem !important; }
.browser-body--compact .ed-display { font-size: 1.2rem !important; margin-bottom: 0.45rem; }
.browser-body--compact .org-h { font-size: 0.95rem !important; }
.browser-body--compact .ind-h { font-size: 0.95rem !important; }

.browser-body--compact .em-photo { min-height: 4.5rem; }
.browser-body--compact .em-split { padding: 0.55rem 0.6rem 0.4rem; }
.browser-body--compact .em-callbar { font-size: 0.46rem; padding: 0.3rem 0.55rem; }
.browser-body--compact .org-circles { min-height: 5rem; }
.browser-body--compact .ed-block { min-height: 2rem; }
.browser-body--compact .ed-block.tall { min-height: 4.4rem; }
.browser-body--compact .cat-tiles { grid-template-columns: repeat(3, 1fr); padding: 0.4rem 0.55rem 0.7rem; }
.browser-body--compact .ind-check li:nth-child(n+4) { display: none; }

.work-card .browser-body,
.photo-grid .work-card .browser-body {
  overflow: hidden;
}

.hero-visual .layout-emergency .em-h { font-size: 1.35rem; }
.hero-visual .layout-emergency .em-photo { min-height: 9.5rem; }
.hero-visual .layout-emergency .em-split { padding: 1rem 1.05rem 0.55rem; }
.hero-visual .layout-emergency .browser-body { min-height: 320px; }

.project-mock .layout-emergency .em-h { font-size: 1.12rem; }
.project-mocks .project-mock:first-child .layout-emergency .em-h { font-size: 1.35rem; }
.project-mocks .project-mock:first-child .layout-emergency .em-photo { min-height: 9rem; }
.project-mocks .project-mock:first-child .layout-editorial .ed-display { font-size: 2rem; }
.project-mocks .project-mock:first-child .layout-industrial .ind-h { font-size: 1.4rem; }
.project-mocks .project-mock:first-child .layout-organic .org-h { font-size: 1.3rem; }
.project-mocks .project-mock:first-child .layout-residential .rs-h { font-size: 1.3rem; }
.project-mocks .project-mock:first-child .layout-catalog .cat-h { font-size: 1.2rem; }

/* ========== Filled illustrative scenes (no empty photo boxes) ========== */
.scene {
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}
.scene > .scene-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.scene-cap {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 0.46rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.5rem;
  background: rgba(8, 10, 14, 0.72);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.em-photo.scene {
  place-items: stretch;
  font-size: inherit;
  color: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.em-photo.scene > span:not(.scene-cap):not(.em-photo-badge) { display: none; }
.em-photo .em-photo-badge { z-index: 3; }

/* Switchboard scene */
.scene-switchboard {
  background:
    linear-gradient(165deg, rgba(12,16,23,0.2) 0%, rgba(12,16,23,0.5) 100%),
    linear-gradient(135deg, #1e2633 0%, #141a24 50%, #2a3344 100%) !important;
}
.scene-switchboard .sb-frame {
  position: absolute;
  left: 12%; right: 12%; top: 14%; bottom: 28%;
  border: 1.5px solid rgba(196,163,90,0.45);
  border-radius: 2px;
  background: linear-gradient(180deg, #1a2230 0%, #0f141c 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.scene-switchboard .sb-bus {
  position: absolute;
  left: 16%; right: 16%; top: 22%;
  height: 4px;
  background: linear-gradient(90deg, #c4a35a, #e0c878, #c4a35a);
  border-radius: 1px;
  opacity: 0.85;
}
.scene-switchboard .sb-breakers {
  position: absolute;
  left: 16%; right: 16%; top: 32%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 5px;
}
.scene-switchboard .sb-breakers i {
  display: block;
  height: 14px;
  border-radius: 1px;
  background: linear-gradient(180deg, #3d4658, #252c3a);
  border: 1px solid rgba(196,163,90,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.scene-switchboard .sb-breakers i:nth-child(3),
.scene-switchboard .sb-breakers i:nth-child(7) {
  background: linear-gradient(180deg, #c4a35a, #8a7038);
  border-color: rgba(196,163,90,0.6);
}
.scene-switchboard .sb-meter {
  position: absolute;
  right: 16%; bottom: 32%;
  width: 18%;
  height: 18%;
  border-radius: 2px;
  background: rgba(0,212,200,0.12);
  border: 1px solid rgba(0,212,200,0.25);
}

/* Van / call-out scene (alt for compact cards) */
.scene-van {
  background:
    linear-gradient(180deg, #1a2230 0%, #0f141c 100%) !important;
}
.scene-van .vn-road {
  position: absolute;
  left: 0; right: 0; bottom: 22%;
  height: 18%;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.08) 0 8px,
    transparent 8px 18px),
    #1e2633;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.scene-van .vn-body {
  position: absolute;
  left: 18%; right: 22%; bottom: 32%;
  height: 28%;
  background: linear-gradient(180deg, #3d4658, #252c3a);
  border: 1px solid rgba(196,163,90,0.35);
  border-radius: 2px 6px 2px 2px;
}
.scene-van .vn-cab {
  position: absolute;
  left: 18%; width: 22%; bottom: 32%;
  height: 22%;
  background: #2a3344;
  border: 1px solid rgba(196,163,90,0.3);
  border-right: none;
  border-radius: 2px 0 0 2px;
}
.scene-van .vn-stripe {
  position: absolute;
  left: 40%; right: 24%; bottom: 42%;
  height: 3px;
  background: #c4a35a;
  opacity: 0.8;
}

/* HVAC product tile scenes */
.cat-tile-img.scene {
  height: 2.6rem;
  margin-bottom: 0.35rem;
  display: flex !important;
  font-size: inherit;
  color: inherit;
}
.cat-tile-img .scene-cap {
  font-size: 0.4rem;
  padding: 0.22rem 0.35rem;
  background: rgba(15,23,42,0.75);
}
.scene-split-unit {
  background: linear-gradient(160deg, #cbd5e1 0%, #94a3b8 40%, #64748b 100%) !important;
}
.scene-split-unit .hu-unit {
  position: absolute;
  left: 10%; right: 10%; top: 18%; bottom: 38%;
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  border: 1px solid rgba(51,65,85,0.35);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}
.scene-split-unit .hu-vents {
  position: absolute;
  left: 16%; right: 16%; top: 38%;
  height: 28%;
  background: repeating-linear-gradient(180deg,
    #64748b 0 2px, transparent 2px 5px);
  opacity: 0.55;
  border-radius: 1px;
}
.scene-ducted {
  background: linear-gradient(145deg, #e2e8f0 0%, #94a3b8 50%, #475569 100%) !important;
}
.scene-ducted .hu-grille {
  position: absolute;
  left: 12%; right: 12%; top: 22%; bottom: 40%;
  border: 1px solid rgba(51,65,85,0.4);
  border-radius: 2px;
  background:
    repeating-linear-gradient(90deg, rgba(51,65,85,0.35) 0 3px, transparent 3px 7px),
    #cbd5e1;
}
.scene-service-unit {
  background: linear-gradient(160deg, #64748b 0%, #334155 100%) !important;
}
.scene-service-unit .hu-filter {
  position: absolute;
  left: 18%; right: 18%; top: 20%; bottom: 42%;
  background:
    repeating-linear-gradient(0deg, rgba(226,232,240,0.5) 0 2px, transparent 2px 6px),
    #475569;
  border: 1px solid rgba(226,232,240,0.3);
  border-radius: 2px;
}
.scene-commercial {
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%) !important;
}
.scene-commercial .hu-box {
  position: absolute;
  left: 14%; right: 14%; top: 16%; bottom: 40%;
  background: #64748b;
  border: 1px solid #334155;
  border-radius: 2px;
}
.scene-commercial .hu-fan {
  position: absolute;
  left: 38%; top: 28%;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(226,232,240,0.5);
  background: radial-gradient(circle, #94a3b8 30%, #475569 70%);
}

/* Builder editorial scenes */
.ed-block.scene {
  position: relative;
  overflow: hidden;
  color: transparent;
}
.ed-block.scene > span:not(.scene-cap) { display: none; }
.ed-block.scene .scene-cap {
  color: #fafaf9;
  background: rgba(28,25,23,0.65);
}
.ed-block:not(.tall):not(.wide).scene .scene-cap {
  color: #1c1917;
  background: rgba(250,250,249,0.82);
}
.scene-kitchen {
  background:
    linear-gradient(200deg, rgba(28,25,23,0.2), rgba(28,25,23,0.55)),
    linear-gradient(145deg, #a8a29e, #57534e) !important;
}
.scene-kitchen .kn-cab {
  position: absolute;
  left: 8%; bottom: 28%;
  width: 38%; height: 42%;
  background: linear-gradient(180deg, #78716c, #44403c);
  border: 1px solid rgba(250,250,249,0.15);
}
.scene-kitchen .kn-cab2 {
  position: absolute;
  left: 48%; bottom: 28%;
  width: 28%; height: 42%;
  background: linear-gradient(180deg, #8a847c, #57534e);
  border: 1px solid rgba(250,250,249,0.12);
}
.scene-kitchen .kn-bench {
  position: absolute;
  left: 8%; right: 18%; bottom: 26%;
  height: 5px;
  background: #d6d3d1;
}
.scene-kitchen .kn-win {
  position: absolute;
  right: 10%; top: 12%;
  width: 28%; height: 28%;
  background: linear-gradient(160deg, #94a3b8, #64748b);
  border: 1px solid rgba(250,250,249,0.25);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.scene-facade {
  background:
    linear-gradient(160deg, rgba(28,25,23,0.1), rgba(28,25,23,0.05)),
    linear-gradient(135deg, #d6d3d1 0%, #a8a29e 100%) !important;
}
.scene-facade .fc-wall {
  position: absolute;
  inset: 10% 12% 32% 12%;
  background: #c4bdb4;
  border: 1px solid #78716c;
}
.scene-facade .fc-win {
  position: absolute;
  left: 22%; top: 22%;
  width: 22%; height: 28%;
  background: #64748b;
  border: 1px solid #44403c;
  box-shadow: 4px 0 0 #64748b, 4px 0 0 1px #44403c,
              0 4px 0 #64748b, 0 4px 0 1px #44403c,
              4px 4px 0 #64748b, 4px 4px 0 1px #44403c;
}
.scene-deck {
  background:
    linear-gradient(180deg, rgba(28,25,23,0.08), rgba(28,25,23,0.2)),
    linear-gradient(135deg, #d6d3d1, #a8a29e) !important;
}
.scene-deck .dk-planks {
  position: absolute;
  left: 8%; right: 8%; top: 18%; bottom: 34%;
  background: repeating-linear-gradient(90deg,
    #a8a29e 0 10px, #78716c 10px 11px, #b5aea6 11px 21px);
  border: 1px solid #78716c;
}
.scene-living {
  background:
    linear-gradient(200deg, rgba(28,25,23,0.15), rgba(28,25,23,0.4)),
    linear-gradient(145deg, #a8a29e, #78716c) !important;
}
.scene-living .lv-room {
  position: absolute;
  left: 10%; right: 10%; top: 14%; bottom: 36%;
  background: linear-gradient(180deg, #e7e5e4 0%, #d6d3d1 100%);
  border: 1px solid rgba(68,64,60,0.35);
}
.scene-living .lv-door {
  position: absolute;
  left: 42%; bottom: 36%;
  width: 16%; height: 40%;
  background: #78716c;
  border: 1px solid #44403c;
}
.ed-case-hero.scene {
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  place-items: stretch;
  color: inherit;
}
.ed-case-hero.scene > span:not(.scene-cap) { display: none; }
.scene-case {
  background:
    linear-gradient(160deg, rgba(28,25,23,0.25), rgba(28,25,23,0.55)),
    linear-gradient(145deg, #d6d3d1 0%, #78716c 55%, #57534e 100%) !important;
}
.scene-case .cs-roof {
  position: absolute;
  left: 15%; right: 15%; top: 18%;
  height: 12%;
  background: #44403c;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.scene-case .cs-body {
  position: absolute;
  left: 22%; right: 22%; top: 28%; bottom: 30%;
  background: #a8a29e;
  border: 1px solid #57534e;
}

/* Landscape garden scenes */
.org-circle.scene {
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}
.org-circle.scene > i { display: none; }
.org-circle.scene .scene-cap {
  background: rgba(44,51,38,0.7);
  font-size: 0.42rem;
}
.scene-garden {
  background: linear-gradient(155deg, #8a9478 0%, #5c6b4a 50%, #3d4a32 100%) !important;
}
.scene-garden .gd-path {
  position: absolute;
  left: 35%; width: 18%; top: 20%; bottom: 28%;
  background: repeating-linear-gradient(180deg, #c5cbb8 0 6px, #a8b09a 6px 12px);
  opacity: 0.7;
  border-radius: 2px;
}
.scene-garden .gd-bed {
  position: absolute;
  left: 8%; right: 48%; bottom: 30%;
  height: 22%;
  background: #3d4a32;
  border-radius: 2px 40% 2px 2px;
  border: 1px solid rgba(255,255,255,0.1);
}
.scene-garden .gd-tree {
  position: absolute;
  right: 14%; top: 18%;
  width: 22%; height: 35%;
  background: radial-gradient(ellipse at 50% 60%, #6b7a5a 0%, #3d4a32 70%);
  border-radius: 50% 50% 40% 40%;
}
.scene-planting {
  background: linear-gradient(145deg, #c5cbb8 0%, #8a9478 60%, #6b7a5a 100%) !important;
}
.scene-planting .gd-rows {
  position: absolute;
  left: 10%; right: 10%; top: 20%; bottom: 34%;
  background: repeating-linear-gradient(0deg,
    #5c6b4a 0 4px, transparent 4px 10px);
  opacity: 0.55;
  border-radius: 2px;
}
.scene-outdoor {
  background: linear-gradient(160deg, #a8b09a 0%, #6b7a5a 100%) !important;
}
.scene-outdoor .gd-patio {
  position: absolute;
  left: 12%; right: 12%; top: 28%; bottom: 34%;
  background:
    repeating-linear-gradient(90deg, #8a9478 0 8px, #6b7a5a 8px 9px),
    #7a8670;
  border: 1px solid rgba(61,74,50,0.4);
}
.org-circle.mini.scene {
  height: 2.2rem;
  margin-bottom: 0.4rem;
}
.org-circle.mini.scene .scene-cap {
  font-size: 0.38rem;
  padding: 0.18rem 0.3rem;
}
.org-ba-pane.scene {
  position: relative;
  overflow: hidden;
  place-items: stretch;
  align-content: end;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}
.org-ba-pane.scene > span:not(.scene-cap) { display: none; }
.org-ba-pane.before.scene-ba-before {
  background: linear-gradient(160deg, #a8a29e 0%, #78716c 100%) !important;
}
.org-ba-pane.before .ba-bare {
  position: absolute;
  left: 15%; right: 15%; top: 20%; bottom: 36%;
  border: 1px dashed rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}
.org-ba-pane.after.scene-ba-after {
  background: linear-gradient(160deg, #8a9478 0%, #5c6b4a 55%, #3d4a32 100%) !important;
}
.org-ba-pane.after .ba-lush {
  position: absolute;
  left: 12%; right: 12%; top: 18%; bottom: 34%;
  background:
    radial-gradient(ellipse at 30% 70%, #6b7a5a 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, #a8b09a 0%, transparent 45%),
    #5c6b4a;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Map panel denser */
.rs-map.scene {
  overflow: hidden;
}
.rs-map .map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(30,58,95,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.06) 1px, transparent 1px),
    linear-gradient(145deg, #e8eef5 0%, #d4dde8 50%, #c5d0dd 100%);
  background-size: 12px 12px, 12px 12px, auto;
}
.rs-map .map-zone {
  position: absolute;
  left: 22%; top: 18%;
  width: 48%; height: 42%;
  border-radius: 50%;
  background: rgba(30,58,95,0.12);
  border: 1.5px solid rgba(30,58,95,0.35);
}
.rs-map .rs-map-dot { z-index: 2; }
.rs-map .rs-map-label { z-index: 2; }

/* Mock footer strips inside browser bodies */
.mock-ft {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.6rem;
  margin-top: 0.65rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}
.layout-residential .mock-ft {
  border-top-color: #e2e8f0;
  color: #94a3b8;
}
.layout-catalog .mock-ft {
  margin: 0;
  padding: 0.4rem 0.9rem 0.65rem;
  background: #fff;
  border-top-color: #e2e8f0;
  color: #94a3b8;
}
.layout-editorial .mock-ft {
  border-top-color: #e7e5e4;
  color: #a8a29e;
}
.layout-organic .mock-ft {
  border-top-color: #e4e2da;
  color: #8a9478;
}
.layout-emergency .mock-ft {
  margin: 0;
  padding: 0.4rem 0.95rem 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.layout-industrial .mock-ft {
  border-top-color: rgba(255,255,255,0.08);
  color: rgba(250,250,249,0.4);
}
.mock-ft .mock-ft-accent {
  color: inherit;
  opacity: 0.9;
}
.work-card .mock-ft { margin-top: 0.4rem; padding-top: 0.3rem; font-size: 0.4rem; }
.browser-body--compact .mock-ft { font-size: 0.4rem; margin-top: 0.35rem; }
.work-card .scene-cap { font-size: 0.38rem; padding: 0.22rem 0.35rem; }
.work-card .cat-tile-img.scene { height: 1.85rem; }
.work-card .em-photo.scene { min-height: 4.8rem; }
.browser-body--compact .em-photo.scene { min-height: 4.5rem; }
.browser-body--compact .org-circle.scene .scene-cap { font-size: 0.36rem; }
.hero-visual .em-photo.scene { min-height: 9.5rem; }
.project-mocks .project-mock:first-child .em-photo.scene { min-height: 9rem; }

/* Form field placeholder text (filled look) */
.em-input:empty::after,
.rs-input:empty::after,
.cat-input:empty::after,
.ind-input:empty::after,
.org-input:empty::after {
  content: none;
}
.field-ph {
  display: block;
  height: 1.3rem;
  background: inherit;
  border: inherit;
  border-radius: inherit;
  font-size: 0.5rem;
  color: rgba(128,128,128,0.7);
  padding: 0 0.4rem;
  line-height: 1.3rem;
  white-space: nowrap;
  overflow: hidden;
}
.em-input.field-ph { color: rgba(232,234,237,0.35); height: 1.3rem; line-height: 1.3rem; }
.em-input.field-ph.tall,
.rs-input.field-ph.tall,
.cat-input.field-ph.tall,
.ind-input.field-ph.tall { height: 2.2rem; line-height: 1.4; padding-top: 0.25rem; white-space: normal; }
.rs-input.field-ph { color: #94a3b8; background: #fff; border: 1px solid #cbd5e1; height: 1.35rem; line-height: 1.35rem; }
.cat-input.field-ph { color: #94a3b8; background: #f8fafc; border: 1px solid #e2e8f0; }
.ind-input.field-ph { color: rgba(250,250,249,0.35); }
.org-input.field-ph { color: #8a9478; background: #fff; border: 1px solid #d4d1c7; height: 1.4rem; line-height: 1.4rem; }
.ed-field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ed-field label {
  font-size: 0.46rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8a29e;
}
.ed-line.field-ph {
  height: auto;
  min-height: 1.25rem;
  line-height: 1.25rem;
  background: #f5f5f4;
  border: 1px solid #e7e5e4;
  color: #a8a29e;
  font-size: 0.5rem;
  padding: 0 0.45rem;
  margin: 0;
}
.ed-line.field-ph::before { display: none; }
.ed-line.field-ph.tall {
  height: 2.2rem;
  min-height: 2.2rem;
  line-height: 1.35;
  padding-top: 0.3rem;
}

/* Star rating micro UI */
.mock-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mock-stars .stars {
  letter-spacing: 0.05em;
  color: #c4a35a;
}
.layout-residential .mock-stars .stars { color: #1e3a5f; }
.layout-organic .mock-stars .stars { color: #5c6b4a; }
.layout-industrial .mock-stars .stars { color: #b45309; }
.layout-catalog .mock-stars .stars { color: #334155; }
.layout-editorial .mock-stars .stars { color: #78716c; }

/* Avatar initials */
.mock-avatar {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  background: rgba(196,163,90,0.2);
  color: #c4a35a;
  border: 1px solid rgba(196,163,90,0.4);
}
.layout-residential .mock-avatar {
  background: #e8eef5;
  color: #1e3a5f;
  border-color: #cbd5e1;
}
.rs-quote-bubble .mock-avatar { margin-right: 0.35rem; }
.rs-quote-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Dense trust / microcopy rows */
.mock-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.55rem;
  margin-top: 0.45rem;
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.layout-residential .mock-micro { color: #94a3b8; }
.layout-organic .mock-micro { color: #8a9478; }
.layout-catalog .mock-micro { color: #94a3b8; padding: 0 0.9rem 0.3rem; background: #fff; }
.layout-editorial .mock-micro { color: #a8a29e; }
.layout-industrial .mock-micro { color: rgba(250,250,249,0.45); }
.work-card .mock-micro { font-size: 0.4rem; }

/* Raise tile content density */
.cat-tile .cat-desc {
  display: block;
  font-size: 0.42rem;
  color: #94a3b8;
  margin: 0.1rem 0 0.25rem;
  line-height: 1.3;
}
.work-card .cat-tile .cat-desc { display: none; }

.org-contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0.75rem;
  align-items: start;
}

/* ——— Rich content panel (replaces empty photo slabs on compact cards) ——— */
.em-panel {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.45rem 0.5rem;
  min-height: 4.8rem;
  border-radius: 2px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(196,163,90,0.28);
}
.em-panel-head {
  font-size: 0.42rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4a35a;
  margin-bottom: 0.1rem;
}
.em-panel-row {
  padding: 0.32rem 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
}
.em-panel-row strong {
  display: block;
  font-size: 0.52rem;
  font-weight: 650;
  color: #f4f5f7;
  letter-spacing: -0.01em;
}
.em-panel-row span {
  display: block;
  font-size: 0.4rem;
  color: rgba(232,234,237,0.5);
  margin-top: 0.08rem;
}
.em-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  margin-top: 0.1rem;
  padding-top: 0.28rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.4rem;
  color: rgba(232,234,237,0.5);
  font-weight: 600;
}
.work-card .em-panel { min-height: 4.5rem; }
.browser-body--compact .em-panel { min-height: 4.4rem; }

/* Denser switchboard art */
.scene-switchboard .sb-frame {
  left: 8%; right: 8%; top: 10%; bottom: 26%;
  background:
    linear-gradient(180deg, #243041 0%, #121820 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 8px 20px rgba(0,0,0,0.35);
}
.scene-switchboard .sb-bus {
  left: 12%; right: 12%; top: 16%;
  height: 5px;
  box-shadow: 0 0 8px rgba(196,163,90,0.45);
}
.scene-switchboard .sb-breakers {
  left: 12%; right: 12%; top: 26%;
  bottom: 34%;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 5px 6px;
  align-content: stretch;
}
.scene-switchboard .sb-breakers i {
  height: auto;
  min-height: 12px;
  background:
    linear-gradient(180deg, #4a5568 0%, #2a3344 55%, #1e2633 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -2px 0 rgba(0,0,0,0.25);
}
.scene-switchboard .sb-breakers i::after {
  content: "";
  display: block;
  width: 40%;
  height: 3px;
  margin: 3px auto 0;
  background: rgba(196,163,90,0.55);
  border-radius: 1px;
}
.scene-switchboard .sb-meter {
  right: 12%; bottom: 30%;
  width: 22%;
  height: 16%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,212,200,0.35), transparent 60%),
    rgba(0,212,200,0.1);
  box-shadow: inset 0 0 0 1px rgba(0,212,200,0.35);
}

/* Denser HVAC product art */
.cat-tile-img.scene { height: 3.1rem; }
.work-card .cat-tile-img.scene { height: 2.15rem; }
.scene-split-unit .hu-unit {
  left: 8%; right: 8%; top: 12%; bottom: 34%;
  background:
    linear-gradient(180deg, #ffffff 0%, #e2e8f0 40%, #cbd5e1 100%);
  box-shadow: 0 3px 8px rgba(15,23,42,0.2);
}
.scene-split-unit .hu-vents {
  left: 14%; right: 14%; top: 42%; height: 22%;
  background: repeating-linear-gradient(180deg, #475569 0 2px, #94a3b8 2px 4px, transparent 4px 7px);
  opacity: 0.75;
}
.scene-split-unit .hu-led {
  position: absolute;
  right: 14%; top: 20%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  z-index: 1;
}
.scene-ducted .hu-grille {
  left: 8%; right: 8%; top: 14%; bottom: 36%;
  background:
    repeating-linear-gradient(90deg, #334155 0 2px, #94a3b8 2px 5px, #cbd5e1 5px 8px),
    #e2e8f0;
  box-shadow: inset 0 0 0 2px #64748b;
}
.scene-service-unit .hu-filter {
  left: 12%; right: 12%; top: 14%; bottom: 38%;
  background:
    repeating-linear-gradient(0deg, #e2e8f0 0 3px, #64748b 3px 4px, #94a3b8 4px 7px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.scene-commercial .hu-box {
  left: 10%; right: 10%; top: 12%; bottom: 36%;
  background: linear-gradient(160deg, #94a3b8, #475569 60%, #334155);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.scene-commercial .hu-fan {
  left: 36%; top: 22%;
  width: 28%;
  border-width: 3px;
  box-shadow: inset 0 0 0 4px rgba(226,232,240,0.25);
}

/* Denser builder kitchen / rooms */
.scene-kitchen .kn-cab {
  left: 6%; bottom: 26%; width: 36%; height: 48%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(0,0,0,0.2) 48%, transparent 50%),
    linear-gradient(180deg, #8a847c, #44403c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.scene-kitchen .kn-cab2 {
  left: 44%; bottom: 26%; width: 26%; height: 48%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(0,0,0,0.2) 48%, transparent 50%),
    linear-gradient(180deg, #9a948c, #57534e);
}
.scene-kitchen .kn-bench {
  left: 6%; right: 14%; bottom: 24%; height: 7px;
  background: linear-gradient(180deg, #e7e5e4, #a8a29e);
  box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}
.scene-kitchen .kn-win {
  right: 8%; top: 10%; width: 30%; height: 32%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.25) 50%, transparent 51%),
    linear-gradient(180deg, transparent 49%, rgba(255,255,255,0.25) 50%, transparent 51%),
    linear-gradient(160deg, #7dd3fc, #0ea5e9 60%, #0369a1);
  box-shadow: 0 0 0 2px rgba(250,250,249,0.35), 0 4px 12px rgba(0,0,0,0.25);
}
.scene-kitchen .kn-tap {
  position: absolute;
  left: 52%; bottom: 30%;
  width: 3px; height: 12%;
  background: #d6d3d1;
  z-index: 1;
}
.scene-facade .fc-wall {
  inset: 8% 10% 30% 10%;
  background:
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(68,64,60,0.15) 10px 11px),
    #c4bdb4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.scene-facade .fc-win {
  left: 20%; top: 18%; width: 24%; height: 32%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.3) 50%),
    linear-gradient(180deg, transparent 49%, rgba(255,255,255,0.3) 50%),
    #0ea5e9;
  box-shadow:
    5px 0 0 #0ea5e9, 5px 0 0 1px #44403c,
    0 5px 0 #0ea5e9, 0 5px 0 1px #44403c,
    5px 5px 0 #0ea5e9, 5px 5px 0 1px #44403c,
    inset 0 0 0 1px #44403c;
}
.scene-facade .fc-door {
  position: absolute;
  left: 58%; bottom: 30%;
  width: 14%; height: 38%;
  background: #57534e;
  border: 1px solid #292524;
  z-index: 1;
}
.scene-deck .dk-planks {
  left: 6%; right: 6%; top: 14%; bottom: 32%;
  background: repeating-linear-gradient(90deg,
    #b45309 0 2px,
    #d6a574 2px 12px,
    #a16207 12px 13px,
    #c4a484 13px 24px);
  box-shadow: inset 0 0 0 1px #78716c, 0 3px 8px rgba(0,0,0,0.15);
}
.scene-deck .dk-rail {
  position: absolute;
  left: 6%; right: 6%; top: 14%;
  height: 8px;
  background: #78716c;
  z-index: 1;
}
.scene-living .lv-room {
  left: 8%; right: 8%; top: 10%; bottom: 32%;
  background:
    linear-gradient(180deg, #f5f5f4 0%, #e7e5e4 70%, #d6d3d1 100%);
  box-shadow: inset 0 0 0 1px #a8a29e;
}
.scene-living .lv-door {
  left: 40%; bottom: 32%; width: 18%; height: 45%;
  background: linear-gradient(180deg, #a8a29e, #57534e);
  border: 1px solid #44403c;
  box-shadow: -18px 0 0 -2px #0ea5e9, 18px 0 0 -2px #0ea5e9;
}
.scene-living .lv-sofa {
  position: absolute;
  left: 14%; bottom: 36%;
  width: 28%; height: 14%;
  background: #78716c;
  border-radius: 2px 2px 0 0;
  z-index: 1;
}
.scene-case .cs-body {
  left: 18%; right: 18%; top: 26%; bottom: 28%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(0,0,0,0.1) 50%),
    #d6d3d1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.scene-case .cs-win {
  position: absolute;
  left: 28%; top: 38%;
  width: 18%; height: 22%;
  background: #0ea5e9;
  border: 1px solid #44403c;
  z-index: 1;
  box-shadow: 22px 0 0 #0ea5e9, 22px 0 0 1px #44403c;
}

/* Denser garden scenes */
.scene-garden .gd-path {
  left: 38%; width: 22%; top: 12%; bottom: 26%;
  background: repeating-linear-gradient(180deg, #e7e5e4 0 5px, #a8a29e 5px 10px);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.scene-garden .gd-bed {
  left: 6%; right: 46%; bottom: 26%; height: 28%;
  background:
    radial-gradient(circle at 20% 40%, #6b7a5a 0 6px, transparent 7px),
    radial-gradient(circle at 50% 60%, #8a9478 0 5px, transparent 6px),
    radial-gradient(circle at 75% 35%, #5c6b4a 0 7px, transparent 8px),
    #3d4a32;
  border-radius: 3px;
}
.scene-garden .gd-tree {
  right: 10%; top: 10%; width: 28%; height: 42%;
  background:
    radial-gradient(ellipse at 50% 45%, #8a9478 0%, #5c6b4a 45%, #3d4a32 75%);
  box-shadow: -10px 8px 0 -4px #6b7a5a;
}
.scene-planting .gd-rows {
  left: 8%; right: 8%; top: 14%; bottom: 32%;
  background:
    repeating-linear-gradient(0deg,
      #3d4a32 0 5px,
      #6b7a5a 5px 6px,
      #8a9478 6px 11px,
      #5c6b4a 11px 12px);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
  opacity: 0.95;
}
.scene-outdoor .gd-patio {
  left: 8%; right: 8%; top: 20%; bottom: 32%;
  background:
    repeating-linear-gradient(90deg, #a8a29e 0 10px, #78716c 10px 11px),
    #8a847c;
  box-shadow: inset 0 0 0 1px #57534e, 0 3px 8px rgba(0,0,0,0.15);
}
.scene-outdoor .gd-chair {
  position: absolute;
  left: 22%; top: 36%;
  width: 16%; height: 18%;
  background: #5c6b4a;
  border-radius: 2px;
  z-index: 1;
  box-shadow: 28px 0 0 #5c6b4a;
}
.org-ba-pane.before .ba-bare {
  left: 12%; right: 12%; top: 16%; bottom: 34%;
  border: 1.5px dashed rgba(255,255,255,0.45);
  background:
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(255,255,255,0.06) 6px 7px),
    rgba(0,0,0,0.12);
}
.org-ba-pane.after .ba-lush {
  left: 10%; right: 10%; top: 14%; bottom: 32%;
  background:
    radial-gradient(ellipse at 25% 70%, #a8b09a 0%, transparent 40%),
    radial-gradient(ellipse at 70% 35%, #8a9478 0%, transparent 35%),
    radial-gradient(ellipse at 55% 80%, #6b7a5a 0%, transparent 30%),
    linear-gradient(180deg, #6b7a5a, #3d4a32);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

/* Compact gallery: builder project rows */
.ed-proj-rows {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.55rem;
}
.ed-proj-row {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.4rem;
  border: 1px solid #e7e5e4;
  background: #fff;
}
.ed-thumb {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #d6d3d1, #a8a29e);
}
.ed-thumb.scene-kitchen { background: linear-gradient(145deg, #a8a29e, #57534e); }
.ed-thumb.scene-facade { background: linear-gradient(135deg, #d6d3d1, #a8a29e); }
.ed-thumb.scene-living { background: linear-gradient(145deg, #c4bdb4, #78716c); }
.ed-thumb .kn-win,
.ed-thumb .fc-win {
  position: absolute;
  left: 18%; top: 18%;
  width: 40%; height: 40%;
  background: #0ea5e9;
  border: 1px solid rgba(0,0,0,0.25);
}
.ed-thumb .lv-sofa {
  position: absolute;
  left: 15%; bottom: 18%;
  width: 55%; height: 22%;
  background: #57534e;
}
.ed-proj-row strong {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  color: #1c1917;
  font-family: var(--font-display);
}
.ed-proj-row p {
  margin: 0.1rem 0 0;
  font-size: 0.45rem;
  color: #a8a29e;
}

/* Compact gallery: HVAC price rows */
.cat-price-rows {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.45rem 0.65rem 0.55rem;
  background: #fff;
}
.cat-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.05rem 0.5rem;
  padding: 0.4rem 0.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
}
.cat-price-row strong {
  font-size: 0.55rem;
  color: #0f172a;
  font-weight: 650;
  grid-column: 1;
}
.cat-price-row span {
  font-size: 0.42rem;
  color: #94a3b8;
  grid-column: 1;
}
.cat-price-row em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-style: normal;
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #334155;
  white-space: nowrap;
}

/* Compact gallery: landscaper side list */
.org-side-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.org-side-item {
  padding: 0.4rem 0.45rem;
  background: #fff;
  border: 1px solid #e4e2da;
}
.org-side-item strong {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  color: #2c3326;
}
.org-side-item span {
  display: block;
  font-size: 0.42rem;
  color: #8a9478;
  margin-top: 0.1rem;
}
.org-side-list .mock-stars {
  margin-top: 0.15rem;
  color: #5c6654;
}
.browser-body--compact .org-hero-asym {
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  align-items: start;
}
.browser-body--compact .cat-h { padding: 0.35rem 0.65rem 0.15rem; }


/* Stronger thumbs so they never read as blank slabs */
.ed-thumb {
  background:
    linear-gradient(160deg, rgba(28,25,23,0.15), rgba(28,25,23,0.45)),
    linear-gradient(145deg, #d6d3d1, #78716c) !important;
  border: 1px solid #a8a29e;
}
.ed-thumb.scene-kitchen {
  background:
    linear-gradient(160deg, rgba(28,25,23,0.2), rgba(28,25,23,0.5)),
    linear-gradient(145deg, #a8a29e, #44403c) !important;
}
.ed-thumb.scene-kitchen::before {
  content: "";
  position: absolute;
  left: 10%; bottom: 18%;
  width: 35%; height: 45%;
  background: #57534e;
  border: 1px solid rgba(255,255,255,0.1);
}
.ed-thumb.scene-facade::before {
  content: "";
  position: absolute;
  left: 12%; top: 14%; right: 12%; bottom: 22%;
  background: #c4bdb4;
  border: 1px solid #78716c;
}
.ed-thumb.scene-living::before {
  content: "";
  position: absolute;
  left: 12%; top: 14%; right: 12%; bottom: 22%;
  background: #e7e5e4;
  border: 1px solid #a8a29e;
}
.work-card .rs-suburb-bar {
  margin-top: 0.35rem;
  font-size: 0.42rem;
  padding: 0.3rem 0 0;
}
.browser-body--compact .ind-sub { display: block !important; }
