:root {
  --charcoal: #171715;
  --ink: #26231f;
  --cream: #f2ece3;
  --ivory: #faf7f1;
  --beige: #d8ccbe;
  --taupe: #7d7369;
  --sienna: #9a5f4c;
  --olive: #59624b;
  --brick: #9b4038;
  --gutter: clamp(1rem, 4vw, 4.5rem);
  --section-space: clamp(5rem, 10vw, 9rem);
  --radius: 0.5rem;
  --image-radius: clamp(0.3rem, 0.55vw, 0.65rem);
  --image-border: rgba(38, 35, 31, 0.12);
  --image-shadow: 0 1.1rem 2.8rem rgba(87, 60, 48, 0.07);
  --max-width: 90rem;
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-weight: 400;
}

em {
  color: var(--sienna);
  font-weight: 400;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  color: var(--ivory);
}

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

:focus-visible {
  outline: 2px solid var(--sienna);
  outline-offset: 3px;
}

.section {
  padding-block: var(--section-space);
}

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

.section--dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 4rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: #bd8a78;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms ease, color 220ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button--primary,
.button--header {
  background: var(--charcoal);
  color: var(--ivory);
}

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

.button--outline {
  border-color: currentColor;
  background: transparent;
}

.text-link {
  display: inline-flex;
  gap: 0.75rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 1.05rem var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color 250ms ease, border-color 250ms ease, padding 250ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.7rem;
  border-color: rgba(125, 115, 105, 0.25);
  background: rgba(242, 236, 227, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__name {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 1.28rem;
  letter-spacing: 0.05em;
}

.brand__descriptor {
  margin-top: 0.26rem;
  font-size: 0.56rem;
  letter-spacing: 0.45em;
  text-align: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2.5rem);
}

.site-nav a {
  position: relative;
  font-size: 0.8rem;
  text-decoration: none;
}

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

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

.button--header {
  justify-self: end;
  min-height: 2.75rem;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.button--header__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  width: min(100%, 105rem);
  min-height: 100dvh;
  margin-inline: auto;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: stretch;
  padding-top: 5rem;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 6rem) 2rem var(--gutter);
}

.hero h1 {
  max-width: 11.5ch;
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 5.6vw, 7.1rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.hero h1 em {
  display: inline-block;
  padding-bottom: 0.08em;
  line-height: 1.05;
}

.hero__inline-image {
  display: inline-block;
  width: 1.45em;
  height: 0.62em;
  margin-inline: 0.08em;
  background: url("assets/style-copper.webp") center 38% / cover;
  border: 1px solid var(--image-border);
  border-radius: 0.12em;
  box-shadow: 0 0.12em 0.35em rgba(87, 60, 48, 0.08);
  vertical-align: 0.03em;
}

.hero__lead {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--taupe);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero__copy .button {
  align-self: flex-start;
}

.hero__location {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--taupe);
  font-family: "Roboto Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 42rem;
  margin: 0;
  overflow: hidden;
  background: var(--beige);
}

.hero__visual img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 236, 227, 0.12), transparent 25%);
  content: "";
  pointer-events: none;
}

.hero__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(250, 247, 241, 0.18);
  border-radius: 0.3rem;
  background: rgba(23, 23, 21, 0.78);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof {
  border-top: 1px solid rgba(125, 115, 105, 0.28);
  border-bottom: 1px solid rgba(125, 115, 105, 0.28);
  background: var(--ivory);
}

.proof__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: end;
}

.proof__grid > * {
  min-height: 16rem;
  padding: 2rem clamp(1rem, 3vw, 3rem);
  border-left: 1px solid rgba(125, 115, 105, 0.28);
}

.proof__grid > :first-child {
  padding-left: 0;
  border-left: 0;
}

.proof h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 0.95;
}

.proof__rating {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.proof__number {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.8;
}

.proof__number small,
.reviews__score small {
  margin-left: 0.2em;
  color: var(--taupe);
  font-size: 0.42em;
}

.proof__attributes {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.proof__attributes p {
  margin: 0;
  padding-block: 1rem;
  border-top: 1px solid var(--beige);
}

.services__heading {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.services h2,
.gallery h2,
.method h2,
.story h2,
.reviews h2,
.faq h2,
.location h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 6vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(25rem, 1.4fr) minmax(16rem, 0.8fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

.service-index {
  border-top: 1px solid var(--beige);
}

.service-tab {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 4.8rem;
  padding: 0 0.8rem;
  border: 0;
  border-bottom: 1px solid var(--beige);
  background: transparent;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, padding 220ms ease;
}

.service-tab::before {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 0;
  width: 2px;
  background: var(--sienna);
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-tab span {
  color: var(--taupe);
  font-family: "Roboto Mono", monospace;
  font-size: 0.78rem;
}

.service-tab strong {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
}

.service-tab.is-active strong,
.service-tab:hover strong {
  color: var(--sienna);
}

.service-tab.is-active {
  padding-left: 1.15rem;
  background: rgba(154, 95, 76, 0.07);
}

.service-tab.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-tab > span:last-child {
  transition: transform 220ms ease;
}

.service-tab.is-active > span:last-child {
  transform: translateX(0.3rem);
}

.services__image {
  min-height: 42rem;
  margin: 0;
  overflow: hidden;
}

.services__image,
.gallery-card,
.method__image,
.story__image,
.location__visual {
  border: 1px solid var(--image-border);
  border-radius: var(--image-radius);
  background: var(--beige);
  box-shadow: var(--image-shadow);
}

.services__image img {
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services__image.is-changing img {
  opacity: 0.25;
  transform: scale(1.015);
}

.service-detail {
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail.is-changing {
  opacity: 0;
  transform: translateY(0.5rem);
}

.service-detail__number {
  color: var(--sienna);
  font-family: "Roboto Mono", monospace;
}

.service-detail h3 {
  margin-bottom: 1.3rem;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.service-detail > p:not(.service-detail__number, .service-detail__note) {
  color: var(--taupe);
  font-size: 1.05rem;
}

.service-detail ul {
  padding: 0;
  margin-block: 2rem 1rem;
  border-top: 1px solid var(--beige);
  list-style: none;
}

.service-detail li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--beige);
}

.service-detail li span {
  font-family: "Roboto Mono", monospace;
}

.service-detail__note {
  color: var(--taupe);
  font-size: 0.75rem;
}

.gallery {
  background: var(--ivory);
}

.gallery__top {
  display: grid;
  margin-bottom: 2.5rem;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 3rem;
}

.gallery__note {
  max-width: 30rem;
  margin-bottom: 0;
  color: var(--taupe);
  font-size: 0.86rem;
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--beige);
}

.filter {
  min-height: 2.75rem;
  padding: 0 0 0.65rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.filter.is-active {
  border-color: var(--sienna);
  color: var(--sienna);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.15fr 0.85fr;
  gap: 0.7rem;
  align-items: start;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card:nth-child(2) {
  margin-top: 6rem;
}

.gallery-card:nth-child(4) {
  margin-top: 10rem;
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 4rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(23, 23, 21, 0.72));
  color: var(--ivory);
}

.gallery-card figcaption span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  font-weight: 500;
}

.method__grid {
  display: grid;
  grid-template-columns: 0.8fr 0.55fr 1.65fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.method__intro > p:last-child {
  max-width: 28rem;
  margin-top: 2rem;
  color: #bdb5aa;
}

.method__image {
  height: 42rem;
  margin: 0;
  overflow: hidden;
  border-color: rgba(216, 204, 190, 0.22);
  box-shadow: 0 1.1rem 2.8rem rgba(0, 0, 0, 0.13);
}

.method__image img {
  height: 100%;
  filter: saturate(0.55) contrast(1.05);
  object-fit: cover;
}

.method__steps {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #48463f;
  list-style: none;
}

.method__steps li {
  min-height: 18rem;
  padding: 2rem;
  border-right: 1px solid #48463f;
  border-bottom: 1px solid #48463f;
}

.method__steps li:nth-child(even) {
  border-right: 0;
}

.method__steps span {
  color: #bd8a78;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 3.5rem;
}

.method__steps h3 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.method__steps p {
  color: #bdb5aa;
  font-size: 0.9rem;
}

.story__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.story__art {
  position: relative;
  display: flex;
  min-height: 38rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--beige);
  color: rgba(23, 23, 21, 0.78);
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(12rem, 24vw, 27rem);
  letter-spacing: -0.18em;
}

.story__art span:last-child {
  color: rgba(154, 95, 76, 0.72);
  transform: translateY(0.08em);
}

.story__image {
  height: 38rem;
  margin: 0;
  overflow: hidden;
}

.story__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story__copy > p:not(.eyebrow) {
  max-width: 40rem;
  margin-top: 2rem;
  color: var(--taupe);
  font-size: 1.05rem;
}

.story__pending {
  max-width: 38rem;
  padding-top: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--beige);
}

.story__pending span {
  color: var(--sienna);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story__pending p {
  margin-bottom: 0;
  font-size: 0.88rem !important;
}

.reviews {
  border-block: 1px solid var(--beige);
  background: var(--ivory);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.reviews__copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin-top: 2rem;
  color: var(--taupe);
}

.reviews__score {
  padding: 2.5rem;
  border-left: 1px solid var(--beige);
}

.reviews__score > span {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.8;
}

.reviews__score p {
  margin: 2rem 0 0;
  color: var(--taupe);
  font-size: 1.1rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.faq__notice {
  max-width: 28rem;
  margin-top: 2rem;
  color: var(--taupe);
}

.faq__items {
  border-top: 1px solid var(--beige);
}

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

.faq summary {
  display: grid;
  min-height: 5rem;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  cursor: pointer;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  list-style: none;
}

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

.faq summary span {
  transition: transform 220ms ease;
}

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

.faq details p {
  max-width: 48rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--taupe);
}

.location {
  background: var(--ivory);
}

.location__grid {
  display: grid;
  min-height: 43rem;
  grid-template-columns: 0.85fr 1.15fr;
}

.location__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 5rem) clamp(2rem, 5vw, 6rem) clamp(2rem, 4vw, 5rem) 0;
}

.location address {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-style: normal;
}

.schedule {
  max-width: 31rem;
  padding-block: 1.2rem;
  margin-block: 2rem;
  border-block: 1px solid var(--beige);
}

.schedule div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.2rem;
}

.schedule dd {
  margin: 0;
  font-family: "Roboto Mono", monospace;
}

.schedule__notice {
  max-width: 31rem;
  margin: -1rem 0 2rem;
  color: var(--taupe);
  font-size: 0.76rem;
  line-height: 1.5;
}

.schedule__notice strong {
  color: var(--ink);
  font-weight: 600;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.location__attribute {
  margin-top: 2rem;
  color: var(--olive);
  font-size: 0.82rem;
}

.map-art {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background-color: #e8e2d9;
  background-image: linear-gradient(28deg, transparent 48%, rgba(125, 115, 105, 0.22) 49%, rgba(125, 115, 105, 0.22) 51%, transparent 52%), linear-gradient(102deg, transparent 48%, rgba(125, 115, 105, 0.18) 49%, rgba(125, 115, 105, 0.18) 51%, transparent 52%);
  background-size: 7rem 9rem, 9rem 8rem;
}

.map-art::before,
.map-art::after {
  position: absolute;
  width: 140%;
  height: 4rem;
  background: var(--ivory);
  content: "";
  opacity: 0.72;
}

.map-art::before {
  top: 28%;
  left: -20%;
  transform: rotate(-9deg);
}

.map-art::after {
  right: -20%;
  bottom: 25%;
  transform: rotate(14deg);
}

.map-art__road {
  position: absolute;
  z-index: 1;
  width: 1.4rem;
  height: 120%;
  background: var(--ivory);
  opacity: 0.84;
}

.map-art__road--one { left: 19%; top: -10%; transform: rotate(20deg); }
.map-art__road--two { left: 48%; top: -10%; transform: rotate(-7deg); }
.map-art__road--three { right: 14%; top: -10%; transform: rotate(31deg); }
.map-art__road--four { right: 34%; top: -10%; transform: rotate(8deg); }

.map-art__label,
.map-art__caption {
  position: absolute;
  z-index: 2;
  font-family: "Roboto Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-art__label--milan { top: 45%; left: 52%; transform: rotate(-8deg); }
.map-art__label--roma { right: 20%; bottom: 26%; transform: rotate(13deg); }
.map-art__caption { right: 2rem; bottom: 2rem; }

.map-art__pin {
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 58%;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50% 50% 50% 0;
  background: var(--sienna);
  transform: rotate(-45deg);
  box-shadow: 0 0.8rem 2rem rgba(87, 60, 48, 0.2);
}

.map-art__pin i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--ivory);
  transform: translate(-50%, -50%);
}

.location__visual {
  position: relative;
  min-height: 38rem;
  margin: 0;
  overflow: hidden;
}

.location__visual img {
  height: 100%;
  object-fit: cover;
}

.location__visual figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(250, 247, 241, 0.18);
  border-radius: 0.3rem;
  background: rgba(23, 23, 21, 0.82);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  font-family: "Roboto Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.closing__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 4rem;
}

.closing__action p {
  color: #bdb5aa;
}

.site-footer {
  padding-block: 4rem 2rem;
  border-top: 1px solid #48463f;
  background: var(--charcoal);
  color: var(--ivory);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.65fr);
  gap: 2rem;
  align-items: start;
}

.footer__top > div:not(:first-child) {
  min-height: 7rem;
  padding-left: 2rem;
  border-left: 1px solid #48463f;
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__brand span {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
}

.footer__brand small {
  margin-top: 0.5rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.footer__top p,
.footer__top a,
.footer__bottom {
  color: #bdb5aa;
  font-size: 0.82rem;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid #48463f;
}

.footer__bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--delay {
  transition-delay: 100ms;
}

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

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

  .site-header.is-scrolled {
    background: var(--cream);
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    inset: 4.75rem 0 0;
    display: none;
    height: auto;
    min-height: 0;
    padding: 3rem max(var(--gutter), env(safe-area-inset-right)) calc(3rem + env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    font-family: "Instrument Serif", "Times New Roman", serif;
    font-size: clamp(2.6rem, 6vw, 4.25rem);
  }

  .menu-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.75rem;
    border: 0;
    background: transparent;
    place-content: center;
    gap: 0.38rem;
  }

  .menu-toggle span:not(.sr-only) {
    width: 1.3rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-0.2rem) rotate(-45deg);
  }

  .services__layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .service-detail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.25fr 0.75fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .service-detail ul {
    margin-top: 0;
  }

  .service-detail__note {
    grid-column: 3;
  }

  .method__grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

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

@media (max-width: 767px) {
  :root {
    --gutter: 1.1rem;
    --section-space: clamp(4.5rem, 17vw, 6.5rem);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 0.45rem;
    padding-block: 0.8rem;
    background: rgba(242, 236, 227, 0.96);
  }

  .button--header {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    border-radius: 50%;
  }

  .button--header__icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .button--header__label {
    display: none;
  }

  .site-nav {
    inset: 4rem 0 0;
    font-size: 2.6rem;
  }

  .hero {
    position: relative;
    isolation: isolate;
    min-height: 0;
    padding-top: 4.25rem;
    overflow: hidden;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    position: relative;
    z-index: 2;
    min-height: max(44rem, calc(100dvh - 4.25rem));
    justify-content: flex-start;
    padding: clamp(3.5rem, 11vh, 5rem) var(--gutter) 2rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }

  .hero__inline-image {
    display: none;
  }

  .hero__visual {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66%;
    min-height: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 100%);
  }

  .hero__visual img {
    object-position: center 42%;
  }

  .hero__visual::after {
    background: linear-gradient(180deg, transparent 52%, rgba(23, 23, 21, 0.14) 100%);
  }

  .hero__visual figcaption {
    display: none;
  }

  .hero__lead {
    max-width: 20rem;
    padding: 0.4rem 0.75rem 0.4rem 0;
    background: linear-gradient(90deg, rgba(242, 236, 227, 0.96) 0%, rgba(242, 236, 227, 0.76) 78%, transparent 100%);
    color: rgba(38, 35, 31, 0.78);
  }

  .hero__location {
    align-self: flex-start;
    padding: 0.42rem 0.58rem;
    border: 1px solid rgba(250, 247, 241, 0.3);
    border-radius: 0.25rem;
    background: rgba(23, 23, 21, 0.68);
    backdrop-filter: blur(8px);
    color: var(--ivory);
  }

  .proof__grid,
  .services__layout,
  .gallery__top,
  .method__grid,
  .story__grid,
  .reviews__grid,
  .faq__grid,
  .location__grid,
  .closing__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .proof__grid > * {
    min-height: 0;
    padding: 2rem 0;
    border-top: 1px solid var(--beige);
    border-left: 0;
  }

  .proof__grid > :first-child {
    border-top: 0;
  }

  .services h2,
  .gallery h2,
  .method h2,
  .story h2,
  .reviews h2,
  .faq h2,
  .location h2,
  .closing h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .services__image {
    min-height: 27rem;
    grid-row: 2;
  }

  .service-detail {
    display: block;
    grid-column: auto;
  }

  .service-index > .service-detail {
    padding: 1.5rem 1rem 2rem;
    border-bottom: 1px solid var(--beige);
    background: rgba(255, 255, 255, 0.32);
  }

  .service-index > .service-detail h3 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .gallery__top {
    align-items: start;
  }

  .gallery__filters {
    gap: 0.5rem 1.2rem;
  }

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

  .gallery-card:nth-child(2),
  .gallery-card:nth-child(4) {
    margin-top: 3.5rem;
  }

  .gallery-card figcaption {
    display: block;
  }

  .gallery-card figcaption strong {
    display: block;
    margin-top: 0.2rem;
  }

  .method__image {
    height: 32rem;
  }

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

  .method__steps li,
  .method__steps li:nth-child(even) {
    min-height: 0;
    padding: 1.6rem 0;
    border-right: 0;
  }

  .story__art {
    min-height: 26rem;
  }

  .story__image,
  .location__visual {
    height: 30rem;
    min-height: 0;
  }

  .story__copy {
    order: 1;
  }

  .story__image {
    order: 2;
  }

  .reviews__score {
    padding: 2rem 0 0;
    border-top: 1px solid var(--beige);
    border-left: 0;
  }

  .location__copy {
    padding-right: 0;
  }

  .map-art {
    min-height: 27rem;
  }

  .footer__top > div:not(:first-child) {
    min-height: 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid #48463f;
    border-left: 0;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

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

  .gallery-card:nth-child(2),
  .gallery-card:nth-child(4) {
    margin-top: 0;
  }
}

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

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