/* ============================================================
   NEXURA SOLUTIONS — styles.css
   Design System: Dark slate / amber accent / geometric type
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Colours */
  --color-slate:        #1B2126;
  --color-white:        #F2F4F5;
  --color-amber:        #E6A82D;
  --color-slate-light:  #242B31;
  --color-slate-mid:    #2E363D;
  --color-text-muted:   #8A929A;
  --color-amber-dark:   #C8921A;
  --color-amber-light:  #F0BC45;

  /* Typography */
  --font-display: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Spacing (8-point grid) */
  --space-8:   8px;
  --space-16:  16px;
  --space-24:  24px;
  --space-32:  32px;
  --space-40:  40px;
  --space-48:  48px;
  --space-56:  56px;
  --space-64:  64px;
  --space-80:  80px;
  --space-96:  96px;
  --space-120: 120px;

  /* Layout */
  --max-width:      1200px;
  --text-max-width: 680px;
  --nav-height:     72px;

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-slow:   0.4s ease;

  /* Borders */
  --border-radius:   4px;
  --border-radius-lg: 8px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--color-slate);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

address {
  font-style: normal;
}

::selection {
  background-color: var(--color-amber);
  color: var(--color-slate);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
}

h1 {
  font-weight: 300;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -1px;
}

h2 {
  font-weight: 300;
  font-size: clamp(30px, 4.5vw, 44px);
  letter-spacing: -1px;
}

h3 {
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.5px;
}

h4 {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.3px;
}

p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  max-width: var(--text-max-width);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-amber {
  color: var(--color-amber);
}

.label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.overline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-amber);
  display: block;
  margin-bottom: var(--space-16);
}

/* ============================================================
   4. ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-16);
  background: var(--color-amber);
  color: var(--color-slate);
  padding: var(--space-8) var(--space-16);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--border-radius);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-16);
}

:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-24);
}

.section {
  padding-block: var(--space-96);
}

.section--lg {
  padding-block: var(--space-120);
}

.section--sm {
  padding-block: var(--space-64);
}

.section-header {
  margin-bottom: var(--space-64);
}

.section-header p {
  margin-top: var(--space-24);
  color: var(--color-text-muted);
}

.grid-2 {
  display: grid;
  gap: var(--space-32);
}

.grid-3 {
  display: grid;
  gap: var(--space-32);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark card */
.card {
  background: var(--color-slate-light);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  padding: var(--space-40);
}

.card--sm {
  padding: var(--space-32);
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--space-16);
  row-gap: var(--space-16);
}

.card--sm .value-card__icon {
  grid-column: 1;
  grid-row: 1;
}

.card--sm h3 {
  align-self: center;
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0 !important;
}

.card--sm p {
  grid-column: 1 / -1;
  grid-row: 2;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--color-slate-mid);
  border: none;
  margin-block: var(--space-64);
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.nav--scrolled {
  background: rgba(27, 33, 38, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-slate-mid);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-32);
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-24);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 3px;
  text-decoration: none;
  margin-top: 6px;
}

.nav__logo img {
  height: 22px;
  width: auto;
  display: block;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1;
}

.nav__links {
  display: none;
}

.nav__cta {
  display: none !important;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--space-8);
  cursor: pointer;
}

.nav__hamburger-bar {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
  transform-origin: center;
}

.nav__hamburger-bar:nth-child(2) {
  width: 70%;
}

/* Hamburger open state */
.nav__hamburger[aria-expanded="true"] .nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 100%;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 100%;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
}

/* Mobile overlay */
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: #1B2126;
  background: var(--color-slate);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav__mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav__mobile-overlay nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-32);
}

.nav__mobile-overlay nav a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -1px;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav__mobile-overlay nav a:hover,
.nav__mobile-overlay nav a.active {
  color: var(--color-amber);
}

/* Active nav link */
.nav__links a.active {
  color: var(--color-amber);
}

.nav__links a {
  position: relative;
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-amber);
  border-radius: 2px;
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: 14px var(--space-32);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  min-height: 48px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-amber);
  color: var(--color-slate);
  border: 2px solid var(--color-amber);
}

.btn--primary:hover {
  background: var(--color-amber-light);
  border-color: var(--color-amber-light);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--secondary:hover {
  background: rgba(242, 244, 245, 0.08);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-amber);
  border: 2px solid var(--color-amber);
}

.btn--ghost:hover {
  background: rgba(230, 168, 45, 0.1);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px var(--space-24);
  font-size: 13px;
  min-height: 40px;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 33, 38, 0.72) 0%,
    rgba(27, 33, 38, 0.65) 40%,
    rgba(27, 33, 38, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-inline: var(--space-24);
  padding-block: var(--space-120);
  max-width: 860px;
}

.hero__logo {
  height: 60px;
  width: auto;
  margin-inline: auto;
  margin-bottom: var(--space-48);
}

@keyframes heroPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0px rgba(230, 168, 45, 0));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(230, 168, 45, 0.5))
            drop-shadow(0 0 40px rgba(230, 168, 45, 0.2));
  }
}

.hero__headline {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: var(--space-24);
}

.hero__subheadline {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(242, 244, 245, 0.8);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-48);
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-40);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
}

.hero__scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-white);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   9. SERVICE TIMELINE
   ============================================================ */
.timeline {
  background: var(--color-slate-light);
}

.timeline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32);
}

.timeline-card {
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.timeline-card:hover {
  border-color: var(--color-amber);
  transform: translateY(-4px);
}

.timeline-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.timeline-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.timeline-card:hover .timeline-card__image img {
  transform: scale(1.04);
}

.timeline-card__body {
  padding: var(--space-32);
}

.timeline-card__number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  color: var(--color-slate-mid);
  margin-bottom: var(--space-16);
  letter-spacing: -3px;
}

.timeline-card__stage {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-8);
}

.timeline-card__title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: var(--space-8);
  color: var(--color-white);
}

.timeline-card__tagline {
  font-size: 14px;
  color: var(--color-amber);
  font-style: italic;
  margin-bottom: var(--space-16);
}

.timeline-card__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: none;
}

/* ============================================================
   10. EPC IMPACT TOOL
   ============================================================ */
.epc-tool {
  background: var(--color-slate);
}

.epc-tool__inner {
  background: var(--color-slate-light);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  padding: var(--space-48);
}

.epc-tool__controls {
  margin-bottom: var(--space-48);
}

.epc-tool__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-24);
  text-transform: uppercase;
}

.epc-rating-selector {
  display: flex;
  gap: var(--space-8);
  flex-wrap: nowrap;
}

.epc-rating-btn {
  width: 52px;
  height: 52px;
  flex: 1 1 0;
  min-width: 0;
  border: 2px solid var(--color-slate-mid);
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-slate);
}

.epc-rating-btn:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

.epc-rating-btn.active {
  background: var(--color-amber);
  border-color: var(--color-amber);
  color: var(--color-slate);
  font-weight: 500;
}

.epc-tool__results {
  display: grid;
  gap: var(--space-24);
}

.epc-result-card {
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius);
  padding: var(--space-24);
  transition: border-color var(--transition-base);
}

.epc-result-card.highlight {
  border-color: var(--color-amber);
}

.epc-result-card__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.epc-result-card__value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -1px;
  color: var(--color-amber);
  line-height: 1;
}

.epc-result-card__sub {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: var(--space-8);
  max-width: none;
}

.epc-tool__description {
  margin-top: var(--space-32);
  padding-top: var(--space-32);
  border-top: 1px solid var(--color-slate-mid);
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: none;
}

.epc-tool__disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: var(--space-24);
  padding-top: var(--space-16);
  border-top: 1px solid var(--color-slate-mid);
  max-width: none;
}

/* ============================================================
   11. BEFORE / AFTER — "BEHIND THE WALLS"
   ============================================================ */
.behind-walls {
  background: var(--color-slate-light);
}

.behind-walls__comparison {
  display: grid;
  gap: var(--space-8);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-block: var(--space-48);
}

.comparison-panel {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.comparison-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-panel__label {
  position: absolute;
  bottom: var(--space-16);
  left: var(--space-16);
  background: rgba(27, 33, 38, 0.85);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--border-radius);
  backdrop-filter: blur(8px);
}

.comparison-panel__label--amber {
  color: var(--color-amber);
}

.behind-walls__copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-48);
}

.trust-signals {
  display: grid;
  gap: var(--space-24);
}

.trust-signal {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
}

.trust-signal__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(230, 168, 45, 0.1);
  border: 1px solid rgba(230, 168, 45, 0.3);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-signal__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-signal__text {
  font-size: 15px;
  color: var(--color-text-muted);
  padding-top: var(--space-8);
  max-width: none;
}

/* ============================================================
   12. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-slate-light);
  border-top: 1px solid var(--color-slate-mid);
  border-bottom: 1px solid var(--color-slate-mid);
  padding-block: var(--space-64);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-48);
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -2px;
  color: var(--color-amber);
  line-height: 1;
  margin-bottom: var(--space-8);
}

.stat__label {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  max-width: none;
}

/* ============================================================
   13. CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--color-slate-light);
  border-top: 1px solid var(--color-slate-mid);
  text-align: center;
}

.cta-section__headline {
  margin-bottom: var(--space-16);
}

.cta-section__sub {
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-40);
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
}

/* ============================================================
   14. SERVICES PAGE
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-80));
  padding-bottom: var(--space-80);
  background: var(--color-slate-light);
  border-bottom: 1px solid var(--color-slate-mid);
}

.page-hero p {
  margin-top: var(--space-24);
  color: var(--color-text-muted);
}

.service-detail {
  border-bottom: 1px solid var(--color-slate-mid);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail__image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-48);
}

.service-detail__image--contain {
  object-fit: contain;
  background: var(--color-slate);
}

.service-detail__stage {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-16);
}

.service-detail__number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 96px;
  letter-spacing: -4px;
  color: var(--color-slate-mid);
  line-height: 0.9;
  margin-bottom: var(--space-8);
}

.service-detail h2 {
  margin-bottom: var(--space-8);
}

.service-detail__tagline {
  font-size: 18px;
  font-style: italic;
  color: var(--color-amber);
  margin-bottom: var(--space-32);
}

.service-detail__body {
  margin-bottom: var(--space-32);
}

.service-detail__body p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
}

.service-detail__list {
  margin-top: var(--space-32);
}

.service-detail__list h4 {
  margin-bottom: var(--space-16);
  color: var(--color-white);
}

.service-detail__list ul li {
  position: relative;
  padding-left: var(--space-24);
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: none;
}

.service-detail__list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--color-amber);
  border-radius: 2px;
}

.service-detail__accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-24);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(230, 168, 45, 0.1);
  border: 1px solid rgba(230, 168, 45, 0.3);
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-amber);
}

.building-detox {
  background: var(--color-slate-light);
  border-top: 1px solid var(--color-slate-mid);
}

.building-detox__grid {
  display: grid;
  gap: var(--space-48);
}

.building-detox__facts {
  margin-top: var(--space-32);
  display: grid;
  gap: var(--space-16);
}

.fact-item {
  display: flex;
  gap: var(--space-16);
  align-items: flex-start;
}

.fact-item__number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 5vw, 32px);
  color: var(--color-amber);
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 64px;
}

.fact-item__text {
  font-size: 15px;
  color: var(--color-text-muted);
  padding-top: 6px;
  max-width: none;
}

/* ============================================================
   15. LANDLORDS PAGE
   ============================================================ */
.compliance-grid {
  display: grid;
  gap: var(--space-24);
}

.compliance-card {
  background: var(--color-slate-light);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  padding: var(--space-32);
}

.compliance-card__year {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  color: var(--color-amber);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: var(--space-8);
}

.compliance-card h3 {
  margin-bottom: var(--space-16);
}

.compliance-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: none;
}

.compliance-card--warning {
  border-color: rgba(230, 168, 45, 0.4);
  background: rgba(230, 168, 45, 0.04);
}

.penalty-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-24);
}

.penalty-table th,
.penalty-table td {
  padding: var(--space-16) var(--space-24);
  text-align: left;
  border-bottom: 1px solid var(--color-slate-mid);
  font-size: 15px;
}

.penalty-table th {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-slate);
}

.penalty-table td {
  color: var(--color-text-muted);
}

.penalty-table td:first-child {
  color: var(--color-white);
  font-weight: 500;
}

.penalty-table td.penalty-amount {
  color: var(--color-amber);
  font-weight: 500;
}

/* ============================================================
   16. ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  gap: var(--space-32);
}

.value-card {
  background: var(--color-slate-light);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  padding: var(--space-32);
  transition: border-color var(--transition-base);
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--space-16);
  row-gap: var(--space-16);
}

.value-card:hover {
  border-color: var(--color-amber);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 168, 45, 0.1);
  border: 1px solid rgba(230, 168, 45, 0.3);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0 !important;
}

.value-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 0;
  align-self: center;
  grid-column: 2;
  grid-row: 1;
}

.value-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: none;
  grid-column: 1 / -1;
  grid-row: 2;
}

.accreditations-bar {
  background: var(--color-slate-light);
  border-top: 1px solid var(--color-slate-mid);
  border-bottom: 1px solid var(--color-slate-mid);
  padding-block: var(--space-48);
}

.accreditations-bar__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  align-items: center;
  justify-content: center;
}

.accreditation-item {
  padding: var(--space-16) var(--space-24);
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  text-align: center;
}

.accreditation-item strong {
  display: block;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.team-grid {
  display: grid;
  gap: var(--space-32);
}

.team-card {
  background: var(--color-slate-light);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.team-card__avatar {
  width: 100%;
  height: 280px;
  background: var(--color-slate-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-slate);
  border: 2px solid var(--color-slate-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__avatar-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.5;
}

.team-card__body {
  padding: var(--space-32);
}

.team-card__name {
  font-size: 20px;
  margin-bottom: var(--space-8);
}

.team-card__role {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-16);
}

.team-card__bio {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: none;
}

/* ============================================================
   17. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  gap: var(--space-64);
}

.form-group {
  margin-bottom: var(--space-24);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius);
  padding: 14px var(--space-16);
  color: var(--color-white);
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
  min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-amber);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-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 d='M1 1l5 5 5-5' stroke='%238A929A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--color-slate-light);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: var(--space-16);
}

.contact-success {
  display: none;
  background: rgba(230, 168, 45, 0.08);
  border: 1px solid rgba(230, 168, 45, 0.3);
  border-radius: var(--border-radius-lg);
  padding: var(--space-48);
  text-align: center;
}

.contact-success.is-visible {
  display: block;
}

.contact-success__icon {
  width: 56px;
  height: 56px;
  background: rgba(230, 168, 45, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-24);
}

.contact-success__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: var(--space-24);
}

.contact-detail {
  display: flex;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
  align-items: flex-start;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(230, 168, 45, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__content {
  padding-top: 6px;
}

.contact-detail__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 16px;
  color: var(--color-white);
}

.contact-detail__value a:hover {
  color: var(--color-amber);
}

.map-placeholder {
  width: 100%;
  height: 240px;
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-32);
  color: var(--color-text-muted);
  font-size: 14px;
  text-align: center;
  gap: var(--space-8);
  flex-direction: column;
}

/* Instant Quote */
.instant-quote {
  background: var(--color-slate-light);
  border-top: 1px solid var(--color-slate-mid);
}

.instant-quote__inner {
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  padding: var(--space-48);
}

.quote-section {
  margin-bottom: var(--space-40);
}

.quote-contact {
  padding-top: var(--space-32);
  border-top: 1px solid var(--color-slate-mid);
}

.quote-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.service-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: 12px var(--space-16);
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 14px;
  color: var(--color-white);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  user-select: none;
}

.service-checkbox:hover {
  border-color: var(--color-amber);
}

.service-checkbox input[type="checkbox"] {
  accent-color: var(--color-amber);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}

.service-checkbox--full {
  grid-column: 1 / -1;
}

.quote-steps {
  display: grid;
  gap: var(--space-24);
  margin-bottom: var(--space-32);
}

.quote-step {
  display: grid;
  gap: var(--space-8);
}

.quote-step__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.quote-result {
  display: none;
  background: rgba(230, 168, 45, 0.06);
  border: 1px solid rgba(230, 168, 45, 0.25);
  border-radius: var(--border-radius-lg);
  padding: var(--space-32);
  margin-top: var(--space-32);
}

.quote-result.is-visible {
  display: block;
}

.quote-result__range {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -1.5px;
  color: var(--color-amber);
  margin-bottom: var(--space-16);
  line-height: 1;
}

.quote-result__message {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: none;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: var(--color-slate-light);
  border-top: 1px solid var(--color-slate-mid);
}

/* ============================================================
   LANDLORD BANNER
   ============================================================ */
.landlord-banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.landlord-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

.landlord-banner__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--color-slate) 100%);
}

@media (min-width: 1200px) {
  .landlord-banner {
    height: 280px;
  }
}

/* ============================================================
   ASHP PACKAGES GRID
   ============================================================ */
.ashp-packages {
  margin-top: var(--space-64);
  padding-top: var(--space-64);
  border-top: 1px solid var(--color-slate-mid);
}

.ashp-packages__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: var(--space-32);
  letter-spacing: -0.3px;
}

.ashp-packages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-24);
}

@media (min-width: 768px) {
  .ashp-packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .ashp-packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ashp-package {
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  padding: var(--space-24);
}

.ashp-package__number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-amber);
  margin-bottom: var(--space-8);
}

.ashp-package__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: var(--space-8);
  letter-spacing: -0.2px;
}

.ashp-package__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================ */

.footer__container {
  display: grid;
  gap: var(--space-48);
  padding-block: var(--space-80);
}

.footer__logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-24);
}

.footer__logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
  margin-left: 1px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
  max-width: 240px;
  line-height: 1.6;
}

.footer__copyright {
  font-size: 13px;
  color: var(--color-text-muted);
  max-width: none;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-24);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.footer__col ul a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  line-height: 1;
}

.footer__col ul a:hover {
  color: var(--color-amber);
}

.footer__col address p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: none;
}

.footer__col address a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__col address a:hover {
  color: var(--color-amber);
}

.footer__social {
  display: flex;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--color-amber);
  background: rgba(230, 168, 45, 0.08);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-muted);
  transition: fill var(--transition-fast);
}

.footer__social a:hover svg {
  fill: var(--color-amber);
}

.footer__bottom {
  border-top: 1px solid var(--color-slate-mid);
  padding-block: var(--space-24);
}

.footer__bottom p {
  font-size: 13px;
  color: var(--color-text-muted);
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: center;
}

.footer__bottom a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--color-amber);
}

.footer__bottom .sep {
  color: var(--color-slate-mid);
}

/* ============================================================
   PRIVACY POLICY
============================================================ */
.policy-content {
  max-width: 780px;
  margin-inline: auto;
}

.policy-content__updated {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-48);
}

.policy-section {
  margin-bottom: var(--space-48);
  padding-bottom: var(--space-48);
  border-bottom: 1px solid var(--color-slate-mid);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--color-text);
  margin-bottom: var(--space-16);
}

.policy-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-24);
  margin-bottom: var(--space-8);
}

.policy-section p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-16);
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: var(--space-16) 0;
}

.policy-section ul li {
  color: var(--color-text-muted);
  line-height: 1.75;
  padding-left: var(--space-24);
  position: relative;
  margin-bottom: var(--space-8);
}

.policy-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-amber);
}

.policy-section address {
  font-style: normal;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.policy-section a {
  color: var(--color-amber);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

/* ============================================================
   GUIDE DOWNLOAD MODAL
   ============================================================ */
.guide-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 14, 16, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-24);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.guide-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.guide-modal {
  background: var(--color-slate-light);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius-lg);
  padding: var(--space-48);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.guide-modal-overlay.is-open .guide-modal {
  transform: translateY(0);
}

.guide-modal__close {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.guide-modal__close:hover {
  color: var(--color-text);
}

.guide-modal__overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-8);
}

.guide-modal__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.guide-modal__sub {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-32);
  line-height: 1.6;
}

.guide-modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.guide-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guide-modal__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
}

.guide-modal__label span {
  color: var(--color-text-muted);
  font-weight: 400;
  font-style: italic;
}

.guide-modal__input,
.guide-modal__select {
  background: var(--color-slate);
  border: 1px solid var(--color-slate-mid);
  border-radius: var(--border-radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 14px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.guide-modal__input:focus,
.guide-modal__select:focus {
  outline: none;
  border-color: var(--color-amber);
}

.guide-modal__select option {
  background: var(--color-slate);
}

.guide-modal__submit {
  margin-top: var(--space-8);
  width: 100%;
  justify-content: center;
}

.guide-modal__privacy {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-8);
  line-height: 1.5;
}

.guide-modal__privacy a {
  color: var(--color-amber);
}

.guide-modal__success {
  display: none;
  text-align: center;
  padding: var(--space-32) 0;
}

.guide-modal__success.is-visible {
  display: block;
}

.guide-modal__success-icon {
  font-size: 40px;
  margin-bottom: var(--space-16);
}

.guide-modal__success h3 {
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.guide-modal__success p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   19. SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   20. PAGE TRANSITIONS & MISC
   ============================================================ */

/* Noise grain overlay (subtle) */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Opening hours table */
.hours-table {
  width: 100%;
  margin-top: var(--space-16);
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-slate-mid);
  font-size: 14px;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table .day {
  color: var(--color-text-muted);
}

.hours-table .time {
  color: var(--color-white);
}

/* Intro section copy block */
.intro-copy {
  max-width: var(--text-max-width);
  margin-top: var(--space-24);
}

.intro-copy p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-24);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   21. MEDIA QUERIES
   ============================================================ */

/* Tablet: 768px+ */
@media (min-width: 768px) {

  .nav__links {
    display: flex;
    align-items: center;
  }

  .nav__links ul {
    display: flex;
    align-items: center;
    gap: var(--space-32);
  }

  .nav__links a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--color-white);
    transition: color var(--transition-fast);
  }

  .nav__links a:hover {
    color: var(--color-amber);
  }

  .nav__cta {
    display: inline-flex !important;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__mobile-overlay {
    display: none !important;
  }

  .hero__ctas {
    flex-direction: row;
    justify-content: center;
  }

  .timeline__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    margin-inline: auto;
  }

  .epc-tool__results {
    grid-template-columns: repeat(3, 1fr);
  }

  .behind-walls__comparison {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-panel {
    height: 360px;
  }

  .trust-signals {
    grid-template-columns: 1fr;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .building-detox__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .quote-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-steps--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .quote-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: 1200px+ */
@media (min-width: 1200px) {

  .timeline__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .timeline-card {
    grid-column: span 2;
  }

  .timeline-card__image {
    height: 220px;
  }

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

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .service-detail__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-80);
    align-items: start;
  }

  .service-detail__image {
    margin-bottom: 0;
    height: 480px;
    position: sticky;
    top: calc(var(--nav-height) + var(--space-32));
  }
}
