:root {
  --forest: #17231e;
  --forest-soft: #22332b;
  --sage: #aebba8;
  --cream: #f1eee6;
  --paper: #f8f6f0;
  --ink: #1e211d;
  --muted: #6f716b;
  --line: rgba(29, 37, 31, 0.19);
  --white-line: rgba(255, 255, 255, 0.24);
  --display: "Newsreader", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
  --micro: "DM Sans", "Helvetica Neue", sans-serif;
  --shell: min(92vw, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 72px;
}

::selection {
  background: var(--sage);
  color: var(--forest);
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--forest);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.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;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--micro);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #536057;
}

.section-index {
  margin: 0;
  color: var(--muted);
  font-family: var(--micro);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 100%;
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.12;
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 em,
h2 em {
  font-weight: 300;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 246, 240, 0.95);
  box-shadow: 0 1px 0 rgba(20, 28, 23, 0.11);
  color: var(--forest);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  width: var(--shell);
  height: 86px;
  margin-inline: auto;
  border-bottom: 1px solid var(--white-line);
}

.is-scrolled .header-inner {
  height: 72px;
  border-bottom-color: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.7rem;
  width: max-content;
}

.brand-mark {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
}

.brand-wordmark {
  font-family: var(--micro);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-wordmark em {
  font-family: var(--display);
  font-size: 1.15em;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  font-family: var(--micro);
  font-size: 0.72rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--micro);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.header-cta span {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 180ms ease;
}

.header-cta:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: auto;
  overflow: hidden;
  background: #1e2a24;
  color: white;
}

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

.hero-image {
  background-image: url("assets/images/kvm-hero-kitchen.webp");
  background-position: 52% center;
  background-size: cover;
  animation: hero-entry 1.4s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 20, 16, 0.77) 0%, rgba(12, 20, 16, 0.53) 29%, rgba(12, 20, 16, 0.05) 67%),
    linear-gradient(0deg, rgba(10, 17, 14, 0.52) 0%, transparent 32%),
    linear-gradient(180deg, rgba(10, 17, 14, 0.26) 0%, transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(780px, 100svh);
  flex-direction: column;
  justify-content: center;
  width: var(--shell);
  height: auto;
  margin-inline: auto;
  padding: 8rem 0 10rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  animation: content-entry 850ms 450ms ease forwards;
}

.hero-eyebrow span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: min(100%, 940px);
  margin-bottom: 1.75rem;
  font-size: clamp(4rem, min(6.5vw, 10vh), 7rem);
  opacity: 0;
  animation: content-entry 950ms 570ms ease forwards;
}

.hero h1 em {
  color: #d5dece;
}

.hero-copy {
  max-width: 545px;
  margin-bottom: 2.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  opacity: 0;
  animation: content-entry 850ms 680ms ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: content-entry 850ms 760ms ease forwards;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--micro);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.button:hover span {
  transform: translate(3px, -3px);
}

.button-light {
  background: var(--cream);
  color: var(--forest);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: white;
}

.text-link {
  display: inline-block;
  width: max-content;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--micro);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link-light {
  color: white;
}

.hero-footer {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 0;
  left: 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  height: 84px;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--micro);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-footer a {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  color: white;
}

.hero-footer i {
  font-size: 1.15rem;
  font-style: normal;
}

@keyframes hero-entry {
  from { transform: scale(1.06); opacity: 0.55; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes content-entry {
  from { transform: translateY(25px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.intro {
  background: var(--paper);
}

.intro-grid,
.section-heading,
.areas-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) 2fr;
  gap: 6vw;
}

.intro-statement h2,
.section-heading h2,
.process-intro h2,
.details-title-wrap h2,
.faq h2 {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  font-size: clamp(3.2rem, 6vw, 6.6rem);
}

.intro-statement h2 em,
.section-heading h2 em,
.process-intro h2 em,
.details-title-wrap h2 em,
.faq h2 em {
  color: #69776e;
}

.intro-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  max-width: 980px;
  color: #52564f;
}

.intro-body p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.85;
}

.expertise {
  padding-top: 2rem;
  background: var(--paper);
}

.section-heading {
  align-items: start;
  margin-bottom: 6rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 0.28fr 0.85fr 1.15fr auto;
  gap: 2.5rem;
  align-items: start;
  padding-block: 2.4rem;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, padding 220ms ease;
}

.service-number {
  color: #81887f;
  font-family: var(--micro);
  font-size: 0.7rem;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.service-row p {
  max-width: 540px;
  margin: 0;
  color: #696d66;
  font-size: 0.95rem;
  line-height: 1.8;
}

.service-arrow {
  color: #667269;
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.service-row:hover {
  color: #4e6558;
  padding-left: 0.75rem;
}

.service-row:hover .service-arrow {
  transform: translate(4px, -4px);
}

.design {
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(5rem, 9vw, 9rem);
  background: var(--forest);
  color: white;
}

.design-lead {
  display: grid;
  grid-template-columns: 0.72fr 1.5fr 0.8fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.design-lead h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7.6vw, 8.2rem);
}

.design-lead h2 em {
  color: var(--sage);
}

.design-lead > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.85;
}

.design .section-index {
  color: rgba(255, 255, 255, 0.44);
}

.concept figure {
  margin: 0;
}

.concept img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.concept figure:hover img {
  transform: scale(1.018);
}

.concept-one {
  width: min(80vw, 1240px);
  margin-left: 4vw;
}

.concept-one figure,
.concept-two figure {
  overflow: hidden;
}

.concept-one img {
  aspect-ratio: 1.52 / 1;
}

.concept figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--micro);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.concept figcaption span:first-child {
  color: white;
}

.concept-two {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr;
  gap: 7vw;
  align-items: center;
  width: min(80vw, 1200px);
  margin: clamp(7rem, 13vw, 13rem) 4vw 0 auto;
}

.concept-two img {
  aspect-ratio: 1 / 1.08;
}

.concept-note {
  max-width: 390px;
  padding-top: 1.3rem;
  border-top: 1px solid var(--white-line);
}

.concept-count {
  display: block;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--micro);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.concept-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.34;
}

.concept-disclaimer {
  width: min(80vw, 1200px);
  margin: 5rem auto 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  text-align: right;
}

.process {
  background: #e8e5db;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  gap: clamp(4rem, 10vw, 11rem);
}

.process-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.process-intro h2 {
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}

.process-intro > p:not(.eyebrow, .section-index) {
  max-width: 500px;
  margin-bottom: 2rem;
  color: #5f625c;
  line-height: 1.85;
}

.process-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  min-height: 210px;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  padding-top: 0.35rem;
  color: #727b73;
  font-family: var(--micro);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.process-steps h3 {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.14;
}

.process-steps p {
  max-width: 440px;
  margin: 0;
  color: #676b64;
  line-height: 1.8;
}

.details-section {
  background: var(--paper);
}

.details-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.details-title-wrap h2 {
  margin-top: 4rem;
  margin-bottom: 0;
}

.detail-lede {
  margin-bottom: 5rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.36;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
}

.detail-columns > div {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.detail-columns h3 {
  margin-bottom: 0.9rem;
  font-family: var(--micro);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-columns p {
  margin: 0;
  color: #676b64;
  font-size: 0.92rem;
  line-height: 1.75;
}

.areas {
  background: #8f9f91;
  color: #142019;
}

.areas .eyebrow,
.areas .section-index {
  color: rgba(20, 32, 25, 0.62);
}

.areas h2 {
  max-width: 980px;
  margin-bottom: 2.5rem;
  font-size: clamp(3.4rem, 6.2vw, 6.8rem);
}

.areas h2 em {
  color: #e9eee7;
}

.areas-copy {
  max-width: 740px;
  margin-bottom: 4rem;
  color: rgba(20, 32, 25, 0.74);
  font-size: 1.06rem;
  line-height: 1.85;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(20, 32, 25, 0.3);
  list-style: none;
}

.area-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(20, 32, 25, 0.3);
  font-family: var(--micro);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-list li:nth-child(odd) {
  border-right: 1px solid rgba(20, 32, 25, 0.3);
}

.area-list li:nth-child(even) {
  padding-left: 2rem;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 10vw, 11rem);
}

.faq h2 {
  margin-top: 4rem;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 1.7rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 640px;
  margin: 0;
  padding: 0 3rem 1.8rem 0;
  color: #686c65;
  line-height: 1.8;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) 0 7rem;
  background: var(--forest);
  color: white;
}

.contact::before {
  position: absolute;
  right: -10vw;
  bottom: -35vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.contact-topline {
  position: absolute;
  top: 0;
  right: 4vw;
  left: 4vw;
  height: 1px;
  background: var(--white-line);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.contact .section-index {
  color: rgba(255, 255, 255, 0.42);
}

.contact-intro h2 {
  margin: 4rem 0 2.5rem;
  font-size: clamp(3.6rem, 6.5vw, 7rem);
}

.contact-intro h2 em {
  color: var(--sage);
}

.contact-intro > p:not(.eyebrow, .section-index) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.85;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}

.contact-direct a {
  display: grid;
  grid-template-columns: 110px 1fr;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--display);
  font-size: 1.25rem;
}

.contact-direct a span {
  padding-top: 0.25rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--micro);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-form {
  align-self: end;
  padding-top: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.project-form label {
  display: block;
  margin-bottom: 1.65rem;
}

.project-form label > span {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--micro);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: white;
  transition: border-color 180ms ease;
}

.project-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 10px) 52%, calc(100% - 5px) 52%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.project-form select option {
  background: var(--forest);
  color: white;
}

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

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-bottom-color: white;
}

.project-form input:-webkit-autofill,
.project-form input:-webkit-autofill:hover,
.project-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  box-shadow: 0 0 0 1000px var(--forest) inset;
}

.project-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.form-submit-row .button {
  min-width: 240px;
  border-radius: 0;
}

.form-submit-row p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  line-height: 1.5;
}

.site-footer {
  padding: 5rem 0 2rem;
  background: #0f1814;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.65fr;
  gap: 6vw;
  align-items: start;
  padding-bottom: 4rem;
}

.footer-brand {
  color: white;
}

.footer-main > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.35;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--micro);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--micro);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

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

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease, width 200ms ease;
  }

  .menu-toggle span:last-child {
    width: 19px;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    width: 28px;
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 9rem 4vw 4rem;
    background: var(--forest);
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 250ms ease, transform 250ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: var(--display);
    font-size: clamp(2.5rem, 7vw, 4.3rem);
    font-weight: 300;
    line-height: 1.18;
  }

  .mobile-menu-contact {
    display: flex;
    gap: 2rem;
    font-family: var(--micro);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-header.menu-active {
    color: white;
  }

  .design-lead {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .design-lead > p {
    grid-column: 2;
  }

  .concept-two {
    grid-template-columns: 0.6fr 1.4fr;
  }
}

@media (min-width: 1101px) {
  .site-header {
    position: absolute;
  }

  .site-header.is-scrolled {
    position: fixed;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(90vw, 680px);
  }

  .section {
    padding-block: 5.5rem;
  }

  .header-inner {
    height: 74px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-wordmark {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 20, 16, 0.67), rgba(12, 20, 16, 0.18)),
      linear-gradient(0deg, rgba(10, 17, 14, 0.66), transparent 45%),
      linear-gradient(180deg, rgba(10, 17, 14, 0.38), transparent 25%);
  }

  .hero-content {
    min-height: max(720px, 100svh);
    justify-content: flex-end;
    padding: 0 0 10rem;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 12vw, 5.4rem);
    line-height: 1.12;
  }

  .hero-copy {
    max-width: 480px;
    font-size: 0.96rem;
  }

  .hero-footer {
    right: 5vw;
    left: 5vw;
    grid-template-columns: 1fr auto;
    height: 72px;
  }

  .hero-footer span {
    display: none;
  }

  .hero-footer::before {
    content: "Design · Cabinetry · Installation";
  }

  .intro-grid,
  .section-heading,
  .areas-grid,
  .process-grid,
  .details-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .intro-statement h2,
  .section-heading h2,
  .process-intro h2,
  .details-title-wrap h2,
  .faq h2 {
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-size: clamp(3rem, 8.5vw, 4.6rem);
  }

  .intro-body {
    gap: 2rem;
  }

  .section-heading {
    margin-bottom: 3.5rem;
  }

  .service-row {
    grid-template-columns: 45px 1fr auto;
    gap: 1.25rem;
  }

  .service-row p {
    grid-column: 2 / 4;
  }

  .design-lead {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .design-lead h2 {
    font-size: clamp(3.3rem, 9vw, 5rem);
  }

  .design-lead > p {
    grid-column: 1;
    max-width: 570px;
  }

  .concept-one,
  .concept-two {
    width: 90vw;
    margin-right: auto;
    margin-left: auto;
  }

  .concept-one img {
    aspect-ratio: 1.25 / 1;
  }

  .concept-two {
    grid-template-columns: 1fr;
  }

  .concept-note {
    max-width: 580px;
  }

  .concept-count {
    margin-bottom: 2rem;
  }

  .concept-two img {
    aspect-ratio: 1.15 / 1;
  }

  .concept-disclaimer {
    width: 90vw;
    text-align: left;
  }

  .process-intro {
    position: static;
  }

  .details-title-wrap h2,
  .faq h2 {
    margin-top: 3rem;
  }

  .details-grid {
    gap: 4rem;
  }

  .areas-grid > div:last-child {
    max-width: 680px;
  }

  .areas h2 {
    font-size: clamp(3.1rem, 8.5vw, 4.8rem);
  }

  .contact-intro h2 {
    margin-top: 3rem;
    font-size: clamp(3.3rem, 9vw, 5.2rem);
  }

  .project-form {
    padding-top: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > p {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .footer-links {
    align-items: flex-end;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 0;
  }

  .hero-eyebrow {
    gap: 0.55rem;
    font-size: 0.57rem;
    letter-spacing: 0.12em;
  }

  .hero-eyebrow span {
    width: 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.25rem);
    text-wrap: wrap;
  }

  .hero h1 em {
    display: block;
  }

  .mobile-menu-contact {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .hero .button {
    width: 100%;
  }

  .button {
    line-height: 1.35;
    white-space: normal;
  }

  .intro-body,
  .detail-columns,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 34px 1fr;
  }

  .service-row p,
  .service-arrow {
    grid-column: 2;
  }

  .service-arrow {
    display: none;
  }

  .concept figcaption {
    flex-direction: column;
    gap: 0.4rem;
  }

  .process-steps li {
    grid-template-columns: 46px 1fr;
    min-height: 0;
  }

  .detail-columns {
    gap: 2.5rem;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .area-list li:nth-child(odd) {
    border-right: 0;
  }

  .area-list li:nth-child(even) {
    padding-left: 0;
  }

  .contact-direct a {
    grid-template-columns: 90px 1fr;
    font-size: 1.05rem;
  }

  .form-row {
    gap: 0;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .form-submit-row p {
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > p {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 1rem;
    bottom: 1rem;
    left: auto;
    display: flex;
    width: auto;
    height: 50px;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background: #dce3d9;
    box-shadow: 0 10px 30px rgba(15, 24, 20, 0.22);
    color: var(--forest);
    font-family: var(--micro);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translateY(calc(100% + 2rem));
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .mobile-call strong {
    font-size: 0.76rem;
  }

  .mobile-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Interior page system */
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: max(680px, 82svh);
  height: auto;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

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

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

.page-hero-image::after {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.46);
  content: "Illustrative design concept";
  font-family: var(--micro);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero-image.image-right img {
  object-position: 66% center;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.84), rgba(10, 18, 14, 0.33) 58%, rgba(10, 18, 14, 0.12)),
    linear-gradient(0deg, rgba(10, 17, 14, 0.68), transparent 58%);
}

.page-hero.no-photo {
  min-height: max(620px, 72svh);
  height: auto;
  background:
    radial-gradient(circle at 78% 32%, rgba(174, 187, 168, 0.17), transparent 27%),
    linear-gradient(135deg, #17231e, #21362b);
}

.page-hero.no-photo::before,
.page-hero.no-photo::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.page-hero.no-photo::before {
  top: -35vw;
  right: -10vw;
  width: 70vw;
  height: 70vw;
}

.page-hero.no-photo::after {
  right: 18vw;
  bottom: -30vw;
  width: 48vw;
  height: 48vw;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(8rem, 14vh, 10rem) 0 clamp(4.5rem, 8vh, 7rem);
}

.breadcrumbs {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--micro);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: white;
}

.breadcrumbs span[aria-hidden] {
  color: rgba(255, 255, 255, 0.3);
}

.page-hero h1 {
  max-width: min(100%, 1080px);
  margin-bottom: 1.8rem;
  font-size: clamp(4rem, min(6.7vw, 10vh), 7.25rem);
}

.page-hero h1 em {
  color: #ced8ca;
}

.page-hero-lede {
  max-width: 700px;
  margin-bottom: 2.3rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.8;
}

.page-hero-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.page-hero-meta > span {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--micro);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-intro,
.content-section,
.page-related,
.contact-page {
  background: var(--paper);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) 2fr;
  gap: 6vw;
}

.page-intro-main h2,
.content-copy h2,
.feature-band h2,
.page-related h2,
.contact-page h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(3.2rem, 5.8vw, 6.3rem);
}

.page-intro-main h2 em,
.content-copy h2 em,
.page-related h2 em {
  color: #69776e;
}

.page-intro-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  max-width: 1050px;
}

.page-intro-copy p {
  margin: 0;
  color: #5f635c;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.85;
}

.page-subnav {
  background: #e8e5db;
}

.page-subnav-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-subnav-inner::-webkit-scrollbar {
  display: none;
}

.page-subnav a {
  flex: 1 0 auto;
  padding: 1rem clamp(1rem, 2vw, 2.5rem);
  border-right: 1px solid var(--line);
  color: #646b64;
  font-family: var(--micro);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.page-subnav a:first-child {
  border-left: 1px solid var(--line);
}

.page-subnav a:hover,
.page-subnav a.active {
  background: var(--forest);
  color: white;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
}

.content-split.reverse .content-visual {
  order: 2;
}

.content-visual {
  min-height: 650px;
  overflow: hidden;
}

.content-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.content-copy > p {
  max-width: 650px;
  color: #60645d;
  line-height: 1.85;
}

.content-copy .large-copy {
  margin-bottom: 2.5rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
  font-weight: 300;
  line-height: 1.38;
}

.editorial-list {
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.editorial-list > div,
.editorial-list > li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.editorial-list span {
  color: #808880;
  font-family: var(--micro);
  font-size: 0.64rem;
  letter-spacing: 0.07em;
}

.editorial-list h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.18;
}

.editorial-list p {
  margin: 0;
  color: #696d66;
  font-size: 0.9rem;
  line-height: 1.7;
}

.feature-band {
  padding-block: clamp(5.5rem, 9vw, 9rem);
  background: var(--forest);
  color: white;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 7vw;
}

.feature-band .eyebrow,
.feature-band .section-index {
  color: rgba(255, 255, 255, 0.5);
}

.feature-band h2 {
  max-width: 1000px;
}

.feature-band h2 em {
  color: var(--sage);
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--white-line);
}

.feature-columns > div {
  min-height: 260px;
  padding: 1.8rem 2rem 1.8rem 0;
  border-right: 1px solid var(--white-line);
}

.feature-columns > div + div {
  padding-left: 2rem;
}

.feature-columns > div:last-child {
  border-right: 0;
}

.feature-columns span {
  display: block;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--micro);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.feature-columns h3 {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 300;
}

.feature-columns p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.75;
}

.seo-section {
  background: #e8e5db;
}

.seo-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.seo-grid > div:first-child {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.seo-grid h2 {
  margin: 3rem 0 0;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.seo-grid h2 em {
  color: #69776e;
}

.seo-copy > div {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.seo-copy > div:last-child {
  border-bottom: 1px solid var(--line);
}

.seo-copy h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
}

.seo-copy p {
  margin-bottom: 0;
  color: #62665f;
  line-height: 1.85;
}

.page-related-header {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 7vw;
  margin-bottom: 4rem;
}

.page-related h2 {
  margin-bottom: 0;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-links a {
  position: relative;
  min-height: 250px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  transition: background 220ms ease, color 220ms ease, padding 220ms ease;
}

.related-links a:first-child {
  padding-left: 0;
}

.related-links a:last-child {
  border-right: 0;
}

.related-links span {
  display: block;
  margin-bottom: 4.5rem;
  color: #798079;
  font-family: var(--micro);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.related-links h3 {
  max-width: 290px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.14;
}

.related-links i {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-size: 1.2rem;
  font-style: normal;
}

.related-links a:hover {
  background: var(--forest);
  color: white;
}

.related-links a:hover span {
  color: rgba(255, 255, 255, 0.5);
}

.related-links a:first-child:hover {
  padding-left: 2rem;
}

.page-cta {
  background: #96a696;
  color: #142019;
}

.page-cta-inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 4rem;
  align-items: end;
  padding-block: clamp(5rem, 8vw, 8rem);
}

.page-cta h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3.4rem, 6.7vw, 7.2rem);
}

.page-cta h2 em {
  color: #edf1eb;
}

.page-cta .button,
.contact-page .button {
  min-width: 220px;
  background: var(--forest);
  color: white;
}

.page-cta .button:hover,
.contact-page .button:hover {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.process-timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-timeline li {
  display: grid;
  grid-template-columns: 0.3fr 0.85fr 1.25fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.process-timeline > li > span {
  color: #768078;
  font-family: var(--micro);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.process-timeline h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
}

.process-timeline p {
  max-width: 600px;
  margin: 0;
  color: #63675f;
  line-height: 1.85;
}

.area-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.area-entry {
  padding: 2.2rem 2.5rem 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.area-entry:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.area-entry:nth-child(even) {
  padding-left: 2.5rem;
}

.area-entry h3 {
  margin-bottom: 0.7rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
}

.area-entry p {
  margin: 0;
  color: #676b64;
  font-size: 0.9rem;
  line-height: 1.7;
}

.about-statement {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.about-statement p {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-statement em {
  color: #6d796f;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(4rem, 10vw, 11rem);
}

.contact-page .contact-direct a {
  color: var(--ink);
}

.contact-page .contact-direct a span,
.contact-page .project-form label > span,
.contact-page .form-submit-row p {
  color: #747b74;
}

.contact-page .project-form input,
.contact-page .project-form select,
.contact-page .project-form textarea {
  border-bottom-color: var(--line);
  color: var(--ink);
}

.contact-page .project-form input:focus,
.contact-page .project-form select:focus,
.contact-page .project-form textarea:focus {
  border-bottom-color: var(--forest);
}

.contact-page .project-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--forest) 50%),
    linear-gradient(135deg, var(--forest) 50%, transparent 50%);
}

.contact-page .project-form select option {
  background: var(--paper);
  color: var(--ink);
}

.contact-page .project-form textarea::placeholder {
  color: #a4a7a1;
}

.contact-page .project-form input:-webkit-autofill,
.contact-page .project-form input:-webkit-autofill:hover,
.contact-page .project-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  box-shadow: 0 0 0 1000px var(--paper) inset;
}

@media (max-width: 1100px) {
  .feature-columns {
    grid-template-columns: 1fr;
  }

  .feature-columns > div,
  .feature-columns > div + div {
    min-height: 0;
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .feature-columns span {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 800px) {
  .page-intro-grid,
  .feature-band-grid,
  .page-related-header,
  .contact-page-grid,
  .content-split,
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .page-hero {
    min-height: max(760px, 82svh);
    height: auto;
  }

  .page-hero.no-photo {
    min-height: max(720px, 76svh);
  }

  .page-hero h1 {
    font-size: clamp(3.5rem, 9.5vw, 5.2rem);
  }

  .page-hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .page-intro-copy {
    grid-template-columns: 1fr;
  }

  .content-split.reverse .content-visual {
    order: 0;
  }

  .content-visual,
  .content-visual img {
    min-height: 500px;
  }

  .seo-grid > div:first-child {
    position: static;
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .related-links a,
  .related-links a:first-child {
    min-height: 190px;
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .related-links a:last-child {
    border-bottom: 0;
  }

  .related-links a:first-child:hover {
    padding-left: 1.25rem;
  }

  .related-links span {
    margin-bottom: 2.5rem;
  }

  .page-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .process-timeline li {
    grid-template-columns: 70px 1fr;
  }

  .process-timeline p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .mobile-menu {
    justify-content: flex-start;
    gap: 2rem;
    padding-top: 6.5rem;
    overflow-y: auto;
  }

  .mobile-menu nav a {
    padding: 0.4rem 0;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .mobile-menu-contact {
    margin-top: auto;
    padding-top: 2rem;
  }

  .page-hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 12vw, 4.1rem);
    line-height: 1.12;
    text-wrap: wrap;
  }

  .page-hero-meta .button {
    width: 100%;
    min-width: 0;
    gap: 1rem;
  }

  .page-subnav-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    padding-block: 0.65rem;
  }

  .page-subnav a,
  .page-subnav a:first-child {
    padding: 0.85rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .page-subnav a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .page-subnav a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .page-intro-main h2,
  .content-copy h2,
  .feature-band h2,
  .page-related h2,
  .contact-page h2 {
    font-size: clamp(2.8rem, 11.5vw, 3.3rem);
  }

  .seo-grid h2 {
    font-size: clamp(2.75rem, 11vw, 3.2rem);
  }

  .page-cta h2 {
    font-size: clamp(2.9rem, 12vw, 3.4rem);
  }

  .content-visual,
  .content-visual img {
    min-height: 390px;
  }

  .process-timeline li {
    grid-template-columns: 42px 1fr;
    gap: 1.2rem;
  }

  .area-directory {
    grid-template-columns: 1fr;
  }

  .area-entry:nth-child(odd) {
    border-right: 0;
  }

  .area-entry:nth-child(even) {
    padding-left: 0;
  }
}
