/* ─── Google Fonts are loaded via <link> in HTML ─── */

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── CSS Variables ──────────────────────────────── */
:root {
  --bg-primary:        #FFFFFF;
  --bg-secondary:      #F7F5F2;
  --surface:           #FCFBF9;
  --surface-elevated:  #F1EEE9;

  --text-primary:      #1D1D1D;
  --text-secondary:    #7A746E;
  --text-disabled:     #A8A097;

  --border:            #E5E0D9;
  --divider:           #D9D4CD;

  --primary:           #1D1D1D;
  --primary-hover:     #121212;
  --secondary:         #FFFFFF;
  --secondary-hover:   #F7F5F2;
  --nav-dark:          #0D0D0D;
}

/* ─── Base ───────────────────────────────────────── */
html {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
  /* Hide the native scrollbar for a clean edge; scrolling still works. */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* legacy Edge / IE */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;              /* Chromium, Safari */
}

body {
  overflow-x: hidden;
  overflow-x: clip;
}

/* ─── Loader ─────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.loader--exit {
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader--hidden {
  display: none;
}

/* Wordmark: starts stacked (letter-spacing: -0.55em), fades in, then spreads */
.loader__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--text-primary);
  letter-spacing: -0.55em;
  opacity: 0;
  animation:
    loaderFadeIn 0.5s ease-out forwards,
    loaderSpread 0.9s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes loaderSpread {
  from { letter-spacing: -0.55em; }
  to   { letter-spacing: 0.25em;  }
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  /* Zoom is NOT applied here — JS adds .hero__image--zoom at the right moment */
}

.hero__image--zoom {
  animation: heroZoom 10s cubic-bezier(0.2, 0, 0.4, 1) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  position: absolute;
  top: 24px;
  right: 32px;
  height: 26px;
  width: auto;
  margin: 0;
  z-index: 5;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 639px) {
  .hero__image {
    object-position: 55% center;
  }
}

/* ─── Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .loader__wordmark {
    animation: none;
    opacity: 1;
    letter-spacing: 0.25em;
  }

  .loader--exit {
    transition: none;
  }

  .hero__image--zoom {
    animation: none;
  }
}

/* ─── Navigation Trigger ─────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 600;
}

.site-nav__trigger {
  display: block;
  padding: 24px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.site-nav__trigger:hover {
  opacity: 0.5;
}

/* ─── Navigation Panel ───────────────────────────── */
.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 92vw;
  height: 100vh;
  z-index: 500;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.nav-panel--open {
  transform: translateX(0);
}

.nav-panel__links {
  width: 50%;
  height: 100%;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.nav-panel__preview {
  width: 50%;
  height: 100%;
  background-color: var(--nav-dark);
  position: relative;
  overflow: hidden;
}

.nav-panel__close {
  position: absolute;
  top: 28px;
  left: clamp(24px, 5vw, 64px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
}

.nav-panel__close:hover {
  opacity: 0.5;
}

/* ─── Nav Links ──────────────────────────────────── */
.nav-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-panel__item {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.nav-panel__item--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dim all links when list is in hover state */
.nav-panel__list--hovering .nav-panel__item {
  opacity: 0.25;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Restore and shift the hovered link */
.nav-panel__list--hovering .nav-panel__item--hovered {
  opacity: 1;
  transform: translateX(6px);
}

/* ─── Photography Preview ────────────────────────── */
.nav-panel__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.05);
  transform-origin: center;
  transition: opacity 0.6s ease;
}

.nav-panel__photo--active {
  opacity: 1;
}

/* ─── Nav Responsive ─────────────────────────────── */
@media (max-width: 1023px) {
  .nav-panel {
    width: 96vw;
  }

  .nav-panel__links {
    padding: 60px 40px;
  }

  .nav-panel__item {
    font-size: clamp(2rem, 3.4vw, 2.75rem);
  }
}

@media (max-width: 767px) {
  .nav-panel {
    width: 100vw;
    flex-direction: column;
  }

  .nav-panel__links {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding: clamp(96px, 14vh, 124px) 30px 44px;
    background-color: var(--bg-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .nav-panel__links::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 56%, rgba(255, 255, 255, 0.55) 100%);
    z-index: 0;
    pointer-events: none;
  }

  .nav-panel__links::after {
    content: 'Menu';
    position: absolute;
    left: 30px;
    bottom: 28px;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(29, 29, 29, 0.56);
  }

  .nav-panel__close {
    position: absolute;
    top: 28px;
    left: clamp(24px, 5vw, 64px);
    z-index: 2;
    font-size: 0.78rem;
  }

  .nav-panel__list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(12px, 2vh, 18px);
    width: min(100%, 360px);
  }

  .nav-panel__item {
    font-size: clamp(2.3rem, 9.5vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .nav-panel__list--hovering .nav-panel__item--hovered {
    transform: translateX(0);
  }

  .nav-panel__preview {
    display: none;
  }
}
/* ─── Nav Reduced Motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .nav-panel {
    transition: none;
  }

  .nav-panel__item {
    transition: none;
  }

  .nav-panel__list--hovering .nav-panel__item {
    transition: none;
  }

  .nav-panel__photo {
    transition: none;
  }
}

/* ─── Scroll Reveal (shared by all homepage-body sections) ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE BODY — Structured Editorial Grid
   ═══════════════════════════════════════════════════ */

/* ─── Layout primitives ──────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

/* ─── Typographic system ─────────────────────────── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

/* ─── Introduction band ──────────────────────────── */
.intro-band {
  padding-top: 140px;
  padding-bottom: 120px;
}

.intro-band__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 72px;
  align-items: center;
}

.intro-band__text .eyebrow {
  display: block;
  margin-bottom: 28px;
}

.intro-band__title {
  max-width: 15ch;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.intro-band__lede {
  max-width: 560px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

.intro-band__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 68vh;
  min-height: 460px;
  max-height: 660px;
  background-color: var(--surface-elevated);
}

.intro-band__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.4s ease;
  z-index: 1;
  will-change: opacity, transform;
}

.intro-band__slide.is-visible {
  opacity: 1;
}

.intro-band__slide.is-zooming {
  animation: introKenBurns 5s ease-out forwards;
}

@keyframes introKenBurns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.14); }
}

@media (prefers-reduced-motion: reduce) {
  .intro-band__slide.is-zooming {
    animation: none;
    transform: none;
  }
}

/* Booking CTA */
.booking-cta {
  padding: 0 0 120px;
  background-color: var(--bg-primary);
}

.booking-cta__inner {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(320px, 0.86fr) auto;
  gap: clamp(28px, 4.8vw, 72px);
  align-items: center;
  padding-top: 52px;
  border-top: 1px solid var(--border);
}

.booking-cta__media {
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--surface-elevated);
}

.booking-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.booking-cta__message h2 {
  max-width: 14ch;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--text-primary);
}

.booking-cta__message p {
  max-width: 54ch;
  margin-top: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.72;
  color: var(--text-secondary);
}

.booking-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  justify-self: end;
}

.booking-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 28px;
  border: 1px solid var(--text-primary);
  background-color: var(--text-primary);
  color: var(--secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.booking-cta__button:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.booking-cta__phone {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.booking-cta__phone:hover {
  color: var(--text-primary);
}

@media (max-width: 1023px) {
  .booking-cta {
    padding-bottom: 96px;
  }

  .booking-cta__inner {
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    align-items: center;
  }

  .booking-cta__media {
    grid-row: 1 / span 2;
  }

  .booking-cta__actions {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .booking-cta {
    padding-bottom: 84px;
  }

  .booking-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 36px;
  }

  .booking-cta__media {
    grid-row: auto;
    max-width: 220px;
    aspect-ratio: 5 / 4;
  }

  .booking-cta__message h2 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .booking-cta__message p {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .booking-cta__actions {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-self: start;
    gap: 16px;
  }

  .booking-cta__button {
    min-height: 46px;
    padding: 14px 24px;
  }
}

/* Philosophy Gallery */
.philosophy-gallery {
  position: relative;
  height: 440vh;
  min-height: 2700px;
  background-color: var(--bg-primary);
}

.philosophy-gallery__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
  padding: clamp(56px, 6vw, 88px) clamp(40px, 6vw, 96px);
  isolation: isolate;
}

.philosophy-gallery__copy-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(280px, 42vh, 430px);
  pointer-events: none;
}

.philosophy-gallery__copy {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  max-width: 420px;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: opacity, transform;
}

.philosophy-gallery__copy--active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.philosophy-gallery__copy h2 {
  max-width: 12ch;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.45rem, 4.35vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--text-primary);
}

.philosophy-gallery__copy p {
  max-width: 31ch;
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.98rem, 1.08vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.philosophy-gallery__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(62vh, 700px);
  min-height: 440px;
  background-color: var(--surface-elevated);
  overflow: hidden;
}

.philosophy-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.035) translate3d(0, 18px, 0);
  /* No CSS transition: opacity/transform are scrubbed per-frame by JS from
     the scroll position. A transition here would lag behind the scroll. */
  will-change: opacity, transform;
}

.philosophy-gallery__image--active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
}

.philosophy-gallery__progress {
  position: absolute;
  left: clamp(28px, 5vw, 72px);
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(26px, 4vw, 52px);
  z-index: 3;
  height: 1px;
  background-color: var(--border);
  overflow: hidden;
}

.philosophy-gallery__progress span {
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--text-primary);
  transform-origin: left center;
}

@media (max-width: 1023px) {
  .philosophy-gallery {
    height: 430vh;
    min-height: 2600px;
  }

  .philosophy-gallery__pin {
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 32px;
    min-height: 600px;
    padding: 88px 32px 56px;
  }

  .philosophy-gallery__copy-stack {
    height: clamp(260px, 38vh, 360px);
  }

  .philosophy-gallery__copy h2 {
    font-size: clamp(2.1rem, 4.9vw, 3.5rem);
  }

  .philosophy-gallery__stage {
    height: 56vh;
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .philosophy-gallery {
    height: 420vh;
    min-height: 2400px;
  }

  .philosophy-gallery__pin {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 24px;
    min-height: 560px;
    padding: 96px 24px 52px;
  }
.philosophy-gallery__copy-stack {
    width: 100%;
    height: clamp(178px, 27vh, 235px);
  }

  .philosophy-gallery__copy {
    max-width: none;
    transform: translate3d(0, 14px, 0);
  }

  .philosophy-gallery__copy--active {
    transform: translate3d(0, 0, 0);
  }

  .philosophy-gallery__copy h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.06;
  }

  .philosophy-gallery__copy p {
    max-width: 30ch;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .philosophy-gallery__stage {
    width: 100%;
    height: 42vh;
    min-height: 280px;
  }

  .philosophy-gallery__progress {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-gallery {
    height: auto;
    min-height: 0;
    padding: 88px 0;
  }

  .philosophy-gallery__pin {
    position: relative;
    height: auto;
    min-height: 0;
    display: block;
  }

  .philosophy-gallery__copy-stack {
    position: relative;
    inset: auto;
    display: grid;
    gap: 36px;
    height: auto;
    margin-bottom: 48px;
  }

  .philosophy-gallery__copy {
    position: relative;
    inset: auto;
    max-width: 620px;
    opacity: 1;
    transform: none;
  }

  .philosophy-gallery__stage {
    width: 100%;
    height: auto;
    min-height: 0;
    display: grid;
    gap: 24px;
    background: transparent;
  }

  .philosophy-gallery__image {
    position: relative;
    opacity: 1;
    transform: none;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .philosophy-gallery__progress {
    display: none;
  }
}

/* ─── Selected Collaborations ────────────────────── */
.companies {
  padding: 96px 0;
}

.companies__inner {
  text-align: center;
}

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

.companies__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 72px;
}

.companies__logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.companies__logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ─── Closing ────────────────────────────────────── */
.closing {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
}

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

.closing::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(29, 29, 29, 0.15), rgba(29, 29, 29, 0.55));
}

.closing__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.8);
}

.closing__overlay .eyebrow {
  margin-bottom: 28px;
}

.closing__text {
  max-width: 22ch;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.closing__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: background-color 0.4s ease, color 0.4s ease;
}

.closing__cta:hover {
  background-color: #FFFFFF;
  color: var(--text-primary);
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background-color: var(--primary);
  color: var(--secondary);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 88px;
  padding-bottom: 64px;
}

.footer__logo {
  width: 132px;
  margin-bottom: 24px;
}

.footer__tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-disabled);
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-disabled);
  margin-bottom: 24px;
}

.footer__nav,
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav a,
.footer__col a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--secondary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__nav a:hover,
.footer__col a:hover {
  opacity: 0.55;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-disabled);
}

/* ─── Responsive: Tablet ─────────────────────────── */
@media (max-width: 1023px) {
  .container { padding: 0 32px; }
  .section { padding: 96px 0; }

  .intro-band { padding-top: 112px; padding-bottom: 96px; }

  .intro-band__grid {
    gap: 48px;
  }

  .intro-band__figure {
    height: 56vh;
    min-height: 380px;
  }

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

/* ─── Responsive: Mobile ─────────────────────────── */
@media (max-width: 767px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }

  .intro-band { padding-top: 88px; padding-bottom: 72px; }

  .intro-band__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-band__figure {
    height: 80vw;
    min-height: 320px;
    max-height: 520px;
    order: 2;
  }

  .section-head { margin-bottom: 40px; }

  .companies__row {
    gap: 40px;
  }

  .closing {
    height: 80vh;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 64px;
  }

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

/* ═══════════════════════════════════════════════════
   INTERIOR PAGE HEADER
   ═══════════════════════════════════════════════════ */

/* ─── Interior page header ───────────────────────── */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 64px);
}

.page-header__brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.page-header__brand:hover {
  opacity: 0.55;
}

/* Override the global (hero-sized) trigger styling for the header bar. */
.page-header .site-nav__trigger {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  padding: 0;
}

/* ═══════════════════════════════════════════════════
   HERO OVERLAY (headline / copy / CTA)
   ═══════════════════════════════════════════════════ */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

.hero__text {
  max-width: 560px;
  margin-top: 16vh;
  margin-left: clamp(40px, 13.5vw, 216px);
  padding: 0 clamp(24px, 5vw, 64px);
  pointer-events: auto;
}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: 0.005em;
  color: var(--text-primary);
}

.hero__divider {
  display: block;
  width: 56px;
  height: 1px;
  margin: 30px 0 26px;
  background-color: var(--text-primary);
  opacity: 1;
}

.hero__short-copy-group {
  position: absolute;
  right: clamp(100px, 12vw, 220px);
  bottom: clamp(130px, 17vh, 200px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 42ch;
  pointer-events: auto;
}

.hero__short-copy {
  max-width: 42ch;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.85;
  text-align: left;
  color: #FFFFFF;
}

.hero__short-copy-group .hero__cta {
  align-self: flex-start;
  margin-top: 24px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  color: #FFFFFF;
  text-decoration: none;
}

.hero__cta-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 8px;
}

.hero__cta-arrow {
  display: inline-flex;
  color: #FFFFFF;
  transition: transform 0.35s ease;
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(10px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (max-width: 767px) {
  .hero__overlay {
    align-items: flex-start;
  }

  .hero__text {
    margin-top: clamp(132px, 24vh, 188px);
    margin-bottom: 0;
    margin-left: 0;
    max-width: none;
    padding-right: clamp(28px, 8vw, 44px);
  }

  .hero__headline {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .hero__divider {
    margin: clamp(66px, 8vh, 86px) 0 20px;
  }

  .hero__short-copy-group {
    right: clamp(40px, 11vw, 60px);
    bottom: clamp(92px, 14vh, 120px);
    left: clamp(24px, 5vw, 64px);
    max-width: 34ch;
  }

  .hero__short-copy {
    max-width: 34ch;
    font-size: 0.78rem;
    line-height: 1.7;
  }

  .hero__short-copy-group .hero__cta {
    margin-top: 18px;
  }
  .hero__cta {
    margin-top: 26px;
  }
}

/* ═══════════════════════════════════════════════════
   PRACTICE PAGE (services.html)
   ═══════════════════════════════════════════════════ */
.practice-page {
  padding-top: clamp(112px, 15vh, 168px);
  padding-bottom: clamp(56px, 8vw, 104px);
}

/* ─── Top section: intro + 01 + portrait ─────────── */
.practice-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(40px, 6vw, 96px);
  row-gap: clamp(48px, 7vw, 84px);
  align-items: start;
}

.practice-hero__intro  { grid-column: 1; grid-row: 1; }

.practice-hero__media {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--surface-elevated);
}

.practice-hero__media img,
.practice-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
}

.practice-hero__media:hover img,
.practice-row__media:hover img {
  transform: scale(1.04);
}

/* 01 sits staggered right of the intro's left edge, per the reference */
.practice-hero__service {
  grid-column: 1;
  grid-row: 2;
  margin-left: clamp(0px, 5vw, 72px);
}

/* ─── Intro typography ───────────────────────────── */
.practice-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.practice-eyebrow::before {
  content: '';
  width: 1px;
  height: 16px;
  background-color: var(--text-primary);
}

.practice-title {
  margin-top: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  color: var(--text-primary);
}

.practice-lede {
  margin-top: 28px;
  max-width: 30ch;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── CTA (underlined label + long arrow) ────────── */
.practice-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  color: var(--text-primary);
  text-decoration: none;
}

.practice-cta__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 7px;
}

.practice-cta__arrow {
  display: inline-flex;
  transition: transform 0.35s ease;
}

.practice-cta:hover .practice-cta__arrow {
  transform: translateX(8px);
}

/* ─── Service block ──────────────────────────────── */
.practice-service__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 6px;
}

.practice-service__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  color: var(--text-primary);
}

.practice-service__tag {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.practice-service__desc {
  margin-top: 18px;
  max-width: 38ch;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.practice-service__list {
  margin-top: 22px;
  list-style: none;
  columns: 2;
  column-gap: 36px;
}

.practice-service__list li {
  padding: 5px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-secondary);
  break-inside: avoid;
}

.practice-service__list li::before {
  content: '\2022';
  margin-right: 10px;
  color: var(--text-disabled);
}

/* ─── Alternating rows (02, 03) ──────────────────── */
.practice-row {
  display: grid;
  align-items: center;
  column-gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(56px, 8vw, 96px);
}

.practice-row--media-left {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
}

.practice-row--media-right {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
}

.practice-row__media {
  margin: 0;
  overflow: hidden;
  height: clamp(420px, 62vh, 620px);
  background-color: var(--surface-elevated);
}

.practice-row .practice-service {
  max-width: 520px;
}

.practice-row--media-left .practice-service {
  padding-right: clamp(24px, 6vw, 96px);
}

.practice-row--media-right .practice-service {
  justify-self: end;
  padding-left: clamp(24px, 6vw, 96px);
}

/* ─── Practice responsive ────────────────────────── */
@media (max-width: 900px) {
  .practice-hero {
    grid-template-columns: 1fr;
  }

  .practice-hero__intro,
  .practice-hero__media,
  .practice-hero__service {
    grid-column: 1;
    grid-row: auto;
  }

  .practice-hero__media {
    max-height: 72vh;
  }

  .practice-hero__service {
    margin-left: 0;
  }

  .practice-row--media-left,
  .practice-row--media-right {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .practice-row__media {
    order: -1;
    height: 56vw;
    min-height: 280px;
  }

  .practice-row .practice-service {
    max-width: none;
    padding: 0 24px;
    justify-self: start;
  }
}

@media (max-width: 639px) {
  .practice-page {
    padding-top: 100px;
  }

  .practice-service__list {
    columns: 1;
  }
}

/* ═══════════════════════════════════════════════════
   COLLECTION PAGE (commercial.html)
   ═══════════════════════════════════════════════════ */
.collection-page {
  background-color: var(--bg-secondary);
  padding: clamp(112px, 15vh, 168px) clamp(24px, 5vw, 64px) clamp(56px, 8vw, 96px);
}

/* ─── Hero: intro left, wide image right ─────────── */
.collection-hero {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  column-gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.collection-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  color: var(--text-primary);
}

.collection-lede {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.collection-hero__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 21 / 10;
  background-color: var(--surface-elevated);
}

.collection-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── Filter bar ─────────────────────────────────── */
.collection-filters {
  max-width: 1320px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  border-bottom: 1px solid var(--divider);
}

.collection-filter {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  padding: 0 0 14px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.collection-filter:hover {
  color: var(--text-primary);
}

.collection-filter--active {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

/* ─── Works grid ─────────────────────────────────── */
.collection-grid {
  max-width: 1320px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

.work {
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
}

.work__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--surface-elevated);
}

.work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
}

.work:hover .work__media img {
  transform: scale(1.04);
}

.work__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 22px;
}

.work__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--text-primary);
}

.work__year {
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-disabled);
}

.work__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-top: 18px;
  flex: 1;
}

.work__meta p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.work__size {
  display: block;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.work__size select {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.74rem;
  color: var(--text-primary);
  background: transparent;
  border: none;
  cursor: pointer;
}

.work__price {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  white-space: nowrap;
}

.work__acquire {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
}

.work__acquire svg {
  transition: transform 0.35s ease;
}

.work__acquire:hover svg {
  transform: translateX(8px);
}

.work__unavailable {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary, var(--text-primary));
  opacity: 0.6;
}

/* ─── Features band ──────────────────────────────── */
.collection-features {
  max-width: 1320px;
  margin: clamp(56px, 8vw, 88px) auto 0;
  padding: clamp(32px, 4vw, 44px) 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature + .feature {
  border-left: 1px solid var(--divider);
  padding-left: clamp(24px, 3vw, 40px);
}

.feature__icon {
  display: inline-flex;
  color: var(--text-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature__title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.feature__text {
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ─── Closing bar ────────────────────────────────── */
.collection-close {
  max-width: 1320px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.collection-close__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  color: var(--text-primary);
}

.collection-close__links {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
}

.collection-close__links .practice-cta {
  margin-top: 0;
}

/* ─── Collection responsive ──────────────────────── */
@media (max-width: 1023px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-features {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  /* Only keep the vertical rule between columns, not rows */
  .feature + .feature {
    border-left: none;
    padding-left: 0;
  }

  .feature:nth-child(even) {
    border-left: 1px solid var(--divider);
    padding-left: clamp(24px, 3vw, 40px);
  }
}

@media (max-width: 900px) {
  .collection-hero {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .collection-hero__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 639px) {
  .collection-page {
    padding-top: 100px;
  }

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

  .collection-grid.reveal {
    opacity: 1;
    transform: none;
  }

  .collection-features {
    grid-template-columns: 1fr;
  }

  .feature:nth-child(even) {
    border-left: none;
    padding-left: 0;
  }

  .collection-close {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================================================================
   ABOUT PAGE (about.html)
   ====================================================================== */
.about-body {
  background-color: #fbfaf7;
}

.about-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px clamp(28px, 4.5vw, 58px) 56px;
  color: var(--text-primary);
}

.about-hero,
.about-founder,
.about-principles,
.about-collabs,
.about-manifesto,
.about-final {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
  min-height: 560px;
}

.about-hero__copy {
  padding-left: clamp(0px, 2vw, 32px);
}

.about-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--text-primary);
}

.about-title,
.about-section-title,
.about-final h2,
.about-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--text-primary);
}

.about-title {
  margin-top: 26px;
  font-size: 4.05rem;
  line-height: 0.98;
}

.about-copy,
.about-founder__copy p,
.about-card p,
.about-card li,
.about-manifesto__copy p {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-primary);
}

.about-copy {
  max-width: 35ch;
  margin-top: 28px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  color: var(--text-primary);
  text-decoration: none;
}

.about-link span {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
}

.about-link svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.about-link:hover svg {
  transform: translateX(8px);
}

.about-hero__media,
.about-founder__portrait,
.about-principles__image,
.about-manifesto__media {
  margin: 0;
  overflow: hidden;
  background-color: var(--surface-elevated);
}

.about-hero__media {
  aspect-ratio: 1.38 / 1;
}

.about-hero__media img,
.about-founder__portrait img,
.about-principles__image img,
.about-manifesto__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.05);
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.92fr);
  gap: 78px;
  align-items: center;
  margin-top: 44px;
}

.about-founder__portrait {
  aspect-ratio: 1.06 / 1;
}

.about-founder__portrait img {
  object-position: center 38%;
}

.about-founder__copy {
  max-width: 520px;
}

.about-section-title {
  margin-top: 24px;
  font-size: 2.55rem;
  line-height: 1.03;
}

.about-rule {
  display: block;
  width: 42px;
  height: 1px;
  margin: 28px 0;
  background-color: var(--text-primary);
}

.about-founder__copy p + p,
.about-card p + p {
  margin-top: 14px;
}

.about-founder__copy .about-signature {
  display: block;
  width: auto;
  margin-top: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  opacity: 0.82;
}
.about-founder__role {
  margin-top: 22px !important;
  font-size: 0.72rem !important;
  line-height: 1.7 !important;
}

.about-principles {
  margin-top: 58px;
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.about-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.about-card__number {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.about-card h2 {
  margin-top: 14px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.about-card .about-rule {
  width: 36px;
  margin: 20px 0;
}

.about-card ul {
  list-style: none;
}

.about-card .about-link {
  margin-top: auto;
  padding-top: 24px;
}

.about-principles__image {
  align-self: end;
  aspect-ratio: 1.28 / 1;
}

.about-principles__image img {
  object-position: center;
}

.about-collabs {
  margin-top: 36px;
  padding: 28px 40px 34px;
  background-color: #f5f2ee;
}

.about-collabs__logos {
  margin-top: 24px;
  overflow: hidden;
}

.about-collabs__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 36px;
}

.about-collabs__track > :nth-child(n + 4) {
  display: none;
}

.about-collabs__logos img {
  max-width: 118px;
  max-height: 44px;
  width: auto;
  height: auto;
  justify-self: center;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  mix-blend-mode: multiply;
}

.about-collabs__logos span {
  justify-self: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
}

.about-manifesto {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: center;
  margin-top: 36px;
}

.about-manifesto__copy {
  padding-left: clamp(0px, 1vw, 20px);
}

.about-manifesto__copy p:not(.about-eyebrow) {
  max-width: 42ch;
}

.about-manifesto__media {
  aspect-ratio: 1.9 / 1;
}

.about-manifesto__media img {
  object-position: center 58%;
}

.about-final {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: center;
  margin-top: 34px;
  padding: 28px 36px;
  background-color: #f5f2ee;
}

.about-final h2 {
  font-size: 2.25rem;
  line-height: 1.02;
}

.about-final__links {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.about-final__links .about-link {
  width: 100%;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  padding-bottom: 4px;
}

@keyframes aboutLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 21px)); }
}

@media (prefers-reduced-motion: reduce) {
  .about-collabs__track {
    animation: none;
  }
}
@media (max-width: 1100px) {
  .about-hero,
  .about-founder,
  .about-manifesto,
  .about-final {
    gap: 48px;
  }

  .about-title {
    font-size: 3.4rem;
  }

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

@media (max-width: 820px) {
  .about-page {
    padding-top: 104px;
  }

  .about-hero,
  .about-founder,
  .about-manifesto,
  .about-final {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 0;
  }

  .about-hero__media {
    aspect-ratio: 1.2 / 1;
  }

  .about-founder__portrait {
    aspect-ratio: 4 / 5;
  }

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

  .about-principles__image,
  .about-manifesto__media {
    aspect-ratio: 1.25 / 1;
  }

  .about-collabs {
    overflow: hidden;
  }

  .about-collabs__logos {
    margin-left: -24px;
    margin-right: -24px;
  }

  .about-collabs__track {
    display: inline-flex;
    width: max-content;
    gap: 42px;
    padding: 0 24px;
    animation: aboutLogoMarquee 22s linear infinite;
  }

  .about-collabs__track > :nth-child(n + 4) {
    display: inline-flex;
  }

  .about-collabs__logos img,
  .about-collabs__logos span {
    flex: 0 0 auto;
    justify-self: auto;
  }

  .about-collabs__logos img {
    max-width: 108px;
  }

  .about-final__links {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .about-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-title {
    font-size: 3rem;
  }

  .about-section-title {
    font-size: 2.15rem;
  }

  .about-final,
  .about-collabs {
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ======================================================================
   CONTACT PAGE (contact.html)
   ====================================================================== */
.contact-body {
  background-color: #fbfaf7;
}

.contact-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px clamp(28px, 4.5vw, 58px) 56px;
  color: var(--text-primary);
}

.contact-hero,
.contact-grid,
.contact-paths,
.contact-studio {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.08fr);
  gap: clamp(48px, 6.5vw, 86px);
  align-items: center;
  min-height: 560px;
}

.contact-hero__copy {
  padding-left: clamp(0px, 2.2vw, 42px);
}

.contact-title,
.contact-card h2,
.contact-paths h2,
.contact-path h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--text-primary);
}

.contact-title {
  font-size: clamp(3.2rem, 6.4vw, 5.6rem);
  line-height: 0.98;
}

.contact-rule {
  display: block;
  width: 42px;
  height: 1px;
  margin: 28px 0;
  background-color: currentColor;
}

.contact-rule--light {
  color: #FFFFFF;
}

.contact-hero__copy p,
.contact-card p,
.contact-paths p,
.contact-path p,
.contact-studio__note p {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-primary);
}

.contact-hero__copy p {
  max-width: 34ch;
}

.contact-hero__media,
.contact-studio__media {
  margin: 0;
  overflow: hidden;
  background-color: var(--surface-elevated);
}

.contact-hero__media {
  aspect-ratio: 1.3 / 1;
}

.contact-hero__media img,
.contact-studio__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.05);
}

.contact-hero__media img {
  object-position: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
  margin-top: 24px;
}

.contact-card {
  min-height: 560px;
  padding: clamp(38px, 5vw, 70px);
}

.contact-card--dark {
  background-color: #0d0d0d;
  color: #FFFFFF;
}

.contact-card--dark h2,
.contact-card--dark p {
  color: #FFFFFF;
}

.contact-card--form {
  background-color: #f5f2ee;
}

.contact-card h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

.contact-method {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 32px;
  gap: 26px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  text-decoration: none;
}

.contact-method:first-of-type {
  margin-top: 12px;
}

.contact-method__icon,
.contact-method__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.contact-method__body span,
.contact-eyebrow,
.contact-form label span,
.contact-form__section span,
.contact-link span,
.contact-path__number {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-method__body span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.contact-method__body strong {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: #FFFFFF;
}

.contact-method__arrow,
.contact-link svg,
.contact-submit svg {
  transition: transform 0.3s ease;
}

.contact-method:hover .contact-method__arrow,
.contact-link:hover svg,
.contact-submit:hover svg {
  transform: translateX(8px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 30px;
  margin-top: 34px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__steps {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 2px;
}

.contact-form__step {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--text-disabled);
}

.contact-form__step--active {
  color: var(--text-primary);
}

.contact-form__phase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 30px;
}

.contact-form__phase[hidden] {
  display: none;
}

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

.contact-form__section {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.contact-form__section--details {
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(29, 29, 29, 0.18);
}

.contact-form__section p {
  max-width: 440px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.form-success__icon {
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-form__section--success {
  justify-items: start;
  padding: 32px 0 8px;
  animation: form-success-in 0.5s ease;
}

.contact-form__section--success h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
}

@keyframes form-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-form__error {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 14px 18px;
  border: 1px solid var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.58);
  background: transparent;
  border-radius: 0;
  padding: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-primary);
  outline: none;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--text-primary);
}

.contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 4px;
}

.contact-form__actions--split {
  justify-content: space-between;
}

.contact-form__back {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 0 0 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-primary);
  cursor: pointer;
}

.contact-submit {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 4px;
  padding: 17px 28px;
  border: 0;
  background-color: #000000;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-paths {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(240px, 0.76fr) minmax(260px, 0.9fr);
  gap: clamp(34px, 5vw, 72px);
  margin-top: 24px;
  padding: clamp(34px, 5vw, 58px) clamp(32px, 5vw, 62px);
  background-color: #f5f2ee;
}

.contact-eyebrow {
  color: var(--text-primary);
}

.contact-paths h2 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.contact-paths__intro p:not(.contact-eyebrow),
.contact-path p {
  margin-top: 20px;
  max-width: 32ch;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: var(--text-primary);
  text-decoration: none;
}

.contact-link span {
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
}

.contact-path {
  padding-left: clamp(0px, 3vw, 36px);
}

.contact-path + .contact-path {
  border-left: 1px solid rgba(29, 29, 29, 0.24);
}

.contact-path h3 {
  margin-top: 22px;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 1.08;
}

.contact-path .contact-rule {
  width: 34px;
  margin: 24px 0;
}

.contact-studio {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1.24fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
  margin-top: 32px;
}

.contact-studio__note {
  padding-left: clamp(0px, 1.5vw, 28px);
}

.contact-studio__note p:not(.contact-eyebrow) {
  max-width: 32ch;
}

.contact-studio__note p + p {
  margin-top: 18px;
}

.contact-studio__note .contact-signature {
  display: block;
  width: auto;
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  opacity: 0.82;
}
.contact-role {
  margin-top: 22px !important;
  font-size: 0.72rem !important;
  line-height: 1.7 !important;
}

.contact-studio__media {
  aspect-ratio: 1.95 / 1;
}

.contact-studio__media img {
  object-position: center 58%;
}

@media (max-width: 1040px) {
  .contact-hero,
  .contact-grid,
  .contact-studio {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: 0;
  }

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

  .contact-path,
  .contact-path + .contact-path {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .contact-page {
    padding-top: 104px;
  }

  .contact-card {
    min-height: 0;
    padding: 34px 28px;
  }

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

  .contact-hero__media,
  .contact-studio__media {
    aspect-ratio: 1.18 / 1;
  }

  .contact-paths {
    padding: 34px 28px;
  }
}

@media (max-width: 520px) {
  .contact-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-method {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-method__arrow {
    display: none;
  }

  .contact-submit {
    width: 100%;
    justify-content: space-between;
  }
}

/* ======================================================================
   BOOKING MODAL
   ====================================================================== */
.booking-modal-lock {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 58px);
  color: var(--text-primary);
}

.booking-modal--open {
  display: flex;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
  height: min(92vh, 980px);
  max-height: min(92vh, 980px);
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-radius: 12px;
  background-color: #fbfaf7;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  outline: none;
}

.booking-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 4;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.booking-modal__close span {
  position: absolute;
  top: 15px;
  left: 5px;
  width: 24px;
  height: 1px;
  background-color: currentColor;
}

.booking-modal__close span:first-child {
  transform: rotate(45deg);
}

.booking-modal__close span:last-child {
  transform: rotate(-45deg);
}

.booking-modal__visual {
  position: relative;
  min-height: 0;
  height: 100%;
  padding: 54px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.36)), url("../images/art/studio art/STUDIO ART (FB)/DINEO 1.jpeg") center / cover;
}

.booking-modal__brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}

.booking-modal__brand span,
.booking-modal__visual-copy small,
.booking-modal__eyebrow,
.booking-modal__field > span,
.booking-modal__services legend,
.booking-modal__footer button,
.booking-modal__steps button {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.booking-modal__brand span {
  display: block;
  margin-top: 12px;
}

.booking-modal__visual-copy p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  font-weight: 400;
  line-height: 1.02;
}

.booking-modal__visual-copy > span {
  display: block;
  width: 42px;
  height: 1px;
  margin: 30px 0 24px;
  background-color: #FFFFFF;
}

.booking-modal__panel {
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(54px, 6vw, 72px) clamp(54px, 6vw, 86px) 44px;
}

.booking-modal__intro {
  max-width: 560px;
  margin-left: clamp(0px, 5vw, 88px);
}

.booking-modal__eyebrow {
  color: var(--text-primary);
}

.booking-modal__intro h2 {
  margin-top: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--text-primary);
}

.booking-modal__intro p:not(.booking-modal__eyebrow) {
  margin-top: 18px;
  max-width: 38ch;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: var(--text-primary);
}

.booking-modal__rule {
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 40px;
  background-color: rgba(29, 29, 29, 0.36);
}

.booking-modal__content {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  margin-top: 40px;
}

.booking-modal__steps {
  list-style: none;
  border-right: 1px solid rgba(29, 29, 29, 0.14);
  padding-right: 34px;
}

.booking-modal__steps li {
  position: relative;
  min-height: 104px;
  color: rgba(29, 29, 29, 0.7);
}

.booking-modal__steps li::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 70px;
  bottom: -34px;
  width: 1px;
  background-color: rgba(29, 29, 29, 0.18);
}

.booking-modal__steps li:last-child::after {
  content: none;
}

.booking-modal__steps button {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 22px;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-modal__steps span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ece9e4;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.booking-modal__steps .is-active span,
.booking-modal__steps .is-complete span {
  background-color: #000000;
  color: #FFFFFF;
}

.booking-modal__steps strong {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.booking-modal__form {
  display: grid;
  gap: 34px;
}

.booking-modal__panels {
  min-width: 0;
}

.booking-modal__screen {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-modal__screen.is-active {
  display: grid;
  gap: 34px;
}

.booking-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 28px;
}

.booking-modal__field,
.booking-modal__services {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-modal__field {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.booking-modal__field input,
.booking-modal__field select,
.booking-modal__field textarea {
  width: 100%;
  border: 1px solid rgba(29, 29, 29, 0.2);
  border-radius: 4px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  outline: none;
}

.booking-modal__field input,
.booking-modal__field select {
  height: 48px;
  padding: 0 18px;
}

.booking-modal__field textarea {
  min-height: 112px;
  padding: 16px 18px 28px;
  resize: vertical;
}

.booking-modal__field input:focus,
.booking-modal__field select:focus,
.booking-modal__field textarea:focus {
  border-color: rgba(29, 29, 29, 0.6);
}

.booking-modal__field small {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.booking-modal__field--wide {
  grid-column: 1 / -1;
}

.booking-modal__services legend {
  margin-bottom: 8px;
}

.booking-modal__services p {
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.booking-modal__services label {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(29, 29, 29, 0.16);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-primary);
}

.booking-modal__services label + label {
  margin-top: -1px;
}

.booking-modal__services input {
  width: 14px;
  height: 14px;
  accent-color: #000000;
}

.booking-modal__services.has-error label {
  border-color: rgba(120, 0, 0, 0.55);
}

.booking-modal__error {
  display: none;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: #7A1D1D;
}

.booking-modal__error.is-visible {
  display: block;
}

.booking-modal__review h3 {
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
}

.booking-modal__success {
  animation: form-success-in 0.5s ease;
}

.booking-modal__success .form-success__icon {
  margin-bottom: 18px;
}

.booking-modal__review dl {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(29, 29, 29, 0.16);
}

.booking-modal__review div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.12);
}

.booking-modal__review dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.booking-modal__review dd {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-primary);
}

.booking-modal__confirm {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-primary);
}

.booking-modal__confirm input {
  margin-top: 4px;
  accent-color: #000000;
}

.booking-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 10px;
  padding-top: 34px;
  border-top: 1px solid rgba(29, 29, 29, 0.14);
}

.booking-modal__footer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-primary);
}

.booking-modal__footer p span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  border: 1px solid rgba(29, 29, 29, 0.18);
  border-radius: 50%;
  color: var(--text-secondary);
}

.booking-modal__footer p em {
  font-style: normal;
}

.booking-modal__footer strong {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-modal__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.booking-modal__footer button {
  min-width: 210px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  border: 0;
  background-color: #000000;
  color: #FFFFFF;
  cursor: pointer;
}

.booking-modal__back {
  min-width: auto !important;
  padding: 0 18px !important;
  border: 1px solid rgba(29, 29, 29, 0.18) !important;
  background-color: transparent !important;
  color: var(--text-primary) !important;
}

.booking-modal__back:disabled {
  opacity: 0.35;
  cursor: default;
}

.booking-modal__footer button svg {
  transition: transform 0.3s ease;
}

.booking-modal__footer button:hover svg {
  transform: translateX(8px);
}

@media (max-width: 1120px) {
  .booking-modal__dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .booking-modal__visual {
    display: none;
  }

  .booking-modal__panel {
    min-height: 0;
  }

  .booking-modal__intro {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .booking-modal {
    padding: 12px;
  }

  .booking-modal__dialog {
    border-radius: 8px;
  }

  .booking-modal__panel {
    padding: 58px 24px 28px;
  }

  .booking-modal__content {
    grid-template-columns: 1fr;
  }

  .booking-modal__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding-right: 0;
    border-right: 0;
  }

  .booking-modal__steps li {
    min-height: 0;
    justify-items: center;
    text-align: center;
  }

  .booking-modal__steps li::after {
    content: none;
  }

  .booking-modal__steps button {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
  }

  .booking-modal__steps strong {
    font-size: 0.68rem;
  }

  .booking-modal__grid {
    grid-template-columns: 1fr;
  }

  .booking-modal__review div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-modal__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-modal__actions {
    width: 100%;
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .booking-modal__footer button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .booking-modal__steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }

  .booking-modal__intro h2 {
    font-size: 2.5rem;
  }
}

/* Collection cart journey */
.collection-cart-button {
  margin-left: auto;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-cart-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0;
}

.collection-cart-lock {
  overflow: hidden;
}

.collection-cart {
  position: fixed;
  inset: 0;
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.collection-cart--open {
  opacity: 1;
  pointer-events: auto;
}

.collection-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.58);
}

.collection-cart__dialog {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 620px);
  height: 100%;
  overflow-y: auto;
  background: #fbfaf7;
  color: var(--text-primary);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(24px);
  transition: transform 0.35s cubic-bezier(0.2, 0, 0.2, 1);
}

.collection-cart--open .collection-cart__dialog {
  transform: translateX(0);
}

.collection-cart__header,
.collection-cart__footer {
  position: sticky;
  z-index: 2;
  background: #fbfaf7;
}

.collection-cart__header {
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(24px, 5vw, 44px) 24px;
  border-bottom: 1px solid var(--divider);
}

.collection-cart__eyebrow,
.collection-cart__field span,
.collection-cart__payment strong,
.collection-cart__footer button,
.collection-cart__empty button,
.collection-cart__item-meta,
.collection-cart__review dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-cart__eyebrow {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.collection-cart__header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 300;
  line-height: 1;
}

.collection-cart__header p:not(.collection-cart__eyebrow) {
  max-width: 360px;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.collection-cart__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.collection-cart__body {
  padding: 28px clamp(24px, 5vw, 44px) 132px;
}

.collection-cart__items {
  display: grid;
  gap: 16px;
}

.collection-cart__item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}

.collection-cart__item img {
  width: 96px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-elevated);
}

.collection-cart__item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.05;
}

.collection-cart__item-meta {
  margin-top: 6px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.collection-cart__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.collection-cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
}

.collection-cart__qty button,
.collection-cart__remove {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.collection-cart__qty button {
  width: 34px;
  height: 34px;
  font-size: 1rem;
}

.collection-cart__qty span {
  min-width: 26px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
}

.collection-cart__remove {
  padding: 0;
  border-bottom: 1px solid currentColor;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-cart__price {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  white-space: nowrap;
}

.collection-cart__empty {
  padding: 34px;
  border: 1px solid var(--divider);
  text-align: center;
}

.collection-cart__empty p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.collection-cart__empty button {
  margin-top: 18px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.collection-cart__section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--divider);
}

.collection-cart__section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.05;
}

.collection-cart__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.collection-cart__field {
  display: grid;
  gap: 8px;
}

.collection-cart__field--wide {
  grid-column: 1 / -1;
}

.collection-cart__field span {
  color: var(--text-primary);
}

.collection-cart__field input,
.collection-cart__field select,
.collection-cart__field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.48);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  padding: 13px 14px;
}

.collection-cart__field textarea {
  min-height: 96px;
  resize: vertical;
}

.collection-cart__payment {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--text-primary);
  background: #fff;
}

.collection-cart__payment strong {
  display: block;
  margin-bottom: 8px;
}

.collection-cart__payment p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

.collection-cart__review {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.collection-cart__review div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}

.collection-cart__review dt {
  color: var(--text-secondary);
}

.collection-cart__review dd {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
}

.collection-cart__footer {
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(24px, 5vw, 44px);
  border-top: 1px solid var(--divider);
  box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.06);
}

.collection-cart__total span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.collection-cart__total strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.collection-cart__footer button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--text-primary);
  background: var(--text-primary);
  color: #fff;
  cursor: pointer;
}

.collection-cart__footer button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

@media (max-width: 639px) {
  .collection-cart-button {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .collection-cart__header {
    padding-top: 28px;
  }

  .collection-cart__item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .collection-cart__item img {
    width: 78px;
  }

  .collection-cart__grid,
  .collection-cart__review div {
    grid-template-columns: 1fr;
  }

  .collection-cart__footer {
    align-items: stretch;
    flex-direction: column;
  }
}
/* Collection artwork series controls */
.work__media--series {
  position: relative;
}

.work__series-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
}

.work__series-nav {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.36);
  color: #fff;
  font: 300 25px/1 serif;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.work__series-nav--prev {
  transform: translateX(-4px);
}

.work__media--series:hover .work__series-nav,
.work__series-nav:focus-visible {
  opacity: 1;
  transform: translateX(0);
}

.work__series-nav:hover,
.work__series-nav:focus-visible {
  background: rgba(13, 13, 13, 0.62);
  outline: none;
}

.work__series-dots {
  position: absolute;
  bottom: 13px;
  left: 50%;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.work__series-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(13, 13, 13, 0.12);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.work__series-dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

@media (hover: none), (max-width: 768px) {
  .work__series-nav {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════
   COLLECTION LIGHTBOX (view full-size artwork)
   ═══════════════════════════════════════════════════ */
.work__media {
  cursor: zoom-in;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  background-color: rgba(13, 13, 13, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.lightbox__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 100%;
  max-height: 100%;
  outline: none;
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 0;
}

.lightbox__image {
  display: block;
  max-width: min(92vw, 1400px);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background-color: var(--nav-dark);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.lightbox__image.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox__caption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px 20px;
  text-align: center;
  color: #FFFFFF;
}

.lightbox__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.lightbox__meta {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.lightbox__full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 5px;
  transition: opacity 0.3s ease;
}

.lightbox__full:hover {
  opacity: 0.6;
}

/* Controls */
.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  opacity: 0.55;
}

.lightbox__close {
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox__nav--prev { left: -8px; }
.lightbox__nav--next { right: -8px; }

.lightbox__nav[hidden] {
  display: none;
}

@media (max-width: 767px) {
  .lightbox {
    padding: 16px;
  }

  .lightbox__image {
    max-width: 94vw;
    max-height: 66vh;
  }

  .lightbox__nav {
    top: auto;
    bottom: -6px;
    transform: none;
    width: 48px;
    height: 48px;
  }

  .lightbox__nav--prev { left: 30%; }
  .lightbox__nav--next { right: 30%; }

  .lightbox__caption {
    padding-bottom: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox__image {
    transition: opacity 0.2s ease;
  }
  .lightbox__image {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════
   HERO SCROLL SEQUENCE (cinematic scroll-driven exit)
   ═══════════════════════════════════════════════════ */
/* The runway: the hero pins for 160vh of scroll while JS scrubs the
   text exit, zoom, and blur from progress through this wrapper. */
.hero-scroll {
  position: relative;
  height: 260vh;
}

.hero-scroll .hero {
  position: sticky;
  top: 0;
}

.hero-scroll .hero__image {
  will-change: transform, filter;
}

.hero-scroll .hero__text {
  will-change: transform, opacity;
}

/* Everything after the hero rides 100vh up over the pinned image, so the
   page appears to slide up and cover the photograph. The hero un-sticks at
   the exact scroll position where the cover completes — no jump. */
.page-flow {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
  background-color: var(--bg-primary);
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll {
    height: auto;
  }

  .hero-scroll .hero {
    position: relative;
  }

  .page-flow {
    margin-top: 0;
  }
}
