@font-face {
  font-family: "Guide Playfair";
  src: url("./fonts/playfair-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Guide Playfair";
  src: url("./fonts/playfair-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Guide Playfair";
  src: url("./fonts/playfair-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Guide Inter";
  src: url("./fonts/inter-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Guide Inter";
  src: url("./fonts/inter-medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Guide Inter";
  src: url("./fonts/inter-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --canvas: #f4f0e8;
  --ink: #14241d;
  --accent: #bd7546;
  --support: #3e5b4a;
  --line: #d6cbbb;
  --white: #fffdf8;
  --soft: color-mix(in srgb, var(--canvas) 76%, white);
  --display: "Guide Playfair", Georgia, serif;
  --body: "Guide Inter", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(12, 22, 18, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--accent);
  color: var(--white);
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.section-shell {
  width: min(100% - 10vw, 1280px);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition:
    transform 160ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease);
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--accent {
  background: var(--accent);
  color: var(--white);
}

.button--accent:hover {
  background: color-mix(in srgb, var(--accent) 82%, black);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(16, 25, 21, 0.22);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(4vw, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition:
    min-height 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    color 220ms var(--ease);
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 18, 14, 0.54), transparent);
  content: "";
  transition: opacity 220ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 68px;
  border-color: color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--canvas) 93%, transparent);
  box-shadow: 0 12px 40px rgba(12, 22, 18, 0.08);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.site-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  justify-self: start;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, currentColor 42%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 90%, transparent);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-brand > span:last-child {
  display: grid;
  min-width: 0;
}

.site-brand strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-brand small {
  margin-top: 4px;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
  font-size: 0.68rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  justify-self: end;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__media,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  object-fit: cover;
  object-position: var(--hero-position);
  transform: scale(1.015);
}

.hero__wash {
  background:
    linear-gradient(90deg, rgba(9, 20, 15, 0.92) 0%, rgba(9, 20, 15, 0.72) 42%, rgba(9, 20, 15, 0.32) 68%, rgba(9, 20, 15, 0.34) 100%),
    linear-gradient(to top, rgba(9, 20, 15, 0.88) 0%, transparent 42%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 10vw, 1380px);
  min-height: 900px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  margin-inline: auto;
  padding: 130px 0 155px;
}

.hero__copy {
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
}

.breadcrumb strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.hero__copy .eyebrow {
  color: color-mix(in srgb, var(--accent) 65%, white);
}

.hero__copy h1 {
  margin-bottom: 26px;
  font-size: clamp(4.2rem, 6.2vw, 7.2rem);
  text-wrap: balance;
}

.hero__deck {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

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

.hero__image-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
}

.brief-starter {
  width: min(100%, 430px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: color-mix(in srgb, var(--canvas) 94%, transparent);
  box-shadow: var(--shadow);
  color: var(--ink);
  justify-self: end;
  backdrop-filter: blur(18px);
}

.brief-starter__step {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brief-starter h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.brief-starter > p:not(.brief-starter__step) {
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
  font-size: 0.78rem;
}

.brief-starter__fields {
  display: grid;
  gap: 12px;
}

.brief-starter label,
.request-form label {
  display: grid;
  gap: 8px;
}

.brief-starter label > span,
.request-form label > span:first-child {
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.brief-starter input,
.brief-starter select,
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid color-mix(in srgb, var(--line) 86%, var(--ink));
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.brief-starter input:focus,
.brief-starter select:focus,
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--accent);
}

.brief-starter .button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  cursor: pointer;
}

.truth-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(5vw, calc((100vw - 1380px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 20, 15, 0.72);
  backdrop-filter: blur(12px);
}

.truth-rail > div {
  display: grid;
  min-height: 96px;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 2px 12px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.truth-rail > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.truth-rail span {
  grid-row: 1 / 3;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
}

.truth-rail strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}

.truth-rail small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
}

.disclosure-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px max(5vw, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.disclosure-strip strong {
  color: var(--accent);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.disclosure-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.disclosure-strip a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
  font-size: 0.66rem;
  font-weight: 600;
  text-decoration: none;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 8vw;
  padding-top: 128px;
  padding-bottom: 64px;
}

.section-heading h2,
.inspiration-heading h2,
.context-copy h2,
.signature-module h2,
.routing-heading h2,
.faq-heading h2,
.request-intro h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.6rem);
  text-wrap: balance;
}

.section-lede,
.inspiration-heading > p,
.context-copy > p,
.signature-module__copy > p:last-child,
.routing-heading > p {
  max-width: 610px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding-bottom: 130px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  box-shadow: 0 18px 60px rgba(12, 22, 18, 0.07);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--support);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card__media > span,
.context-image > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(9, 20, 15, 0.76);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.53rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-card__body {
  padding: 28px 30px 32px;
}

.service-card__body > p:first-child {
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.service-card__body > p:nth-of-type(2) {
  min-height: 50px;
  color: color-mix(in srgb, var(--ink) 63%, transparent);
}

.service-card__detail {
  margin: 12px 0 0;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  font-size: 0.78rem;
}

.service-card a {
  display: inline-flex;
  gap: 12px;
  margin-top: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
}

.inspiration-section {
  padding: 126px 0;
  background: var(--ink);
  color: var(--white);
}

.inspiration-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr;
  align-items: end;
  gap: 9vw;
  margin-bottom: 58px;
}

.inspiration-heading .eyebrow {
  color: color-mix(in srgb, var(--accent) 64%, white);
}

.inspiration-heading > p {
  color: rgba(255, 255, 255, 0.6);
}

.inspiration-grid {
  display: grid;
  min-height: 700px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.inspiration-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.inspiration-tile--1 {
  grid-row: 1 / 3;
}

.inspiration-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.inspiration-tile:hover img {
  transform: scale(1.025);
}

.inspiration-tile::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(to top, rgba(8, 16, 12, 0.84), transparent);
  content: "";
}

.inspiration-tile figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  gap: 6px;
}

.inspiration-tile figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inspiration-tile figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 2.1rem);
  font-weight: 600;
}

.context-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  padding-top: 130px;
  padding-bottom: 130px;
}

.context-copy > p {
  margin-top: 24px;
}

.context-image {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 16px;
}

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

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

.condition-card {
  display: grid;
  min-height: 190px;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.condition-card > span {
  align-self: start;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
}

.condition-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.condition-card p {
  max-width: 590px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}

.signature-module {
  overflow: hidden;
  background: color-mix(in srgb, var(--support) 15%, var(--canvas));
}

.signature-module__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 8vw;
  padding-top: 126px;
  padding-bottom: 126px;
}

.signature-module__copy > p:last-child {
  margin-top: 26px;
}

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

.module-item {
  display: flex;
  min-height: 185px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--canvas) 78%, white);
}

.module-item span {
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 600;
}

.module-item strong {
  max-width: 240px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.cost-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.cost-heading {
  display: grid;
  max-width: 880px;
  margin-bottom: 54px;
}

.cost-heading h2,
.checklist-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  text-wrap: balance;
}

.cost-heading > p:last-child,
.checklist-heading > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}

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

.cost-card {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--canvas) 80%, white);
}

.cost-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
}

.cost-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
}

.cost-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}

.checklist-section {
  background: var(--ink);
  color: var(--white);
}

.checklist-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 8vw;
  padding-top: 126px;
  padding-bottom: 126px;
}

.checklist-heading {
  position: sticky;
  top: 108px;
}

.checklist-heading .eyebrow {
  color: color-mix(in srgb, var(--accent) 65%, white);
}

.checklist-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.project-checklist {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.project-checklist li {
  display: grid;
  min-height: 118px;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.project-checklist span {
  align-self: start;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
}

.project-checklist p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.routing-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 8vw;
  padding-top: 130px;
  padding-bottom: 130px;
}

.routing-heading {
  position: sticky;
  top: 108px;
}

.routing-heading > p {
  margin-top: 24px;
}

.routing-steps {
  border-top: 1px solid var(--line);
}

.routing-steps article {
  display: grid;
  min-height: 220px;
  grid-template-columns: 52px 0.72fr 1.28fr;
  align-items: center;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.routing-steps article > span {
  align-self: start;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
}

.routing-steps h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
}

.routing-steps p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  padding-top: 110px;
  padding-bottom: 130px;
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  font-size: clamp(3rem, 4.6vw, 5rem);
}

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

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

.faq-item summary {
  display: grid;
  min-height: 98px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.16;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  color: var(--accent);
  font-family: var(--body);
  font-size: 1.35rem;
  transition: transform 180ms var(--ease);
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item > p {
  max-width: 760px;
  margin: -4px 48px 28px 0;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  background: var(--ink);
  color: var(--white);
}

.request-section__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.request-section__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 20, 15, 0.88), rgba(9, 20, 15, 0.08) 65%);
  content: "";
}

.request-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.request-section__media > div {
  position: absolute;
  z-index: 2;
  right: 10%;
  bottom: 60px;
  left: 10%;
}

.request-section__media h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
}

.request-section__content {
  padding: 120px max(5vw, 70px);
}

.request-intro {
  margin-bottom: 48px;
}

.request-intro .eyebrow {
  color: color-mix(in srgb, var(--accent) 68%, white);
}

.above-form {
  max-width: 820px;
  margin: 30px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
}

.routing-state {
  display: grid;
  gap: 5px;
  margin-top: 20px;
}

.routing-state span {
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.routing-state strong {
  font-size: 0.76rem;
  font-weight: 500;
}

.routing-state a {
  color: var(--white);
  text-underline-offset: 3px;
}

.request-form {
  display: grid;
  gap: 22px;
}

.form-step {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
}

.form-step legend {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.form-step legend span {
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 600;
}

.form-step legend strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}

.form-step legend small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
}

.request-form label > span:first-child {
  color: rgba(255, 255, 255, 0.72);
}

.request-form input,
.request-form select,
.request-form textarea {
  border-color: rgba(255, 255, 255, 0.2);
  background: #fffdf8;
}

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

.wide {
  grid-column: 1 / -1;
}

.photo-guidance {
  padding: 15px 17px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.photo-guidance strong {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.68rem;
}

.photo-guidance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

.consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px !important;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.consent input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
}

.consent span {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
}

.form-status {
  margin: 0;
  color: color-mix(in srgb, var(--accent) 60%, white);
  font-size: 0.78rem;
  font-weight: 500;
}

.form-status:not(:empty) {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.noscript-contact {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.noscript-contact a {
  color: var(--white);
}

.site-footer {
  padding: 72px max(5vw, calc((100vw - 1280px) / 2)) 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #0d1712;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.75fr;
  gap: 6vw;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand > div > strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.footer-brand p,
.site-footer__top > div > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.site-footer__top > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__top > div:not(.footer-brand) > strong {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__top a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  text-decoration: none;
}

.footer-disclosure {
  margin: 50px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
}

.footer-operator {
  max-width: 820px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.65;
}

.privacy-page {
  padding-top: 154px;
  padding-bottom: 110px;
}

.privacy-page > h1 {
  max-width: 14ch;
  margin: 18px 0 24px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.96;
}

.privacy-page .section-lede {
  max-width: 850px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 58px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.privacy-grid section {
  background: var(--canvas);
  padding: clamp(28px, 4vw, 52px);
}

.privacy-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.privacy-grid p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  line-height: 1.75;
}

.mobile-actions {
  position: fixed;
  z-index: 60;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3);
}

.mobile-actions a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-actions a:last-child {
  background: var(--ink);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 560ms var(--ease),
    transform 560ms var(--ease);
}

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

/* Four portfolio families */
.theme-heritage-stone .brand-mark,
.theme-heritage-stone .service-card,
.theme-heritage-stone .brief-starter,
.theme-heritage-stone .inspiration-tile,
.theme-heritage-stone .context-image,
.theme-heritage-stone .form-step {
  border-radius: 2px;
}

.theme-heritage-stone .hero__inner {
  grid-template-columns: 1.16fr 0.64fr;
  align-items: end;
  padding-bottom: 158px;
}

.theme-heritage-stone .hero__copy {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.theme-heritage-stone .brief-starter {
  border-top: 4px solid var(--accent);
}

.theme-heritage-stone .service-card {
  box-shadow: none;
}

.theme-heritage-stone .signature-module {
  border-top: 9px double var(--line);
  border-bottom: 9px double var(--line);
}

.theme-modern-courtyard .hero__inner {
  grid-template-columns: 0.85fr 0.75fr;
}

.theme-modern-courtyard .brief-starter,
.theme-modern-courtyard .service-card,
.theme-modern-courtyard .inspiration-tile,
.theme-modern-courtyard .context-image,
.theme-modern-courtyard .form-step {
  border-radius: 28px;
}

.theme-modern-courtyard .service-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.theme-modern-courtyard .service-card__media {
  aspect-ratio: 4 / 5;
}

.theme-modern-courtyard .service-card__body {
  padding: 22px 20px 26px;
}

.theme-modern-courtyard .service-card__body > p:first-child {
  margin-bottom: 24px;
}

.theme-modern-courtyard .service-card h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.theme-modern-courtyard .service-card__body > p:nth-of-type(2) {
  min-height: 112px;
  font-size: 0.82rem;
}

.theme-modern-courtyard .module-item {
  border-radius: 0 28px 0 0;
}

.theme-terrain-workshop .brand-mark,
.theme-terrain-workshop .brief-starter,
.theme-terrain-workshop .service-card,
.theme-terrain-workshop .inspiration-tile,
.theme-terrain-workshop .context-image,
.theme-terrain-workshop .form-step {
  border-radius: 0;
}

.theme-terrain-workshop .hero__inner {
  grid-template-columns: 1.2fr 0.62fr;
}

.theme-terrain-workshop .hero__copy h1 {
  max-width: 960px;
}

.theme-terrain-workshop .brief-starter {
  border-top: 8px solid var(--accent);
  box-shadow: 24px 24px 0 rgba(11, 21, 17, 0.34);
}

.theme-terrain-workshop .service-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.theme-terrain-workshop .service-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.theme-terrain-workshop .service-card:nth-child(even) {
  grid-template-columns: 1.2fr 0.8fr;
}

.theme-terrain-workshop .service-card:nth-child(even) .service-card__media {
  order: 2;
}

.theme-terrain-workshop .service-card__media {
  aspect-ratio: auto;
  min-height: 330px;
}

.theme-terrain-workshop .service-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.theme-terrain-workshop .signature-module {
  border-top: 14px solid var(--ink);
  border-bottom: 14px solid var(--ink);
  background:
    repeating-linear-gradient(-7deg, transparent 0 54px, color-mix(in srgb, var(--line) 42%, transparent) 54px 55px),
    color-mix(in srgb, var(--support) 15%, var(--canvas));
}

/* Portfolio hub */
.hub-body {
  background: #ede8dd;
  color: #16221c;
}

.hub-header {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 8vw;
  padding: 120px max(5vw, calc((100vw - 1380px) / 2)) 90px;
  background: #101b16;
  color: #fff;
}

.hub-header h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.hub-header h1 em {
  color: #d6905c;
  font-weight: 500;
}

.hub-lede {
  max-width: 800px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

.hub-header aside {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
}

.hub-header aside strong {
  color: #d6905c;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-header aside p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

.hub-family-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px max(5vw, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid #c8c0b2;
}

.hub-family-key span {
  color: #b9663f;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-family-key p {
  margin: 0;
  color: #5e655f;
  font-size: 0.72rem;
}

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

.hub-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
}

.hub-card > img,
.hub-card__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hub-card > img {
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.hub-card:hover > img {
  transform: scale(1.035);
}

.hub-card__wash {
  background: linear-gradient(to top, rgba(9, 18, 14, 0.92) 0%, rgba(9, 18, 14, 0.28) 68%, rgba(9, 18, 14, 0.48) 100%);
}

.hub-card__index,
.hub-card > div {
  position: relative;
  z-index: 2;
}

.hub-card__index {
  color: color-mix(in srgb, var(--market-accent) 60%, white);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-card > div > p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-card h2 {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.4vw, 5rem);
}

.hub-card strong {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--market-accent);
  font-size: 0.7rem;
  font-weight: 600;
}

.hub-card--heritage {
  border-top: 5px solid var(--market-accent);
}

.hub-card--courtyard {
  margin: 14px;
  border: 0;
  border-radius: 28px;
}

.hub-card--terrain {
  border-left: 12px solid var(--market-accent);
}

.hub-footer {
  padding: 45px max(5vw, calc((100vw - 1380px) / 2));
  background: #101b16;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.hub-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero__inner,
  .theme-heritage-stone .hero__inner,
  .theme-modern-courtyard .hero__inner,
  .theme-terrain-workshop .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.64fr);
    gap: 44px;
  }

  .hero__copy h1 {
    font-size: clamp(3.7rem, 6.4vw, 5.5rem);
  }

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

  .theme-modern-courtyard .service-card__media {
    aspect-ratio: 16 / 10;
  }

  .theme-modern-courtyard .service-card__body > p:nth-of-type(2) {
    min-height: 50px;
  }

  .request-section {
    grid-template-columns: 0.64fr 1.36fr;
  }

  .request-section__content {
    padding-inline: 50px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__inner,
  .theme-heritage-stone .hero__inner,
  .theme-modern-courtyard .hero__inner,
  .theme-terrain-workshop .hero__inner {
    min-height: 960px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 34px;
    padding: 120px 0 150px;
  }

  .hero__copy,
  .brief-starter {
    max-width: 700px;
    justify-self: start;
  }

  .brief-starter {
    width: min(100%, 620px);
  }

  .brief-starter__fields {
    grid-template-columns: 1fr 1fr;
  }

  .project-intro,
  .inspiration-heading,
  .context-section,
  .signature-module__inner,
  .checklist-section__inner,
  .routing-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .checklist-heading {
    position: static;
  }

  .routing-heading {
    position: static;
  }

  .request-section {
    grid-template-columns: 1fr;
  }

  .request-section__media {
    min-height: 620px;
  }

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

@media (max-width: 680px) {
  body:not(.hub-body) {
    padding-bottom: 76px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .section-shell {
    width: min(100% - 30px, 1280px);
  }

  .site-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .site-header.is-scrolled {
    min-height: 62px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 10px;
  }

  .site-brand strong {
    max-width: 215px;
    font-size: 0.93rem;
  }

  .site-brand small,
  .header-action {
    display: none;
  }

  .mobile-actions {
    display: grid;
  }

  .hero__wash {
    background:
      linear-gradient(to bottom, rgba(8, 18, 13, 0.86) 0%, rgba(8, 18, 13, 0.62) 42%, rgba(8, 18, 13, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 18, 13, 0.48), transparent);
  }

  .hero__inner,
  .theme-heritage-stone .hero__inner,
  .theme-modern-courtyard .hero__inner,
  .theme-terrain-workshop .hero__inner {
    width: calc(100% - 28px);
    min-height: auto;
    gap: 22px;
    padding: 102px 0 28px;
  }

  .theme-heritage-stone .hero__copy {
    padding-left: 16px;
  }

  .hero__copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.65rem, 12vw, 3.45rem);
    line-height: 0.98;
  }

  .hero__deck {
    font-size: 0.89rem;
  }

  .hero__actions {
    display: grid;
    margin-top: 20px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__image-note {
    font-size: 0.58rem;
  }

  .brief-starter {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
  }

  .theme-terrain-workshop .brief-starter {
    box-shadow: 8px 8px 0 rgba(11, 21, 17, 0.34);
  }

  .brief-starter h2 {
    font-size: 2rem;
  }

  .brief-starter__fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .brief-starter input,
  .brief-starter select {
    min-height: 50px;
  }

  .truth-rail {
    position: relative;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    padding: 0;
  }

  .truth-rail > div {
    min-height: 80px;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .truth-rail > div:nth-child(odd) {
    border-left: 0;
  }

  .truth-rail > div:nth-child(even) {
    border-right: 0;
  }

  .truth-rail strong {
    font-size: 0.86rem;
  }

  .truth-rail small {
    font-size: 0.51rem;
  }

  .disclosure-strip {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 15px;
  }

  .disclosure-strip a {
    width: fit-content;
  }

  .project-intro {
    gap: 26px;
    padding-top: 82px;
    padding-bottom: 42px;
  }

  .section-heading h2,
  .inspiration-heading h2,
  .context-copy h2,
  .signature-module h2,
  .cost-heading h2,
  .checklist-heading h2,
  .routing-heading h2,
  .faq-heading h2,
  .request-intro h2 {
    font-size: 2.65rem;
  }

  .section-lede,
  .inspiration-heading > p,
  .context-copy > p,
  .signature-module__copy > p:last-child,
  .routing-heading > p {
    font-size: 0.88rem;
  }

  .service-grid,
  .theme-modern-courtyard .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 82px;
  }

  .service-card,
  .theme-modern-courtyard .service-card {
    border-radius: 16px;
  }

  .theme-heritage-stone .service-card,
  .theme-terrain-workshop .service-card {
    border-radius: 0;
  }

  .service-card__body {
    padding: 22px 20px 25px;
  }

  .service-card__body > p:first-child {
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 2.15rem;
  }

  .theme-terrain-workshop .service-card,
  .theme-terrain-workshop .service-card:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr;
  }

  .theme-terrain-workshop .service-card:nth-child(even) .service-card__media {
    order: initial;
  }

  .theme-terrain-workshop .service-card__media {
    min-height: 250px;
  }

  .theme-terrain-workshop .service-card__body {
    padding: 26px 20px;
  }

  .inspiration-section {
    padding: 82px 0;
  }

  .inspiration-heading {
    gap: 24px;
    margin-bottom: 34px;
  }

  .inspiration-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .inspiration-tile,
  .inspiration-tile--1 {
    min-height: 300px;
    grid-row: auto;
    border-radius: 14px;
  }

  .theme-heritage-stone .inspiration-tile,
  .theme-terrain-workshop .inspiration-tile {
    border-radius: 0;
  }

  .context-section {
    gap: 42px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .context-image {
    margin-top: 28px;
  }

  .condition-card {
    min-height: 160px;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .condition-card h3 {
    font-size: 1.85rem;
  }

  .signature-module__inner {
    gap: 42px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .module-item {
    min-height: 138px;
    padding: 18px;
  }

  .module-item strong {
    font-size: 1.25rem;
  }

  .cost-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

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

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

  .cost-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .cost-card > span {
    margin-bottom: 24px;
  }

  .checklist-section__inner {
    gap: 42px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .project-checklist li {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .project-checklist p {
    font-size: 1.2rem;
  }

  .routing-section {
    gap: 42px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .routing-steps article {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .routing-steps h3 {
    font-size: 1.8rem;
  }

  .routing-steps p {
    grid-column: 2;
    font-size: 0.84rem;
  }

  .faq-section {
    gap: 38px;
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .faq-item summary {
    min-height: 82px;
    font-size: 1.2rem;
  }

  .faq-item > p {
    margin-right: 34px;
    font-size: 0.84rem;
  }

  .request-section__media {
    min-height: 430px;
  }

  .request-section__media > div {
    right: 20px;
    bottom: 30px;
    left: 20px;
  }

  .request-section__media h2 {
    font-size: 2.75rem;
  }

  .request-section__content {
    padding: 78px 15px 92px;
  }

  .request-intro {
    margin-bottom: 34px;
  }

  .above-form {
    font-size: 0.7rem;
  }

  .form-step legend {
    grid-template-columns: auto 1fr;
    padding: 15px;
  }

  .form-step legend small {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .wide {
    grid-column: auto;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .button {
    width: 100%;
  }

  .site-footer {
    padding: 62px 15px 100px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .privacy-page {
    padding-top: 116px;
    padding-bottom: 78px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    margin: 42px 0;
  }

  .hub-header {
    padding: 78px 15px 56px;
  }

  .hub-header h1 {
    font-size: 3.7rem;
  }

  .hub-family-key {
    display: grid;
    padding: 18px 15px;
  }

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

  .hub-card,
  .hub-card--courtyard {
    min-height: 440px;
    margin: 0;
    padding: 24px 18px;
    border-right: 0;
    border-radius: 0;
  }

  .hub-card h2 {
    font-size: 3rem;
  }

  .hub-footer {
    padding: 38px 15px;
  }
}

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

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

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