:root,
[data-theme="light"] {
  color-scheme: light;
  --navy: #3f3828;
  --navy-2: #534a36;
  --brand: #81724d;
  --accent: #c9a347;
  --lime: #81724d;
  --lime-deep: #c9a347;
  --cta: #c9a347;
  --cta-text: #1c1914;
  --ink: #2c281f;
  --muted: #6e6758;
  --line: #e6e1d6;
  --soft: #f5f3ee;
  --white: #ffffff;
  --on-dark: #f7f4ee;
  --bg: #ffffff;
  --surface: #ffffff;
  --header-bg: rgba(255, 255, 255, .92);
  --header-text: #3f3828;
  --header-muted: #6e6758;
  --header-border: rgba(63, 56, 40, .08);
  --header-shadow: 0 8px 24px rgba(44, 40, 31, .06);
  --radius: 20px;
  --shadow-sm: 0 10px 28px rgba(44, 40, 31, .05), 0 22px 56px rgba(44, 40, 31, .04);
  --shadow-md: 0 14px 36px rgba(44, 40, 31, .06), 0 28px 64px rgba(44, 40, 31, .05);
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f3efe6;
  --muted: #b6ae9c;
  --line: rgba(255, 255, 255, .1);
  --soft: #2a261c;
  --white: #322d24;
  --bg: #1c1914;
  --surface: #2a261c;
  --header-bg: rgba(28, 25, 20, .94);
  --header-text: #f7f4ee;
  --header-muted: #b6ae9c;
  --header-border: rgba(255, 255, 255, .08);
  --header-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, .14), 0 22px 56px rgba(0, 0, 0, .12);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, .16), 0 28px 64px rgba(0, 0, 0, .14);
  --cta: #c9a347;
  --cta-text: #1c1914;
}

* {
  box-sizing: border-box;
}

html {
  background: #2a251c;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html[data-theme="dark"] {
  background: #2a251c;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: var(--bg);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

.container {
  width: min(1040px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 40px));
}

.notice-bar {
  padding: 10px max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
  color: var(--navy);
  background: var(--lime);
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: max(10px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
  color: #ffffff;
  background: transparent;
  border-bottom: 1px solid transparent;
  --header-text: #ffffff;
  --header-muted: rgba(255, 255, 255, .8);
}

body.nav-open .site-header {
  position: fixed;
  color: #3f3828;
  background: #ffffff;
  --header-text: #3f3828;
  --header-muted: #6e6758;
}

body.nav-open .brand-logo {
  filter: brightness(0);
}

[data-theme="dark"] body.nav-open .site-header {
  color: #f5f7fa;
  background: #0b1020;
  --header-text: #f5f7fa;
  --header-muted: #9aa6b5;
}

[data-theme="dark"] body.nav-open .brand-logo {
  filter: none;
}

.brand,
.header-actions {
  position: relative;
  z-index: 60;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  background: none;
  border-radius: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #f5f7fa;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.theme-icon {
  display: block;
  width: 18px;
  height: 18px;
}

.theme-icon-light {
  display: none;
}

[data-theme="dark"] .theme-icon-dark {
  display: none;
}

[data-theme="dark"] .theme-icon-light {
  display: block;
}

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

.site-nav a {
  padding: 8px 12px;
  color: var(--header-muted);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--header-text);
  background: var(--soft);
}

.site-header .site-nav a:hover,
.site-header .site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, .12);
}

.header-call,
.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--cta-text);
  border-radius: 999px;
  background: var(--cta);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.header-call {
  animation: header-call-pulse 2.6s ease-in-out infinite;
}

@keyframes header-call-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 163, 71, .42);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(201, 163, 71, 0);
  }
}

.nav-call,
.nav-quote {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--header-text);
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -.02em;
}

p {
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--navy-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

[data-theme="dark"] .eyebrow {
  color: var(--lime);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.hero .eyebrow,
.page-hero .eyebrow,
.final-cta .eyebrow {
  color: #f6efe0;
  font-size: .84rem;
  letter-spacing: .16em;
  text-shadow: 0 1px 10px rgba(28, 25, 20, .55);
}

.hero .eyebrow::before,
.page-hero .eyebrow::before,
.final-cta .eyebrow::before {
  background: #e4c36a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--cta-text);
  background: var(--cta);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.hero .btn-primary,
.page-hero .btn-primary {
  color: var(--navy);
  background: #ffffff;
}

.dock-call,
a.btn-primary[href^="tel:"] {
  background-image: linear-gradient(115deg, color-mix(in srgb, var(--accent) 80%, #000) 0%, var(--accent) 52%, color-mix(in srgb, var(--accent) 80%, #000) 100%);
  background-size: 140% 140%;
  animation: call-shift 14s ease-in-out infinite;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 22%, transparent);
}

.hero a.btn-primary[href^="tel:"],
.page-hero a.btn-primary[href^="tel:"],
.final-cta a.btn-light[href^="tel:"] {
  color: var(--navy);
  background-image: linear-gradient(180deg, #ffffff 0%, #f6f3ec 100%);
  animation: none;
  box-shadow: 0 8px 18px rgba(63, 56, 40, .12);
}

@keyframes call-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .dock-call,
  a.btn-primary[href^="tel:"],
  .header-call {
    animation: none;
    background-position: 50% 50%;
  }
}

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

[data-theme="dark"] .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
}

[data-theme="dark"] label,
[data-theme="dark"] .card-link,
[data-theme="dark"] .process-steps span:not(.process-icon),
[data-theme="dark"] .faq-item summary::after {
  color: var(--ink);
}

[data-theme="dark"] .leaflet-popup-content-wrapper,
[data-theme="dark"] .leaflet-popup-tip {
  background: var(--surface);
  color: var(--ink);
}

.hero .btn-secondary,
.page-hero .btn-secondary {
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, .42);
}

.btn-light {
  color: var(--navy);
  background: #ffffff;
}

.btn-outline-light {
  color: var(--on-dark);
  border: 1px solid rgba(255, 255, 255, .42);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 14vw, 168px) 0 80px;
  color: var(--on-dark);
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(63, 56, 40, .72) 0%, rgba(63, 56, 40, .46) 52%, rgba(63, 56, 40, .22) 100%),
    var(--hero-image, url("../img/projects/bathroom-refresh-parramatta.jpg"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-proof.chip-row {
  height: 42px;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof.is-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
}

.hero-proof.is-marquee .chip-set {
  padding-right: 10px;
  gap: 10px;
}

.hero-proof span {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(63, 56, 40, .28);
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
}

.stats-bar {
  padding: 40px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(680px, calc(100% - 48px));
}

.stat-card {
  padding: 26px 16px 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stats-bar strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.6vw, 2.75rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.05em;
  line-height: 1;
}

.stats-bar strong::after {
  display: block;
  width: 28px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

[data-theme="dark"] .stats-bar strong {
  color: var(--ink);
}

.stats-bar span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

.project-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
}

.project-search {
  position: relative;
  flex: 1;
  min-width: 0;
  display: block;
}

.project-search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 15px;
  height: 15px;
  border: 1.7px solid var(--muted);
  border-radius: 50%;
  transform: translateY(-60%);
  pointer-events: none;
}

.project-search::after {
  content: "";
  position: absolute;
  top: 58%;
  left: 28px;
  width: 7px;
  height: 1.7px;
  background: var(--muted);
  border-radius: 999px;
  transform: rotate(45deg);
  pointer-events: none;
}

.project-search input {
  min-height: 48px;
  padding: 12px 16px 12px 44px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
}

.project-search input:focus {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

.project-filter-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  max-width: 46%;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  touch-action: manipulation;
}

.project-filter-toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-filter-toggle::after {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg);
}

.project-filter-toggle.is-active {
  color: var(--cta-text);
  border-color: var(--cta);
  background: var(--cta);
}

.project-filter-modal {
  width: min(420px, calc(100% - 32px));
  max-height: min(80dvh, calc(100dvh - 32px));
  margin: auto;
  padding: 22px 20px 20px;
  border: 0;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.project-filter-modal::backdrop {
  background: rgba(63, 56, 40, .45);
}

.project-filter-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.project-filter-list button {
  min-height: 48px;
  padding: 12px 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  touch-action: manipulation;
}

.project-filter-list button.is-active {
  color: var(--cta-text);
  border-color: var(--cta);
  background: var(--cta);
}

.project-empty {
  margin: 0 0 28px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 720px) {
  .project-filter-modal {
    width: 100%;
    max-width: 100%;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }
}

.project-card.is-hidden {
  display: none;
}

.page-hero {
  padding: clamp(110px, 12vw, 148px) 0 clamp(64px, 8vw, 100px);
  color: var(--on-dark);
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(63, 56, 40, .88) 0%, rgba(63, 56, 40, .62) 55%, rgba(63, 56, 40, .38) 100%),
    var(--hero-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
}

.service-group + .service-group {
  margin-top: 56px;
}

.proof-reviews {
  margin-top: 48px;
}

.section {
  overflow-x: clip;
  padding: clamp(64px, 8vw, 96px) 0;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(240px, .7fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  min-height: 100%;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card p,
.muted {
  color: var(--muted);
}

a.card,
a.project-card,
a.service-card,
.project-card-body {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.card:hover,
a.project-card:hover,
a.service-card:hover,
.project-card:hover {
  border-color: #c9d3e0;
  box-shadow: var(--shadow-md);
}

.service-card {
  padding: 0 0 22px;
}

.service-image {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--soft);
}

.service-card h3 {
  margin-top: 18px;
}

.service-card h3,
.service-card p,
.service-card .card-link {
  margin-left: 20px;
  margin-right: 20px;
}

.service-bento {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 16px;
  align-items: stretch;
}

.service-bento-feature,
.service-bento-tile {
  overflow: hidden;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.service-bento-feature:hover,
.service-bento-tile:hover {
  border-color: #c9d3e0;
  box-shadow: var(--shadow-md);
}

.service-bento-feature {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
}

.service-bento-feature img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  background: var(--soft);
}

.service-bento-copy {
  padding: 26px 28px 24px;
}

.service-bento-copy h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.service-bento-copy p:not(.service-bento-index) {
  margin: 0;
  color: var(--muted);
}

.service-bento-copy .card-link {
  margin: 14px 0 0;
}

.service-bento-side {
  display: grid;
  gap: 16px;
}

.service-bento-tile {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 148px;
}

.service-bento-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

.service-bento-tile > div {
  padding: 16px 18px 16px 16px;
}

.service-bento-tile h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  letter-spacing: -.02em;
}

.service-bento-tile p:not(.service-bento-index) {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.service-bento-index {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.service-bento.is-wide {
  grid-template-columns: 1fr 1.2fr;
}

.service-bento.is-wide .service-bento-side {
  grid-template-columns: 1fr 1fr;
}

.service-bento.is-wide .service-bento-tile {
  grid-template-columns: 1fr;
  grid-template-rows: 132px auto;
  min-height: 0;
}

.service-bento.is-wide .service-bento-tile img {
  height: 132px;
}

@media (max-width: 900px) {
  .service-bento,
  .service-bento.is-wide {
    grid-template-columns: 1fr;
  }

  .service-bento-feature {
    grid-template-rows: auto auto;
  }

  .service-bento-feature img {
    height: 240px;
    min-height: 0;
  }

  .service-bento.is-wide .service-bento-side {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .service-bento-tile,
  .service-bento.is-wide .service-bento-tile {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 0;
  }

  .service-bento.is-wide .service-bento-side {
    grid-template-columns: 1fr;
  }

  .service-bento.is-wide .service-bento-tile img {
    height: 100%;
  }

  .service-bento-copy {
    padding: 20px 20px 18px;
  }

  .service-bento-copy h3 {
    font-size: 1.25rem;
  }
}

.section-actions {
  margin: 28px 0 0;
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.card-link::after {
  content: " →";
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--accent);
  border-radius: 14px;
  background: #efeae0;
}

.process-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

[data-theme="dark"] .process-icon {
  color: var(--cta);
  background: rgba(196, 180, 138, .14);
}

.process-steps span:not(.process-icon) {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
}

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

.focus-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.focus-grid h3 {
  margin: 0 0 8px;
}

.focus-grid p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .process-steps {
    gap: 10px;
  }

  .process-steps article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    padding: 16px;
  }

  .process-icon {
    grid-row: 1 / span 3;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }

  .process-icon svg {
    width: 22px;
    height: 22px;
  }

  .process-steps span:not(.process-icon) {
    margin-bottom: 2px;
  }

  .process-steps h3 {
    margin-bottom: 6px;
  }

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

  .focus-grid article,
  .timeframe-card,
  .audience-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    padding: 16px;
  }

  .focus-grid .process-icon,
  .timeframe-card .process-icon,
  .audience-card .process-icon {
    grid-row: 1 / span 3;
    margin-bottom: 0;
  }
}

.project-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
}

.project-card .project-image,
.project-card img.project-image {
  display: block;
  width: 100%;
  height: 220px;
  margin: 0 0 16px;
  object-fit: cover;
  object-position: center 45%;
  background: var(--soft);
  filter: saturate(.9) contrast(1.04);
}

.chip-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 40px;
  overflow: hidden;
}

.chip-row.is-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
}

.areas-section {
  overflow: visible;
}

.chip-row-bleed {
  width: 100%;
  margin: 0 0 16px;
}

@media (min-width: 800px) {
  .chip-row-bleed {
    height: 44px;
    margin-bottom: 20px;
    mask-image: linear-gradient(90deg, transparent, #000 48px, #000 calc(100% - 48px), transparent);
  }

  .chip-row-bleed.is-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 56px, #000 calc(100% - 56px), transparent);
  }
}

.project-meta.chip-row {
  flex-wrap: nowrap;
  height: 32px;
  overflow: hidden;
}

.chip-row [aria-hidden="true"] {
  pointer-events: none;
}

.chip-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}

.chip-row.is-marquee .chip-track {
  will-change: transform;
}

.chip-set {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  gap: 8px;
}

.chip-row.is-marquee .chip-set {
  padding-right: 8px;
}

.chip-row.is-marquee,
.edge-rail.is-ready {
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.chip-row.is-dragging,
.edge-rail.is-dragging {
  cursor: grabbing;
}

.project-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0 20px 10px;
}

.project-meta span {
  padding: 6px 10px;
  color: var(--navy);
  border-radius: 999px;
  background: var(--soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2;
  white-space: nowrap;
}

.project-meta span[hidden] {
  display: none;
}

[data-theme="dark"] .project-meta span {
  color: var(--ink);
}

.project-card-body {
  padding: 0 20px 22px;
}

.project-card h3,
.project-card p {
  margin-left: 0;
  margin-right: 0;
}

.project-card-body p {
  margin-bottom: 0;
}

.project-card .project-meta {
  margin: 0 0 12px;
}

.project-meta span.is-duration {
  color: var(--cta-text);
  background: var(--cta);
}

.project-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.project-scope li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 4px 4px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--soft);
  font-size: .72rem;
  font-weight: 600;
}

.job-snapshot {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 24px;
  margin: 28px 0 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.job-snapshot .eyebrow {
  margin-bottom: 8px;
}

.job-snapshot-duration strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}

[data-theme="dark"] .job-snapshot-duration strong {
  color: var(--ink);
}

.job-snapshot-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-snapshot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.tick-icon {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.timeframe-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeframe-card,
.audience-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.timeframe-timing {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}

[data-theme="dark"] .timeframe-timing {
  color: var(--cta);
}

.timeframe-card h3,
.audience-card h3,
.timeframe-panel-head h3 {
  margin: 0 0 8px;
}

.timeframe-card p,
.audience-card p,
.timeframe-panel-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.timeframe-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.timeframe-pick {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  font: inherit;
  font-size: .92rem;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.timeframe-pick:hover {
  border-color: var(--accent);
}

.timeframe-pick.is-active {
  color: var(--cta-text);
  border-color: var(--cta);
  background: var(--cta);
}

.timeframe-panel {
  padding: 28px 28px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.timeframe-panel-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}

.timeframe-panel-head .process-icon {
  margin-bottom: 0;
}

.timeframe-track {
  position: relative;
  margin: 0;
  padding: 0 0 12px;
  list-style: none;
}

.timeframe-track::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 36px;
  left: 11px;
  border-left: 2px dotted #d8d1c3;
}

[data-theme="dark"] .timeframe-track::before {
  border-left-color: rgba(255, 255, 255, .18);
}

.timeframe-step {
  position: relative;
  padding: 0 0 28px 44px;
  opacity: 0;
  transform: translateY(18px);
}

.timeframe-step.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}

.timeframe-node {
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 0 0 6px var(--surface);
}

.timeframe-step:last-child .timeframe-node {
  background: var(--accent);
}

.timeframe-when {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

[data-theme="dark"] .timeframe-when {
  color: var(--cta);
}

.timeframe-step h4 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.timeframe-step p:last-child {
  margin: 0;
  color: var(--muted);
}

.project-hero-image {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 45%;
  border-radius: var(--radius);
  filter: saturate(.9) contrast(1.04);
}

.compare-section {
  overflow: visible;
}

.project-compare-wrap {
  margin: 0;
  overflow: visible;
  padding: 0;
}

.compare-board-wrap {
  --compare-per-view: 1;
  --compare-gap: 20px;
  --compare-image-h: min(380px, 58vw);
  display: grid;
  gap: 18px;
}

.compare-slider-viewport {
  position: relative;
  overflow: hidden;
  padding: 10px 10px 34px;
}

.compare-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: var(--compare-gap);
  width: 100%;
  transition: transform .45s ease;
}

.compare-slide {
  min-width: 0;
}

.compare-board {
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(44, 40, 31, .07);
  cursor: pointer;
}

.compare-board:hover {
  border-color: #c9d3e0;
  box-shadow: 0 10px 22px rgba(44, 40, 31, .09);
}

[data-theme="dark"] .compare-board {
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
}

.compare-board .compare-detail {
  height: var(--compare-image-h);
  border-radius: 0;
}

.compare-slider-viewport > .float-nav {
  top: calc(10px + (var(--compare-image-h) / 2));
}

@media (min-width: 800px) {
  .compare-board-wrap {
    --compare-per-view: 2;
    --compare-image-h: 250px;
  }

  .compare-slider-track {
    grid-auto-columns: calc((100% - var(--compare-gap)) / 2);
  }
}

.compare-board-body {
  padding: 20px 24px 22px;
}

.compare-board-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.compare-board .project-meta {
  margin: 0;
}

.float-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  box-shadow: none;
  cursor: pointer;
  font-size: 1.25rem;
  transform: translateY(-50%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.float-nav.is-prev {
  left: 14px;
}

.float-nav.is-next {
  right: 14px;
}

.compare-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.compare-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c5cdd8;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.compare-dots button.is-active {
  width: 18px;
  background: var(--navy);
}

[data-theme="dark"] .compare-dots button {
  background: rgba(255, 255, 255, .28);
}

[data-theme="dark"] .compare-dots button.is-active {
  background: #ffffff;
}

.media-slider {
  max-width: 880px;
}

.media-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.media-slider-track {
  display: flex;
  transition: transform .4s ease;
}

.media-slide {
  position: relative;
  flex: 0 0 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.media-slide-media {
  display: block;
  width: 100%;
  height: min(460px, 62vw);
  object-fit: cover;
  object-position: center 45%;
  background: var(--soft);
}

.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #3f3828;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(16, 24, 40, .16);
  font-size: 1rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.compare {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  user-select: none;
  touch-action: none;
}

.compare-card {
  height: 220px;
  margin: 0 0 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.compare-detail {
  height: min(420px, 52vw);
  border-radius: var(--radius);
}

.compare-after,
.compare-before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--compare-full-width, 100%);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.compare-after {
  inset: 0;
  width: 100%;
}

.compare-before-pane {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 50%;
  overflow: hidden;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(63, 56, 40, .12);
}

.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 18px rgba(16, 24, 40, .16);
  transform: translate(-50%, -50%);
}

.compare-handle span::before,
.compare-handle span::after {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  content: "";
  transform: translateY(-50%);
}

.compare-handle span::before {
  left: 7px;
  border-right-color: #3f3828;
}

.compare-handle span::after {
  right: 7px;
  border-left-color: #3f3828;
}

.compare-tag {
  position: absolute;
  bottom: 12px;
  z-index: 4;
  padding: 5px 8px;
  color: #fff;
  border-radius: 999px;
  background: rgba(63, 56, 40, .58);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none;
}

.compare-tag.is-before { left: 12px; }
.compare-tag.is-after { right: 12px; }

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.lightbox {
  width: min(100%, 1120px);
  max-width: calc(100vw - 24px);
  height: min(100%, 860px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #3f3828;
  box-shadow: 0 24px 80px rgba(5, 11, 22, .4);
}

.lightbox::backdrop {
  background: rgba(5, 11, 22, .72);
}

.lightbox-viewport {
  overflow: hidden;
  width: 100%;
  height: calc(100% - 52px);
}

.lightbox-track {
  display: flex;
  height: 100%;
  transition: transform .4s ease;
}

.lightbox-slide {
  display: grid;
  flex: 0 0 100%;
  place-items: center;
  padding: 56px 64px 24px;
}

.lightbox-slide img,
.lightbox-slide video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 180px);
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-caption {
  margin: 0;
  padding: 0 24px 18px;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
}

.lightbox-close {
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.lightbox-nav {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.lightbox-nav.is-prev { left: 14px; }
.lightbox-nav.is-next { right: 14px; }

.footer-trust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  padding-top: 8px;
}

.footer-trust strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .86);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-trust span {
  display: block;
  margin-bottom: 6px;
  color: #d7e4ff;
  font-size: .86rem;
  font-weight: 600;
}

.footer-trust p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .88rem;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.area-links {
  margin: 0 0 18px;
}

.area-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
}

.area-links a:hover {
  border-color: var(--navy);
}

.testimonial-section {
  overflow-x: clip;
}

.edge-rail {
  overflow: hidden;
  width: 100%;
  padding: 4px 0 8px;
}

.edge-rail-track {
  display: flex;
  width: max-content;
}

.edge-rail.is-ready .edge-rail-track {
  will-change: transform;
}

.edge-rail-set {
  display: flex;
  gap: 16px;
  padding: 12px 16px 48px 20px;
}

.edge-rail .service-card,
.edge-rail .project-card,
.edge-rail .testimonial-card {
  flex: 0 0 min(320px, 78vw);
  min-height: 0;
}

.edge-rail .project-card {
  flex-basis: min(340px, 82vw);
}

.edge-rail .testimonial-card {
  flex-basis: min(360px, 84vw);
}

.testimonial-card {
  margin: 0;
  padding: 24px;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--accent);
  border-radius: 999px;
  background: #efeae0;
  font-size: .8rem;
  font-weight: 700;
}

[data-theme="dark"] .avatar {
  color: var(--cta);
  background: rgba(196, 180, 138, .14);
}

.stars {
  color: #d4a017;
  letter-spacing: 1px;
  font-size: .9rem;
}

.testimonial-card p {
  color: var(--ink);
}

.testimonial-card footer {
  display: grid;
  gap: 2px;
  margin-top: 16px;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: .84rem;
}

.slider-controls {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  font-size: 1.1rem;
}

.faq-section {
  padding-bottom: 40px;
}

.faq-block.is-collapsed .faq-item[data-faq-extra] {
  display: none;
}

.faq-block.is-collapsed .faq-list {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 0 42%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0 42%, transparent 100%);
}

.faq-block.is-collapsed .faq-list::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, var(--soft) 88%);
}

.faq-more {
  display: none;
}

.faq-block.is-collapsed .faq-more {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: -28px;
  background: none;
  pointer-events: none;
}

.faq-block.is-collapsed .faq-more .btn {
  pointer-events: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  min-height: 0;
  height: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--navy);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item:not([open]) {
  height: auto;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
}

.quote-form,
.content-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  font: inherit;
  font-size: 16px;
}

textarea {
  min-height: 140px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.field-hint,
.field-error {
  font-weight: 400;
  font-size: .8rem;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  color: #b42318;
}

.quote-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 6000;
  width: min(760px, calc(100% - 32px));
  max-height: min(90dvh, calc(100dvh - 32px));
  margin: 0;
  overflow: auto;
  color: var(--ink);
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
}

.quote-modal .quote-form {
  padding: 28px 28px 32px;
}

.quote-modal::backdrop {
  background: rgba(63, 56, 40, .68);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.modal-head h2 {
  margin: 0;
}

.modal-close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  line-height: 0;
}

.quote-form.card {
  overflow: visible;
}

.quote-form > .btn-primary {
  width: 100%;
}

.quote-form .btn-primary {
  appearance: none;
  -webkit-appearance: none;
  color: var(--cta-text);
  background: var(--cta);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.form-progress span {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
}

.form-progress span.is-current,
.form-progress span.is-done {
  background: var(--cta);
}

.form-step {
  display: grid;
  gap: 16px;
}

.form-step[hidden] {
  display: none;
}

.form-step-nav {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.form-step-nav .btn {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

.form-step-nav [hidden] {
  display: none !important;
}

.photo-field {
  display: grid;
  gap: 7px;
}

.photo-field-label {
  color: var(--navy);
  font-weight: 600;
}

.photo-drop {
  position: relative;
}

.photo-drop-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-drop-target {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 148px;
  padding: 22px 18px;
  color: var(--muted);
  border: 1.5px dashed var(--line);
  border-radius: 16px;
  background: var(--soft);
  cursor: pointer;
  text-align: center;
}

.photo-drop-target strong {
  color: var(--navy);
  font-size: .95rem;
}

.photo-drop-target small {
  font-size: .78rem;
}

.photo-drop-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
  color: var(--cta);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 24, 40, .06);
}

[data-theme="dark"] .photo-drop-icon {
  background: #1a2236;
}

.photo-drop.is-dragover .photo-drop-target {
  color: var(--navy);
  border-color: var(--cta);
  background: rgba(79, 70, 48, .06);
}

.photo-drop-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.photo-drop-list:empty {
  display: none;
}

.photo-drop-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--soft);
}

.photo-drop-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-theme="dark"] .photo-field-label,
[data-theme="dark"] .photo-drop-target strong {
  color: var(--ink);
}

.photo-drop-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  color: #3f3828;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 2px 8px rgba(16, 24, 40, .16);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

[data-theme="dark"] .quote-form .btn-primary {
  color: #3f3828;
  background: #c4b48a;
}

.alert,
.form-status {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.form-status.is-success {
  background: #eef8e6;
  border-color: #cfe6b3;
}

.form-status.is-error {
  background: #fdecec;
  border-color: #f2c2c2;
}

.site-end {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 38%, #2a251c 100%);
}

[data-theme="dark"] .site-end {
  background: linear-gradient(180deg, var(--navy) 0 120px, var(--bg) 300px);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1040px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(48px, 7vw, 80px) 0 clamp(48px, 6vw, 72px);
  color: var(--on-dark);
  background: transparent;
}

.final-cta h2 {
  max-width: 640px;
}

.final-cta p {
  color: rgba(255, 255, 255, .72);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  width: min(1040px, calc(100% - 48px));
  margin-inline: auto;
  padding: 8px 0 calc(108px + env(safe-area-inset-bottom, 0px));
  color: rgba(255, 255, 255, .7);
  background: transparent;
}

[data-theme="dark"] .site-footer {
  background: transparent;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .48);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-brand h3 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  display: block;
  width: 64px;
  height: auto;
  margin-inline: auto;
  padding: 0;
  background: none;
  border-radius: 0;
}

.footer-brand span {
  display: inline-block;
  margin-top: 10px;
  font-size: .82rem;
}

.footer-contact {
  align-self: start;
}

.footer-nav,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav a,
.footer-tags a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, .86);
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  touch-action: manipulation;
}

.footer-contact a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .footer-panel {
    text-align: center;
  }

  .footer-nav,
  .footer-tags {
    justify-content: center;
  }

  .footer-contact {
    justify-items: center;
    text-align: center;
  }

  .footer-quote {
    margin-inline: auto;
  }
}

.footer-call {
  color: var(--on-dark) !important;
}

.footer-quote {
  width: fit-content;
  margin-top: 6px;
  padding: 10px 14px;
  color: var(--cta-text);
  border: 0;
  border-radius: 999px;
  background: var(--cta);
  cursor: pointer;
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-copy {
  margin: 0;
  font-size: .86rem;
}

.footer-dock {
  position: fixed;
  z-index: 5000;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.footer-dock.is-visible {
  opacity: 1;
}

.footer-dock.is-visible .footer-dock-inner {
  pointer-events: auto;
}

.footer-dock-inner {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  pointer-events: none;
}

@media (min-width: 1081px) {
  .site-header {
    padding-left: max(24px, env(safe-area-inset-left), calc((100% - 1040px) / 2));
    padding-right: max(24px, env(safe-area-inset-right), calc((100% - 1040px) / 2));
  }

  .footer-dock {
    left: auto;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    width: auto;
    overflow: visible;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-logo {
    margin-inline: 0;
  }

  .footer-nav,
  .footer-tags {
    display: grid;
    justify-content: start;
    gap: 8px;
  }

  .footer-nav a,
  .footer-tags a {
    width: fit-content;
    padding: 4px 0;
    background: transparent;
    border-radius: 0;
  }

  .footer-nav a:hover,
  .footer-tags a:hover {
    color: #fff;
  }

  .footer-dock-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .footer-dock .dock-call,
  .footer-dock .dock-quote {
    flex: 0 0 auto;
    min-width: 156px;
    min-height: 48px;
    padding: 12px 20px;
    box-shadow: 0 8px 28px rgba(44, 40, 31, .1), 0 2px 8px rgba(44, 40, 31, .05);
  }

  .footer-dock .dock-quote {
    background: #ffffff;
  }

  html[data-theme="dark"] .footer-dock .dock-quote {
    color: #eef2f7;
    background: #141b2d;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .28), 0 2px 8px rgba(0, 0, 0, .16);
  }
}

@media (max-width: 1080px) {
  .footer-dock {
    height: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .footer-dock-inner {
    width: 100%;
    max-width: 100%;
    padding: 10px max(16px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, .22);
    border-top: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 -8px 32px rgba(16, 24, 40, .08);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    backdrop-filter: blur(22px) saturate(180%);
  }

  html[data-theme="dark"] .footer-dock-inner {
    background: rgba(11, 16, 32, .2);
    border-top-color: rgba(255, 255, 255, .14);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, .28);
  }
}

body.nav-open .footer-dock,
body:has(dialog[open]) .footer-dock {
  opacity: 0;
  pointer-events: none;
}

body.nav-open .footer-dock .footer-dock-inner,
body:has(dialog[open]) .footer-dock .footer-dock-inner {
  pointer-events: none;
}

.dock-call,
.dock-quote {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
}

.dock-call {
  color: #ffffff;
}

.dock-quote {
  color: #3f3828;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(63, 56, 40, .1);
}

html[data-theme="dark"] .dock-call {
  color: #3f3828;
  background-image: linear-gradient(115deg, #c4b48a 0%, #d4c6a0 50%, #c4b48a 100%);
}

html[data-theme="dark"] .dock-quote {
  box-shadow: none;
}

.service-map-block {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.service-map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.service-map {
  width: 100%;
  height: 460px;
  background: #eef2f6;
}

.service-map-block.is-compact .service-map {
  height: 340px;
}

.map-filters {
  margin: 0 0 12px;
}

@media (min-width: 800px) {
  .map-filters {
    margin: 0 0 20px;
  }
}

.map-filter {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 600;
}

.map-filter.is-active,
.map-filter:hover {
  color: var(--on-dark);
  border-color: var(--navy);
  background: var(--navy);
}

.map-hint {
  margin: 0;
  padding: 10px 14px;
  color: var(--muted);
  background: var(--soft);
  font-size: .8rem;
}

.map-hint-pointer {
  display: none;
}

@media (min-width: 1081px) {
  .map-hint-touch {
    display: none;
  }

  .map-hint-pointer {
    display: block;
  }
}

.leaflet-container .map-pin,
.leaflet-container .leaflet-marker-icon.map-pin,
.leaflet-container .leaflet-div-icon.map-pin,
.map-pin,
.map-pin.leaflet-div-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.map-pin span {
  display: block;
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--cta);
  box-shadow: 0 0 0 0 rgba(79, 70, 48, .42);
  animation: map-pin-pulse 2.2s ease-out infinite;
}

.map-pin.is-active span {
  width: 8px;
  height: 8px;
  animation: map-pin-pulse-active 2.2s ease-out infinite;
}

@keyframes map-pin-pulse {
  0% { box-shadow: 0 0 0 0 rgba(79, 70, 48, .42); }
  70% { box-shadow: 0 0 0 8px rgba(79, 70, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 70, 48, 0); }
}

@keyframes map-pin-pulse-active {
  0% { box-shadow: 0 0 0 3px rgba(79, 70, 48, .28); }
  70% { box-shadow: 0 0 0 10px rgba(79, 70, 48, 0); }
  100% { box-shadow: 0 0 0 3px rgba(79, 70, 48, 0); }
}

.leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
  font-family: inherit;
}

.leaflet-popup-content {
  margin: 14px 16px;
}

.map-popup-region {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.map-popup strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.map-popup p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.map-popup a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 700;
}

.leaflet-control-zoom {
  display: none;
}

.leaflet-control-zoom a {
  color: var(--navy) !important;
}

.legal-copy {
  max-width: 720px;
}

.legal-copy h2 {
  margin-top: 32px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .media-slider-track,
  .lightbox-track,
  .testimonial-track,
  .compare-slider-track {
    transition: none;
  }

  .timeframe-step {
    opacity: 1;
    transform: none;
  }

  .map-pin span,
  .map-pin.is-active span {
    animation: none;
    box-shadow: 0 1px 4px rgba(16, 24, 40, .16);
  }
}

@media (hover: none) {
  .btn:hover,
  a.card:hover,
  a.project-card:hover,
  a.service-card:hover,
  .project-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
}

@media (max-width: 1080px) {
  .site-header {
    justify-content: flex-end;
  }

  .site-header .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-nav,
  .header-call {
    display: none;
  }

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

  .site-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: calc(76px + env(safe-area-inset-top, 0px)) 20px calc(28px + env(safe-area-inset-bottom, 0px));
    overflow: auto;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  [data-theme="dark"] .site-nav.is-open {
    background: #0b1020;
  }

  .site-nav.is-open a,
  .site-nav.is-open .nav-quote {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
  }

  .site-nav.is-open a[aria-current="page"] {
    background: var(--soft);
  }

  .site-nav.is-open .nav-call,
  .site-nav.is-open .nav-quote {
    justify-content: center;
    margin-top: 8px;
    color: #ffffff;
    background: var(--cta);
    font-size: 1rem;
    font-weight: 700;
  }

  .site-nav.is-open .nav-quote {
    margin-top: 8px;
    color: var(--accent);
    border: 1px solid var(--accent);
    background: #ffffff;
  }

  [data-theme="dark"] .site-nav.is-open .nav-call {
    color: #3f3828;
    background: #c4b48a;
  }

  [data-theme="dark"] .site-nav.is-open .nav-quote {
    color: #c4b48a;
    border-color: #c4b48a;
    background: transparent;
  }

  .cards-4,
  .cards-3,
  .process-steps,
  .focus-grid,
  .timeframe-grid,
  .audience-grid,
  .split,
  .section-head,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta,
  .site-footer,
  .footer-trust {
    grid-template-columns: 1fr;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section-head,
  .form-grid,
  .split,
  .cards-4,
  .cards-3,
  .process-steps,
  .focus-grid,
  .timeframe-grid,
  .audience-grid,
  .job-snapshot,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .timeframe-picks {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -14px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .timeframe-pick {
    flex: 0 0 auto;
  }

  .timeframe-panel {
    padding: 20px 18px 4px;
  }

  .timeframe-panel-head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1040px);
  }

  .brand-logo {
    height: 42px;
  }

  h1 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .stats-bar {
    padding: 24px 0;
  }

  .stats-bar-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100% - 28px, 1040px);
  }

  .hero {
    padding: 108px 0 56px;
  }

  .page-hero {
    padding: 100px 0 48px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
  }

  .compare-board-body {
    padding: 16px 18px 18px;
  }

  .float-nav {
    width: 38px;
    height: 38px;
  }

  .float-nav.is-prev {
    left: 10px;
  }

  .float-nav.is-next {
    right: 10px;
  }

  .testimonial-slider {
    padding: 0 46px;
  }

  .testimonial-slider .float-nav.is-prev {
    left: 0;
  }

  .testimonial-slider .float-nav.is-next {
    right: 0;
  }

  .hero-actions .btn,
  .final-cta .btn,
  .cta-actions .btn,
  .card .btn {
    width: 100%;
  }

  .quote-modal {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    padding: 0;
    border-radius: 18px;
  }

  .quote-modal .quote-form {
    padding: 24px 20px calc(28px + env(safe-area-inset-bottom));
  }

  .project-card img.project-image,
  .compare-card,
  .service-image {
    height: 200px;
  }

  .lightbox {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 18px;
  }

  .lightbox-slide {
    padding: 56px 16px 20px;
  }

  .lightbox-nav {
    display: none;
  }

  .site-footer,
  .final-cta {
    width: min(1040px, calc(100% - 28px));
  }

  .site-footer {
    gap: 36px;
    padding: 40px 0 calc(80px + env(safe-area-inset-bottom, 0px));
  }

  .final-cta {
    padding: 40px 0 72px;
  }

  .service-map,
  .service-map-block.is-compact .service-map {
    height: 300px;
  }
}
