:root {
  color-scheme: light;
  --lb-paper: #f6f4ef;
  --lb-ink: #1c1b19;
  --lb-graphite: #383735;
  --lb-pearl: #d1ccc5;
  --lb-gold: #b69762;
  --lb-mist: #e9e5de;
  --lb-white: #fffefa;
  --lb-focus: #876b3e;
  --lb-page-width: 1440px;
  --lb-page-gutter: 32px;
  --lb-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lb-fast: 220ms;
  --lb-medium: 520ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #d8d5cf;
  color: var(--lb-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.is-dialog-open {
  overflow: hidden;
}

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

button,
select,
input,
textarea {
  border-radius: 0;
}

button {
  cursor: pointer;
}

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

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

.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: 500;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: #1c1b19;
  color: #f6f4ef;
  transform: translateY(-180%);
  transition: transform var(--lb-fast) ease;
}

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

.site {
  --gallery-rail-forward: 0px;
  --gallery-rail-reverse: 0px;
  --manifesto-shift: 0px;
  width: min(var(--lb-page-width), calc(100vw - var(--lb-page-gutter)));
  margin: 0 auto 32px;
  overflow: clip;
  background: var(--lb-paper);
  color: var(--lb-ink);
  transition: background-color var(--lb-fast) ease, color var(--lb-fast) ease;
}

.site[data-mode="graphite"] {
  --lb-paper: #1a1917;
  --lb-ink: #f3efe8;
  --lb-graphite: #cbc6be;
  --lb-pearl: #4b4844;
  --lb-gold: #c2a16b;
  --lb-mist: #242321;
  --lb-white: #111110;
  --lb-focus: #d4b77f;
  color-scheme: dark;
}

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 50%;
  width: min(var(--lb-page-width), calc(100vw - var(--lb-page-gutter)));
  height: 3px;
  pointer-events: none;
  transform: translateX(-50%);
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #b69762;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 82px;
  padding: 0 42px;
  align-items: center;
  border-bottom: 1px solid var(--lb-pearl);
  background: var(--lb-paper);
  transition: background-color var(--lb-fast) ease, border-color var(--lb-fast) ease, min-height var(--lb-fast) ease;
}

@supports (background: color-mix(in srgb, white 50%, transparent)) {
  .site-header {
    background: color-mix(in srgb, var(--lb-paper) 90%, transparent);
    backdrop-filter: blur(18px);
  }
}

.site-header.is-condensed {
  min-height: 68px;
}

.wordmark {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.site-nav,
.site-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a,
.header-booking {
  position: relative;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

.site-nav a::after,
.header-booking::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--lb-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 320ms var(--lb-ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after,
.header-booking:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-meta {
  justify-self: end;
}

.theme-toggle {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--lb-pearl);
  background: transparent;
  color: inherit;
  transition: border-color var(--lb-fast) ease, background-color var(--lb-fast) ease;
}

.theme-toggle:hover {
  border-color: var(--lb-gold);
  background: color-mix(in srgb, var(--lb-gold) 12%, transparent);
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
  overflow: visible;
}

.theme-toggle__sun,
.theme-toggle__moon {
  transform-origin: 12px 12px;
  transition: opacity 280ms ease, transform var(--lb-medium) var(--lb-ease);
}

.theme-toggle__sun {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.theme-toggle__moon {
  fill: currentColor;
  opacity: 0;
  transform: rotate(-28deg) scale(0.55);
}

.theme-toggle:hover .theme-toggle__sun {
  transform: rotate(22deg);
}

.theme-toggle[aria-pressed="true"] .theme-toggle__sun {
  opacity: 0;
  transform: rotate(45deg) scale(0.55);
}

.theme-toggle[aria-pressed="true"] .theme-toggle__moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.menu-trigger {
  display: none;
  min-height: 42px;
  padding: 0;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-trigger__icon,
.menu-trigger__icon::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-trigger__icon::after {
  transform: translateY(6px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 720px;
  border-bottom: 1px solid var(--lb-pearl);
}

.hero-ghost {
  position: absolute;
  z-index: 2;
  top: 29%;
  left: -0.045em;
  margin: 0;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(110px, 16vw, 242px);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.75;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.2;
  -webkit-text-stroke: 1px rgba(255, 254, 250, 0.9);
  mix-blend-mode: difference;
  will-change: transform;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  padding: 56px 28px 44px 42px;
  flex-direction: column;
  justify-content: space-between;
  will-change: transform;
}

.kicker,
.section-index,
.service-label,
.owner-role,
.footer-label,
.process-step__number,
.dialog-kicker {
  margin: 0;
  color: var(--lb-graphite);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  z-index: 4;
  width: 125%;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 8vw, 132px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero-title__line {
  display: block;
}

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

.primary-action,
.secondary-action,
.text-action,
.service-select {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: inherit;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--lb-fast) ease, color var(--lb-fast) ease, transform var(--lb-fast) ease;
}

.primary-action,
.service-select {
  background: var(--lb-gold);
  color: #181714;
}

.primary-action:hover,
.service-select:hover {
  transform: translateY(-2px);
}

.text-action {
  padding-right: 0;
  padding-left: 0;
  border-bottom: 1px solid var(--lb-gold);
}

.secondary-action {
  border: 1px solid currentColor;
  background: transparent;
}

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  color: var(--lb-graphite);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note::before {
  width: 62px;
  height: 1px;
  background: var(--lb-gold);
  content: "";
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--lb-mist);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(0.72) contrast(0.98);
  transform: scale(1.02);
  transform-origin: right center;
  will-change: transform;
}

.hero-media__reveal {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: var(--lb-mist);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: right center;
}

.hero-media__signal {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 26px;
  width: 128px;
  height: 8px;
  background: var(--lb-gold);
  transform-origin: left center;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  right: auto;
  bottom: 26px;
  left: calc(44% + 28px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f6f4ef;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(246, 244, 239, 0.35);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--lb-gold);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
  transform: translateX(-100%);
}

.js:not(.is-ready) .hero-intro {
  opacity: 0;
  transform: translateY(28px);
}

.js .hero-intro {
  transition: opacity 760ms var(--lb-ease), transform 760ms var(--lb-ease);
}

.js .hero-intro--two { transition-delay: 80ms; }
.js .hero-intro--three { transition-delay: 150ms; }
.js .hero-intro--four { transition-delay: 250ms; }
.js .hero-intro--five { transition-delay: 340ms; }

.js:not(.is-ready) .hero-media__reveal {
  transform: scaleX(1);
}

.js .hero-media__reveal {
  transition: transform 1100ms 100ms var(--lb-ease);
}

.js:not(.is-ready) .hero-media__signal {
  transform: scaleX(0);
}

.js .hero-media__signal {
  transition: transform 680ms 740ms var(--lb-ease);
}

.manifesto {
  position: relative;
  min-height: 108svh;
  overflow: hidden;
  border-bottom: 1px solid var(--lb-pearl);
  background: var(--lb-paper);
}

.manifesto-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--lb-pearl);
}

.manifesto-track {
  display: flex;
  width: max-content;
  padding: 28px 0 34px;
  align-items: center;
  color: var(--lb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(70px, 10vw, 154px);
  letter-spacing: -0.065em;
  line-height: 0.84;
  white-space: nowrap;
  transform: translate3d(var(--manifesto-shift), 0, 0);
  will-change: transform;
}

.manifesto-track span {
  display: inline-flex;
  align-items: center;
}

.manifesto-track span::after {
  width: 0.13em;
  height: 0.13em;
  margin: 0 0.32em;
  background: var(--lb-gold);
  content: "";
}

.manifesto-content {
  padding: 100px 42px 110px;
}

.manifesto-headline {
  margin-top: clamp(64px, 10vh, 112px);
}

.manifesto-headline p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8.8vw, 132px);
  letter-spacing: -0.068em;
  line-height: 0.84;
}

.manifesto-headline p:nth-child(2) {
  margin-left: 10vw;
}

.manifesto-headline .manifesto-accent {
  margin-top: 0.14em;
  margin-left: 20vw;
  color: var(--lb-gold);
}

.manifesto-foot {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: 8vw;
  margin-top: clamp(72px, 12vh, 126px);
  align-items: end;
}

.manifesto-foot > p {
  max-width: 520px;
  margin: 0;
  color: var(--lb-graphite);
  font-size: 17px;
  line-height: 1.7;
}

.manifesto-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--lb-pearl);
}

.manifesto-metrics div {
  padding: 22px 12px 0 0;
}

.manifesto-metrics dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 70px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.manifesto-metrics dd {
  margin: 10px 0 0;
  color: var(--lb-graphite);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-pad {
  padding: 104px 42px;
}

.section-heading,
.process-heading,
.gallery-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 72px;
}

.section-heading h2,
.process-heading h2,
.gallery-heading h2,
.owner-copy h2,
.studio-overlay h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6.6vw, 104px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms var(--lb-ease), transform 720ms var(--lb-ease);
}

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

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

.service-item {
  border-bottom: 1px solid var(--lb-pearl);
}

.service-trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 0.34fr 1.2fr auto 34px;
  gap: 24px;
  padding: 28px 0;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.service-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -0.035em;
}

.service-price {
  color: var(--lb-gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.service-toggle {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lb-pearl);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform 360ms var(--lb-ease), background-color var(--lb-fast) ease;
}

.service-trigger:hover .service-toggle,
.service-trigger[aria-expanded="true"] .service-toggle {
  background: var(--lb-gold);
  color: #181714;
}

.service-trigger[aria-expanded="true"] .service-toggle {
  transform: rotate(45deg);
}

.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--lb-ease);
}

.service-panel[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

.service-panel__inner {
  display: grid;
  min-height: 0;
  grid-template-columns: 0.34fr 1.2fr auto;
  gap: 24px;
  overflow: hidden;
  align-items: start;
}

.service-panel__inner::before {
  content: "";
}

.service-panel__inner p {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--lb-graphite);
  font-size: 16px;
  line-height: 1.7;
}

.service-select {
  margin-bottom: 30px;
  white-space: nowrap;
}

.process {
  padding-bottom: 0;
  border-top: 1px solid var(--lb-pearl);
  background: var(--lb-mist);
}

.process-stage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.process-steps {
  min-width: 0;
}

.process-step {
  display: flex;
  min-height: 68vh;
  padding: 34px 0 46px;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--lb-pearl);
  opacity: 0.32;
  transition: opacity 420ms ease;
}

.process-step:last-child {
  border-bottom: 1px solid var(--lb-pearl);
}

.process-step.is-active {
  opacity: 1;
}

.process-step h3 {
  margin: 28px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.process-step > p:last-of-type {
  max-width: 520px;
  margin: 0;
  color: var(--lb-graphite);
  font-size: 17px;
  line-height: 1.7;
}

.process-step__mobile-image {
  display: none;
}

.process-visual {
  position: sticky;
  top: 96px;
  height: calc(100vh - 122px);
  min-height: 620px;
  overflow: hidden;
  background: var(--lb-graphite);
}

.process-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transform: translateX(5%) scale(1.035);
  transition: opacity 680ms ease, clip-path 760ms var(--lb-ease), transform 900ms var(--lb-ease);
}

.process-frame.is-active {
  z-index: 2;
  opacity: 1;
  clip-path: inset(0);
  transform: scale(1);
}

.process-frame.is-outgoing {
  z-index: 1;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-5%) scale(0.99);
}

.process-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.02);
}

.process-frame figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 7px 9px;
  background: rgba(28, 27, 25, 0.72);
  color: #f6f4ef;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery {
  overflow: hidden;
  border-top: 1px solid var(--lb-pearl);
}

.gallery-heading {
  grid-template-columns: 0.36fr 1.1fr 0.54fr;
}

.gallery-heading > p:last-child {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--lb-graphite);
  font-size: 13px;
  line-height: 1.65;
}

.gallery-viewport {
  width: calc(100% + 84px);
  margin-left: -42px;
  overflow: hidden;
}

.gallery-rail {
  display: flex;
  width: max-content;
  padding: 0 42px;
  gap: 18px;
  transition: transform 80ms linear;
  will-change: transform;
}

.gallery-rail + .gallery-rail {
  margin-top: 18px;
}

.gallery-rail--forward {
  transform: translate3d(var(--gallery-rail-forward), 0, 0);
}

.gallery-rail--reverse {
  transform: translate3d(var(--gallery-rail-reverse), 0, 0);
}

.gallery-card {
  position: relative;
  flex: 0 0 clamp(280px, 29vw, 430px);
  height: clamp(300px, 34vw, 470px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--lb-mist);
  color: #f6f4ef;
  text-align: left;
}

.gallery-card--portrait {
  flex-basis: clamp(220px, 22vw, 330px);
}

.gallery-card--wide {
  flex-basis: clamp(340px, 36vw, 520px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.025);
  transition: transform 900ms var(--lb-ease), filter 420ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(28, 27, 25, 0.68));
  content: "";
}

.gallery-card span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 18px;
  background: var(--lb-gold);
  color: #181714;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(102%);
  transition: transform 360ms var(--lb-ease);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1) contrast(1.025);
  transform: scale(1.035);
}

.gallery-card:hover span,
.gallery-card:focus-visible span {
  transform: translateY(0);
}

.gallery.is-in-view .gallery-card:nth-child(odd) {
  animation: gallery-card-in 760ms var(--lb-ease) both;
}

.gallery.is-in-view .gallery-card:nth-child(even) {
  animation: gallery-card-in 760ms 90ms var(--lb-ease) both;
}

.owner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 760px;
  background: var(--lb-mist);
}

.owner-media {
  min-height: 640px;
  overflow: hidden;
}

.owner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.66) contrast(1.02);
  transition: transform 1200ms var(--lb-ease);
}

.owner-media.is-visible img {
  transform: scale(1.015);
}

.owner-copy {
  display: flex;
  padding: 64px 42px 48px;
  flex-direction: column;
  justify-content: space-between;
}

.owner-copy h2 {
  margin-top: 48px;
}

.owner-quote {
  max-width: 540px;
  margin: 40px 0 0;
  color: var(--lb-graphite);
  font-size: 18px;
  line-height: 1.6;
}

.owner-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--lb-pearl);
}

.owner-facts p {
  margin: 0;
  color: var(--lb-graphite);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--lb-graphite);
}

.studio > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04) brightness(0.7);
  transform: scale(1.025);
  transition: transform 1500ms var(--lb-ease);
}

.studio.is-visible > img {
  transform: scale(1.01);
}

.studio-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  padding: 54px 42px 44px;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(28, 27, 25, 0.74), rgba(28, 27, 25, 0.08));
  color: #f6f4ef;
}

.studio-overlay .section-index {
  color: #d1ccc5;
}

.studio-overlay h2 {
  max-width: 780px;
  color: #f6f4ef;
}

.studio-details {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(246, 244, 239, 0.46);
  color: #f6f4ef;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-callout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 100px 42px;
  background: var(--lb-white);
}

.booking-callout h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.booking-callout__side {
  align-self: end;
}

.booking-callout__side p {
  max-width: 440px;
  margin: 0 0 28px;
  color: var(--lb-graphite);
  font-size: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 30px 42px;
  border-top: 1px solid var(--lb-pearl);
}

.site-footer p {
  margin: 0;
}

dialog {
  width: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1c1b19;
}

dialog::backdrop {
  background: rgba(13, 12, 11, 0.78);
  backdrop-filter: blur(10px);
}

dialog[open] {
  animation: dialog-in 320ms var(--lb-ease) both;
}

.dialog-topline {
  display: flex;
  min-height: 64px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d1ccc5;
}

.dialog-kicker {
  color: #383735;
}

.icon-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1ccc5;
  background: transparent;
  color: inherit;
  font-size: 25px;
  line-height: 1;
}

.mobile-menu {
  height: 100%;
  margin: 0 0 0 auto;
}

.mobile-menu__panel {
  display: flex;
  width: min(480px, 100vw);
  min-height: 100%;
  margin-left: auto;
  padding: 0 22px 30px;
  flex-direction: column;
  background: #f6f4ef;
}

.mobile-menu[open] .mobile-menu__panel {
  animation: panel-in 420ms var(--lb-ease) both;
}

.mobile-menu__panel .dialog-topline {
  margin: 0 -22px;
}

.mobile-menu nav {
  display: flex;
  margin: 34px 0 auto;
  flex-direction: column;
  border-top: 1px solid #d1ccc5;
}

.mobile-menu nav a {
  display: flex;
  padding: 22px 0;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid #d1ccc5;
  color: #1c1b19;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.mobile-menu nav span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.mobile-menu .primary-action {
  margin-top: 30px;
  background: #b69762;
}

.lightbox {
  height: 100%;
  margin: 0;
}

.lightbox__panel {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
  padding: 0 28px 24px;
  background: #151412;
  color: #f6f4ef;
}

.lightbox__topline {
  margin: 0 -28px;
  border-color: rgba(246, 244, 239, 0.22);
}

.lightbox .dialog-kicker {
  color: #d1ccc5;
}

.lightbox .icon-button {
  border-color: rgba(246, 244, 239, 0.28);
  color: #f6f4ef;
}

.lightbox__figure {
  display: grid;
  min-height: 0;
  margin: 24px 0 18px;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox__figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox__figure figcaption {
  display: flex;
  padding-top: 14px;
  justify-content: space-between;
  gap: 20px;
  color: #d1ccc5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox__controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.lightbox__controls button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(246, 244, 239, 0.3);
  background: transparent;
  color: #f6f4ef;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-dialog {
  width: min(780px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
}

.booking-dialog__panel {
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #f6f4ef;
}

body[data-mode="graphite"] .mobile-menu__panel,
body[data-mode="graphite"] .booking-dialog__panel {
  background: #1a1917;
  color: #f3efe8;
}

body[data-mode="graphite"] .mobile-menu nav,
body[data-mode="graphite"] .mobile-menu nav a,
body[data-mode="graphite"] .dialog-topline,
body[data-mode="graphite"] .copy-fallback {
  border-color: #4b4844;
}

body[data-mode="graphite"] .mobile-menu nav a,
body[data-mode="graphite"] .copy-fallback .secondary-action {
  color: #f3efe8;
}

body[data-mode="graphite"] .dialog-kicker,
body[data-mode="graphite"] .booking-dialog__heading p,
body[data-mode="graphite"] .form-field > span,
body[data-mode="graphite"] .schedule-field legend,
body[data-mode="graphite"] .copy-fallback label {
  color: #cbc6be;
}

body[data-mode="graphite"] .form-field input,
body[data-mode="graphite"] .form-field select,
body[data-mode="graphite"] .schedule-field input,
body[data-mode="graphite"] .schedule-field select,
body[data-mode="graphite"] .copy-fallback textarea {
  border-color: #5d5953;
  background: #242321;
  color: #f3efe8;
  color-scheme: dark;
}

body[data-mode="graphite"] .form-status {
  color: #d4b77f;
}

.booking-dialog__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  padding: 38px 30px 30px;
}

.booking-dialog__heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.booking-dialog__heading p {
  margin: 8px 0 0;
  color: #383735;
  font-size: 13px;
  line-height: 1.65;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 30px 34px;
}

.form-field,
.schedule-field {
  display: grid;
  gap: 9px;
}

.form-field > span,
.schedule-field legend,
.copy-fallback label {
  padding: 0;
  color: #383735;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.schedule-field input,
.schedule-field select,
.copy-fallback textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 13px;
  border: 1px solid #bdb8b0;
  background: #fffefa;
  color: #1c1b19;
}

.schedule-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  border: 0;
}

.schedule-field legend {
  grid-column: 1 / -1;
  margin-bottom: 9px;
}

.form-error,
.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  font-size: 13px;
}

.form-error {
  color: #9c2d26;
}

.form-status {
  color: #51422a;
}

.booking-submit {
  grid-column: 1 / -1;
  min-height: 54px;
  background: #b69762;
}

.copy-fallback {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #d1ccc5;
}

.copy-fallback[hidden] {
  display: none;
}

.copy-fallback textarea {
  min-height: 142px;
  padding: 12px 13px;
  resize: vertical;
}

.copy-fallback .secondary-action {
  justify-self: start;
  color: #1c1b19;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes panel-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes gallery-card-in {
  from { opacity: 0.2; transform: translateY(56px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .site-nav,
  .site-meta {
    gap: 16px;
  }

  .site-nav {
    font-size: 10px;
  }

  .gallery-heading {
    grid-template-columns: 0.4fr 1.6fr;
  }

  .gallery-heading > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 78px;
  }

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

  .site-nav,
  .site-meta > span,
  .header-booking {
    display: none;
  }

  .menu-trigger {
    display: inline-flex;
  }

  .hero,
  .owner,
  .booking-callout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 540px;
    padding: 42px 22px;
  }

  .hero-title {
    width: 100%;
  }

  .hero-ghost {
    top: 58%;
    font-size: clamp(92px, 24vw, 168px);
    opacity: 0.14;
  }

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

  .scroll-cue {
    display: none;
  }

  .section-pad,
  .booking-callout {
    padding: 78px 22px;
  }

  .section-heading,
  .process-heading,
  .gallery-heading {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .gallery-heading > p:last-child {
    grid-column: 1;
  }

  .service-trigger {
    grid-template-columns: 58px 1fr auto 34px;
    gap: 16px;
  }

  .service-panel__inner {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .service-select {
    grid-column: 2;
    justify-self: start;
  }

  .process-stage {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
  }

  .owner-copy {
    min-height: 600px;
    padding: 48px 22px 36px;
  }

  .studio-overlay {
    padding-right: 22px;
    padding-left: 22px;
  }

  .booking-callout__side {
    margin-top: 38px;
  }
}

@media (max-width: 820px) {
  .process {
    padding-bottom: 78px;
  }

  .process-stage {
    display: block;
  }

  .process-step {
    min-height: 0;
    padding: 42px 0;
    opacity: 1;
  }

  .process-step__mobile-image {
    display: block;
    width: 100%;
    max-height: 520px;
    margin-top: 28px;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.02);
  }

  .process-visual {
    display: none;
  }

  .gallery-viewport {
    width: calc(100% + 44px);
    margin-left: -22px;
    overflow: visible;
  }

  .gallery-rail {
    width: 100%;
    padding: 0 22px 12px;
    overflow-x: auto;
    scroll-padding-left: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    transform: none !important;
    will-change: auto;
  }

  .gallery-rail::-webkit-scrollbar {
    display: none;
  }

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--portrait {
    flex-basis: min(76vw, 430px);
    height: min(92vw, 520px);
    scroll-snap-align: start;
  }

  .gallery-card span {
    color: #f6f4ef;
    background: rgba(28, 27, 25, 0.7);
    transform: translateY(0);
  }
}

@media (max-width: 620px) {
  :root {
    --lb-page-gutter: 0px;
  }

  body {
    background: #1c1b19;
  }

  .site {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .site {
    margin-bottom: 0;
  }

  .scroll-progress {
    width: 100%;
  }

  .manifesto {
    min-height: 0;
  }

  .manifesto-track {
    padding: 24px 0 28px;
    font-size: clamp(58px, 20vw, 86px);
  }

  .manifesto-content {
    padding: 74px 16px 82px;
  }

  .manifesto-headline p:nth-child(2),
  .manifesto-headline .manifesto-accent {
    margin-left: 0;
  }

  .manifesto-headline .manifesto-accent {
    margin-top: 0.24em;
  }

  .manifesto-foot {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 72px;
  }

  .manifesto-metrics {
    gap: 10px;
  }

  .manifesto-metrics dd {
    letter-spacing: 0.08em;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-ghost {
    display: none;
  }

  .service-trigger {
    grid-template-columns: 42px 1fr 32px;
    gap: 12px;
    padding: 22px 0;
  }

  .service-price {
    grid-column: 2;
    grid-row: 2;
  }

  .service-toggle {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .service-panel__inner {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .process-step h3 {
    margin-top: 22px;
  }

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

  .owner-facts,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .studio-details {
    flex-direction: column;
  }

  .booking-dialog {
    width: 100%;
    max-height: 100%;
    margin: 0;
  }

  .booking-dialog__panel {
    min-height: 100vh;
    max-height: 100vh;
  }

  .booking-dialog__heading,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-dialog__heading {
    padding: 30px 20px 26px;
  }

  .booking-form {
    padding: 0 20px 30px;
  }

  .form-error,
  .form-status,
  .booking-submit,
  .copy-fallback {
    grid-column: 1;
  }

  .lightbox__panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .lightbox__topline {
    margin-right: -16px;
    margin-left: -16px;
  }

  .lightbox__figure {
    margin-top: 16px;
  }

  .lightbox__controls button {
    flex: 1;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding: 0 16px;
  }

  .site-meta {
    gap: 10px;
  }

  .hero-copy {
    min-height: 520px;
    padding: 34px 16px;
  }

  .hero-title {
    font-size: clamp(62px, 21vw, 78px);
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-action,
  .secondary-action,
  .text-action,
  .service-select {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-note {
    gap: 12px;
    font-size: 10px;
  }

  .hero-note::before {
    width: 36px;
  }

  .section-pad,
  .booking-callout {
    padding-right: 16px;
    padding-left: 16px;
  }

  .gallery-viewport {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .gallery-rail {
    padding-right: 16px;
    padding-left: 16px;
    scroll-padding-left: 16px;
  }

  .studio-overlay,
  .owner-copy,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .schedule-field {
    grid-template-columns: 1fr;
  }
}

@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 [data-reveal],
  .js:not(.is-ready) .hero-intro {
    opacity: 1;
    transform: none;
  }

  .js:not(.is-ready) .hero-media__reveal {
    transform: scaleX(0);
  }

  .hero-copy,
  .hero-media img,
  .hero-ghost,
  .gallery-rail,
  .manifesto-track {
    transform: none !important;
    will-change: auto;
  }
}

.hero-title__seo {
  display: block;
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--lb-graphite);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.seo-faq {
  border-top: 1px solid var(--lb-pearl);
  background: var(--lb-mist);
}

.seo-faq .section-heading > p:last-child {
  max-width: 42rem;
  color: var(--lb-graphite);
}

.seo-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4.5rem);
  background: var(--lb-pearl);
  border: 1px solid var(--lb-pearl);
}

.seo-faq__grid article {
  min-height: 17rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--lb-paper);
}

.seo-faq__grid h3 {
  margin: 0 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
}

.seo-faq__grid p {
  margin: 0;
  color: var(--lb-graphite);
}

@media (max-width: 780px) {
  .seo-faq__grid {
    grid-template-columns: 1fr;
  }

  .seo-faq__grid article {
    min-height: 0;
  }
}
