:root {
  --graphite-950: #171717;
  --graphite-900: #202020;
  --graphite-800: #2b2b2a;
  --graphite-700: #3a3937;
  --stone-50: #f5f3ee;
  --stone-100: #ece9e2;
  --stone-200: #d8d3ca;
  --taupe: #9b8c79;
  --champagne: #c7aa7b;
  --white: #fffefb;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(32, 32, 32, 0.15);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --page: min(1240px, calc(100% - 80px));
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--graphite-900);
  background: var(--stone-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site-loader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite-950);
  pointer-events: none;
  place-content: center;
  gap: 24px;
  animation: loader-exit 620ms var(--ease) 450ms forwards;
}

.loader-wordmark {
  display: grid;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-align: center;
  animation: loader-wordmark-in 480ms var(--ease) both;
}

.loader-wordmark span {
  margin-top: 14px;
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.loader-line {
  width: min(280px, 62vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.loader-line::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--champagne);
  transform: translateX(-100%);
  animation: loader-line-in 520ms var(--ease) 50ms forwards;
}

@keyframes loader-wordmark-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes loader-line-in {
  to {
    transform: translateX(0);
  }
}

@keyframes loader-exit {
  to {
    visibility: hidden;
    transform: translateY(-100%);
  }
}

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--champagne);
  box-shadow: 0 0 16px rgba(199, 170, 123, 0.55);
  transform: scaleX(0);
  transform-origin: left center;
}

.pointer-glow {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 170px;
  height: 170px;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(199, 170, 123, 0.12), rgba(199, 170, 123, 0) 70%);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 400ms ease;
  mix-blend-mode: screen;
}

.pointer-glow.is-active {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  position: fixed;
  z-index: 80;
  inset: 0;
  content: "";
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(4px);
}

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

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

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6.6vw, 6.8rem);
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--graphite-950);
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  padding: 0 40px;
  color: var(--white);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  transition: background-color 300ms ease, border-color 300ms ease, height 300ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(23, 23, 23, 0.94);
  border-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  width: clamp(215px, 19vw, 285px);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
}

.brand-copy {
  display: grid;
  gap: 6px;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand-copy small {
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  margin-right: clamp(24px, 3vw, 52px);
  align-items: center;
  justify-self: end;
  gap: clamp(20px, 2.5vw, 42px);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.main-nav a,
.footer-copy a {
  transition: opacity 180ms ease;
}

.main-nav a:hover,
.footer-copy a:hover {
  opacity: 0.55;
}

.header-cta {
  justify-self: end;
}

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 56px;
  padding: 0 27px;
  color: var(--graphite-950);
  background: var(--champagne);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 650ms var(--ease);
}

.button:hover::after {
  left: 120%;
}

.button:hover {
  color: var(--graphite-950);
  background: var(--white);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button-light {
  color: var(--graphite-950);
  background: var(--stone-50);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(920px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--graphite-950);
  align-items: flex-end;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  filter: saturate(0.82) contrast(1.04);
  transform: translate3d(var(--hero-x, 0px), calc(var(--hero-y, 0px) + var(--hero-scroll-y, 0px)), 0) scale(1.08);
  transition: transform 180ms ease-out;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.94) 0%, rgba(14, 14, 14, 0.78) 38%, rgba(14, 14, 14, 0.3) 100%),
    linear-gradient(0deg, rgba(14, 14, 14, 0.72), transparent 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 180px;
  padding-bottom: 114px;
}

.hero-content > * {
  opacity: 0;
  animation: hero-enter 900ms var(--ease) forwards;
}

.hero-content > :nth-child(1) {
  animation-delay: 480ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 560ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 660ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 740ms;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin-bottom: 28px;
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--taupe);
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 30px;
  font-size: clamp(4.4rem, 9vw, 9.8rem);
}

.hero h1 em {
  color: var(--stone-200);
  font-weight: 400;
}

.hero-intro {
  max-width: 520px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 8px;
  gap: 28px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  align-items: center;
}

.text-link span {
  font-size: 1rem;
  transition: transform 220ms ease;
}

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

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

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 32px;
  display: flex;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  gap: 24px;
}

.hero-meta span + span,
.hero-meta a {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-strip {
  color: var(--white);
  background: var(--graphite-800);
}

.trust-items {
  display: grid;
  min-height: 114px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-items p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 1.18rem;
  text-align: center;
}

.trust-items p + p {
  border-left: 1px solid var(--line-dark);
}

.trust-items span {
  margin-right: 14px;
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.section {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(64px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 8px;
  color: #605e59;
  font-size: 1.02rem;
}

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

.service-card {
  display: grid;
  min-height: 370px;
  padding: clamp(30px, 4vw, 56px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  align-content: space-between;
  transition: background-color 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.service-card:not(.service-card-featured):hover {
  background: rgba(199, 170, 123, 0.09);
  box-shadow: inset 0 0 0 1px rgba(155, 140, 121, 0.25);
}

.service-card-featured {
  color: var(--white);
  background: var(--graphite-800);
}

.service-number {
  color: var(--taupe);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: #65625c;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.66);
}

.service-tag {
  width: fit-content;
  padding-top: 14px;
  color: var(--taupe);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid currentColor;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite-950);
}

.section-dark::before,
.contact-section::before {
  position: absolute;
  width: 760px;
  height: 760px;
  content: "";
  background: radial-gradient(circle, rgba(199, 170, 123, 0.09), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  animation: ambient-drift 14s ease-in-out infinite alternate;
}

.section-dark::before {
  top: -340px;
  right: -230px;
}

.section-dark > .page-width,
.contact-section > .page-width {
  position: relative;
  z-index: 1;
}

@keyframes ambient-drift {
  to {
    transform: translate3d(-90px, 70px, 0) scale(1.12);
  }
}

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

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

.price-group {
  display: grid;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 240px 1fr;
  gap: 50px;
}

.price-group > h3 {
  margin: 7px 0 0;
  color: var(--champagne);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  padding: 0 0 26px;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

.price-row + .price-row {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.price-row:last-child {
  padding-bottom: 0;
}

.price-row h4 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
}

.price-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.price-row strong {
  padding-top: 5px;
  color: var(--stone-200);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note {
  display: flex;
  margin-top: 50px;
  align-items: center;
  justify-content: space-between;
}

.price-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.studio-collage {
  position: relative;
  min-height: 680px;
}

.studio-collage::before {
  position: absolute;
  z-index: -1;
  top: 28px;
  right: 62px;
  bottom: 6px;
  left: 18px;
  content: "";
  border: 1px solid rgba(155, 140, 121, 0.68);
  transform: rotate(-2deg);
}

.studio-collage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--graphite-800);
  box-shadow: 0 24px 65px rgba(46, 40, 34, 0.17);
}

.studio-collage-main {
  top: 0;
  left: 0;
  width: 78%;
  height: 600px;
}

.studio-collage-detail {
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 340px;
  border: 10px solid var(--stone-50);
  transform: rotate(1.5deg);
}

.studio-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-collage-main img {
  object-position: 50% center;
}

.studio-collage-detail img {
  object-position: 50% 55%;
}

.studio-collage-label {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 22px 26px;
  color: var(--white);
  background: var(--graphite-950);
  grid-template-columns: 32px 1fr;
  align-items: center;
}

.studio-collage-label > span {
  grid-row: 1 / 3;
  color: var(--champagne);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.studio-collage-label strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.studio-collage-label small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-visual {
  position: relative;
  display: flex;
  min-height: 650px;
  overflow: hidden;
  padding: 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(199, 170, 123, 0.42), transparent 27%),
    linear-gradient(145deg, var(--graphite-700), var(--graphite-950));
  align-items: flex-end;
}

.studio-visual::before,
.studio-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.studio-visual::before {
  top: 18%;
  right: -13%;
  width: 390px;
  height: 390px;
}

.studio-visual::after {
  top: 28%;
  right: 0;
  width: 240px;
  height: 240px;
}

.studio-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--serif);
  font-size: clamp(8rem, 17vw, 14rem);
  line-height: 1;
  transform: translate(-50%, -56%);
  opacity: 0.12;
}

.studio-visual p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.studio-copy .lead {
  margin-top: 44px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.studio-copy > p:not(.eyebrow):not(.lead) {
  max-width: 560px;
  margin-bottom: 40px;
  color: #625f59;
}

.inspiration-section {
  background: var(--stone-100);
}

.studio-gallery {
  position: relative;
  min-height: 900px;
}

.gallery-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--stone-200);
  box-shadow: 0 28px 70px rgba(45, 40, 34, 0.16);
}

.gallery-image-main {
  top: 0;
  left: 1%;
  width: 61%;
  height: 820px;
  transform: rotate(-1.4deg);
}

.gallery-image-main.reveal {
  transform: translateY(28px) rotate(-1.4deg);
}

.gallery-image-main.reveal.is-visible {
  transform: translateY(0) rotate(-1.4deg);
}

.gallery-image-overlap {
  z-index: 2;
  top: 145px;
  right: 1%;
  width: 47%;
  height: 590px;
  border: 12px solid var(--stone-100);
  transform: rotate(1.8deg);
}

.gallery-image-overlap.reveal {
  transform: translateY(28px) rotate(1.8deg);
}

.gallery-image-overlap.reveal.is-visible {
  transform: translateY(0) rotate(1.8deg);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 400ms ease;
}

.gallery-image-main img {
  object-position: 50% center;
}

.gallery-image:hover img {
  filter: saturate(0.9);
  transform: scale(1.025);
}

.gallery-note {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 14px;
  display: grid;
  width: min(360px, 34%);
  min-height: 150px;
  padding: 30px;
  color: var(--graphite-950);
  background: var(--champagne);
  align-content: center;
  gap: 10px;
}

.gallery-note span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.gallery-note strong {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.08;
}

.style-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 14px;
}

.style-card {
  position: relative;
  display: flex;
  min-height: 520px;
  overflow: hidden;
  padding: 36px;
  flex-direction: column;
  justify-content: flex-end;
}

.style-card::before,
.style-card::after {
  position: absolute;
  content: "";
}

.style-card > * {
  position: relative;
  z-index: 1;
}

.style-card > span {
  position: absolute;
  top: 32px;
  left: 34px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.style-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.style-card p {
  max-width: 280px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.style-natural {
  color: var(--graphite-900);
  background: #d8d0c4;
}

.style-natural::before {
  top: 12%;
  right: -25%;
  width: 86%;
  aspect-ratio: 1;
  background: #eee9e1;
  border-radius: 50% 50% 12% 50%;
  transform: rotate(18deg);
}

.style-french {
  color: var(--white);
  background: var(--graphite-700);
}

.style-french::before {
  top: 16%;
  left: 14%;
  width: 72%;
  aspect-ratio: 0.8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 10% 10%;
  transform: rotate(-8deg);
}

.style-french::after {
  top: 24%;
  left: 22%;
  width: 56%;
  aspect-ratio: 0.8;
  border: 1px solid rgba(199, 170, 123, 0.55);
  border-radius: 50% 50% 10% 10%;
  transform: rotate(-8deg);
}

.style-art {
  color: var(--graphite-900);
  background: var(--champagne);
}

.style-art::before {
  top: 10%;
  left: 10%;
  width: 80%;
  height: 57%;
  background:
    linear-gradient(135deg, transparent 47%, rgba(32, 32, 32, 0.28) 48%, rgba(32, 32, 32, 0.28) 49%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.55) 0 4px, transparent 5px),
    radial-gradient(circle at 35% 65%, rgba(32, 32, 32, 0.4) 0 3px, transparent 4px);
  border: 1px solid rgba(32, 32, 32, 0.22);
  border-radius: 50% 50% 11% 11%;
  transform: rotate(8deg);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) 0;
  color: var(--white);
  background: var(--graphite-800);
}

.contact-section::before {
  right: auto;
  bottom: -440px;
  left: -260px;
  animation-duration: 18s;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(70px, 12vw, 180px);
  align-items: start;
}

.contact-intro h2 {
  margin-bottom: 38px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-card {
  display: grid;
  margin: 0;
  padding: clamp(34px, 5vw, 58px);
  font-style: normal;
  background: var(--graphite-950);
  gap: 34px;
}

.contact-card > div {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.contact-card > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  display: block;
  margin-bottom: 12px;
  color: var(--champagne);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.contact-card p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-link {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.contact-link + .contact-link {
  margin-top: 6px;
}

.contact-link-large {
  font-family: var(--serif);
  font-size: 1.55rem;
}

.site-footer {
  padding: 45px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--graphite-950);
  border-top: 1px solid var(--line-dark);
}

.footer-layout,
.footer-copy,
.footer-copy nav {
  display: flex;
  align-items: center;
}

.footer-layout {
  justify-content: space-between;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  gap: 35px;
}

.footer-copy p {
  margin-bottom: 0;
}

.footer-copy nav {
  gap: 24px;
}

.mobile-contact {
  display: none;
}

.contact-dialog {
  width: min(680px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: clamp(30px, 5vw, 56px);
  color: var(--graphite-900);
  background: var(--stone-50);
  border: 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.contact-dialog::backdrop {
  background: rgba(12, 12, 12, 0.76);
  backdrop-filter: blur(5px);
}

.contact-dialog[open] {
  animation: dialog-enter 460ms var(--ease) both;
}

@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
}

.contact-dialog-head {
  display: flex;
  margin-bottom: 46px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.contact-dialog-head h2 {
  font-size: clamp(2.7rem, 7vw, 4.7rem);
}

.contact-dialog-head .eyebrow {
  margin-bottom: 18px;
}

.dialog-close {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  cursor: pointer;
  color: var(--graphite-900);
  background: transparent;
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
  border: 1px solid var(--line-light);
  place-items: center;
}

.contact-options {
  border-top: 1px solid var(--line-light);
}

.contact-option {
  display: grid;
  min-height: 112px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 45px 1fr auto;
  gap: 18px;
  align-items: center;
  transition: padding 220ms ease, color 220ms ease;
}

.contact-option:hover {
  padding-right: 14px;
  padding-left: 14px;
}

.contact-option-icon {
  color: var(--taupe);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-option strong,
.contact-option small {
  display: block;
}

.contact-option strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.contact-option small {
  color: #6c6962;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.contact-option-accent > span:last-child {
  color: var(--taupe);
}

.dialog-note {
  margin: 24px 0 0;
  color: #77736b;
  font-size: 0.76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease) var(--reveal-delay, 0ms), transform 800ms var(--ease) var(--reveal-delay, 0ms);
}

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

.reveal[data-tilt] {
  transform: translateY(28px) perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.reveal.is-visible[data-tilt] {
  transform: translateY(0) perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.service-card[data-tilt] > *,
.contact-card[data-tilt] > * {
  transform: translateZ(0);
  transition: transform 500ms var(--ease);
}

.service-card[data-tilt]:hover > *,
.contact-card[data-tilt]:hover > * {
  transform: translateZ(12px);
}

@media (max-width: 1040px) {
  :root {
    --page: min(100% - 48px, 900px);
  }

  .site-header {
    padding-inline: 24px;
    grid-template-columns: 1fr auto;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
    place-content: center;
    gap: 7px;
  }

  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    color: var(--graphite-950);
    background: var(--champagne);
    border-color: var(--champagne);
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

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

  .main-nav.is-open {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(90vw, 440px);
    padding: 112px 32px 34px;
    overflow-y: auto;
    background:
      radial-gradient(circle at 100% 0%, rgba(199, 170, 123, 0.15), transparent 33%),
      var(--graphite-950);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    counter-reset: mobile-navigation;
    animation: menu-slide-in 440ms var(--ease) both;
  }

  .main-nav.is-open::before {
    display: block;
    width: 100%;
    padding-bottom: 17px;
    color: var(--champagne);
    content: "Navigation";
    font-family: var(--sans);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line-dark);
  }

  .main-nav.is-open a {
    display: grid;
    width: 100%;
    min-height: 76px;
    padding: 15px 2px;
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 3.1rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
    border-bottom: 1px solid var(--line-dark);
    grid-template-columns: 36px 1fr;
    align-items: center;
    transition: color 180ms ease, padding-left 180ms ease;
    counter-increment: mobile-navigation;
  }

  .main-nav.is-open > a::before {
    color: var(--champagne);
    content: "0" counter(mobile-navigation);
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .main-nav.is-open > a:hover {
    color: var(--champagne);
    padding-left: 8px;
    opacity: 1;
  }

  .main-nav.is-open .mobile-nav-contact {
    display: grid;
    width: 100%;
    margin-top: auto;
    padding-top: 34px;
    gap: 18px;
  }

  .mobile-nav-contact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-family: var(--serif);
    font-size: 1.15rem;
  }

  .mobile-nav-contact .button {
    width: 100%;
  }

  .main-nav.is-open .mobile-nav-phone {
    display: block;
    min-height: auto;
    padding: 0;
    color: rgba(255, 255, 255, 0.56);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 0;
  }

  .main-nav.is-open .mobile-nav-phone::before {
    display: none;
  }

  @keyframes menu-slide-in {
    from {
      opacity: 0;
      transform: translateX(28px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .hero-media img {
    object-position: 55% 62%;
  }

  .hero-meta {
    right: 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .studio-layout {
    grid-template-columns: 0.8fr 1fr;
    gap: 60px;
  }

  .studio-visual {
    min-height: 560px;
    padding: 35px;
  }

  .studio-collage {
    min-height: 590px;
  }

  .studio-collage-main {
    height: 520px;
  }

  .studio-collage-detail {
    height: 285px;
  }

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

  .style-card:last-child {
    grid-column: 1 / -1;
    min-height: 400px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 36px);
    --header-height: 76px;
  }

  body {
    padding-bottom: 68px;
    font-size: 15px;
  }

  h2 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    padding-inline: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    width: 218px;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media img {
    object-position: 55% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 14, 14, 0.8), rgba(14, 14, 14, 0.28)),
      linear-gradient(0deg, rgba(14, 14, 14, 0.94) 0%, rgba(14, 14, 14, 0.32) 76%);
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 130px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(4rem, 20vw, 6.4rem);
  }

  .hero-intro {
    max-width: 390px;
  }

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

  .hero-meta {
    right: 18px;
    bottom: 25px;
    left: 18px;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-meta span:nth-child(2) {
    display: none;
  }

  .hero-meta span + span,
  .hero-meta a {
    padding-left: 0;
    border-left: 0;
  }

  .trust-items {
    padding: 20px 0;
    grid-template-columns: 1fr;
  }

  .trust-items p {
    padding: 13px 0;
    font-size: 1rem;
    text-align: left;
  }

  .trust-items p + p {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .section {
    padding-block: 94px;
  }

  .section-heading {
    margin-bottom: 56px;
    gap: 28px;
  }

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

  .service-card {
    min-height: 330px;
    padding: 30px;
  }

  .price-group {
    padding: 32px 0;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-row strong {
    color: var(--champagne);
  }

  .price-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .studio-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

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

  .studio-collage {
    min-height: 590px;
  }

  .studio-collage::before {
    right: 36px;
  }

  .studio-collage-main {
    width: 86%;
    height: 500px;
  }

  .studio-collage-detail {
    width: 57%;
    height: 285px;
    border-width: 7px;
  }

  .studio-collage-label {
    bottom: 20px;
    min-width: 190px;
    padding: 18px 20px;
  }

  .studio-copy .lead {
    margin-top: 34px;
  }

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

  .studio-gallery {
    min-height: 920px;
  }

  .gallery-image-main {
    top: 0;
    left: 0;
    width: 88%;
    height: 610px;
  }

  .gallery-image-overlap {
    top: 390px;
    right: 0;
    width: 72%;
    height: 430px;
    border-width: 8px;
  }

  .gallery-note {
    right: auto;
    bottom: 0;
    left: 0;
    width: 66%;
    min-height: 120px;
    padding: 22px;
  }

  .style-card,
  .style-card:last-child {
    min-height: 430px;
    grid-column: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .footer-layout,
  .footer-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-layout {
    gap: 40px;
  }

  .footer-copy {
    gap: 16px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 68px;
    padding-inline: 20px;
    color: var(--graphite-950);
    background: var(--champagne);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
  }

  .contact-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 24px);
    margin: auto 0 0;
    padding: 30px 22px 28px;
  }

  .contact-dialog-head {
    margin-bottom: 32px;
  }

  .contact-dialog-head h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .contact-option {
    min-height: 100px;
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
  }

  .contact-option strong {
    font-size: 1.32rem;
  }
}

@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;
  }

  .site-loader,
  .pointer-glow {
    display: none;
  }

  .hero-content > * {
    opacity: 1;
  }

  .hero-media img,
  .reveal[data-tilt],
  .reveal.is-visible[data-tilt],
  .gallery-image-main.reveal,
  .gallery-image-main.reveal.is-visible,
  .gallery-image-overlap.reveal,
  .gallery-image-overlap.reveal.is-visible {
    transform: none;
  }
}
