:root {
  --ink: #171410;
  --ink-soft: #26211b;
  --paper: #f3efe7;
  --paper-deep: #e8dfd1;
  --paper-warm: #ddd0be;
  --copper: #c46b42;
  --copper-dark: #9f4d2d;
  --white: #fffdf8;
  --muted: #756c62;
  --line: rgba(23, 20, 16, 0.18);
  --line-light: rgba(255, 253, 248, 0.22);
  --header-height: 92px;
  --page-width: 1320px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--gm-font-primary, "Gilroy", Arial, sans-serif);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a,
summary,
input[type="range"] {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

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

.page-shell {
  width: min(calc(100% - 80px), var(--page-width));
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 11vw, 168px);
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, transform 260ms var(--ease-out);
}

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

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

.button--light:hover,
.button--light:focus-visible {
  background: var(--copper);
  color: var(--white);
}

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

.button--accent:hover,
.button--accent:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 260ms var(--ease-out);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -2px);
}

.text-link--light {
  color: var(--white);
}

.display-heading,
.section-heading {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.display-heading {
  font-size: clamp(50px, 6.3vw, 96px);
}

.display-heading span {
  color: var(--muted);
  font-weight: 300;
}

.section-heading {
  max-width: 850px;
  font-size: clamp(44px, 5vw, 76px);
}

.section-heading--light {
  color: var(--white);
}

.section-marker {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr) auto;
  gap: 14px;
  align-items: center;
  align-self: start;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.section-marker i {
  height: 1px;
  background: var(--line);
}

.section-marker--compact {
  width: min(100%, 360px);
  margin-bottom: 42px;
}

.section-marker--light {
  color: rgba(255, 253, 248, 0.58);
}

.section-marker--light i {
  background: var(--line-light);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: var(--header-height);
  color: var(--white);
  transition: background-color 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
}

.site-header::after {
  position: absolute;
  right: 40px;
  bottom: 0;
  left: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
  transition: opacity 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(23, 20, 16, 0.92);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

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

.site-header__inner {
  display: grid;
  width: min(calc(100% - 80px), var(--page-width));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 210px 1fr auto;
  gap: 36px;
  align-items: center;
}

.brand {
  position: relative;
  z-index: 4;
  display: block;
  width: 178px;
}

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

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 42px);
  align-items: center;
}

.primary-nav > a,
.nav-dropdown > summary {
  position: relative;
  padding-block: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav > a::after,
.nav-dropdown > summary::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 300ms var(--ease-out);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary i {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  transform: rotate(45deg);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transition: margin 250ms ease, transform 250ms ease;
}

.nav-dropdown[open] > summary i {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-dropdown::before {
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 30px;
  content: "";
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 26px);
  left: 50%;
  display: grid;
  visibility: hidden;
  width: min(620px, calc(100vw - 48px));
  padding: 26px 30px 22px;
  transform: translate(-50%, -10px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  background: var(--paper);
  box-shadow: 0 24px 65px rgba(10, 8, 6, 0.24);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 280ms var(--ease-out), visibility 0s 280ms;
}

.nav-dropdown__menu::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 48px;
  height: 2px;
  background: var(--copper);
  content: "";
}

.nav-dropdown[open] .nav-dropdown__menu {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-dropdown__menu > p {
  margin: 0 0 12px;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-dropdown__menu > a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-transform: none;
  transition: color 200ms ease, padding-left 250ms var(--ease-out);
}

.nav-dropdown__menu > a:hover,
.nav-dropdown__menu > a:focus-visible {
  padding-left: 6px;
  color: var(--copper-dark);
}

.nav-dropdown__menu > .nav-dropdown__all {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 14px;
  grid-column: 1 / -1;
  color: var(--copper-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-dropdown__all span {
  transition: transform 250ms var(--ease-out);
}

.nav-dropdown__all:hover span,
.nav-dropdown__all:focus-visible span {
  transform: translateX(4px);
}

@media (hover: hover) and (min-width: 861px) {
  .nav-dropdown:hover .nav-dropdown__menu {
    visibility: visible;
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }
}

.header-cta {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 250ms ease, color 250ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  position: relative;
  z-index: 4;
  display: none;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

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

.hero__media {
  object-fit: cover;
  object-position: center 48%;
  scale: 1.025;
  animation: hero-image 1.8s var(--ease-out) both;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.88) 0%, rgba(12, 10, 8, 0.57) 47%, rgba(12, 10, 8, 0.16) 82%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, transparent 48%, rgba(0, 0, 0, 0.46) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  justify-content: center;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 145px;
  flex-direction: column;
}

.hero__eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.72);
  animation: hero-rise 900ms 180ms var(--ease-out) both;
}

.hero__eyebrow span,
.hero__footer span {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(62px, 8vw, 116px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
  animation: hero-rise 1s 260ms var(--ease-out) both;
}

.hero h1 span {
  color: rgba(255, 253, 248, 0.72);
  font-weight: 300;
}

.hero__lede {
  max-width: 560px;
  margin: 35px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  animation: hero-rise 1s 340ms var(--ease-out) both;
}

.hero__actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 38px;
  animation: hero-rise 1s 420ms var(--ease-out) both;
}

.hero__footer {
  position: absolute;
  right: 0;
  bottom: 36px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  color: rgba(255, 253, 248, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__footer p {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
}

.hero__footer a {
  color: var(--white);
  font-size: 13px;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.3fr);
  column-gap: clamp(50px, 8vw, 140px);
  row-gap: 28px;
  align-items: start;
}

.intro .section-marker {
  grid-column: 1;
  grid-row: 1;
}

.intro__shop {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #d5cec3;
}

.intro__shop::after {
  position: absolute;
  inset: 35% 0 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(18, 15, 12, 0.72));
}

.intro__shop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 800ms ease;
}

.intro__shop figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: grid;
  gap: 3px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro__shop figcaption span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

@media (hover: hover) {
  .intro__shop:hover img {
    transform: scale(1.025);
    filter: saturate(0.92) contrast(1.04);
  }
}

.intro__copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 70px;
}

.intro__body {
  display: grid;
  max-width: 880px;
  margin-left: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 70px;
  color: #4b443c;
  font-size: 18px;
}

.intro__body p {
  margin: 0;
}

.intro__body .text-link {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 18px;
  color: var(--ink);
}

.services {
  background: var(--paper-deep);
}

.services__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(60px, 8vw, 135px);
  align-items: start;
}

.services__content {
  padding-top: 28px;
}

.services__intro {
  max-width: 620px;
  margin: 30px 0 54px;
  color: #524a41;
  font-size: 18px;
}

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

.service-list > a {
  display: grid;
  min-height: 114px;
  grid-template-columns: 54px 1fr auto;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 300ms var(--ease-out), color 250ms ease;
}

.service-list > a:hover,
.service-list > a:focus-visible {
  padding-inline: 12px;
  color: var(--copper-dark);
}

.service-list__number {
  align-self: start;
  padding-top: 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-list strong,
.service-list small {
  display: block;
}

.service-list strong {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.service-list small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.service-list b {
  font-size: 20px;
  font-weight: 400;
}

.services__portrait {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin: 0;
}

.services__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
}

.services__portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.transformation__heading {
  display: grid;
  margin-bottom: 64px;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.3fr);
  gap: clamp(50px, 8vw, 140px);
}

.transformation__heading p {
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.58);
}

.compare {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--ink-soft);
  cursor: ew-resize;
  user-select: none;
}

.compare__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__image--before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.compare__label {
  position: absolute;
  top: 24px;
  z-index: 3;
  padding: 9px 12px;
  background: rgba(23, 20, 16, 0.82);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.compare__label--before {
  left: 24px;
}

.compare__label--after {
  right: 24px;
}

.compare__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 3;
  width: 1px;
  background: rgba(255, 255, 255, 0.92);
  pointer-events: none;
}

.compare__line i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(23, 20, 16, 0.78);
  color: var(--white);
  font-style: normal;
  backdrop-filter: blur(8px);
}

.compare input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare:focus-within {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

.transformation__caption {
  display: grid;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 28px;
  align-items: end;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
}

.transformation__caption p {
  margin: 0;
}

.transformation__caption p span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 253, 248, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process__top {
  display: grid;
  margin-bottom: clamp(70px, 9vw, 125px);
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.3fr);
  gap: clamp(50px, 8vw, 140px);
}

.process__story {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}

.process__image {
  margin: 0;
  overflow: hidden;
}

.process__image img {
  width: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.05);
  transition: scale 1.2s var(--ease-out);
}

.process__image:hover img {
  scale: 1.025;
}

.process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  display: grid;
  padding: 30px 0 34px;
  grid-template-columns: 46px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.process__steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process__steps > li > span {
  padding-top: 4px;
  color: var(--copper-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process__steps h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.process__steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.portfolio {
  padding-top: 0;
}

.portfolio__header {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 70px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 44px 32px;
}

.project {
  display: block;
}

.project--tall {
  grid-row: span 2;
}

.project figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.project--tall figure {
  aspect-ratio: 4 / 5;
}

.project--wide figure {
  aspect-ratio: 16 / 10;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 800ms var(--ease-out), filter 500ms ease;
}

.project:hover img,
.project:focus-visible img {
  scale: 1.035;
  filter: saturate(1.08);
}

.project > div {
  position: relative;
  padding: 21px 44px 0 0;
}

.project > div::after {
  position: absolute;
  top: 23px;
  right: 3px;
  content: "↗";
  font-size: 20px;
  transition: transform 260ms var(--ease-out);
}

.project:hover > div::after,
.project:focus-visible > div::after {
  transform: translate(3px, -3px);
}

.project span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project h3 {
  margin: 7px 0 0;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

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

.local__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.local__lede {
  max-width: 540px;
  margin: 34px 0 0;
  color: #4b4339;
  font-size: 18px;
}

.local__workshops {
  display: grid;
  border-top: 1px solid rgba(23, 20, 16, 0.32);
}

.local__workshop {
  display: grid;
  padding: 32px 0 34px;
  grid-template-columns: minmax(180px, 1.2fr) minmax(190px, 1fr);
  gap: 22px 40px;
  border-bottom: 1px solid rgba(23, 20, 16, 0.32);
}

.local__workshop-heading {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.local__workshop-heading span {
  color: var(--copper-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.local__workshop h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.local__workshop address,
.local__workshop > p {
  margin: 0;
  color: #4b4339;
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

.local__links {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  grid-column: 1 / -1;
}

.local__links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 20, 16, 0.32);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

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

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

.faq summary {
  display: grid;
  min-height: 96px;
  padding: 28px 0;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 500;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq summary span {
  position: relative;
  width: 20px;
  height: 20px;
}

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

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

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

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

.estimate {
  position: relative;
  display: flex;
  min-height: 750px;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.estimate > img,
.estimate__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.estimate > img {
  object-fit: cover;
  scale: 1.02;
}

.estimate__shade {
  background: linear-gradient(90deg, rgba(13, 11, 9, 0.94) 0%, rgba(13, 11, 9, 0.72) 47%, rgba(13, 11, 9, 0.3) 100%);
}

.estimate__content {
  position: relative;
  z-index: 2;
  padding-block: 100px;
}

.estimate__content .eyebrow {
  color: rgba(255, 253, 248, 0.6);
}

.estimate h2 {
  max-width: 900px;
  margin: 28px 0 0;
  font-size: clamp(66px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.estimate__content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 18px;
}

.estimate__actions {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 42px;
}

.site-footer {
  padding: 84px 0 28px;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.72);
}

.site-footer__top {
  display: grid;
  padding-bottom: 76px;
  grid-template-columns: minmax(190px, 0.5fr) minmax(0, 1.5fr);
  gap: 80px;
  border-bottom: 1px solid var(--line-light);
}

.brand--footer {
  width: 235px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.site-footer__nav > div {
  display: flex;
  flex-direction: column;
}

.site-footer__nav span {
  margin-bottom: 17px;
  color: rgba(255, 253, 248, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__nav address,
.site-footer__nav p,
.site-footer__nav a {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  color: rgba(255, 253, 248, 0.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms var(--ease-out), transform 900ms var(--ease-out);
}

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

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image {
  from { opacity: 0; scale: 1.08; }
  to { opacity: 1; scale: 1.025; }
}

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

  .site-header__inner {
    grid-template-columns: 180px 1fr auto;
  }

  .primary-nav {
    gap: 20px;
  }

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

  .primary-nav > a,
  .nav-dropdown > summary {
    font-size: 10px;
  }

  .header-cta {
    display: none;
  }

  .services__grid,
  .process__story {
    gap: 60px;
  }

  .process__image img {
    min-height: 640px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .page-shell,
  .site-header__inner {
    width: min(calc(100% - 40px), var(--page-width));
  }

  .site-header::after {
    right: 20px;
    left: 20px;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: 145px;
  }

  .menu-toggle {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .menu-toggle__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle__lines {
    position: relative;
    display: block;
    width: 28px;
    height: 16px;
  }

  .menu-toggle__lines i {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transition: top 250ms ease, transform 250ms ease;
  }

  .menu-toggle__lines i:first-child { top: 3px; }
  .menu-toggle__lines i:last-child { top: 12px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    top: 8px;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    visibility: hidden;
    justify-content: flex-start;
    align-items: stretch;
    gap: 3px;
    padding: 110px 24px 50px;
    transform: translateY(-16px);
    flex-direction: column;
    background: var(--ink);
    opacity: 0;
    overflow-y: auto;
    transition: opacity 280ms ease, transform 350ms var(--ease-out), visibility 0s 350ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0s;
  }

  .primary-nav > a,
  .nav-dropdown > summary {
    padding: 8px 0;
    font-size: clamp(34px, 10vw, 54px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-transform: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown > summary {
    justify-content: space-between;
  }

  .nav-dropdown > summary i {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }

  .nav-dropdown__menu {
    position: static;
    display: none;
    visibility: visible;
    width: 100%;
    padding: 16px 0 22px;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    background: transparent;
    box-shadow: none;
    color: var(--white);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown[open] .nav-dropdown__menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown__menu > p {
    color: rgba(255, 253, 248, 0.42);
  }

  .nav-dropdown__menu > a {
    padding: 10px 0;
    border-color: rgba(255, 253, 248, 0.17);
    color: rgba(255, 253, 248, 0.78);
    font-size: 13px;
    letter-spacing: 0;
  }

  .nav-dropdown__menu > a:hover,
  .nav-dropdown__menu > a:focus-visible {
    color: var(--white);
  }

  .nav-dropdown__menu > .nav-dropdown__all {
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: clamp(52px, 12vw, 78px);
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(12, 10, 8, 0.83) 0%, rgba(12, 10, 8, 0.38) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 40%, rgba(0, 0, 0, 0.66) 100%);
  }

  .intro__grid,
  .transformation__heading,
  .process__top,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid,
  .transformation__heading,
  .process__top {
    gap: 60px;
  }

  .section-marker:not(.section-marker--compact) {
    width: min(100%, 360px);
  }

  .intro__copy {
    grid-column: 1;
    grid-row: auto;
    gap: 55px;
  }

  .intro .section-marker,
  .intro__shop {
    grid-column: 1;
    grid-row: auto;
  }

  .intro__shop {
    aspect-ratio: 16 / 10;
  }

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

  .services__portrait {
    position: relative;
    top: auto;
    width: min(100%, 620px);
    margin-left: auto;
  }

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

  .transformation__caption .text-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .process__image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .local__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .faq__heading {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .section {
    padding-block: 88px;
  }

  .display-heading {
    font-size: clamp(43px, 13vw, 62px);
    line-height: 0.98;
  }

  .section-heading {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero {
    min-height: 780px;
  }

  .hero__media {
    object-position: 61% center;
  }

  .hero__content {
    min-height: 780px;
    padding-top: 130px;
    padding-bottom: 150px;
  }

  .hero__eyebrow {
    gap: 9px;
    margin-bottom: 26px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .hero__eyebrow span {
    width: 16px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 66px);
    line-height: 0.91;
  }

  .hero__lede {
    margin-top: 28px;
    font-size: 17px;
  }

  .hero__actions,
  .estimate__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions {
    max-width: 310px;
    gap: 21px;
  }

  .hero__actions .text-link,
  .estimate__actions .text-link {
    align-self: flex-start;
  }

  .hero__footer {
    bottom: 24px;
    display: block;
    line-height: 1.5;
  }

  .hero__footer p {
    display: block;
    max-width: 250px;
    margin-bottom: 8px;
  }

  .hero__footer span {
    display: none;
  }

  .intro__grid,
  .intro__copy,
  .services__grid,
  .transformation__heading,
  .process__top,
  .process__story,
  .faq__grid {
    gap: 48px;
  }

  .intro__body {
    grid-template-columns: 1fr;
    gap: 22px;
    font-size: 17px;
  }

  .service-list > a {
    min-height: 118px;
    grid-template-columns: 28px 1fr auto;
    gap: 13px;
  }

  .service-list__number {
    padding-top: 36px;
  }

  .service-list small {
    font-size: 13px;
  }

  .services__portrait {
    width: 92%;
  }

  .compare {
    aspect-ratio: 4 / 5;
  }

  .compare__image {
    object-position: center;
  }

  .compare__label {
    top: 14px;
  }

  .compare__label--before { left: 14px; }
  .compare__label--after { right: 14px; }

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

  .transformation__caption .text-link {
    grid-column: auto;
    margin-top: 12px;
  }

  .process__image img {
    aspect-ratio: 3 / 4;
    object-position: 64% center;
  }

  .process__steps li {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .portfolio__header {
    display: block;
    margin-bottom: 48px;
  }

  .portfolio__header > .text-link {
    margin-top: 30px;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .project--tall {
    grid-row: auto;
  }

  .project--tall figure,
  .project--wide figure {
    aspect-ratio: 4 / 5;
  }

  .project--wide img {
    object-position: center;
  }

  .local__details {
    font-size: 17px;
  }

  .faq summary {
    min-height: 88px;
    padding-block: 24px;
  }

  .estimate {
    min-height: 720px;
  }

  .estimate__shade {
    background: rgba(13, 11, 9, 0.78);
  }

  .estimate h2 {
    font-size: clamp(59px, 16vw, 78px);
  }

  .estimate__actions {
    max-width: 340px;
    gap: 24px;
  }

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

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .local__workshop-heading,
  .local__links {
    grid-column: 1;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}

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

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

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