:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f4f1eb;
  --ink: #101412;
  --muted: #5f6863;
  --line: #e4ded4;
  --brand: #0f3b2e;
  --brand-2: #1f6f56;
  --gold: #c7a44f;
  --shadow: 0 18px 48px rgba(16, 20, 18, 0.08);
  --radius: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/brand/service-area-background.svg");
  background-repeat: repeat-y;
  background-position: center 116px;
  background-size: min(1180px, 112vw) auto;
  content: "";
  opacity: 0.26;
}

body > * {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(31, 111, 86, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

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

.brand img {
  border-radius: 12px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--surface-soft);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--brand);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--brand-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-shell {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(100svh - 154px);
  padding-top: clamp(48px, 7vw, 86px);
  padding-bottom: clamp(20px, 3vw, 38px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.6vw, 5.35rem);
  line-height: 0.95;
}

h2 {
  max-width: 840px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.15;
}

.lead,
.section-intro {
  margin: 22px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.brand-line {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 900;
}

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

.hero-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--brand);
}

.button-primary:hover {
  background: var(--brand-2);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: rgba(31, 111, 86, 0.24);
  background: var(--surface-soft);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-character {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  justify-items: center;
  isolation: isolate;
}

.hero-character::before {
  position: absolute;
  inset: auto 12% 7% 12%;
  z-index: -1;
  height: 48%;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(15, 59, 46, 0.08), rgba(199, 164, 79, 0.12));
  content: "";
}

.hero-cutout {
  position: relative;
  z-index: 2;
  width: min(44%, 270px);
  height: auto;
  filter: drop-shadow(0 24px 28px rgba(16, 20, 18, 0.14));
}

.assistant-orb,
.assistant-toggle-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 22%, #f7dd8f, var(--gold) 36%, var(--brand) 72%);
}

.assistant-orb {
  width: 46px;
  height: 46px;
}

.assistant-orb span,
.assistant-toggle-icon::before {
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  box-shadow: 12px 0 0 -7px #fff, -12px 0 0 -7px #fff;
}

.assistant-kicker {
  margin: 0 0 8px;
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

figcaption {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-strip {
  width: min(var(--content), calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -26px auto 0;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-card {
  position: relative;
  padding: 22px;
  background: var(--surface);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.05rem;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.proof-booking {
  overflow: visible;
  z-index: 4;
}

.proof-booking details {
  position: relative;
}

.proof-booking summary {
  cursor: pointer;
  list-style: none;
}

.proof-booking summary::-webkit-details-marker {
  display: none;
}

.proof-booking summary::after {
  position: absolute;
  top: 2px;
  right: 0;
  color: var(--brand-2);
  content: "v";
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-booking details[open] summary::after {
  content: "^";
}

.booking-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 5;
  display: grid;
  gap: 6px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 20, 18, 0.12);
}

.booking-menu a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--surface-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-menu a:hover,
.booking-menu a:focus-visible {
  border-color: rgba(31, 111, 86, 0.28);
  background: #fff;
}

.split-section,
.trust,
.contact,
.future {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.split-section {
  display: block;
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(20px, 3vw, 34px);
  text-align: center;
}

.intro-card {
  max-width: 820px;
  margin: 0 auto;
}

.split-section h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.split-section .section-intro {
  max-width: 680px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.72;
}

.section-heading {
  margin-bottom: 34px;
}

.services {
  padding-top: clamp(72px, 7vw, 96px);
}

.services .section-heading {
  text-align: center;
}

.services .section-heading h2 {
  max-width: 1020px;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.services .section-heading .eyebrow {
  margin: 10px 0 0;
}

.projects .section-heading h2 {
  max-width: 1040px;
}

.projects {
  padding-top: clamp(32px, 5vw, 56px);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(16, 20, 18, 0.06);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: rgba(31, 111, 86, 0.28);
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: auto;
}

.service-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 16px rgba(16, 20, 18, 0.1));
}

.price-card {
  min-width: 92px;
  border: 1px solid rgba(199, 164, 79, 0.36);
  border-radius: 14px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(16, 20, 18, 0.06);
}

.price-card span,
.price-card strong {
  display: block;
}

.price-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-card strong {
  margin-top: 3px;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.15;
}

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

.service-card p,
.project-card p,
.process-list p,
.faq-list p,
.form-note {
  color: var(--muted);
}

.project-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 18px;
}

.project-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 clamp(320px, 45vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(16, 20, 18, 0.06);
  scroll-snap-align: start;
}

.project-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.project-card div {
  padding: 18px;
}

.project-card p {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.44em;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.reviews-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.reviews-panel-header {
  display: grid;
  gap: 6px;
}

.reviews-panel-header > span {
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-panel-header strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.reviews-panel-header strong span {
  color: var(--gold);
  font-size: 0.76em;
  letter-spacing: 0.03em;
}

.reviews-panel-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.reviews-widget-slot {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: var(--surface-soft);
}

.reviews-widget-slot p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

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

.process {
  padding-top: clamp(28px, 4vw, 52px);
}

.process .section-heading {
  max-width: 920px;
}

.process .section-intro {
  max-width: 780px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--surface);
}

.process-list li::before {
  position: absolute;
  top: -1px;
  left: 22px;
  width: 76px;
  height: 12px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: var(--surface);
  content: "";
}

.process-file-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(199, 164, 79, 0.36);
  border-radius: 16px;
  color: var(--brand);
  background: rgba(244, 241, 235, 0.72);
  box-shadow: 0 12px 28px rgba(16, 20, 18, 0.06);
}

.process-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-file-top > span:last-child {
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-list h3 {
  margin-top: 28px;
}

.process-list small {
  display: block;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.45;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.future {
  position: relative;
  min-height: clamp(360px, 43vw, 520px);
  display: grid;
  align-items: center;
  padding-top: clamp(0px, 1.5vw, 18px);
  isolation: isolate;
  background: transparent;
}

.future::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.9) 0%, rgba(251, 250, 247, 0.56) 38%, rgba(251, 250, 247, 0) 100%);
  content: "";
}

.future-banner-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.future-copy {
  max-width: 560px;
  padding: clamp(34px, 6vw, 72px);
}

.service-card p,
.process-list p,
.faq-list p {
  margin: 10px 0 0;
}

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

.faq {
  padding-top: clamp(24px, 4vw, 48px);
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--surface);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.contact {
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--brand);
  background: var(--surface);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(17, 24, 20, 0.06);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.contact-link span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-link strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.2;
}

.contact-link [hidden] {
  display: none;
}

.contact-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

label {
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-checks {
  display: grid;
  gap: 10px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
}

.checkbox-field input {
  width: auto;
}

.checkbox-field span {
  font-weight: 850;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-note.success {
  color: var(--brand);
  font-weight: 900;
}

.form-note.error {
  color: #8a1f1f;
  font-weight: 900;
}

.site-footer {
  width: min(var(--content), calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 36px 0 46px;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  border-radius: 12px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-weight: 850;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[href*="facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.site-assistant {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.assistant-toggle {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 20, 18, 0.14);
  cursor: pointer;
  font-weight: 900;
}

.assistant-toggle-icon {
  width: 40px;
  height: 40px;
}

.assistant-panel {
  display: none;
  width: min(340px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(16, 20, 18, 0.18);
  backdrop-filter: blur(18px);
}

.site-assistant.open .assistant-panel {
  display: grid;
  gap: 14px;
}

.assistant-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.assistant-panel-head strong,
.assistant-panel-head small {
  display: block;
}

.assistant-panel-head small,
.assistant-panel p {
  color: var(--muted);
}

.assistant-panel p {
  margin: 0;
}

.assistant-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.assistant-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 10px;
  background: var(--surface-soft);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.assistant-actions a:hover,
.assistant-actions a:focus-visible {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .trust,
  .contact,
  .future {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 12px;
  }

  .section-shell {
    width: min(100% - 32px, var(--content));
    padding: 58px 0;
  }

  .split-section {
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .services {
    padding-top: 58px;
  }

  .projects {
    padding-top: 34px;
  }

  .process {
    padding-top: 34px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero-character {
    justify-self: stretch;
    min-height: 430px;
  }

  .hero-cutout {
    width: min(48%, 210px);
    justify-self: start;
  }

  .proof-strip,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .future {
    min-height: 360px;
    padding-top: 10px;
  }

  .future::after {
    background: linear-gradient(180deg, rgba(251, 250, 247, 0.9) 0%, rgba(251, 250, 247, 0.5) 58%, rgba(251, 250, 247, 0) 100%);
  }

  .future-copy {
    padding: 32px;
  }

  .project-grid {
    margin-inline: -16px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .project-card {
    flex-basis: min(86vw, 420px);
  }

  .proof-strip {
    width: min(100% - 32px, var(--content));
    margin-top: -8px;
  }

  .booking-menu {
    position: static;
    margin-top: 14px;
    box-shadow: none;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .process-list h3 {
    margin-top: 28px;
  }

  .process-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer,
  .site-footer div,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-assistant {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .assistant-toggle {
    justify-self: end;
  }

  .assistant-panel {
    width: 100%;
  }
}
