@font-face {
  font-family: "RLD Garamond";
  src: url("fonts/EBGaramond-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

@font-face {
  font-family: "RLD Urbanist";
  src: url("fonts/Urbanist-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "RLD Urbanist";
  src: url("fonts/Urbanist-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --ink: #183028;
  --ink-soft: #596b64;
  --evergreen: #173c31;
  --evergreen-deep: #0d2a21;
  --forest-black: #091e18;
  --moss: #718a62;
  --moss-light: #dfe8d5;
  --cream: #f2ede0;
  --paper: #fbf8f0;
  --white: #fffdf8;
  --sand: #d5c7a8;
  --gold: #c2a159;
  --clay: #a85e3f;
  --line: rgba(24, 48, 40, .16);
  --line-light: rgba(255, 253, 248, .17);
  --shadow: 0 24px 70px rgba(17, 40, 32, .14);
  --serif: "RLD Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "RLD Urbanist", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 86px;
  --content-width: 1440px;
  --measure: 760px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

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

body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 300;
  top: -90px;
  left: 18px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--evergreen-deep);
  border-radius: 0 0 8px 8px;
}

.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  padding: 13px clamp(20px, 4vw, 68px);
  color: var(--white);
  background: rgba(13, 42, 33, .96);
  border-bottom: 1px solid rgba(255, 253, 248, .12);
  box-shadow: 0 8px 28px rgba(9, 30, 24, .14);
  backdrop-filter: blur(18px) saturate(125%);
  transition:
    color .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.site-header.is-scrolled,
body[data-mode="arrange"] .site-header {
  color: var(--white);
  background: rgba(9, 30, 24, .97);
  border-bottom-color: rgba(255, 253, 248, .14);
  box-shadow: 0 10px 32px rgba(9, 30, 24, .2);
}

body.menu-open .site-header {
  color: var(--white);
  background: rgba(9, 30, 24, .98);
  border-bottom-color: rgba(255, 253, 248, .12);
  box-shadow: none;
}

body[data-mode="arrange"] .site-header {
  grid-template-columns: minmax(260px, 1fr) auto auto;
}

.brand,
.footer-brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-monogram,
.footer-mark,
.loading-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
}

.brand-monogram {
  width: 49px;
  height: 49px;
  font-size: 29px;
}

.brand-copy,
.footer-brand > span:last-child {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.brand-copy small {
  color: rgba(255, 253, 248, .76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand-copy small,
body[data-mode="arrange"] .brand-copy small { color: rgba(255, 253, 248, .76); }

body.menu-open .brand-copy small { color: rgba(255, 253, 248, .76); }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2.2vw, 32px);
}

.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu-toggle {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  color: rgba(255, 253, 248, .82);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
  white-space: nowrap;
}

.nav-menu-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform .24s ease;
}

.nav-menu:hover .nav-menu-toggle,
.nav-menu.is-open .nav-menu-toggle,
.nav-menu.has-current .nav-menu-toggle { color: var(--white); }

.nav-menu:hover .nav-menu-toggle::after,
.nav-menu.is-open .nav-menu-toggle::after,
.nav-menu.has-current .nav-menu-toggle::after { transform: scaleX(1); }

.nav-chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: margin .2s ease, transform .2s ease;
}

.nav-menu.is-open .nav-chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  z-index: 95;
  top: calc(100% - 3px);
  left: 50%;
  width: min(540px, 72vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  padding: 16px;
  color: var(--ink);
  background: rgba(251, 248, 240, .99);
  border: 1px solid rgba(24, 48, 40, .12);
  border-radius: 4px;
  box-shadow: 0 24px 54px rgba(7, 25, 19, .24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.primary-nav .nav-dropdown a {
  min-height: 43px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  color: var(--ink);
  background: transparent;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.3;
  white-space: normal;
}

.primary-nav .nav-dropdown a::after { display: none; }

.primary-nav .nav-dropdown a:hover,
.primary-nav .nav-dropdown a[aria-current="page"] {
  color: var(--evergreen-deep);
  background: var(--moss-light);
}

.primary-nav a {
  position: relative;
  padding: 14px 0;
  color: rgba(255, 253, 248, .82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform .24s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-header.is-scrolled .primary-nav a,
body[data-mode="arrange"] .primary-nav a { color: rgba(255, 253, 248, .82); }

.site-header.is-scrolled .primary-nav a::after,
body[data-mode="arrange"] .primary-nav a::after { background: var(--white); }

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a[aria-current="page"],
body[data-mode="arrange"] .primary-nav a:hover,
body[data-mode="arrange"] .primary-nav a[aria-current="page"] { color: var(--white); }

.primary-nav .nav-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 17px;
  color: var(--white);
  background: rgba(255, 253, 248, .14);
  border: 1px solid rgba(255, 253, 248, .48);
  border-radius: 999px;
}

.primary-nav .nav-contact::after { display: none; }

.site-header.is-scrolled .primary-nav .nav-contact,
body[data-mode="arrange"] .primary-nav .nav-contact {
  color: var(--white);
  background: rgba(255, 253, 248, .14);
  border-color: rgba(255, 253, 248, .48);
}

.mode-toggle {
  justify-self: end;
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(255, 253, 248, .08);
  border: 1px solid rgba(255, 253, 248, .42);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.mode-toggle:hover { background: rgba(255, 253, 248, .16); }

.site-header.is-scrolled .mode-toggle,
body[data-mode="arrange"] .site-header .mode-toggle {
  color: var(--white);
  background: rgba(255, 253, 248, .08);
  border-color: rgba(255, 253, 248, .42);
}

.site-header.is-scrolled .mode-toggle:hover,
body[data-mode="arrange"] .site-header .mode-toggle:hover { background: rgba(255, 253, 248, .16); }

.mode-toggle-icon {
  position: relative;
  width: 21px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.mode-toggle-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  transition: transform .2s ease;
}

body[data-mode="arrange"] .site-header .mode-toggle {
  display: inline-flex;
  color: var(--evergreen-deep);
  background: var(--cream);
  border-color: var(--cream);
}

body[data-mode="arrange"] .mode-toggle-icon::after { transform: translateX(9px); }

body.menu-open .site-header .mode-toggle {
  color: var(--white);
  background: rgba(255, 253, 248, .08);
  border-color: rgba(255, 253, 248, .42);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-toggle > span:first-child,
.menu-toggle > span:first-child::before,
.menu-toggle > span:first-child::after {
  width: 19px;
  height: 1px;
  display: block;
  background: currentColor;
}

.menu-toggle > span:first-child { position: relative; }
.menu-toggle > span:first-child::before,
.menu-toggle > span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle > span:first-child::before { top: -6px; }
.menu-toggle > span:first-child::after { top: 6px; }

.arrange-bar {
  position: sticky;
  z-index: 80;
  top: var(--header-height);
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(310px, 1fr) auto minmax(135px, .4fr);
  align-items: center;
  gap: 26px;
  padding: 11px clamp(20px, 4vw, 68px);
  color: #f7f1e4;
  background: var(--evergreen-deep);
  box-shadow: 0 12px 28px rgba(9, 29, 23, .2);
}

body[data-mode="arrange"] .arrange-bar { margin-top: var(--header-height); }

.arrange-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 2px 10px;
}

.arrange-kicker {
  color: #d9c995;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.arrange-summary strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.arrange-summary > span:last-child {
  grid-column: 1 / -1;
  color: rgba(247, 241, 228, .66);
  font-size: 9px;
}

.arrange-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.arrange-pages a {
  padding: 7px 9px;
  color: rgba(255, 253, 248, .7);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.arrange-pages a:hover,
.arrange-pages a[aria-current="page"] {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.arrange-save {
  justify-self: end;
  color: rgba(247, 241, 228, .7);
  font-size: 9px;
}

.arrange-save::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: #d4bd78;
  border-radius: 50%;
}
.arrange-save.is-saved::before { background: #8fc4a1; }
.arrange-save.is-error::before { background: #df8365; }

main { min-height: 100vh; }

.loading-screen {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--evergreen);
  background: var(--cream);
}

.loading-mark {
  width: 64px;
  height: 64px;
  font-size: 37px;
  animation: breathe 1.6s ease-in-out infinite;
}

.loading-screen p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 19px;
}

@keyframes breathe { 50% { transform: scale(.94); opacity: .64; } }

.hero {
  position: relative;
  min-height: clamp(620px, 100svh, 910px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--evergreen-deep);
}

.hero.hero-inner { min-height: clamp(520px, 72vh, 760px); }

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.25s ease;
}

.hero-image.is-active {
  z-index: 1;
  opacity: 1;
  animation: ken-burns-a 8.5s ease-out both;
}

.hero-image.is-active:nth-child(even) { animation-name: ken-burns-b; }

@keyframes ken-burns-a {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.095) translate3d(-1.2%, -.7%, 0); }
}

@keyframes ken-burns-b {
  from { transform: scale(1.095) translate3d(-.8%, -.7%, 0); }
  to { transform: scale(1.025) translate3d(.8%, .3%, 0); }
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 19, .81) 0%, rgba(7, 25, 19, .37) 53%, rgba(7, 25, 19, .1) 100%),
    linear-gradient(0deg, rgba(7, 24, 19, .71) 0%, transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) clamp(24px, 6.2vw, 100px);
}

.hero-copy { max-width: 820px; }
.eyebrow {
  margin: 0 0 20px;
  color: #e3d7b7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  max-width: 930px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(60px, 8.2vw, 124px);
  font-weight: 500;
  line-height: .85;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.hero-inner h1 { font-size: clamp(56px, 7vw, 102px); }
.hero h1 .line { display: block; }
.hero h1 em { color: #e6d5aa; font-weight: 400; }

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 29px 0 0;
  color: rgba(255, 253, 248, .87);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 49px;
  padding: 11px 21px;
  color: var(--evergreen-deep);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.button-link::after { content: "→"; font-size: 15px; }
.button-link:hover { transform: translateY(-2px); }
.button-link.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--evergreen);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after { content: "→"; font-size: 15px; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero-phones {
  display: grid;
  gap: 5px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 253, 248, .3);
}

.hero-phone {
  display: grid;
  grid-template-columns: 64px auto;
  align-items: baseline;
  gap: 9px;
  color: rgba(255, 253, 248, .88);
  text-decoration: none;
}

.hero-phone-label {
  color: #e3d7b7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-phone-number {
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
  line-height: 1.25;
}

.hero-phone:hover .hero-phone-number { color: var(--white); }

.hero-rotator {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 4vw, 68px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-rotator button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(9, 30, 23, .35);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero-dots { display: flex; gap: 6px; }
.hero-dot {
  width: 24px !important;
  height: 2px !important;
  background: rgba(255, 255, 255, .36) !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.hero-dot.is-active { background: var(--white) !important; }

.hero-arrange-label {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: clamp(20px, 4vw, 68px);
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--evergreen-deep);
  background: #f2d98d;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
body[data-mode="arrange"] .hero-arrange-label { display: inline-flex; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--evergreen);
  border-bottom: 1px solid var(--line-light);
}

.trust-item {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 28px clamp(24px, 4vw, 68px);
  border-right: 1px solid var(--line-light);
}

.trust-item:last-child { border-right: 0; }
.trust-item strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1;
}
.trust-item-compact strong { font-size: clamp(26px, 2.05vw, 30px); }
.trust-item span {
  color: rgba(255, 253, 248, .65);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(84px, 9vw, 142px) clamp(22px, 5vw, 82px);
}

.section-tight { padding-block: clamp(64px, 7vw, 100px); }
.section-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}
.section-warm { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-deep { color: var(--white); background: var(--evergreen-deep); }
.section-sage { background: var(--moss-light); }

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(40px, 5vw, 74px);
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(340px, 1fr);
  align-items: end;
  gap: clamp(38px, 8vw, 130px);
}

.section-number {
  display: block;
  margin-bottom: 17px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-deep .section-number { color: #c9bb8c; }

.section-heading h2,
.content-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.1vw, 75px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.section-heading p,
.lead {
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.75;
  text-wrap: pretty;
}

.section-deep .section-heading p,
.section-deep .lead { color: rgba(255, 253, 248, .7); }
.section-heading.split > p { margin: 0; }

.section-contact-prompt {
  display: block;
  margin-top: 14px;
  color: var(--ink);
}

.section-contact-prompt strong { font-weight: 800; }
.section-contact-prompt a {
  color: var(--evergreen);
  font-weight: 800;
  text-decoration-color: var(--moss);
  text-decoration-thickness: 2px;
  text-underline-offset: .22em;
}
.section-contact-prompt a::after {
  content: " →";
  display: inline-block;
  margin-left: .18em;
  text-decoration: none;
  transition: transform .2s ease;
}
.section-contact-prompt a:hover::after { transform: translateX(3px); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: clamp(420px, 44vw, 620px);
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--evergreen);
  text-decoration: none;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 28, 22, .83), rgba(9, 28, 22, .03) 68%);
}
.service-card:hover img { transform: scale(1.04); }

.service-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 26px;
}
.service-card small {
  display: block;
  margin-bottom: 8px;
  color: #e2d6b5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.35vw, 40px);
  font-weight: 500;
  line-height: 1;
}
.service-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 17px;
  line-height: 1.6;
  transition: max-height .35s ease, margin .35s ease, opacity .35s ease;
}
.service-card:hover p { max-height: 96px; margin-top: 13px; opacity: .84; }
.service-card-arrow {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.service-card:hover .service-card-arrow {
  color: var(--evergreen);
  background: var(--white);
  transform: rotate(-35deg);
}

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

.service-index-item {
  min-height: 295px;
  padding: clamp(32px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 22px);
}
.service-index-item:nth-child(even) { border-right: 0; }
.service-index .service-count {
  display: block;
  margin-bottom: 30px;
  color: var(--moss);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}
.service-index h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 500;
  line-height: 1;
}
.service-index p {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.service-index ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--evergreen);
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}
.service-index li::before { content: "·"; margin-right: 6px; color: var(--gold); }

.service-teaser-section {
  padding-block: clamp(44px, 5vw, 70px);
}

.service-teaser {
  display: grid;
  grid-template-columns: minmax(290px, .9fr) minmax(340px, 1.15fr) auto;
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
}

.service-teaser h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.service-teaser p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  text-wrap: pretty;
}

.service-teaser-link {
  position: relative;
  padding-bottom: 6px;
  font-size: clamp(14px, 1.1vw, 15px);
  letter-spacing: .055em;
  white-space: nowrap;
}

.service-teaser-link::after {
  font-size: 17px;
}

.service-teaser-link::before {
  position: absolute;
  right: 23px;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform .2s ease;
}

.service-teaser-link:hover::before {
  transform: scaleX(.72);
}

.budget-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 650px;
  color: var(--white);
  background: var(--evergreen-deep);
}

.budget-band-image { position: relative; min-height: 520px; overflow: hidden; }
.budget-band-image img { width: 100%; height: 100%; object-fit: cover; }
.budget-band-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(13, 42, 33, .25));
}

.budget-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 112px);
}

.budget-band-copy h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.04em;
}

.budget-band-copy > p {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(255, 253, 248, .73);
  font-size: 18px;
  line-height: 1.75;
}

.scale-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 35px;
}
.scale-options article {
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}
.scale-options strong {
  display: block;
  margin-bottom: 8px;
  color: #e7d6aa;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}
.scale-options span {
  color: rgba(255, 253, 248, .66);
  font-size: clamp(16px, 1.25vw, 17px);
  line-height: 1.65;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -28px 0 46px;
}

.filter-chip {
  padding: 8px 13px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: capitalize;
}
.filter-chip:hover,
.filter-chip.is-active {
  color: var(--white);
  background: var(--evergreen);
  border-color: var(--evergreen);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(9px, 1.3vw, 19px);
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  overflow: hidden;
  color: var(--white);
  background: #dfe3d9;
  border: 0;
  cursor: zoom-in;
}

.gallery-card:nth-of-type(8n + 1),
.gallery-card:nth-of-type(8n + 6) { grid-column: span 7; min-height: 560px; }
.gallery-card:nth-of-type(8n + 2),
.gallery-card:nth-of-type(8n + 5) { grid-column: span 5; min-height: 410px; }
.gallery-card:nth-of-type(8n + 3),
.gallery-card:nth-of-type(8n + 4) { grid-column: span 5; min-height: 360px; }
.gallery-card:nth-of-type(8n + 7),
.gallery-card:nth-of-type(8n + 8) { grid-column: span 6; min-height: 430px; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .3s ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 26, 20, .3), transparent 48%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-card:hover img { transform: scale(1.026); }
.gallery-card:hover::after { opacity: 1; }
.gallery-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.gallery-index {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-card:hover .gallery-index { opacity: 1; }

.arrange-divider {
  grid-column: 1 / -1;
  display: none;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.arrange-divider::before,
.arrange-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
body[data-mode="arrange"] .arrange-divider { display: flex; }
body[data-mode="arrange"] .gallery-card {
  min-height: 330px;
  border: 3px solid transparent;
  cursor: grab;
}
body[data-mode="arrange"] .gallery-card.is-core { border-color: #d5aa3f; }
body[data-mode="arrange"] .gallery-card.is-dragging { opacity: .42; cursor: grabbing; }
body[data-mode="arrange"] .gallery-card.is-drop-target {
  outline: 5px solid rgba(213, 170, 63, .55);
  outline-offset: 3px;
}

.arrange-card-controls {
  position: absolute;
  z-index: 5;
  inset: auto 9px 9px 9px;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  color: var(--evergreen-deep);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 8px 25px rgba(11, 35, 27, .2);
  backdrop-filter: blur(10px);
}
body[data-mode="arrange"] .arrange-card-controls { display: grid; }
.arrange-card-labels { display: flex; flex-wrap: wrap; gap: 5px; }
.arrange-card-labels span {
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.label-core { color: #5f470d; background: #f1dc9f; }
.label-page { color: #194b38; background: #d8eadb; }
.label-more { color: #4f5d56; background: #e9e5db; }
.arrange-card-buttons { display: flex; gap: 4px; }
.arrange-card-buttons button {
  width: 29px;
  height: 29px;
  padding: 0;
  color: var(--evergreen);
  background: transparent;
  border: 1px solid rgba(23, 60, 49, .22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}
.arrange-card-buttons button:hover { color: var(--white); background: var(--evergreen); }
.arrange-card-buttons button:disabled { opacity: .25; cursor: default; }
.hero-button {
  width: auto !important;
  padding: 0 9px !important;
  border-radius: 999px !important;
  font-size: 8px !important;
  text-transform: uppercase;
}
.hero-button.is-current {
  color: #5e450b !important;
  background: #f1d98e !important;
  border-color: #e1be58 !important;
}

.gallery-show-more {
  display: flex;
  justify-content: center;
  padding-top: clamp(34px, 4.5vw, 64px);
}
.show-more-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px 12px 23px;
  color: var(--evergreen);
  background: var(--white);
  border: 1px solid rgba(23, 60, 49, .25);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .025em;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.show-more-button:hover,
.show-more-button:focus-visible {
  color: var(--white);
  background: var(--evergreen);
  border-color: var(--evergreen);
  transform: translateY(-2px);
}
.show-more-button:focus-visible {
  outline: 3px solid rgba(193, 151, 64, .55);
  outline-offset: 3px;
}
.show-more-button:disabled { cursor: default; opacity: .65; }
.show-more-count,
.show-more-arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.show-more-count {
  min-width: 29px;
  height: 29px;
  padding-inline: 6px;
  background: rgba(23, 60, 49, .1);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.show-more-arrow {
  width: 31px;
  height: 31px;
  color: var(--white);
  background: var(--evergreen);
  font-size: 15px;
  transition: transform .2s ease;
}
.show-more-button:hover .show-more-count,
.show-more-button:focus-visible .show-more-count {
  background: rgba(255, 255, 255, .15);
}
.show-more-button:hover .show-more-arrow,
.show-more-button:focus-visible .show-more-arrow {
  color: var(--evergreen);
  background: var(--white);
  transform: translateY(2px);
}
.gallery-card.is-revealed {
  animation: gallery-card-reveal .45s ease both;
}
@keyframes gallery-card-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-card.is-revealed { animation: none; }
}

.excluded-shelf {
  display: none;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px dashed rgba(168, 94, 63, .45);
}
body[data-mode="arrange"] .excluded-shelf { display: block; }
.excluded-shelf h3 {
  margin: 0;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}
.excluded-shelf > p { margin: 7px 0 18px; color: var(--ink-soft); font-size: 11px; }
.excluded-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.excluded-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dbd4ca;
}
.excluded-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.8);
  opacity: .44;
}
.excluded-card span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 5px 7px;
  color: #7b321c;
  background: #f0c9bb;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 9vw, 145px);
}

.content-grid .sticky-title {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.prose { max-width: var(--measure); }
.prose h2,
.prose h3 {
  margin: 52px 0 13px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}
.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }
.prose p,
.prose li {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}
.prose ul { padding-left: 18px; }
.prose blockquote {
  margin: 46px 0 14px;
  padding: 0;
  color: var(--evergreen);
  border: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}
.prose cite { color: var(--ink-soft); font-size: 15px; font-style: normal; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-step {
  min-height: 310px;
  padding: 30px clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: 0; }
.process-step .step-number {
  display: block;
  margin-bottom: 52px;
  color: var(--moss);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}
.process-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.05;
}
.process-step p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 130px);
}
.place-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 30px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 16px;
}

.review-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px clamp(24px, 5vw, 80px);
  color: var(--evergreen);
  background: #e6dcc5;
}
.review-stars { color: #9f7a2c; font-size: 20px; letter-spacing: .18em; }
.review-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 500;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 168px) clamp(24px, 5vw, 80px);
  color: var(--white);
  background: var(--evergreen);
  text-align: center;
}
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.cta-section::before { top: -210px; left: -70px; }
.cta-section::after { right: -110px; bottom: -230px; }
.cta-section > div {
  position: relative;
  z-index: 1;
  max-width: 830px;
  margin: 0 auto;
}
.cta-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(49px, 6vw, 86px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.04em;
}
.cta-section p {
  max-width: 620px;
  margin: 25px auto 32px;
  color: rgba(255, 253, 248, .74);
  line-height: 1.72;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 145px);
}
.contact-details {
  display: grid;
  gap: 34px;
  align-content: start;
}
.contact-office {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.contact-office strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}
.contact-office span,
.contact-office a {
  display: block;
  color: var(--ink-soft);
  font-size: 17px;
  font-style: normal;
  line-height: 1.6;
  text-decoration: none;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  padding: clamp(28px, 5vw, 62px);
  background: var(--cream);
}
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  color: var(--evergreen);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(24, 48, 40, .28);
  border-radius: 0;
  outline: 0;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--evergreen); box-shadow: 0 1px 0 var(--evergreen); }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--ink-soft); font-size: 15px; }
.contact-form .button-link { width: max-content; cursor: pointer; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(145px, .55fr));
  gap: clamp(28px, 5vw, 72px);
  padding: 70px clamp(22px, 5vw, 80px) 24px;
  color: rgba(255, 253, 248, .65);
  background: var(--forest-black);
}
.footer-intro { max-width: 430px; }
.footer-brand { color: var(--white); }
.footer-mark {
  width: 48px;
  height: 48px;
  color: #d9c995;
  font-size: 26px;
}
.footer-brand strong { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.footer-brand small { color: rgba(255, 253, 248, .5); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-intro > p { margin: 22px 0 0; font-size: 16px; line-height: 1.7; }
.footer-nav,
.footer-office { display: grid; align-content: start; gap: 9px; margin: 0; font-style: normal; }
.footer-nav strong,
.footer-office strong {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.footer-nav a,
.footer-office a,
.footer-office span { font-size: 15px; line-height: 1.65; text-decoration: none; }
.footer-nav a:hover,
.footer-office a:hover { color: var(--white); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
  letter-spacing: .04em;
}
.footer-bottom > span:last-child { display: flex; gap: 15px; }
.footer-bottom a { text-decoration: none; }
.preview-note { color: #ccb774; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: rgba(7, 22, 17, .97);
  border: 0;
}
.lightbox[open] {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  place-items: center;
}
.lightbox::backdrop { background: rgba(7, 22, 17, .92); }
.lightbox figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 34px 18px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 16px;
}
.lightbox img { max-width: 100%; max-height: calc(100vh - 98px); object-fit: contain; }
.lightbox figcaption { color: rgba(255, 255, 255, .64); font-size: 10px; text-align: center; }
.lightbox-close,
.lightbox-step {
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  font-size: 25px;
}
.lightbox-step { font-size: 20px; }
.lightbox-close:hover,
.lightbox-step:hover { color: var(--evergreen); background: var(--white); }

.toast {
  position: fixed;
  z-index: 180;
  right: 22px;
  bottom: 22px;
  max-width: min(370px, calc(100vw - 44px));
  padding: 13px 17px;
  color: var(--white);
  background: var(--evergreen-deep);
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

.empty-gallery {
  grid-column: 1 / -1;
  padding: 46px;
  color: var(--ink-soft);
  background: var(--cream);
  text-align: center;
}
.empty-gallery h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}
.empty-gallery p { margin: 0; font-size: 12px; }

@media (min-width: 901px) {
  .nav-menu:hover .nav-dropdown,
  .nav-menu:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }

  .site-header .primary-nav .nav-dropdown a,
  .site-header.is-scrolled .primary-nav .nav-dropdown a {
    color: var(--ink);
    background: transparent;
  }

  .site-header .primary-nav .nav-dropdown a:hover,
  .site-header .primary-nav .nav-dropdown a:focus-visible,
  .site-header .primary-nav .nav-dropdown a[aria-current="page"],
  .site-header.is-scrolled .primary-nav .nav-dropdown a:hover,
  .site-header.is-scrolled .primary-nav .nav-dropdown a:focus-visible,
  .site-header.is-scrolled .primary-nav .nav-dropdown a[aria-current="page"] {
    color: var(--evergreen-deep);
    background: var(--moss-light);
    outline: none;
  }
}

@media (max-width: 1220px) {
  .site-header { grid-template-columns: minmax(225px, 1fr) auto; gap: 18px; padding-inline: 26px; }
  body[data-mode="arrange"] .site-header { grid-template-columns: minmax(225px, 1fr) auto auto; }
  .brand-copy small { display: none; }
  .primary-nav { gap: 17px; }
  .primary-nav a,
  .nav-menu-toggle { font-size: 13px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 560px; }
  .arrange-bar { grid-template-columns: 1fr auto; }
  .arrange-pages { display: none; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .site-header { grid-template-columns: 1fr auto; min-height: var(--header-height); padding: 10px 18px; }
  body[data-mode="arrange"] .site-header { grid-template-columns: 1fr auto auto; }
  .brand-monogram { width: 44px; height: 44px; }
  .brand-copy strong { font-size: 17px; }
  .menu-toggle { display: inline-flex; }
  .menu-label { display: none; }
  .primary-nav {
    position: fixed;
    z-index: 89;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: calc(100svh - var(--header-height));
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 9px;
    padding: clamp(42px, 9vh, 78px) 28px 50px;
    color: var(--white);
    background: rgba(9, 30, 24, .98);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.menu-open .primary-nav { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav a,
  .primary-nav .nav-contact {
    color: var(--white);
    background: transparent;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
  }
  .primary-nav a::after { display: none; }
  .nav-menu {
    width: 100%;
    display: grid;
    justify-items: center;
  }
  .nav-menu-toggle {
    min-height: 52px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
  }
  .nav-menu-toggle::after { display: none; }
  .nav-dropdown {
    position: static;
    width: min(100%, 420px);
    max-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    transition: max-height .3s ease, opacity .2s ease, padding .3s ease, visibility .2s ease;
  }
  .nav-menu.is-open .nav-dropdown {
    max-height: 620px;
    padding: 4px 0 18px;
    opacity: 1;
    transform: none;
  }
  .primary-nav .nav-dropdown a,
  .primary-nav .nav-dropdown .nav-contact {
    min-height: 36px;
    justify-content: center;
    padding: 7px 12px;
    color: rgba(255, 253, 248, .78);
    background: transparent;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
  }
  .primary-nav .nav-dropdown a:hover,
  .primary-nav .nav-dropdown a[aria-current="page"] {
    color: var(--white);
    background: rgba(255, 253, 248, .09);
  }
  .mode-toggle { min-height: 35px; padding: 7px 10px; }
  .mode-toggle #mode-toggle-label { display: none; }
  .arrange-bar { top: var(--header-height); min-height: 68px; padding: 10px 18px; }
  .arrange-summary { display: block; }
  .arrange-summary > span:last-child,
  .arrange-kicker { display: none; }
  .arrange-summary strong { font-size: 15px; }
  .arrange-save { font-size: 0; }
  .arrange-save::before { margin: 0; }
  .hero { min-height: 100svh; }
  .hero-inner { min-height: 680px; }
  .hero h1 { font-size: clamp(58px, 13vw, 92px); }
  .hero-content { padding-bottom: 90px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .section-heading.split,
  .service-teaser,
  .content-grid,
  .service-area,
  .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .service-teaser { align-items: start; }
  .service-teaser-link { justify-self: start; }
  .content-grid .sticky-title { position: static; }
  .budget-band { grid-template-columns: 1fr; }
  .budget-band-image { min-height: 510px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step { border-bottom: 1px solid var(--line); }
  .editorial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .gallery-card,
  .gallery-card:nth-of-type(n) { grid-column: span 1; min-height: 390px; }
  .gallery-card:nth-of-type(5n + 1) { grid-column: 1 / -1; min-height: 560px; }
  .arrange-divider { grid-column: 1 / -1; }
  .excluded-grid { grid-template-columns: repeat(3, 1fr); }
  .review-band { grid-template-columns: 1fr; text-align: center; }
  .site-footer { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .brand-copy strong { font-size: 15px; }
  .hero-image.hero-image-focus-right {
    object-position: 90% center;
    transform-origin: 90% center;
  }
  .hero-image.hero-image-focus-right.is-active {
    animation-name: ken-burns-mobile-focus;
  }
  body.is-page-scrolled .hero-image.hero-image-focus-right.is-active {
    animation-play-state: paused;
  }
  @keyframes ken-burns-mobile-focus {
    from { transform: scale(1.015); }
    to { transform: scale(1.045); }
  }
  .hero::after {
    background: linear-gradient(0deg, rgba(7, 25, 19, .84), rgba(7, 25, 19, .14) 84%);
  }
  .hero-content { padding: 74px 20px 72px; }
  .hero h1,
  .hero-inner h1 { font-size: clamp(52px, 15.4vw, 74px); line-height: .9; }
  .hero p:not(.eyebrow) { margin-top: 21px; font-size: 18px; line-height: 1.6; }
  .hero-actions { margin-top: 26px; }
  .button-link { min-height: 45px; padding: 10px 16px; font-size: 13px; }
  .hero-phones {
    width: 100%;
    gap: 7px;
    margin: 7px 0 0;
    padding: 13px 0 0;
    border-top: 1px solid rgba(255, 253, 248, .28);
    border-left: 0;
  }
  .hero-phone { grid-template-columns: 66px auto; gap: 10px; }
  .hero-phone-label { font-size: 12px; }
  .hero-phone-number { font-size: 17px; }
  .hero-rotator { right: 18px; bottom: 17px; }
  .hero-dots { display: none; }
  .section { padding: 74px 16px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2,
  .content-title { font-size: 42px; }
  .service-cards { grid-template-columns: 1fr; gap: 10px; }
  .service-card { min-height: 490px; }
  .service-card p { max-height: 125px; margin-top: 13px; opacity: .84; }
  .service-index { grid-template-columns: 1fr; }
  .service-index-item,
  .service-index-item:nth-child(even) { min-height: 0; border-right: 0; }
  .service-teaser { gap: 22px; }
  .service-teaser h2 { font-size: 38px; }
  .budget-band-image { min-height: 400px; }
  .budget-band-copy { padding: 66px 22px; }
  .scale-options { grid-template-columns: 1fr; }
  .filter-row { margin-top: -14px; margin-bottom: 32px; }
  .editorial-grid { display: flex; flex-direction: column; }
  .gallery-card,
  .gallery-card:nth-of-type(n) { width: 100%; min-height: 0; aspect-ratio: 4 / 3; }
  .gallery-card:nth-of-type(3n + 1) { aspect-ratio: 4 / 5; }
  body[data-mode="arrange"] .gallery-card { min-height: 0; }
  .gallery-show-more { padding-top: 30px; }
  .show-more-button { width: 100%; justify-content: center; }
  .excluded-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step:nth-child(n) { min-height: 0; border-right: 0; }
  .process-step .step-number { margin-bottom: 24px; }
  .place-list { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .field-full { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-inline: 20px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-nav { grid-row: span 2; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom > span:last-child { flex-wrap: wrap; }
  .lightbox[open] { grid-template-columns: 44px minmax(0, 1fr) 44px; }
  .lightbox figure { padding-inline: 0; }
  .lightbox-step { width: 36px; height: 36px; }
  .lightbox-close { top: 12px; right: 12px; }
}

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