:root {
  --ink: #0c1d17;
  --muted: #566a5f;
  --paper: #f4f1e7;
  --panel: #fffdf3;
  --line: rgba(23, 32, 28, 0.14);
  --oak: #b99057;
  --walnut: #513d2f;
  --sage: #0b5a39;
  --forest: #053624;
  --moss: #6f8f78;
  --ivory: #fffbed;
  --charcoal: #06130f;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(5, 54, 36, 0.16);
  --top-bar-height: 38px;
  --logo-bar-height: 104px;
  --nav-bar-height: 56px;
  --fixed-header-space: calc(var(--top-bar-height) + var(--logo-bar-height) + var(--nav-bar-height));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  cursor: url("assets/plane-logo-cursor.cur"), auto;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: var(--logo-bar-height);
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  transition: box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 21;
  color: var(--white);
  background: var(--forest);
  border-bottom: 1px solid rgba(255, 251, 237, 0.12);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--top-bar-height);
  padding: 7px clamp(18px, 4vw, 54px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.top-socials,
.top-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-socials {
  gap: 10px;
}

.top-bar a {
  color: inherit;
  text-decoration: none;
}

.top-socials a {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.top-socials a:nth-child(4) {
  color: var(--white);
  background: #0a66c2;
}

.top-socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-socials svg path {
  fill: currentColor;
  stroke: none;
}

.top-socials a:first-child svg path {
  fill: none;
  stroke: currentColor;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 168px;
  height: 94px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-strapline {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  top: 50%;
  max-width: calc(50vw - 132px);
  margin: 0;
  overflow: hidden;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.45vw, 22px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: none;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: type-strapline 2.8s steps(36, end) 0.25s both;
}

@keyframes type-strapline {
  from {
    width: 0;
  }

  to {
    width: min(39ch, calc(50vw - 132px));
  }
}

.site-nav {
  position: fixed;
  top: calc(var(--top-bar-height) + var(--logo-bar-height));
  left: 0;
  right: 0;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 58px);
  height: var(--nav-bar-height);
  padding: 0 clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
  transform: translateY(4px);
}

.header-cta {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  top: 50%;
  transform: translateY(-50%);
  min-height: 38px;
  padding: 10px 16px;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
  background: var(--sage);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  margin-top: var(--fixed-header-space);
  display: grid;
  align-items: center;
  padding: 76px clamp(18px, 5vw, 72px);
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 29, 20, 0.9) 0%, rgba(3, 42, 27, 0.7) 36%, rgba(3, 42, 27, 0.16) 72%),
    linear-gradient(0deg, rgba(3, 29, 20, 0.5), rgba(3, 29, 20, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--oak);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d9a9;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin: 0 auto 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
}

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

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--ivory);
  background: var(--sage);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(68px, 9vw, 118px) 0;
}

.section-band {
  background: var(--panel);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--sage);
  font-weight: 800;
  white-space: nowrap;
}

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

.service-grid article,
.work-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.service-grid p,
.work-grid p,
.steps p,
.contact p {
  color: var(--muted);
}

.service-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 16px 46px rgba(5, 54, 36, 0.1);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.28;
}

.service-green::before {
  background: #0b5a39;
}

.service-blue::before {
  background: #275f86;
}

.service-white::before {
  background: #f6f2e8;
  mix-blend-mode: screen;
  opacity: 0.36;
}

.service-stone::before {
  background: #78756b;
  opacity: 0.32;
}

.service-green img {
  filter: saturate(1.02) contrast(0.98);
}

.service-blue img {
  filter: saturate(0.92) hue-rotate(12deg) contrast(0.96);
}

.service-white img {
  filter: saturate(0.72) brightness(1.08) contrast(0.9);
}

.service-stone img {
  filter: saturate(0.58) contrast(0.94) brightness(0.98);
}

.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(5, 54, 36, 0.05) 0%, rgba(5, 54, 36, 0.74) 50%, rgba(5, 54, 36, 0.94) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-overlay h3,
.service-overlay p {
  color: inherit;
}

.service-overlay h3 {
  margin-bottom: 10px;
}

.service-overlay p {
  margin-bottom: 0;
}

.service-card:hover img,
.service-card:focus img,
.service-card:focus-within img {
  transform: scale(1.04);
}

.service-green:hover img,
.service-green:focus img,
.service-green:focus-within img {
  filter: saturate(1.1) contrast(0.98);
}

.service-blue:hover img,
.service-blue:focus img,
.service-blue:focus-within img {
  filter: saturate(1) hue-rotate(12deg) contrast(0.96);
}

.service-white:hover img,
.service-white:focus img,
.service-white:focus-within img {
  filter: saturate(0.82) brightness(1.1) contrast(0.9);
}

.service-stone:hover img,
.service-stone:focus img,
.service-stone:focus-within img {
  filter: saturate(0.64) contrast(0.95) brightness(0.98);
}

.service-card:hover .service-overlay,
.service-card:focus .service-overlay,
.service-card:focus-within .service-overlay {
  opacity: 1;
  transform: translateY(0);
}

.service-card:focus {
  outline: 3px solid var(--oak);
  outline-offset: 4px;
}

.gallery-reel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.gallery-window {
  overflow: hidden;
  border: 1px solid rgba(5, 54, 36, 0.18);
  border-radius: 8px;
  background: var(--forest);
  box-shadow: var(--shadow);
  cursor: grab;
  touch-action: pan-y;
}

.gallery-window:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  transition: transform 320ms ease;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(5, 54, 36, 0.2);
  border-radius: 50%;
  color: var(--ivory);
  background: var(--sage);
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.gallery-button:hover,
.gallery-button:focus {
  background: var(--forest);
}

.gallery-dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 54, 36, 0.28);
  cursor: pointer;
}

.gallery-dot.is-active {
  background: var(--sage);
}

.work .before-after {
  padding-top: clamp(36px, 6vw, 68px);
  margin-top: clamp(38px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.before-after-layout {
  display: block;
  gap: clamp(26px, 5vw, 48px);
}

.before-after p {
  color: var(--muted);
  font-size: 18px;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 28px);
  max-width: 1180px;
  margin: clamp(22px, 4vw, 36px) auto 0;
}

.transformation-grid article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(5, 54, 36, 0.12);
}

.transformation-grid h3 {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 19px;
}

.comparison {
  min-width: 0;
  padding: 10px;
}

.comparison-frame {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 6px;
  background: var(--forest);
  touch-action: pan-y;
}

.comparison-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: 14px;
}

.comparison-image span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 251, 237, 0.94);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-before {
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(5, 54, 36, 0.08), rgba(5, 54, 36, 0.12)),
    var(--before-image, url("assets/job-before-kitchen.jpg")) center / cover no-repeat;
}

.comparison-after {
  justify-content: flex-start;
  clip-path: inset(0 calc(100% - (var(--split) * 1%)) 0 0);
  background:
    linear-gradient(180deg, rgba(5, 54, 36, 0.06), rgba(5, 54, 36, 0.12)),
    var(--after-image, url("assets/job-after-kitchen.jpg")) center / cover no-repeat;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--split) * 1%);
  width: 0;
  border-left: 4px solid var(--ivory);
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.34));
  transform: translateX(-2px);
  pointer-events: none;
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: var(--sage);
  transform: translate(-50%, -50%);
}

.comparison-handle span::before {
  content: "< >";
  color: var(--ivory);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 46px rgba(5, 54, 36, 0.1);
  cursor: pointer;
}

.steps li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #0b5a39;
  mix-blend-mode: multiply;
  opacity: 0.24;
}

.steps img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.step-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(5, 54, 36, 0.05) 0%, rgba(5, 54, 36, 0.74) 50%, rgba(5, 54, 36, 0.94) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.step-overlay span,
.step-overlay h3,
.step-overlay p {
  color: inherit;
}

.step-overlay span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--oak);
  font-weight: 900;
}

.step-overlay h3 {
  margin-bottom: 10px;
}

.step-overlay p {
  margin-bottom: 0;
}

.steps li:hover img,
.steps li:focus img,
.steps li:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(0.98);
}

.steps li:hover .step-overlay,
.steps li:focus .step-overlay,
.steps li:focus-within .step-overlay {
  opacity: 1;
  transform: translateY(0);
}

.steps li:focus {
  outline: 3px solid var(--oak);
  outline-offset: 4px;
}

.about-copy {
  max-width: 920px;
}

.about-copy h2 {
  max-width: 760px;
}

.about-copy p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.about-copy .eyebrow {
  color: var(--oak);
  font-size: 13px;
  line-height: 1.55;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy .about-signoff {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
  margin-top: 28px;
}

.about-signoff span {
  color: var(--sage);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(30px, 4vw, 46px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.about-signoff strong {
  color: var(--forest);
  font-family: inherit;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
}

.quote-wrap {
  max-width: 900px;
}

blockquote {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.18;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(34px, 8vw, 96px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.contact-list strong {
  display: inline-block;
  min-width: 58px;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 243, 0.96), rgba(244, 241, 231, 0.96)),
    var(--panel);
  box-shadow: var(--shadow);
}

.form-hidden {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 32, 28, 0.24);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thank-you {
  width: min(680px, 100%);
  text-align: center;
}

.thank-you img {
  width: 180px;
  height: auto;
  margin: 0 auto 24px;
}

.thank-you h1 {
  color: var(--forest);
}

.thank-you p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    gap: clamp(16px, 4vw, 34px);
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 42px;
    align-items: start;
  }

  .hero-content {
    margin-top: 0;
  }

  .two-column,
  .before-after-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .section-heading.split {
    display: block;
  }

  .gallery-reel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .gallery-button {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 620px) {
  :root {
    --top-bar-height: 50px;
    --logo-bar-height: 82px;
    --nav-bar-height: 50px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 136px;
    height: 74px;
  }

  .header-strapline {
    display: none;
  }

  .header-cta {
    right: 12px;
    min-height: 34px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .top-bar-inner {
    display: flex;
    gap: 8px;
    min-height: var(--top-bar-height);
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 0.2px;
  }

  .top-socials {
    gap: 7px;
  }

  .top-socials a {
    width: 25px;
    height: 25px;
  }

  .top-contact {
    justify-content: flex-end;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
  }

  .top-contact a[href^="mailto:"] {
    display: none;
  }

  .site-nav {
    gap: 18px;
    height: var(--nav-bar-height);
    padding: 0 12px;
    overflow-x: auto;
    font-size: 12px;
    letter-spacing: 0.2px;
  }

  .site-nav a {
    transform: none;
  }

  .hero {
    padding: 44px 18px 56px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 29, 20, 0.94) 0%, rgba(3, 42, 27, 0.82) 56%, rgba(3, 42, 27, 0.48) 100%),
      linear-gradient(0deg, rgba(3, 29, 20, 0.56), rgba(3, 29, 20, 0.08));
  }

  h1 {
    font-size: 26px;
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.12;
  }

  .hero-content p:not(.eyebrow),
  p,
  .about-copy p {
    font-size: 16px;
    line-height: 1.62;
  }

  section:not(.hero) {
    padding: 54px 0;
  }

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .comparison {
    padding: 8px;
  }

  .comparison-frame {
    aspect-ratio: 4 / 3;
  }

  .comparison-image {
    padding: 10px;
  }

  .comparison-image span {
    display: none;
  }

  .comparison-handle span {
    width: 48px;
    height: 48px;
  }

  .transformation-grid h3 {
    font-size: 18px;
  }

  .service-grid article {
    padding: 24px;
  }

  .gallery-reel {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-window,
  .gallery-dots {
    grid-column: 1 / -1;
  }

  .gallery-prev {
    justify-self: end;
  }

  .gallery-next {
    justify-self: start;
  }

  .gallery-slide {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-strapline {
    width: auto;
    animation: none;
  }
}
