:root {
  --ink: #111210;
  --ink-soft: #1a1b18;
  --paper: #f3f0e9;
  --paper-deep: #e5e0d6;
  --white: #fff;
  --text: #22231f;
  --muted: #65655e;
  --line: rgba(20, 21, 18, .16);
  --gold: #c8a46a;
  --gold-light: #e1c18d;
  --wood: #9a673e;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(88px, 11vw, 168px);
  --header-height: 102px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  transition: background-color .35s ease, box-shadow .35s ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(13, 14, 13, .94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.brand {
  width: 118px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 42px);
  margin-left: auto;
}

.desktop-nav a,
.header-cta,
.mobile-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, .75);
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover {
  color: var(--white);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid rgba(225, 193, 141, .75);
  color: var(--white);
  transition: background .25s ease, color .25s ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 13px 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}

.site-header.open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 670px;
  margin-left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  padding: calc(var(--header-height) + 88px) clamp(32px, 5vw, 82px) 86px 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.8vw, 104px);
  line-height: .91;
}

h2 {
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: .96;
}

.hero-lede {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}

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

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: border-color .25s ease, gap .25s ease;
}

.text-link:hover {
  gap: 16px;
  border-color: var(--gold);
}

.text-link span {
  color: var(--gold);
  font-size: 17px;
}

.hero-note {
  display: flex;
  gap: 26px;
  margin-top: 58px;
  margin-bottom: 0;
  padding: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  list-style: none;
  text-transform: uppercase;
}

.hero-note li + li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 26px 2px 0;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: min(900px, 100svh);
  margin: 0;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 16, .58) 0, transparent 38%),
    linear-gradient(0deg, rgba(10, 11, 10, .46) 0, transparent 35%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
  animation: hero-scale 1.4s var(--ease) both;
}

@keyframes hero-scale {
  from { transform: scale(1.05); opacity: .65; }
  to { transform: scale(1); opacity: 1; }
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  letter-spacing: .05em;
}

.hero-visual figcaption a {
  flex: 0 0 auto;
  color: var(--white);
  text-underline-offset: 3px;
}

.hero-index {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, .18);
  font-family: var(--display);
  font-size: 38px;
}

.specialty-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.marquee-track {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.marquee-track span {
  color: #34352f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.marquee-track i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--wood);
}

.section {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.services {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(500px, 1.22fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: calc(var(--header-height) + 54px);
}

.section-intro h2 {
  max-width: 520px;
}

.section-intro > p:last-child {
  max-width: 490px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line);
}

.service-number {
  padding-top: 5px;
  color: var(--wood);
  font-family: var(--display);
  font-size: 18px;
}

.service-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.service-item p {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
}

.service-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-item li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: #505149;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
  min-height: 800px;
  background: var(--ink);
  color: var(--white);
}

.manifesto-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.manifesto-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 9, .48), transparent 42%);
}

.manifesto-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: rgba(255, 255, 255, .74);
  font-size: 10px;
  letter-spacing: .06em;
}

.manifesto-copy {
  align-self: center;
  padding: clamp(70px, 9vw, 138px) max(var(--gutter), calc((100vw - var(--max)) / 2)) clamp(70px, 9vw, 138px) clamp(48px, 7vw, 108px);
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2));
}

.manifesto-copy h2 {
  max-width: 590px;
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 18px;
}

.manifesto-copy ul {
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  list-style: none;
}

.manifesto-copy li {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.manifesto-copy li span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 80px);
}

.gallery-heading h2 {
  max-width: 790px;
}

.gallery-heading > p {
  max-width: 380px;
  margin: 0;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 28px);
}

.gallery-card {
  position: relative;
  min-width: 0;
  min-height: 370px;
  margin: 0;
  overflow: hidden;
  background: #d9d5cd;
}

.gallery-card-wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-card-tall {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 780px;
}

.gallery-card-square {
  grid-column: span 4;
  aspect-ratio: 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

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

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 8, .78) 0, rgba(8, 9, 8, .04) 58%);
  pointer-events: none;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 2.3vw, 32px);
  bottom: clamp(18px, 2.3vw, 28px);
  left: clamp(18px, 2.3vw, 32px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.gallery-card figcaption div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.gallery-card figcaption strong {
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 33px);
  font-weight: 400;
  letter-spacing: -.025em;
}

.gallery-card figcaption span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
}

.gallery-card figcaption a {
  flex: 0 0 auto;
  max-width: 46%;
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
  letter-spacing: .04em;
  text-align: right;
  text-underline-offset: 3px;
}

.process {
  padding: var(--section-space) max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: var(--paper-deep);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr);
  gap: 50px;
  align-items: start;
}

.process-heading h2 {
  max-width: 830px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(58px, 8vw, 100px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-steps li {
  min-height: 290px;
  padding: 32px clamp(22px, 3vw, 42px) 28px 0;
  border-right: 1px solid var(--line);
}

.process-steps li + li {
  padding-left: clamp(22px, 3vw, 42px);
}

.process-steps li:last-child {
  border-right: 0;
}

.process-steps span {
  color: var(--wood);
  font-family: var(--display);
  font-size: 21px;
}

.process-steps h3 {
  margin: 62px 0 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.process-steps p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(62px, 10vw, 156px);
  align-items: center;
}

.about-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 1.18;
  overflow: hidden;
  background: var(--ink);
  color: var(--gold);
}

.about-mark span {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(72px, 9vw, 132px);
  line-height: 1;
}

.about-mark span + span {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

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

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.dark-link {
  margin-top: 34px;
  border-bottom-color: var(--line);
  color: var(--text);
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(500px, 1.22fr);
  gap: clamp(70px, 10vw, 150px);
  padding: var(--section-space) max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 50px;
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
}

.contact-direct {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  max-width: 550px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.contact-direct:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.contact-direct span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-direct a,
.contact-direct p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

.contact-direct a {
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
  align-content: start;
}

.field {
  display: grid;
  gap: 9px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  transition: border-color .25s ease, background .25s ease;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  min-height: 130px;
  padding: 14px 0;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  transition: background-color 9999s ease-out;
}

.field select {
  cursor: pointer;
}

.field select option {
  background: var(--ink);
  color: var(--white);
}

.field textarea::placeholder {
  color: rgba(255, 255, 255, .34);
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: -6px 0 0;
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
}

.site-footer {
  padding: 74px max(var(--gutter), calc((100vw - var(--max)) / 2)) 28px;
  background: #080908;
  color: rgba(255, 255, 255, .58);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .65fr .85fr 1fr;
  gap: clamp(38px, 6vw, 90px);
  padding-bottom: 66px;
}

.footer-brand img {
  width: 176px;
  height: auto;
}

.footer-brand > p {
  max-width: 270px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-cta {
  margin-top: 14px !important;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(200, 164, 106, .55);
  color: var(--white) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  max-width: 620px;
  margin: 0;
  font-size: 9px;
  letter-spacing: .04em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

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

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

  .hero-copy {
    padding-right: 38px;
  }

  .services {
    gap: 64px;
  }

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

  .manifesto-copy {
    padding-left: 55px;
  }

  .gallery-card figcaption {
    display: grid;
  }

  .gallery-card figcaption a {
    text-align: left;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
    --gutter: 24px;
  }

  .brand {
    width: 93px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 auto;
    height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 36px var(--gutter);
    transform: translateX(100%);
    visibility: hidden;
    background: #0d0e0d;
    transition: transform .45s var(--ease), visibility .45s;
  }

  .site-header.open .mobile-nav {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav a {
    padding: 21px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .82);
    font-family: var(--display);
    font-size: clamp(25px, 7vw, 40px);
    font-weight: 400;
    letter-spacing: -.02em;
    text-transform: none;
  }

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

  .hero-copy {
    max-width: none;
    margin: 0;
    padding: calc(var(--header-height) + 78px) var(--gutter) 72px;
  }

  h1 {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, rgba(10, 11, 10, .62), transparent 46%);
  }

  .hero-index {
    display: none;
  }

  .marquee-track {
    width: auto;
    min-width: max-content;
    padding: 0 var(--gutter);
    gap: 24px;
    animation: marquee 18s linear infinite;
  }

  @keyframes marquee {
    to { transform: translateX(-35%); }
  }

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

  .section-intro {
    position: static;
  }

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

  .manifesto-media {
    min-height: 670px;
  }

  .manifesto-copy {
    padding: 90px var(--gutter);
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery-heading > p {
    max-width: 560px;
  }

  .gallery-card-wide,
  .gallery-card-square {
    grid-column: span 6;
  }

  .gallery-card-tall {
    grid-column: span 6;
    min-height: 720px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .process-steps li:nth-child(2) {
    border-right: 0;
  }

  .process-steps li:nth-child(3),
  .process-steps li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .about-mark {
    max-width: 620px;
  }

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

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

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
    --section-space: 84px;
  }

  .header-inner {
    width: calc(100% - 36px);
  }

  .hero-copy {
    padding-top: calc(var(--header-height) + 62px);
  }

  h1 {
    font-size: clamp(49px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .hero-note {
    gap: 12px;
    margin-top: 43px;
  }

  .hero-note li + li::before {
    margin-right: 12px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual img {
    object-position: 56% center;
  }

  .hero-visual figcaption {
    right: 16px;
    bottom: 15px;
    left: 16px;
    display: grid;
    gap: 4px;
    font-size: 9px;
  }

  .service-item {
    grid-template-columns: 42px 1fr;
    gap: 8px;
  }

  .manifesto-media {
    min-height: 510px;
  }

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

  .gallery-card,
  .gallery-card-wide,
  .gallery-card-tall,
  .gallery-card-square {
    grid-column: 1;
    grid-row: auto;
    min-height: clamp(420px, 125vw, 520px);
    aspect-ratio: auto;
  }

  .gallery-card-wide {
    min-height: 370px;
  }

  .gallery-card figcaption {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .gallery-card figcaption a {
    max-width: 100%;
    text-align: left;
  }

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

  .process-steps li,
  .process-steps li + li {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-steps li:nth-child(3),
  .process-steps li:nth-child(4) {
    border-top: 0;
  }

  .process-steps h3 {
    margin-top: 34px;
  }

  .about-mark {
    aspect-ratio: 1.12;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .contact-direct {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

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

/* V5 refinements */

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

[hidden] {
  display: none !important;
}

.desktop-nav {
  gap: clamp(17px, 2.1vw, 32px);
}

.hero-copy {
  max-width: 640px;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 58px;
}

h1 {
  max-width: 650px;
  font-size: clamp(54px, 5.4vw, 84px);
  line-height: .94;
}

.hero-lede {
  max-width: 540px;
  margin-top: 24px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .button {
  min-width: 210px;
}

.button-outline {
  border-color: rgba(225, 193, 141, .78);
  background: rgba(13, 14, 13, .22);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold-light);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--wood);
}

.hero-note {
  margin-top: 34px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -34px 0 42px;
}

.gallery-filter {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 800 10px/1 var(--sans);
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
  border-color: var(--wood);
  color: var(--ink);
}

.gallery-filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.gallery-grid.is-filtered {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}

.gallery-grid.is-filtered .gallery-card:not([hidden]) {
  grid-column: auto;
  grid-row: auto;
  min-height: 520px;
  aspect-ratio: 4 / 3;
}

.gallery-card[hidden] {
  visibility: hidden;
}

.process-heading > div {
  display: grid;
  gap: 24px;
}

.process-intro {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-areas {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
  background: var(--paper);
}

.service-areas-copy {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.service-areas-copy h2 {
  max-width: 620px;
}

.service-areas-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

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

.area-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 39px);
  letter-spacing: -.025em;
}

.area-list span {
  color: var(--wood);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.contact {
  grid-template-rows: auto auto;
  column-gap: clamp(70px, 10vw, 150px);
  row-gap: 26px;
}

.contact-copy {
  grid-column: 1;
  grid-row: 1;
}

.contact-copy > p:not(.eyebrow) {
  margin-bottom: 0;
}

.contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.contact-meta {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.form-heading .eyebrow {
  margin: 0;
}

.form-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.field label {
  color: rgba(255, 255, 255, .76);
}

.field label > span[aria-hidden="true"] {
  color: var(--gold-light);
}

.field input,
.field select,
.field textarea {
  border-bottom-color: rgba(255, 255, 255, .42);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(225, 193, 141, .72);
}

.field textarea::placeholder {
  color: rgba(255, 255, 255, .5);
}

.optional {
  margin-left: 8px;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  letter-spacing: .08em;
}

.photo-field {
  gap: 11px;
}

.file-input {
  min-height: 72px;
  padding: 12px;
  border: 1px dashed rgba(255, 255, 255, .42) !important;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  font-size: 13px;
}

.file-input::file-selector-button {
  min-height: 44px;
  margin-right: 14px;
  padding: 0 16px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.photo-field > p,
.photo-feedback p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
}

.photo-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 24px;
}

.clear-files {
  min-height: 36px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(225, 193, 141, .6);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font: 700 11px/1 var(--sans);
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--gold-light);
  font-size: 13px;
}

.form-status:not(:empty) {
  padding: 12px 14px;
  border-left: 2px solid currentColor;
  background: rgba(255, 255, 255, .04);
}

.form-status.is-success {
  color: #d8e8bf;
}

.form-status.is-error {
  color: #ffb5ad;
}

.form-submit:disabled {
  opacity: .72;
  cursor: wait;
  transform: none;
}

.contact-form[aria-busy="true"] .form-submit {
  box-shadow: inset 0 -2px 0 rgba(17, 18, 16, .28);
}

.form-note {
  color: rgba(255, 255, 255, .58);
}

.form-note a {
  color: var(--gold-light);
  text-underline-offset: 3px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  text-underline-offset: 3px;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: static;
  height: auto;
  padding: 16px var(--gutter);
  background: var(--ink);
}

.legal-header-inner {
  width: min(var(--max), 100%);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .brand {
  display: block;
  width: 100px;
}

.legal-back {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-main {
  padding: clamp(72px, 10vw, 140px) var(--gutter);
}

.legal-document {
  width: min(820px, 100%);
  margin: 0 auto;
}

.legal-document h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(54px, 7vw, 90px);
}

.legal-document .effective-date {
  margin: 22px 0 64px;
  color: var(--muted);
  font-size: 13px;
}

.legal-document section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.025em;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-document ul {
  padding-left: 22px;
}

.legal-document a {
  color: var(--wood);
  text-underline-offset: 3px;
}

.legal-footer {
  padding: 28px var(--gutter);
  background: var(--ink);
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  text-align: center;
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero-copy {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 38px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(52px, 5.2vw, 76px);
  }

  .hero-lede {
    margin-top: 18px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-note {
    display: none;
  }
}

@media (max-width: 900px) {
  .service-areas {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-areas-copy {
    position: static;
  }

  .contact {
    grid-template-rows: auto;
    row-gap: 42px;
  }

  .contact-copy,
  .contact-form,
  .contact-meta {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-copy > p:not(.eyebrow) {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(46px, 13vw, 56px);
    line-height: .96;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-note {
    margin-top: 30px;
  }

  .gallery-filters {
    margin: -14px 0 30px;
  }

  .gallery-filter {
    flex: 1 1 calc(50% - 10px);
  }

  .gallery-grid.is-filtered .gallery-card:not([hidden]) {
    min-height: 390px;
    aspect-ratio: auto;
  }

  .area-list li {
    grid-template-columns: 38px 1fr;
    padding: 20px 0;
    font-size: 27px;
  }

  .contact {
    row-gap: 34px;
  }

  .contact-copy h2 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .contact-copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 16px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .file-input {
    padding: 10px;
  }

  .file-input::file-selector-button {
    display: block;
    width: 100%;
    margin: 0 0 10px;
  }

  .contact-meta {
    margin-top: 4px;
  }

  .footer-legal {
    gap: 18px;
  }

  .legal-header {
    padding-inline: 18px;
  }

  .legal-main {
    padding-inline: 18px;
  }
}

@media (forced-colors: active) {
  .gallery-filter,
  .button,
  .file-input {
    forced-color-adjust: auto;
  }
}

/* Boca Raton local service page */

.area-list a {
  width: fit-content;
  text-decoration: none;
  text-underline-offset: 5px;
}

.area-list a:hover {
  color: var(--wood);
  text-decoration: underline;
}

.local-hero {
  min-height: min(860px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.local-hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 720px;
  margin-left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  padding: calc(var(--header-height) + 72px) clamp(34px, 5vw, 80px) 72px 0;
}

.breadcrumbs {
  margin-bottom: 54px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 9px;
  color: var(--gold);
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.local-hero h1 {
  max-width: 650px;
}

.local-hero-lede {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.local-hero-visual {
  position: relative;
  min-width: 0;
  min-height: min(860px, 100svh);
  margin: 0;
  overflow: hidden;
}

.local-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 16, .5), transparent 34%),
    linear-gradient(0deg, rgba(10, 11, 10, .5), transparent 34%);
  pointer-events: none;
}

.local-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-scale 1.4s var(--ease) both;
}

.local-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  letter-spacing: .05em;
}

.local-hero-visual figcaption a {
  flex: 0 0 auto;
  color: var(--white);
  text-underline-offset: 3px;
}

.local-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(56px, 9vw, 130px);
}

.local-intro h2 {
  max-width: 610px;
}

.local-intro-copy {
  align-self: end;
  max-width: 640px;
}

.local-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.local-intro-copy p + p {
  margin-top: 22px;
}

.local-services-section {
  padding: var(--section-space) max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.local-section-heading {
  max-width: 800px;
  margin-bottom: clamp(56px, 8vw, 100px);
}

.local-section-heading > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
}

.local-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.local-service-card {
  min-height: 330px;
  padding: 38px clamp(28px, 4vw, 58px) 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.local-service-card:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(28px, 4vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.local-service-card > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 24px;
}

.local-service-card h3 {
  max-width: 500px;
  margin: 66px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.3vw, 47px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.local-service-card p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .62);
}

.local-planning {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
}

.local-planning-copy {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.local-planning-copy h2 {
  max-width: 580px;
}

.local-planning-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

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

.local-planning-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.local-planning-list li > span {
  color: var(--wood);
  font-family: var(--display);
  font-size: 24px;
}

.local-planning-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 400;
  letter-spacing: -.025em;
}

.local-planning-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.local-faq {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(480px, 1.25fr);
  gap: clamp(56px, 9vw, 130px);
  border-top: 1px solid var(--line);
}

.local-faq h2 {
  max-width: 520px;
}

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

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

.local-faq-list summary {
  position: relative;
  padding: 28px 54px 28px 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
  cursor: pointer;
  list-style: none;
}

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

.local-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--wood);
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 300;
}

.local-faq-list details[open] summary::after {
  content: "−";
}

.local-faq-list details p {
  max-width: 680px;
  margin: -4px 0 30px;
  color: var(--muted);
}

.local-cta {
  padding: var(--section-space) var(--gutter);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.local-cta h2 {
  max-width: 900px;
  margin: 0 auto;
}

.local-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 34px;
  color: rgba(255, 255, 255, .65);
  font-size: 18px;
}

@media (min-width: 901px) and (max-height: 760px) {
  .local-hero-copy {
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 48px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .local-hero-lede {
    margin-top: 20px;
    font-size: 17px;
  }

  .local-hero .hero-actions {
    margin-top: 24px;
  }
}

@media (max-width: 900px) {
  .local-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .local-hero-copy {
    max-width: none;
    margin: 0;
    padding: calc(var(--header-height) + 58px) var(--gutter) 64px;
  }

  .breadcrumbs {
    margin-bottom: 38px;
  }

  .local-hero-visual {
    min-height: 64svh;
  }

  .local-intro,
  .local-planning,
  .local-faq {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .local-planning-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .local-hero h1 {
    font-size: clamp(46px, 13vw, 56px);
  }

  .local-hero-lede {
    font-size: 16px;
  }

  .local-hero-visual {
    min-height: 520px;
  }

  .local-hero-visual figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    flex-direction: column;
    gap: 5px;
  }

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

  .local-service-card,
  .local-service-card:nth-child(even) {
    min-height: 0;
    padding: 30px 0 36px;
    border-left: 0;
  }

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

  .local-planning-list li {
    grid-template-columns: 42px 1fr;
  }

  .local-faq {
    padding-top: 78px;
  }

  .local-faq-list summary {
    padding-block: 24px;
    font-size: 25px;
  }
}

/* V6 — warm residential refinement and communication hub */

:root {
  --ink: #1c1b18;
  --ink-soft: #292721;
  --paper: #f8f4ec;
  --paper-deep: #ede4d6;
  --white: #fffdf8;
  --text: #292720;
  --muted: #6f695f;
  --line: rgba(57, 49, 39, .16);
  --gold: #b98a43;
  --gold-light: #e2c58f;
  --wood: #8b5d3c;
  --sand: #d7c3a5;
  --header-height: 92px;
  --shadow-soft: 0 22px 70px rgba(69, 52, 32, .11);
}

body {
  background: var(--paper);
}

:focus-visible {
  outline: 3px solid #9f6f28;
  outline-offset: 4px;
}

.site-header,
.site-header.scrolled,
.site-header.open {
  color: var(--text);
  background: rgba(248, 244, 236, .96);
  box-shadow: 0 1px 0 rgba(57, 49, 39, .12);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1340px, calc(100% - (var(--gutter) * 2)));
}

.brand {
  width: 142px;
  overflow: visible;
}

.brand img {
  max-height: 70px;
  object-fit: contain;
}

.desktop-nav {
  gap: clamp(18px, 2vw, 31px);
}

.desktop-nav a {
  color: rgba(41, 39, 32, .72);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-cta {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.header-cta:hover {
  background: var(--wood);
  color: var(--white);
}

.menu-toggle span {
  background: var(--ink);
}

.hero {
  min-height: min(860px, 100svh);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  padding-top: var(--header-height);
  background: var(--paper);
  color: var(--text);
}

.hero-copy {
  max-width: 720px;
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: clamp(48px, 5vw, 74px);
}

.hero .eyebrow,
.section .eyebrow,
.portfolio-dialog .eyebrow {
  color: var(--wood);
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(56px, 5vw, 74px);
  line-height: .94;
}

.hero-lede {
  color: var(--muted);
}

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

.button-gold:hover {
  background: var(--wood);
  color: var(--white);
}

.button-outline {
  border-color: rgba(41, 39, 32, .35);
  color: var(--text);
}

.button-outline:hover {
  border-color: var(--wood);
  background: rgba(139, 93, 60, .07);
}

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

.button-dark:hover {
  background: var(--wood);
}

.hero-note {
  color: rgba(41, 39, 32, .54);
}

.hero-visual {
  min-height: calc(min(860px, 100svh) - var(--header-height));
  border-bottom-left-radius: 54px;
}

.hero-visual::after {
  background: linear-gradient(0deg, rgba(22, 19, 15, .44), transparent 38%);
}

.hero-index {
  color: rgba(139, 93, 60, .35);
}

.specialty-strip {
  background: #efe6d7;
}

.marquee-track {
  min-height: 76px;
}

.services {
  gap: clamp(52px, 7vw, 104px);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.service-item {
  min-height: 320px;
  grid-template-columns: 44px 1fr;
  padding: 30px;
  border: 1px solid rgba(91, 72, 50, .13);
  border-radius: 2px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 12px 34px rgba(69, 52, 32, .06);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 93, 60, .32);
  box-shadow: var(--shadow-soft);
}

.service-item:last-child {
  grid-column: 1 / -1;
  min-height: 250px;
}

.service-item h3 {
  font-size: clamp(29px, 2.7vw, 41px);
}

.service-item li {
  background: #f4ecdf;
}

.manifesto {
  min-height: 760px;
  background: #e6d7c3;
  color: var(--text);
}

.manifesto-media {
  min-height: 720px;
}

.manifesto-copy > p:not(.eyebrow) {
  color: #5f584f;
}

.manifesto-copy ul {
  border-top-color: rgba(57, 49, 39, .18);
}

.manifesto-copy li {
  border-bottom-color: rgba(57, 49, 39, .18);
  color: #48433c;
}

.inspiration {
  padding-top: calc(var(--section-space) * .95);
}

.gallery-card {
  border-radius: 2px;
  box-shadow: 0 16px 40px rgba(50, 40, 28, .08);
}

.process {
  background: #eee4d5;
}

.process-steps li {
  background: rgba(255, 253, 248, .38);
}

.service-areas {
  width: min(1340px, calc(100% - (var(--gutter) * 2)));
  margin-block: var(--section-space);
  padding: clamp(58px, 8vw, 104px);
  border-radius: 3px;
  background: var(--ink-soft);
  color: var(--white);
}

.service-areas .eyebrow {
  color: var(--gold-light);
}

.service-areas-copy > p:not(.eyebrow),
.service-areas .area-list li {
  color: rgba(255, 255, 255, .68);
}

.service-areas .area-list,
.service-areas .area-list li {
  border-color: rgba(255, 255, 255, .14);
}

.service-areas .area-list a {
  color: var(--white);
}

.about-mark {
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.portfolio {
  width: min(1340px, calc(100% - (var(--gutter) * 2)));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #e7d7c1;
  box-shadow: var(--shadow-soft);
}

.portfolio-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 22, 18, .52), transparent 45%);
  pointer-events: none;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
}

.portfolio-media figcaption a {
  color: var(--white);
  text-underline-offset: 3px;
}

.portfolio-copy {
  align-self: center;
  padding: clamp(54px, 7vw, 94px);
}

.portfolio-copy h2 {
  max-width: 580px;
}

.portfolio-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 32px;
  color: #5f584f;
  font-size: 18px;
}

.portfolio-copy .portfolio-note {
  margin: 18px 0 0;
  font-size: 11px;
}

.contact {
  margin-top: var(--section-space);
  grid-template-columns: minmax(330px, .8fr) minmax(520px, 1.2fr);
  gap: clamp(54px, 8vw, 112px);
  background: #f0e6d8;
  color: var(--text);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-hub {
  margin-top: 46px;
}

.contact-hub h3 {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-action {
  width: 100%;
  min-height: 70px;
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  border: 1px solid rgba(57, 49, 39, .16);
  border-radius: 2px;
  background: rgba(255, 253, 248, .64);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}

.contact-action:hover {
  transform: translateX(4px);
  border-color: rgba(139, 93, 60, .45);
  background: var(--white);
}

.contact-action.is-primary {
  background: var(--ink);
  color: var(--white);
}

.contact-action span {
  color: var(--wood);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-action.is-primary span {
  color: var(--gold-light);
}

.contact-action strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(57, 49, 39, .11);
  border-radius: 3px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-form .eyebrow {
  color: var(--wood);
}

.contact-form .field label,
.portfolio-form .field label {
  color: #6b6258;
}

.contact-form .optional,
.portfolio-form .optional {
  color: #8a8176;
}

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea,
.portfolio-form .field input,
.portfolio-form .field select {
  border-bottom-color: rgba(57, 49, 39, .28);
  background: transparent;
  color: var(--text);
}

.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus,
.portfolio-form .field input:focus,
.portfolio-form .field select:focus {
  border-bottom-color: var(--wood);
}

.contact-form .field input:-webkit-autofill,
.contact-form .field input:-webkit-autofill:hover,
.contact-form .field input:-webkit-autofill:focus,
.portfolio-form .field input:-webkit-autofill,
.portfolio-form .field input:-webkit-autofill:hover,
.portfolio-form .field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
}

.contact-form .field select option,
.portfolio-form .field select option {
  background: var(--white);
  color: var(--text);
}

.contact-form .field textarea::placeholder {
  color: rgba(41, 39, 32, .42);
}

.upload-privacy {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--sand);
  background: #f6efe5;
  color: #625b51;
  font-size: 12px;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
}

.consent-field input {
  width: 19px !important;
  height: 19px !important;
  margin: 1px 0 0;
  accent-color: var(--wood);
}

.consent-field label {
  color: #514b43 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  text-transform: none !important;
}

.contact-form .form-note,
.portfolio-form .form-note {
  color: #766d62;
}

.contact-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.contact-direct {
  display: block;
  max-width: none;
  padding: 20px 0;
  border-color: rgba(57, 49, 39, .18);
}

.contact-direct:last-child {
  border-bottom-color: rgba(57, 49, 39, .18);
}

.contact-direct span {
  display: block;
  margin-bottom: 8px;
  color: var(--wood);
}

.contact-direct a,
.contact-direct p {
  color: #4f4940;
}

.portfolio-dialog {
  width: min(900px, calc(100% - 36px));
  max-height: calc(100svh - 36px);
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 30px 110px rgba(14, 12, 9, .35);
}

.portfolio-dialog::backdrop {
  background: rgba(22, 20, 17, .72);
  backdrop-filter: blur(6px);
}

.portfolio-dialog-card {
  padding: clamp(26px, 5vw, 62px);
}

.portfolio-dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
}

.portfolio-dialog h2 {
  max-width: 650px;
  font-size: clamp(40px, 5vw, 64px);
}

.dialog-close {
  min-width: 68px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.portfolio-dialog-intro {
  max-width: 680px;
  margin: 24px 0 34px;
  color: var(--muted);
}

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

.portfolio-form > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-portfolio {
  margin-top: 2px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(200, 164, 106, .42);
  background: transparent;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  font-size: 12px;
}

.mobile-contact-bar {
  display: none;
}

.local-hero {
  padding-top: var(--header-height);
  background: var(--paper);
  color: var(--text);
}

.local-hero .breadcrumbs ol {
  color: rgba(41, 39, 32, .58);
}

.local-hero .breadcrumbs a:hover {
  color: var(--wood);
}

.local-hero .eyebrow {
  color: var(--wood);
}

.local-hero-lede {
  color: var(--muted);
}

.local-hero-visual {
  border-bottom-left-radius: 54px;
}

.local-services-section {
  background: #e8dccb;
  color: var(--text);
}

.local-section-heading > p:last-child,
.local-service-card p {
  color: var(--muted);
}

.local-service-grid,
.local-service-card,
.local-service-card:nth-child(even) {
  border-color: rgba(57, 49, 39, .16);
}

.local-cta {
  background: var(--ink-soft);
}

@media (max-width: 1100px) {
  .desktop-nav a {
    font-size: 10px;
  }

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

  .service-item:last-child {
    grid-column: auto;
  }

  .contact {
    gap: 52px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .home-page {
    padding-bottom: 66px;
  }

  .brand {
    width: 112px;
  }

  .brand img {
    max-height: 59px;
  }

  .mobile-nav {
    background: var(--ink);
  }

  .mobile-nav a {
    color: rgba(255, 255, 255, .82);
  }

  .site-header.open .menu-toggle span {
    background: var(--ink);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: var(--header-height);
  }

  .hero-copy {
    max-width: none;
    margin: 0;
    padding: 70px var(--gutter) 62px;
  }

  .hero-visual {
    min-height: 64svh;
    border-bottom-left-radius: 0;
  }

  .hero-index {
    display: none;
  }

  .services,
  .portfolio,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .service-list {
    margin-top: 40px;
  }

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

  .manifesto-copy {
    padding: 72px var(--gutter);
  }

  .service-areas {
    padding: 68px var(--gutter);
  }

  .portfolio-media {
    min-height: 520px;
  }

  .portfolio-copy {
    padding: 64px var(--gutter);
  }

  .contact {
    padding: 78px var(--gutter);
  }

  .contact-copy > p:not(.eyebrow) {
    margin-bottom: 34px;
  }

  .contact-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 64px;
    display: flex;
    gap: 1px;
    padding: 8px;
    background: rgba(28, 27, 24, .97);
    box-shadow: 0 -8px 30px rgba(22, 19, 15, .18);
  }

  .mobile-contact-bar a {
    min-width: 0;
    flex: 1;
    display: grid;
    place-items: center;
    padding: 0 12px;
    background: #35322c;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-contact-bar a.is-primary {
    background: var(--gold);
    color: var(--ink);
  }

  .local-hero {
    padding-top: var(--header-height);
  }

  .local-hero-visual {
    border-bottom-left-radius: 0;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding-top: 54px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(48px, 13.5vw, 58px);
    line-height: .94;
  }

  .hero-lede {
    margin-top: 24px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-note {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .service-item {
    min-height: 0;
    grid-template-columns: 36px 1fr;
    padding: 24px 20px 28px;
  }

  .manifesto-media,
  .portfolio-media {
    min-height: 470px;
  }

  .service-areas {
    width: 100%;
    margin-block: 0;
    border-radius: 0;
  }

  .about-mark {
    max-height: 330px;
  }

  .contact {
    margin-top: 0;
    padding-top: 72px;
  }

  .contact-form,
  .portfolio-form {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .portfolio-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .portfolio-dialog-card {
    padding: 26px 20px 32px;
  }

  .portfolio-dialog-header {
    display: grid;
  }

  .dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    min-width: 58px;
  }

  .portfolio-dialog h2 {
    padding-right: 42px;
    font-size: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-item,
  .contact-action,
  .gallery-card img {
    transition: none;
  }
}
