@font-face {
  font-family: "TASA Orbiter";
  src: url("assets/fonts/tasa-orbiter.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #0b1824;
  --ink-soft: #243441;
  --muted: #60717f;
  --paper: #f5f8fa;
  --white: #ffffff;
  --line: #dbe4e9;
  --blue: #f2c300;
  --blue-dark: #d3a900;
  --cyan: #ffd84d;
  --lime: #f2c300;
  --shadow: 0 20px 55px rgba(9, 28, 44, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.06rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
}

button,
.button {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(219, 228, 233, 0.85);
  background: rgba(245, 248, 250, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.025em;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a:not(.button) {
  position: relative;
  padding: 26px 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 700;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: 180ms ease;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(10, 132, 255, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 12px 28px rgba(10, 132, 255, 0.28);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(10, 132, 255, 0.32);
  outline-offset: 3px;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.button.ghost:hover {
  border-color: #c3d1da;
  background: #edf4f8;
}

.button.small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.lede {
  max-width: 690px;
  margin-bottom: 30px;
  color: #c3d3df;
  font-size: clamp(1.05rem, 1.8vw, 1.27rem);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0%, rgba(85, 215, 255, 0.2), transparent 32%),
    radial-gradient(circle at 25% 120%, rgba(10, 132, 255, 0.24), transparent 38%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent, black 35%, black 100%);
}

.hero .eyebrow {
  color: var(--cyan);
}

.hero-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: 64px;
  padding-block: 92px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 span {
  color: var(--cyan);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
  color: #9db0bd;
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200, 255, 89, 0.12);
}

.panel-visual {
  position: relative;
  height: 470px;
}

.panel-box {
  position: absolute;
  inset: 20px 34px 28px 30px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.035));
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}

.panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  color: #b7c8d4;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel-label::after {
  content: "LIVE";
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(200,255,89,0.14);
  color: var(--lime);
  letter-spacing: 0.08em;
}

.breaker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
}

.breaker {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px;
  background: rgba(2, 10, 16, 0.36);
  color: #8fa3b0;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breaker::before {
  content: "";
  width: 12px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 12px rgba(85,215,255,0.48);
}

.breaker::after {
  content: "ON";
  color: var(--lime);
  font-size: 0.52rem;
}

.panel-cable {
  position: absolute;
  width: 230px;
  height: 230px;
  right: -110px;
  bottom: -110px;
  border: 16px solid rgba(85, 215, 255, 0.16);
  border-radius: 50%;
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 215px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 25px 55px rgba(0,0,0,0.28);
}

.floating-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.floating-card small {
  color: var(--muted);
  line-height: 1.4;
}

.section {
  padding-block: 100px;
}

.section.white {
  background: var(--white);
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.section-head > div:first-child {
  max-width: 710px;
}

.section-head p:last-child,
.copy-muted {
  margin-bottom: 0;
  color: var(--muted);
}

.dark .copy-muted,
.dark .section-head p:last-child {
  color: #aebfca;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #bed0dc;
  box-shadow: var(--shadow);
}

.service-card .number {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 10px;
  background: #eaf5ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.project-placeholder {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(to top, rgba(7,19,29,0.95), rgba(7,19,29,0.08) 72%),
    linear-gradient(135deg, #1c4054, #0a84ff 54%, #55d7ff);
}

.project-placeholder.alt {
  background:
    linear-gradient(to top, rgba(7,19,29,0.95), rgba(7,19,29,0.08) 72%),
    linear-gradient(135deg, #2a3945, #586e7c 55%, #a5c0cd);
}

.project-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(30deg, transparent 42%, rgba(255,255,255,0.45) 43%, transparent 44%),
    linear-gradient(-30deg, transparent 58%, rgba(255,255,255,0.3) 59%, transparent 60%);
  background-size: 70px 70px;
}

.project-placeholder > * {
  position: relative;
}

.photo-label {
  align-self: start;
  margin-bottom: auto;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  background: rgba(9,24,36,0.36);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.project-placeholder p {
  margin: 0;
  color: #cfdae1;
  font-size: 0.9rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 48px;
  border-radius: 26px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 25px 65px rgba(10,132,255,0.22);
}

.cta-band h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-band p {
  margin: 0;
  color: #e3f2ff;
}

.cta-band .button {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.page-hero {
  padding-block: 104px 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0, rgba(85,215,255,0.18), transparent 32%),
    var(--ink);
}

.page-hero .eyebrow {
  color: var(--cyan);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero .lede {
  max-width: 750px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 64px;
}

.hero-detail-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  background: rgba(255,255,255,0.065);
}

.hero-detail-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-detail-card li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #cfdae1;
}

.hero-detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card .icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: #e9f5ff;
  color: var(--blue);
  font-weight: 900;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 0 26px 0 0;
  counter-increment: process;
}

.process-step + .process-step {
  padding-left: 26px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 38px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step p {
  color: #aebfca;
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 0 18px 38px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 17px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #e9f5ff;
  color: var(--blue);
  font-size: 0.75rem;
}

.ad-callout {
  margin-top: 28px;
  padding: 22px;
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: #eaf5ff;
}

.ad-callout strong {
  display: block;
  margin-bottom: 4px;
}

.ad-callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 62px;
  align-items: start;
}

.quote-sidebar {
  position: sticky;
  top: 110px;
}

.contact-card {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card a,
.contact-card div {
  display: block;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.contact-card > *:last-child {
  border-bottom: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 0.95rem;
}

.quote-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.required {
  color: var(--blue);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd8df;
  border-radius: 10px;
  outline: none;
  background: #fbfdfe;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10,132,255,0.1);
}

.field .help {
  color: var(--muted);
  font-size: 0.75rem;
}

.upload-zone {
  padding: 18px;
  border: 1px dashed #9fb5c3;
  border-radius: 12px;
  background: #f4f9fc;
}

.upload-zone input {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 2px 0 0;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.request-result {
  display: none;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid #b9d6ea;
  border-radius: 16px;
  background: #eff8ff;
}

.request-result.visible {
  display: block;
}

.request-result.error {
  border-color: #d8b2ae;
  background: #fff3f1;
}

.request-result h3 {
  margin-bottom: 8px;
}

.request-result p {
  color: var(--ink-soft);
}

.request-result .result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-preview {
  max-height: 220px;
  margin: 18px 0;
  padding: 16px;
  overflow: auto;
  border: 1px solid #cbdde9;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  white-space: pre-wrap;
}

.privacy-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer {
  padding-block: 58px 30px;
  color: #c1d0d9;
  background: #07121b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 60px;
  padding-bottom: 48px;
}

.site-footer .brand-copy strong {
  color: var(--white);
}

.site-footer .brand-copy small {
  color: #8398a6;
}

.footer-copy {
  max-width: 470px;
  margin: 20px 0 0;
  color: #8fa3b0;
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  color: #9db0bd;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #708692;
  font-size: 0.76rem;
}

/* Homelet-inspired Maskine Electric art direction */
.home-hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(6, 10, 13, 0.94) 0%, rgba(6, 10, 13, 0.72) 48%, rgba(6, 10, 13, 0.22) 100%),
    url("assets/project-multi-unit.webp") center 42% / cover no-repeat;
}

.home-hero::before {
  opacity: 0.08;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.64fr);
  min-height: 760px;
}

.home-hero .hero-copy {
  max-width: 780px;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.7vw, 6.5rem);
}

.home-hero h1 span {
  color: var(--white);
}

.home-hero .lede {
  max-width: 630px;
  color: #e1e4e5;
}

.home-hero .trust-strip {
  color: #d3d7d9;
}

.home-hero .trust-strip span::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(242, 195, 0, 0.18);
}

.hero-stat-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 310px);
  margin-bottom: 26px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 2px;
  background: rgba(8, 13, 17, 0.78);
  backdrop-filter: blur(10px);
}

.hero-stat-card .micro {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stat-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.hero-stat-card p {
  margin: 0;
  color: #b8c0c5;
  font-size: 0.88rem;
}

.home-services {
  background: var(--white);
}

.home-services .service-card {
  min-height: 330px;
  border-color: #2b3237;
  border-radius: 2px;
  color: var(--white);
  background: #171d21;
}

.home-services .service-card:hover {
  border-color: #4c5154;
  box-shadow: 0 24px 55px rgba(7, 13, 18, 0.2);
}

.home-services .service-card .number {
  border-radius: 2px;
  background: var(--blue);
  color: #111518;
}

.home-services .service-card p {
  color: #aab2b7;
}

.home-services .text-link {
  color: var(--blue);
}

.quality-section {
  overflow: hidden;
  background: #151a1e;
  color: var(--white);
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 74px;
}

.quality-copy {
  padding-block: 46px;
}

.quality-copy .eyebrow {
  color: var(--blue);
}

.quality-copy p {
  color: #b4bdc2;
}

.quality-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 38px;
}

.quality-point {
  padding-top: 18px;
  border-top: 1px solid #3a4145;
}

.quality-point strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.quality-point span {
  color: #9fa8ad;
  font-size: 0.82rem;
}

.quality-photo {
  position: relative;
  min-height: 650px;
}

.quality-photo img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
}

.quality-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 150px;
  background: linear-gradient(90deg, #151a1e, transparent);
}

.quality-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  background: rgba(10, 13, 15, 0.76);
  color: #d9dddf;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.projects-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.project-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #1a2024;
}

.project-photo:first-child {
  grid-row: 1 / span 2;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-photo:hover img {
  transform: scale(1.025);
}

.project-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 58px 24px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(4, 8, 10, 0.82));
  font-weight: 800;
}

.project-photo figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dark-cta {
  border: 1px solid #2d3438;
  border-radius: 2px;
  background: #141a1e;
  box-shadow: none;
}

.dark-cta .button {
  background: var(--blue);
  color: #111518;
}

.dark-cta p {
  color: #aeb7bc;
}

.dark-cta .button:hover {
  background: #ffd736;
}

.page-hero.photo-residential {
  background:
    linear-gradient(90deg, rgba(7,11,14,0.93), rgba(7,11,14,0.45)),
    url("assets/project-kitchen.webp") center 48% / cover no-repeat;
}

.page-hero.photo-service {
  background:
    linear-gradient(90deg, rgba(7,11,14,0.94), rgba(7,11,14,0.4)),
    url("assets/project-panels.webp") center 47% / cover no-repeat;
}

.page-hero.photo-quote {
  background:
    linear-gradient(90deg, rgba(7,11,14,0.96), rgba(7,11,14,0.5)),
    url("assets/project-bathroom.webp") center 34% / cover no-repeat;
}

.page-hero.photo-residential,
.page-hero.photo-service,
.page-hero.photo-quote {
  min-height: 560px;
  display: flex;
  align-items: end;
}

.page-hero .lede {
  color: #e1e4e5;
}

.feature-card,
.quote-card,
.contact-card,
.field input,
.field select,
.field textarea,
.request-result,
.result-preview,
.upload-zone {
  border-radius: 2px;
}

.button,
.site-nav .button {
  border-radius: 2px;
  color: #111518;
  box-shadow: none;
}

.button.secondary {
  color: var(--white);
}

.button.ghost {
  color: var(--ink);
}

.brand-mark {
  border-radius: 2px;
}

@media (max-width: 980px) {
  .home-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-card {
    justify-self: start;
    margin-bottom: 0;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quality-photo {
    min-height: 520px;
  }

  .quality-photo img {
    height: 520px;
  }

  .quality-photo::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .home-hero,
  .home-hero .hero-grid {
    min-height: 690px;
  }

  .home-hero {
    background-position: 58% center;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-stat-card {
    display: none;
  }

  .home-services .service-card {
    min-height: 265px;
  }

  .quality-points {
    grid-template-columns: 1fr;
  }

  .quality-photo,
  .quality-photo img {
    height: 430px;
    min-height: 430px;
  }

  .projects-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 330px);
  }

  .project-photo:first-child {
    grid-row: auto;
  }
}

/* Premium editorial refinement — version 2 */
:root {
  --ink: #111518;
  --ink-soft: #30373b;
  --paper: #f4f2ed;
  --line: #d8d6cf;
  --blue: #f3c619;
  --blue-dark: #d9ac00;
  --cyan: #f8d442;
  --lime: #f3c619;
}

.site-header {
  border-bottom-color: rgba(255,255,255,0.12);
  background: rgba(0, 0, 0, 0.96);
}

.nav-wrap {
  min-height: 92px;
}

.brand {
  gap: 0;
}

.brand-logo {
  width: 132px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.site-nav a:not(.button) {
  padding-block: 33px;
  color: #d6d6d2;
}

.site-nav a:not(.button):hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:not(.button)::after {
  bottom: 27px;
  background: var(--blue);
}

.site-nav .button {
  background: var(--blue);
  color: #111518;
}

.site-nav .button:hover {
  background: #ffdc45;
}

.home-hero {
  min-height: calc(100vh - 92px);
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.95) 0%, rgba(4, 6, 8, 0.76) 48%, rgba(4, 6, 8, 0.22) 100%),
    url("assets/project-multi-unit.webp") center 47% / cover no-repeat;
}

.home-hero .hero-grid {
  min-height: calc(100vh - 92px);
  align-items: end;
  padding-block: 110px 72px;
}

.home-hero h1 {
  max-width: 860px;
  margin-bottom: 25px;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.home-hero .lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: #e7e5df;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-stat-card {
  width: min(100%, 340px);
  margin-bottom: 0;
  padding: 25px 25px 27px;
  border: 0;
  border-top: 3px solid var(--blue);
  background: rgba(4, 6, 8, 0.8);
}

.hero-stat-card strong {
  margin-block: 13px 10px;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.hero-stat-card p {
  color: #c4c3bd;
}

.editorial-services {
  padding-block: 132px;
  background: var(--paper);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.editorial-intro h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.05rem);
  line-height: 0.98;
}

.editorial-intro > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.08rem;
}

.editorial-service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 314px 326px 360px;
  gap: 18px;
}

.editorial-service {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.editorial-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(.2,.7,.2,1);
}

.editorial-service:hover img {
  transform: scale(1.025);
}

.service-residential {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.service-residential img {
  object-position: 48% center;
}

.service-new-build {
  grid-column: 8 / 13;
  grid-row: 1;
}

.service-renovation {
  grid-column: 8 / 13;
  grid-row: 2;
}

.service-renovation img {
  object-position: center 27%;
}

.service-multi {
  grid-column: 1 / 13;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-top: 1px solid #c8c6c0;
  border-bottom: 1px solid #c8c6c0;
  background: #fff;
}

.service-multi-photo {
  min-width: 0;
  overflow: hidden;
}

.service-multi-photo img {
  object-position: center 47%;
}

.service-multi-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 48px;
}

.service-multi-copy h3,
.service-copy h3 {
  font-size: clamp(2.25rem, 3.7vw, 3.7rem);
  line-height: 0.98;
}

.service-multi-copy p,
.service-copy p {
  color: var(--muted);
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 40px;
  background: #151a1d;
  color: var(--white);
}

.service-copy p {
  max-width: 480px;
  color: #afb4b6;
}

.service-number,
.service-overlay > span {
  color: var(--blue);
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 10, 0.94), rgba(6, 8, 10, 0.04) 68%);
  pointer-events: none;
}

.service-overlay {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 44px;
  color: var(--white);
}

.service-overlay h3 {
  max-width: 580px;
  margin: 10px 0 12px;
  font-size: clamp(2.3rem, 4.1vw, 4.2rem);
  line-height: 0.97;
}

.service-overlay p {
  max-width: 470px;
  color: #dcdfde;
}

.service-overlay.compact {
  padding: 30px 32px;
}

.service-overlay.compact h3 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.65vw, 2.6rem);
}

.editorial-service .text-link {
  width: fit-content;
  color: var(--blue);
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
}

.upgrade-rail {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
  padding: 27px 30px;
  border: 1px solid #c8c6c0;
  background: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.upgrade-rail:hover {
  border-color: #171c20;
  background: #171c20;
  color: var(--white);
}

.upgrade-rail small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.upgrade-rail:hover small,
.upgrade-rail:hover > span:nth-child(2) {
  color: #b8c0c4;
}

.upgrade-rail strong {
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
}

.upgrade-rail > span:nth-child(2) {
  color: var(--muted);
  font-size: 0.94rem;
}

.upgrade-rail b {
  color: var(--blue);
  font-size: 1.35rem;
}

.quality-section {
  padding-block: 126px;
}

.quality-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: 94px;
}

.quality-copy {
  padding: 0;
}

.quality-copy h2 {
  max-width: 690px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

.quality-copy > p:last-of-type {
  max-width: 630px;
  font-size: 1.08rem;
}

.quality-points {
  gap: 22px 28px;
  margin-top: 46px;
}

.quality-point {
  border-top-color: #454a4d;
}

.quality-photo {
  min-height: 500px;
  height: 500px;
  margin: 0;
  overflow: visible;
  isolation: isolate;
}

.quality-photo::before {
  display: none;
}

.quality-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 52%;
  height: 44%;
  background: var(--blue);
}

.quality-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 53%;
}

.quality-photo figcaption {
  right: auto;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  background: rgba(8, 10, 12, 0.88);
  letter-spacing: 0;
  text-transform: none;
}

.quality-photo figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.projects-mosaic {
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: 304px 304px;
  gap: 20px;
}

.project-photo:first-child {
  grid-row: 1 / span 2;
}

.project-photo img {
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(.2,.7,.2,1);
}

.project-kitchen img {
  object-position: 52% center;
}

.project-exterior img {
  object-position: center 48%;
}

.project-detail img {
  object-position: center 28%;
}

.project-photo figcaption {
  padding: 76px 27px 24px;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.03rem;
}

.project-photo figcaption span {
  color: var(--blue);
}

.dark-cta {
  padding: 58px 62px;
}

.site-footer .brand-logo {
  background: #000;
}

.site-footer {
  background: #000;
}

.footer-logo {
  width: 176px;
  height: auto;
}

.footer-copy {
  margin-top: 22px;
}

.page-hero.photo-residential,
.page-hero.photo-service,
.page-hero.photo-quote {
  min-height: 610px;
}

.page-hero h1 {
  font-size: clamp(3.25rem, 6.2vw, 6rem);
  line-height: 0.96;
}

.hero-detail-card {
  border-radius: 0;
  border-top: 3px solid var(--blue);
  background: rgba(7, 9, 10, 0.76);
}

.feature-card {
  padding: 34px 24px 44px 0;
  border: 0;
  border-top: 1px solid #c9c7c1;
  border-radius: 0;
  background: transparent;
}

.feature-card .icon {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 52px;
  border-radius: 0;
  background: transparent;
  color: #bd9700;
  font-family: "TASA Orbiter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  font-size: 1.55rem;
}

.quote-card,
.contact-card {
  box-shadow: none;
}

.quote-card {
  border-top: 4px solid var(--blue);
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 84px;
  }

  .brand-logo {
    width: 118px;
    height: 76px;
  }

  .site-nav {
    inset: 84px 0 auto;
    border-bottom-color: rgba(255,255,255,0.1);
    background: #07090a;
  }

  .site-nav a:not(.button) {
    padding: 13px 0;
    color: #e1e1dc;
  }

  .nav-toggle {
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: var(--white);
  }

  .editorial-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .editorial-intro > p {
    max-width: 620px;
  }

  .editorial-service-grid {
    grid-template-rows: 560px 300px 320px 340px;
  }

  .service-residential {
    grid-column: 1 / 13;
    grid-row: 1;
  }

  .service-new-build {
    grid-column: 1 / 7;
    grid-row: 2;
  }

  .service-renovation {
    grid-column: 7 / 13;
    grid-row: 2;
  }

  .service-multi {
    grid-column: 1 / 13;
    grid-row: 3 / 5;
    grid-template-columns: 1fr 1fr;
  }

  .quality-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 54px;
  }

  .quality-photo,
  .quality-photo img {
    min-height: 460px;
    height: 460px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand-logo {
    width: 102px;
    height: 68px;
  }

  .site-nav {
    inset: 78px 0 auto;
  }

  .home-hero,
  .home-hero .hero-grid {
    min-height: calc(100svh - 78px);
  }

  .home-hero {
    background-position: 61% center;
  }

  .home-hero .hero-grid {
    align-items: end;
    padding-block: 92px 48px;
  }

  .home-hero h1 {
    font-size: clamp(3.08rem, 15.2vw, 4.65rem);
    line-height: 0.94;
  }

  .home-hero .lede {
    max-width: 93%;
    font-size: 1.02rem;
  }

  .trust-strip {
    gap: 12px 18px;
    margin-top: 31px;
  }

  .trust-strip span:last-child {
    display: none;
  }

  .editorial-services {
    padding-block: 88px;
  }

  .editorial-intro {
    margin-bottom: 40px;
  }

  .editorial-intro h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .editorial-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 510px 330px 380px auto;
    gap: 14px;
  }

  .service-residential,
  .service-new-build,
  .service-renovation,
  .service-multi {
    grid-column: 1;
  }

  .service-residential { grid-row: 1; }
  .service-new-build { grid-row: 2; }
  .service-renovation { grid-row: 3; }
  .service-multi {
    grid-row: 4;
    grid-template-columns: 1fr;
  }

  .service-multi-photo {
    min-height: 290px;
  }

  .service-multi-copy {
    padding: 34px 28px 38px;
  }

  .service-copy {
    padding: 34px 28px;
  }

  .service-overlay,
  .service-overlay.compact {
    padding: 28px;
  }

  .service-overlay h3 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .service-overlay.compact h3 {
    font-size: 2rem;
  }

  .upgrade-rail {
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 23px 22px;
  }

  .upgrade-rail > span:nth-child(2) {
    display: none;
  }

  .quality-section {
    padding-block: 88px 106px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .quality-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .quality-photo,
  .quality-photo img {
    min-height: 410px;
    height: 410px;
  }

  .quality-photo {
    width: calc(100% - 15px);
  }

  .quality-photo::after {
    right: -15px;
    bottom: -15px;
  }

  .projects-mosaic {
    grid-template-rows: 470px 320px 370px;
    gap: 14px;
  }

  .project-photo:first-child {
    grid-row: auto;
  }

  .project-kitchen img { object-position: 52% center; }
  .project-exterior img { object-position: 56% center; }
  .project-detail img { object-position: center 24%; }

  .dark-cta {
    padding: 36px 27px;
  }

  .page-hero.photo-residential,
  .page-hero.photo-service,
  .page-hero.photo-quote {
    min-height: 560px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.45rem);
  }

  .feature-card .icon {
    margin-bottom: 28px;
  }

  .footer-logo {
    width: 150px;
    height: auto;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    padding: 22px 20px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 22px 38px rgba(9,28,44,0.12);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a:not(.button) {
    padding: 12px 0;
    font-size: 1.05rem;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
    padding-block: 78px 48px;
  }

  .panel-visual {
    width: min(100%, 560px);
    height: 380px;
    margin-inline: auto;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 0;
  }

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .split,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-copy small {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .hero-grid {
    min-height: 0;
  }

  .panel-visual {
    height: 330px;
  }

  .panel-box {
    inset: 10px 0 30px;
    padding: 20px;
  }

  .floating-card {
    right: 4px;
    width: 190px;
  }

  .breaker {
    grid-template-columns: 13px 1fr;
  }

  .breaker::after {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .section-head {
    display: block;
    margin-bottom: 34px;
  }

  .section-head .button {
    margin-top: 20px;
  }

  .services-grid,
  .feature-grid,
  .proof-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3) {
    padding: 0 0 26px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step::before {
    margin-bottom: 18px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }

  .quote-card {
    padding: 24px 18px;
  }

  .field.full {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 7px;
  }
}

/* Mobile navigation contrast and spacing */
@media (max-width: 980px) {
  .site-nav {
    gap: 2px;
    padding: 12px 20px 18px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: #07090a;
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.28);
  }

  .site-nav a:not(.button) {
    padding: 9px 0;
    color: #ffffff;
  }

  .site-nav a:not(.button):hover,
  .site-nav a:not(.button)[aria-current="page"] {
    color: #ffffff;
  }
}
