:root {
  --ivory: #F8F4EE;
  --champagne: #D8C8B8;
  --espresso: #211C19;
  --brass: #B59A72;
  --taupe: #B7A394;
  --mocha: #6F5C4E;
  --nude: #E8DDD2;
  --cream: #FBF8F3;
  --brown: #3A312C;
  --line: rgba(33, 28, 25, 0.12);
  --line-strong: rgba(33, 28, 25, 0.22);
  --ivory-rgb: 248, 244, 238;
  --espresso-rgb: 33, 28, 25;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 5.15rem;
  --page: min(92vw, 1380px);
}

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

html {
  scroll-behavior: auto;
  background: var(--ivory);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.has-cursor { cursor: none; }
body.is-locked { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }

:focus { outline: none; }
:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--espresso);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  text-transform: uppercase;
}
.skip-link:focus { top: 1rem; }

/* ——— Type ——— */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mocha);
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(3.1rem, 7.4vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
}

.display em { font-style: italic; font-weight: 400; }

.headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}

.headline em { font-style: italic; }

.lede {
  margin: 1.25rem 0 0;
  color: var(--mocha);
  font-size: 1.02rem;
  font-weight: 400;
  max-width: 28rem;
}

.script {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.7rem;
  padding: 0 1.25rem;
  border: 1px solid var(--espresso);
  background: transparent;
  color: var(--espresso);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: background 0.55s var(--ease), color 0.55s var(--ease), border-color 0.55s var(--ease), transform 0.55s var(--ease);
}
.btn .arrow { display: inline-block; transition: transform 0.55s var(--ease); }
.btn:hover { background: var(--espresso); color: var(--ivory); }
.btn:hover .arrow { transform: translateX(4px); }
span.btn.is-pending {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.btn-fill {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--espresso);
}
.btn-fill:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--ivory);
}

.btn-light {
  border-color: rgba(248, 244, 238, 0.55);
  color: var(--ivory);
}
.btn-light:hover {
  background: var(--ivory);
  color: var(--espresso);
}

.btn-text {
  border: 0;
  padding: 0;
  min-height: 0;
  background: none;
  gap: 0.55rem;
}
.btn-text:hover { background: none; color: var(--espresso); }

/* ——— Media ——— */
.media {
  position: relative;
  overflow: hidden;
  background: var(--nude);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease), filter 1s var(--ease);
  filter: saturate(0.92) contrast(0.98);
}
.media:hover img { transform: scale(1.07); }

.reveal {
  overflow: hidden;
}
.reveal-inner {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 1.05s var(--ease), opacity 1.05s var(--ease);
}
.is-in .reveal-inner,
.reveal.is-in .reveal-inner {
  transform: none;
  opacity: 1;
}

.img-reveal { overflow: hidden; }
.img-reveal img {
  clip-path: inset(12% 12% 12% 12%);
  transform: scale(1.08);
  transition: clip-path 1.2s var(--ease), transform 1.4s var(--ease);
}
.img-reveal.is-in img {
  clip-path: inset(0 0 0 0);
  transform: scale(1.02);
}

/* ——— Header ——— */
.site-header {
  --glass: rgba(255, 251, 246, 0.08);
  --glass-edge: rgba(255, 255, 255, 0.18);
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7vw;
  color: var(--espresso);
  background: var(--glass);
  border-bottom: 1px solid var(--glass-edge);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
  transition:
    background 0.55s var(--ease),
    border-color 0.55s var(--ease),
    backdrop-filter 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1.8rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.08) 0%, transparent 100%);
}
.site-header.is-scrolled {
  --glass: rgba(255, 251, 246, 0.18);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}
.site-header.is-over-dark { color: var(--espresso); }
.site-header.is-menu-open {
  background: rgba(255, 251, 246, 0.28);
  border-bottom-color: var(--glass-edge);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}
.site-header.is-menu-open::after { opacity: 0; }

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  line-height: 1;
  width: max-content;
  grid-column: 1;
}
.brand-mark {
  width: 7px;
  height: 7px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease);
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.brand-by {
  margin-top: 0.32rem;
  font-size: 0.56rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  transition: color 0.45s var(--ease);
}
.brand:hover .brand-mark { background: var(--brass); }
.brand:hover .brand-by { color: var(--espresso); }
.site-header.is-over-dark .brand-by { color: var(--brass); }
.site-header.is-over-dark .brand-mark { border-color: var(--brass); }
.site-header.is-over-dark .brand:hover .brand-mark { background: var(--brass); }
.site-header.is-over-dark .brand:hover .brand-by { color: var(--espresso); }

.site-nav {
  display: none;
  align-items: center;
  justify-self: center;
  grid-column: 2;
  gap: 1.7rem;
}
.site-nav a {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  position: relative;
  padding: 0.35rem 0;
  color: var(--mocha);
  transition: color 0.45s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.5s var(--ease);
}
.site-nav a:hover { color: var(--espresso); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--espresso); }

.header-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.enquire-link {
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.55rem;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 0 1.15rem;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.enquire-link .arrow { display: inline-block; transition: transform 0.5s var(--ease); }
.enquire-link:hover {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}
.enquire-link:hover .arrow { transform: translateX(4px); }
.site-header.is-scrolled:not(.is-menu-open) .enquire-link {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}
.site-header.is-scrolled:not(.is-menu-open) .enquire-link:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--espresso);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  flex-shrink: 0;
  border: 1px solid rgba(33, 28, 25, 0.28);
  background: transparent;
  color: var(--espresso);
}
.menu-toggle-label { display: none; }
.menu-toggle-bars {
  position: relative;
  width: 1.05rem;
  height: 0.55rem;
  flex-shrink: 0;
}
.menu-toggle-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.5s var(--ease), top 0.5s var(--ease);
}
.menu-toggle-bars span:first-child { top: 0; }
.menu-toggle-bars span:last-child { top: 100%; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:first-child {
  top: 50%;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:last-child {
  top: 50%;
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--ivory);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: auto;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-frame {
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(181, 154, 114, 0.35);
  pointer-events: none;
}
.menu-watermark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-family: "Great Vibes", cursive;
  font-size: clamp(6rem, 22vw, 14rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.1);
  pointer-events: none;
  user-select: none;
}
.menu-layout {
  position: relative;
  z-index: 1;
  width: min(92vw, 38rem);
  padding: calc(var(--nav-h) + 1.5rem) 0 3.5rem;
  text-align: center;
}
.menu-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}
.menu-overlay nav {
  display: grid;
  gap: 0.15rem;
}
.menu-overlay nav a {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  align-items: baseline;
  justify-content: center;
  gap: 0.85rem;
  width: min(18rem, 78vw);
  margin-inline: auto;
  text-align: left;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.18;
  opacity: 0;
  transform: translateY(18px);
}
.menu-overlay.is-open nav a {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), color 0.45s var(--ease);
  transition-delay: calc(0.08s + var(--i, 0) * 0.055s);
}
.menu-num {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--brass);
  transform: translateY(-0.35em);
}
.menu-overlay nav a:hover,
.menu-overlay nav a[aria-current="page"] {
  font-style: italic;
  color: var(--mocha);
}
.menu-foot {
  margin-top: 2.4rem;
  display: grid;
  justify-items: center;
  gap: 1.3rem;
}
.menu-foot p {
  margin: 0;
  padding: 0 1.25rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 1.7;
}
.menu-foot .btn-fill {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--ivory);
}
.menu-foot .btn-fill:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--espresso);
}

/* ——— Hero ——— */
.hero {
  --hero-duration: 7.5s;
  position: relative;
  min-height: 100vh;
  display: grid;
  background: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 2.15rem 7vw 6.2rem;
  max-width: 42rem;
}
.hero-copy-main {
  position: relative;
}
.hero-watermark {
  display: none;
  position: absolute;
  left: -0.06em;
  top: -0.28em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5.8rem, 11vw, 9.6rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.14);
  pointer-events: none;
  user-select: none;
}
.hero-kicker,
.hero-place,
.hero .lede,
.hero-actions {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  margin: 0;
  padding: 0.12rem 0;
}
.hero-kicker-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-kicker .eyebrow { color: var(--brass); }
.hero-diamond {
  width: 7px;
  height: 7px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hero-kicker-line {
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.hero-place {
  margin: 1.05rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}
.hero .display {
  position: relative;
  margin-top: 1.55rem;
}
.hero .display .line {
  display: block;
  position: relative;
  z-index: 1;
}
.hero .display em {
  font-style: italic;
  font-weight: 400;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.15));
  background-size: 4.4rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.hero .lede {
  margin-top: 1.55rem;
  max-width: 26rem;
  font-size: 1.04rem;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 2.15rem;
}
.hero-actions-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.85rem;
}
.hero-actions .btn-fill {
  min-height: 3rem;
  padding: 0 1.45rem;
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--ivory);
  letter-spacing: 0.22em;
}
.hero-actions .btn-fill:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--espresso);
  transform: translateY(-1px);
}
.hero-actions .btn-text {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--mocha);
}
.hero-actions .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.hero-actions .btn-text:hover { color: var(--espresso); }
.hero-actions .btn-text:hover::after { right: 0; }

.hero-stage {
  position: relative;
  min-height: 64vh;
  order: -1;
  overflow: hidden;
  background: #d9cfc4;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1.55s var(--ease);
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroKen var(--hero-duration) ease-out forwards;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 12%;
  filter: saturate(1.06) contrast(1.05) brightness(0.97);
  transform: scale(1.04);
  will-change: transform;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(33, 28, 25, 0.22) 0%, transparent 26%, transparent 62%, rgba(33, 28, 25, 0.48) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero-frame {
  position: absolute;
  inset: 0.95rem;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(216, 200, 184, 0.42);
  box-shadow: inset 0 0 0 1px rgba(33, 28, 25, 0.08);
}
.hero-corners {
  position: absolute;
  inset: 0.95rem;
  z-index: 4;
  pointer-events: none;
}
.hero-corners span {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  border-color: rgba(216, 200, 184, 0.92);
  border-style: solid;
}
.hero-corners span:nth-child(1) { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.hero-corners span:nth-child(2) { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.hero-corners span:nth-child(3) { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.hero-corners span:nth-child(4) { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.hero-side {
  display: none;
  position: absolute;
  right: 2.05rem;
  top: 50%;
  z-index: 5;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.88);
}
.hero-side span { display: inline-block; }
.hero-side i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-block: 0.95rem;
  border: 1px solid rgba(216, 200, 184, 0.9);
  transform: rotate(45deg);
}

.hero-caption {
  position: absolute;
  left: 1.55rem;
  bottom: 1.55rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  max-width: calc(100% - 5.8rem);
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-caption-num { color: var(--champagne); font-variant-numeric: tabular-nums; }
.hero-caption-rule {
  width: 1.8rem;
  height: 1px;
  background: rgba(216, 200, 184, 0.7);
}

.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
  margin-top: 2.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mocha);
}
.hero-index {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-index [data-hero-count] {
  color: var(--espresso);
  font-variant-numeric: tabular-nums;
}
.hero-foot .rule {
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--line-strong));
}
.hero-pager {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-pager button {
  position: relative;
  width: 3.05rem;
  height: 1.2rem;
  padding: 0;
}
.hero-pager button::before,
.hero-pager button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
.hero-pager button::before { background: var(--line-strong); }
.hero-pager button::after {
  right: auto;
  width: 0;
  background: var(--brass);
}
.hero-pager button[aria-selected="true"]::before { background: rgba(181, 154, 114, 0.38); }
.hero-pager button.is-filling::after {
  animation: heroFill var(--hero-duration) linear forwards;
}
.hero-pager button:hover::before { background: var(--brass); }

.scroll-hint {
  position: absolute;
  right: 1.7rem;
  bottom: 1.55rem;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  color: rgba(248, 244, 238, 0.92);
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.scroll-stem {
  position: relative;
  width: 1px;
  height: 3.1rem;
  background: linear-gradient(to bottom, rgba(216, 200, 184, 0.15), rgba(216, 200, 184, 0.85));
}
.scroll-stem i {
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--champagne);
  background: var(--champagne);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollDiamond 2.4s var(--ease) infinite;
}

@keyframes heroKen {
  from { transform: scale(1); }
  to { transform: scale(1.055); }
}
@keyframes heroFill {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes scrollDiamond {
  0% { top: 0; opacity: 1; }
  75% { opacity: 0.35; }
  100% { top: calc(100% - 5px); opacity: 0; }
}

/* ——— Layout ——— */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  scroll-margin-top: calc(var(--nav-h) + 0.5rem);
}
.section-tight { padding: clamp(3.2rem, 6vw, 5.5rem) 0; }
.wrap {
  width: var(--page);
  margin: 0 auto;
}
.split {
  display: grid;
  gap: 3rem;
  align-items: end;
}

.edit-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(216, 200, 184, 0.16), transparent 62%),
    radial-gradient(ellipse 45% 40% at 8% 88%, rgba(181, 154, 114, 0.07), transparent 70%),
    var(--ivory);
}
.edit-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.edit-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.35rem;
  min-height: 100%;
  padding-right: 1.6rem;
  position: relative;
}
.edit-head .headline {
  position: relative;
  margin-top: 0.2rem;
  z-index: 1;
}
.edit-head .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.6rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.edit-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: 0.18em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.6rem, 8.5vw, 8rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.edit-head .hero-kicker-inner { white-space: nowrap; }
.edit-head .hero-kicker-line { width: 1.7rem; }
.edit-head .lede {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  margin-top: 0.35rem;
}

.edit-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.05rem 1.5rem;
  margin-top: 0.55rem;
  position: relative;
  z-index: 1;
}
.edit-index {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mocha);
  font-variant-numeric: tabular-nums;
}
.edit-index [data-edit-count] {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.edit-index .rule {
  position: relative;
  width: 3.1rem;
  height: 1px;
  background: var(--line-strong);
  overflow: hidden;
}
.edit-index .rule i {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--brass), var(--champagne));
  transition: width 0.55s var(--ease);
}
.edit-now {
  margin: 0;
  min-width: 8.5rem;
}
.edit-now span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}
.edit-now em {
  display: block;
  margin-top: 0.12rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.42rem;
  line-height: 1.1;
  color: var(--espresso);
  letter-spacing: 0;
}
.edit-pager {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  width: 100%;
}
.edit-pager button {
  position: relative;
  flex: 1;
  max-width: 2.4rem;
  height: 1.1rem;
  padding: 0;
}
.edit-pager button::before,
.edit-pager button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}
.edit-pager button::before { background: var(--line-strong); }
.edit-pager button::after {
  right: auto;
  width: 0;
  background: var(--brass);
  transition: width 0.45s var(--ease);
}
.edit-pager button.is-active::after,
.edit-pager button[aria-selected="true"]::after { width: 100%; }
.edit-pager button:hover::before { background: rgba(181, 154, 114, 0.55); }
.edit-nav {
  display: flex;
  gap: 0.45rem;
}
.icon-btn {
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(181, 154, 114, 0.48);
  display: grid;
  place-items: center;
  color: var(--espresso);
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.icon-btn svg {
  width: 0.85rem;
  height: 0.85rem;
  display: block;
}
.icon-btn:hover {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
  transform: translateY(-1px);
}

.edit-track-wrap {
  overflow: hidden;
  padding-top: 0.75rem;
}
.edit-track {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: auto;
  scrollbar-width: none;
  padding: 0.55rem 0.35rem 0.85rem;
  touch-action: pan-x;
}
.edit-track.is-animating { scroll-snap-type: none; }
.edit-track::-webkit-scrollbar { display: none; }
.edit-card {
  flex: 0 0 78vw;
  scroll-snap-align: start;
  cursor: none;
}
.edit-section .edit-card.img-reveal { overflow: visible; }
.edit-mount {
  position: relative;
  padding: 0.58rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.96) 0%, rgba(232, 221, 210, 0.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 38px rgba(33, 28, 25, 0.08);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease), opacity 0.7s var(--ease);
  opacity: 0.78;
}
.edit-mount::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border: 1px solid rgba(181, 154, 114, 0.32);
}
.edit-card.is-active .edit-mount,
.edit-card:hover .edit-mount {
  opacity: 1;
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 24px 48px rgba(33, 28, 25, 0.13);
}
.edit-card.is-active .edit-mount::before,
.edit-card:hover .edit-mount::before {
  border-color: rgba(181, 154, 114, 0.62);
}
.edit-section .edit-card .media {
  aspect-ratio: 3 / 4.12;
  background: #d9cfc4;
}
.edit-section .edit-card.img-reveal img {
  clip-path: inset(10% 10% 10% 10%);
  filter: saturate(1.04) contrast(1.06) brightness(0.94);
  transform: scale(1.08);
  transition: clip-path 1.25s var(--ease), transform 1.6s var(--ease), filter 1s var(--ease);
}
.edit-section .edit-card.img-reveal.is-in img {
  clip-path: inset(0);
  transform: scale(1.04);
}
.edit-section .edit-card.img-reveal.is-in:hover img {
  transform: scale(1.09);
  filter: saturate(1.1) contrast(1.08) brightness(1);
}
.edit-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(33, 28, 25, 0.16) 0%, transparent 24%, transparent 46%, rgba(33, 28, 25, 0.62) 100%);
}
.edit-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.edit-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 251, 246, 0.2) 46%, transparent 62%);
  transform: translateX(-130%);
  opacity: 0;
}
.edit-card:hover .edit-shine {
  opacity: 1;
  transform: translateX(130%);
  transition: transform 1.15s var(--ease), opacity 0.4s var(--ease);
}
.edit-frame {
  position: absolute;
  inset: 0.62rem;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(216, 200, 184, 0.42);
  box-shadow: inset 0 0 0 1px rgba(33, 28, 25, 0.08);
  transition: border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.edit-corners {
  position: absolute;
  inset: 0.62rem;
  z-index: 5;
  pointer-events: none;
}
.edit-corners span {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border-color: rgba(216, 200, 184, 0.95);
  border-style: solid;
}
.edit-corners span:nth-child(1) { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.edit-corners span:nth-child(2) { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.edit-corners span:nth-child(3) { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.edit-corners span:nth-child(4) { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.edit-card:hover .edit-frame,
.edit-card.is-active .edit-frame {
  border-color: rgba(216, 200, 184, 0.88);
  box-shadow: inset 0 0 0 1px rgba(33, 28, 25, 0.12);
}
.edit-ghost {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  z-index: 6;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(248, 244, 238, 0.28);
  pointer-events: none;
  user-select: none;
}
.edit-caption {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.55rem;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  padding: 1.55rem 0.35rem 0.35rem;
  color: var(--ivory);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(33, 28, 25, 0.42) 100%);
}
.edit-caption .num {
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}
.edit-caption .rule {
  width: 1.5rem;
  height: 1px;
  background: rgba(216, 200, 184, 0.72);
  transition: width 0.55s var(--ease);
}
.edit-caption .name { color: rgba(248, 244, 238, 0.92); }
.edit-card.is-active .edit-caption .rule,
.edit-card:hover .edit-caption .rule {
  width: 2.4rem;
  background: var(--champagne);
}

.edit-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: baseline;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.edit-meta .num { color: var(--brass); }
.edit-meta .name { color: var(--espresso); }
.edit-line {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--line);
}
.edit-meta-rule {
  width: 1.55rem;
  height: 1px;
  background: var(--line-strong);
}

.section-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

.edit-section .section-link .btn-text {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--mocha);
  letter-spacing: 0.24em;
}
.edit-section .section-link .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.edit-section .section-link .btn-text:hover { color: var(--espresso); }
.edit-section .section-link .btn-text:hover::after { right: 0; }

/* ——— Stats / about ——— */
.intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 12% 40%, rgba(216, 200, 184, 0.14), transparent 62%),
    radial-gradient(ellipse 50% 45% at 92% 80%, rgba(181, 154, 114, 0.08), transparent 70%),
    var(--ivory);
}
.intro-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.intro-band {
  display: grid;
  gap: 3.2rem;
  align-items: end;
}
.intro-figures .hero-kicker { margin-bottom: 1.6rem; }
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.stat {
  position: relative;
  padding: 1.35rem 0 1.45rem;
}
.stat + .stat {
  border-top: 1px solid transparent;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  right: 18%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  opacity: 0.45;
}
.stat-index {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
}
.stat b {
  display: block;
  margin-top: 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.stat-rule {
  display: block;
  width: 1.8rem;
  height: 1px;
  margin: 0.85rem 0 0.7rem;
  background: linear-gradient(90deg, var(--brass), transparent);
  transition: width 0.55s var(--ease);
}
.stat:hover .stat-rule { width: 2.8rem; }
.stat-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mocha);
  max-width: 9rem;
}
.intro-copy {
  position: relative;
  padding-left: 0;
}
.intro-copy .headline {
  position: relative;
  margin-top: 0.85rem;
  z-index: 1;
}
.intro-copy .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.6rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.intro-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: -0.08em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.4rem, 8vw, 7.2rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.intro-copy .lede {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin-top: 1.35rem;
}
.intro-link {
  margin-top: 1.8rem;
  position: relative;
  z-index: 1;
}
.intro-link .btn-text {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--mocha);
  letter-spacing: 0.24em;
}
.intro-link .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.intro-link .btn-text:hover { color: var(--espresso); }
.intro-link .btn-text:hover::after { right: 0; }

.about-grid {
  display: grid;
  gap: 3rem;
}
.portrait-block { position: relative; }
.portrait-block .media { aspect-ratio: 4 / 5; }
.portrait-block .media img { object-position: 18% 12%; }
.signature {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 6;
  color: var(--ivory);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  text-shadow: 0 8px 30px rgba(33, 28, 25, 0.25);
  pointer-events: none;
}
.roles {
  margin-top: 1rem;
  display: grid;
  gap: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mocha);
}
.pull-quote {
  margin: 2.2rem 0 0;
  max-width: 18rem;
}
.pull-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

.meet-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 8% 30%, rgba(216, 200, 184, 0.14), transparent 64%),
    radial-gradient(ellipse 45% 40% at 96% 88%, rgba(181, 154, 114, 0.07), transparent 70%),
    var(--ivory);
}
.meet-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.meet-section .portrait-block.img-reveal { overflow: visible; }
.meet-mount {
  position: relative;
  padding: 0.58rem;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96) 0%, rgba(232, 221, 210, 0.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 38px rgba(33, 28, 25, 0.08);
}
.meet-mount::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border: 1px solid rgba(181, 154, 114, 0.38);
}
.meet-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(33, 28, 25, 0.08) 0%, transparent 28%, transparent 58%, rgba(33, 28, 25, 0.42) 100%);
}
.meet-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.meet-frame {
  position: absolute;
  inset: 0.7rem;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(216, 200, 184, 0.5);
  box-shadow: inset 0 0 0 1px rgba(33, 28, 25, 0.08);
}
.meet-corners {
  position: absolute;
  inset: 0.7rem;
  z-index: 5;
  pointer-events: none;
}
.meet-corners span {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border-color: rgba(216, 200, 184, 0.95);
  border-style: solid;
}
.meet-corners span:nth-child(1) { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.meet-corners span:nth-child(2) { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.meet-corners span:nth-child(3) { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.meet-corners span:nth-child(4) { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.meet-section .signature {
  left: 1.15rem;
  bottom: 1.05rem;
}
.meet-section .roles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.7rem;
  margin-top: 1.15rem;
}
.meet-section .roles i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.meet-place {
  margin: 0.7rem 0 0;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}
.meet-copy-wrap { position: relative; }
.meet-copy-wrap .headline {
  position: relative;
  margin-top: 0.85rem;
  z-index: 1;
}
.meet-copy-wrap .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.6rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.meet-watermark {
  display: none;
  position: absolute;
  left: -0.06em;
  top: 0.22em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.6rem, 8vw, 7.4rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.meet-section .meet-copy {
  position: relative;
  z-index: 1;
  margin-top: 1.45rem;
}
.meet-section .intro-link { margin-top: 1.7rem; }
.meet-section .pull-quote {
  position: relative;
  margin: 0;
  max-width: none;
  padding: 1.6rem 0 0 0;
}
.meet-section .quote-mark {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  line-height: 0.6;
  color: rgba(181, 154, 114, 0.38);
  pointer-events: none;
}
.meet-section .pull-quote p {
  margin-top: 0.85rem;
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  line-height: 1.28;
  color: var(--espresso);
}
.meet-section .quote-rule {
  display: block;
  width: 2.2rem;
  height: 1px;
  margin: 1.15rem 0 0.85rem;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.meet-section .pull-quote cite {
  margin-top: 0;
}

/* ——— Dark ——— */
.dark-band {
  background: var(--espresso);
  color: var(--ivory);
  overflow: hidden;
}
.dark-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
.dark-grid .media { min-height: 58vh; }
.place-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin-top: 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
}

.atelier-section {
  position: relative;
  background:
    radial-gradient(ellipse 55% 70% at 8% 50%, rgba(181, 154, 114, 0.14), transparent 58%),
    var(--espresso);
}
.atelier-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--brass), var(--champagne), transparent);
  opacity: 0.45;
  pointer-events: none;
}
.atelier-grid {
  display: grid;
  gap: 0;
}
.atelier-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.4rem, 8vw, 7.2rem) 7vw;
}
.atelier-section .hero-kicker .eyebrow { color: var(--champagne); }
.atelier-section .hero-diamond { border-color: var(--champagne); }
.atelier-section .hero-kicker-line {
  background: linear-gradient(90deg, var(--champagne), transparent);
}
.atelier-copy .headline {
  position: relative;
  margin-top: 1.2rem;
  z-index: 1;
  color: var(--ivory);
}
.atelier-copy .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(216, 200, 184, 0.12));
  background-size: 3.8rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.atelier-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: -0.12em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.8rem, 9vw, 8rem);
  line-height: 0.7;
  color: rgba(216, 200, 184, 0.14);
  pointer-events: none;
  user-select: none;
}
.atelier-copy .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.45rem;
  max-width: 24rem;
  color: var(--champagne);
}
.atelier-section .place-list {
  position: relative;
  z-index: 1;
  gap: 0.55rem 0.2rem;
  margin-top: 1.9rem;
  align-items: center;
}
.atelier-section .place-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.atelier-section .place-list li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.atelier-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.7rem;
  margin-top: 2.15rem;
  position: relative;
  z-index: 1;
}
.atelier-section .btn-fill {
  min-height: 3rem;
  padding: 0 1.4rem;
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--espresso);
  letter-spacing: 0.22em;
}
.atelier-section .btn-fill:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--espresso);
}
.atelier-section .btn-text {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--champagne);
  letter-spacing: 0.24em;
}
.atelier-section .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.atelier-section .btn-text:hover { color: var(--ivory); }
.atelier-section .btn-text:hover::after { right: 0; }
.atelier-stage {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  background: #2a2420;
}
.atelier-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.atelier-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(33, 28, 25, 0.42) 0%, transparent 28%),
    linear-gradient(180deg, rgba(33, 28, 25, 0.22) 0%, transparent 24%, transparent 62%, rgba(33, 28, 25, 0.4) 100%);
}
.atelier-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.atelier-frame {
  position: absolute;
  inset: 1.05rem;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(216, 200, 184, 0.42);
  box-shadow: inset 0 0 0 1px rgba(33, 28, 25, 0.12);
}
.atelier-corners {
  position: absolute;
  inset: 1.05rem;
  z-index: 5;
  pointer-events: none;
}
.atelier-corners span {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-color: rgba(216, 200, 184, 0.92);
  border-style: solid;
}
.atelier-corners span:nth-child(1) { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.atelier-corners span:nth-child(2) { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.atelier-corners span:nth-child(3) { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.atelier-corners span:nth-child(4) { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.atelier-caption {
  position: absolute;
  left: 1.7rem;
  bottom: 1.7rem;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--ivory);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  pointer-events: none;
}
.atelier-caption .num { color: var(--champagne); font-variant-numeric: tabular-nums; }
.atelier-caption .rule {
  width: 1.7rem;
  height: 1px;
  background: rgba(216, 200, 184, 0.7);
}

/* ——— Experience ——— */
.steps {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  gap: 0.6rem 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.step-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.8;
  color: var(--champagne);
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.step h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
}
.step p { margin: 0; color: var(--mocha); max-width: 28rem; }

.experience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(216, 200, 184, 0.14), transparent 62%),
    var(--ivory);
}
.experience-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.experience-head { position: relative; max-width: 36rem; }
.experience-head .headline {
  position: relative;
  margin-top: 0.85rem;
  z-index: 1;
}
.experience-head .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.8rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.experience-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: 0.18em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.6rem, 8vw, 7.6rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.experience-head .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
}
.experience-section .intro-link { margin-top: 2.4rem; }
.experience-section .steps {
  position: relative;
  margin-top: 3rem;
  border: 0;
  gap: 0;
}
.experience-section .step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 1.45rem 0 1.55rem 1.35rem;
  border: 0;
  border-bottom: 0;
}
.experience-section .step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--brass), rgba(181, 154, 114, 0.12));
}
.experience-section .step-num {
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  color: var(--brass);
  line-height: 1;
}
.experience-section .step-node {
  position: absolute;
  left: -3px;
  top: 1.85rem;
  width: 7px;
  height: 7px;
  border: 1px solid var(--brass);
  background: var(--ivory);
  transform: rotate(45deg);
  z-index: 2;
  transition: background 0.45s var(--ease);
}
.experience-section .step h3 {
  margin: 0.75rem 0 0;
  font-size: 1.55rem;
}
.step-rule {
  display: block;
  width: 1.55rem;
  height: 1px;
  margin: 0.7rem 0 0.6rem;
  background: var(--brass);
  transition: width 0.55s var(--ease);
}
.experience-section .step p {
  margin: 0;
  max-width: 18rem;
}
.experience-section .step:hover .step-node { background: var(--brass); }
.experience-section .step:hover .step-rule { width: 2.6rem; }

/* ——— Meet ——— */
.meet-grid {
  display: grid;
  gap: 2.5rem;
}
.meet-copy { max-width: 34rem; }
.meet-copy p { color: var(--mocha); white-space: pre-line; }
.placeholder-note {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ——— Testimonials ——— */
.kind-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
.quote-stage { min-height: 12rem; }
.quote-slide { display: none; }
.quote-slide.is-active { display: block; }
.quote-slide q {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.28;
  quotes: none;
}
.quote-slide footer {
  margin-top: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.quote-slide footer span { color: var(--mocha); }
.kind-photo .media { aspect-ratio: 4 / 5; min-height: 320px; }

.kind-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 92% 40%, rgba(216, 200, 184, 0.14), transparent 62%),
    var(--ivory);
}
.kind-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.kind-head { position: relative; }
.kind-head .headline {
  position: relative;
  margin-top: 0.85rem;
  z-index: 1;
}
.kind-head .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.4rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.kind-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: 0.22em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.4rem, 8vw, 7.2rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.kind-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 1.7rem;
  position: relative;
  z-index: 1;
}
.kind-index {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mocha);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.kind-index [data-kind-count] {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}
.kind-index .rule {
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--line-strong));
}
.kind-section .intro-link { margin-top: 1.6rem; }
.kind-section .quote-stage { position: relative; padding-top: 0.4rem; }
.kind-section .quote-mark {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 5.5vw, 4.8rem);
  line-height: 0.55;
  color: rgba(181, 154, 114, 0.38);
  pointer-events: none;
}
.kind-section .quote-slide.is-active { animation: kindFade 0.75s var(--ease); }
.kind-section .quote-slide q {
  display: block;
  margin-top: 0.7rem;
  color: var(--espresso);
}
.kind-section .quote-rule {
  display: block;
  width: 2.2rem;
  height: 1px;
  margin: 1.2rem 0 0.9rem;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.kind-section .quote-slide footer { margin-top: 0; }
.kind-section .placeholder-note { margin-top: 1.4rem; }
.kind-section .kind-photo.img-reveal,
.kind-section .img-reveal { overflow: visible; }
.kind-mount {
  position: relative;
  padding: 0.55rem;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96) 0%, rgba(232, 221, 210, 0.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 38px rgba(33, 28, 25, 0.08);
}
.kind-mount::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border: 1px solid rgba(181, 154, 114, 0.38);
}
.kind-mount .media { overflow: hidden; }
.kind-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(33, 28, 25, 0.08) 0%, transparent 30%, transparent 70%, rgba(33, 28, 25, 0.28) 100%);
}
.kind-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.kind-frame {
  position: absolute;
  inset: 0.65rem;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(216, 200, 184, 0.5);
}
.kind-corners {
  position: absolute;
  inset: 0.65rem;
  z-index: 5;
  pointer-events: none;
}
.kind-corners span {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-color: rgba(216, 200, 184, 0.92);
  border-style: solid;
}
.kind-corners span:nth-child(1) { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.kind-corners span:nth-child(2) { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.kind-corners span:nth-child(3) { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.kind-corners span:nth-child(4) { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.kind-mount img { transition: opacity 0.55s var(--ease), transform 1.4s var(--ease); }

@keyframes kindFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.words-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 8% 12%, rgba(216, 200, 184, 0.14), transparent 62%),
    var(--ivory);
}
.words-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.words-head { position: relative; max-width: 36rem; margin-bottom: 1.2rem; }
.words-head.reveal { overflow: visible; }
.words-head .headline {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
}
.words-head .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.6rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.words-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: 0.18em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.4rem, 8vw, 7.2rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.words-head .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
}
.word-entry {
  display: grid;
  gap: 2.2rem;
  padding: 3rem 0 3.2rem;
  position: relative;
}
.word-entry + .word-entry::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  opacity: 0.4;
}
.words-section .kind-photo.img-reveal,
.words-section .img-reveal { overflow: visible; }
.word-caption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.9rem 0 0;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mocha);
}
.word-caption .num {
  color: var(--brass);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.word-caption .rule {
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.word-quote { position: relative; margin: 0; }
.word-quote.reveal { overflow: visible; }
.word-quote .quote-mark {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 5.5vw, 4.8rem);
  line-height: 0.55;
  color: rgba(181, 154, 114, 0.38);
  pointer-events: none;
}
.word-quote q {
  display: block;
  margin-top: 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.28;
  quotes: none;
  color: var(--espresso);
}
.word-quote .quote-rule {
  display: block;
  width: 2.2rem;
  height: 1px;
  margin: 1.2rem 0 0.9rem;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.word-quote footer {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.word-quote footer span { color: var(--mocha); }

/* ——— Destination ——— */
.destination {
  position: relative;
  min-height: 92vh;
  color: var(--ivory);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.destination .bg {
  position: absolute;
  inset: 0;
}
.destination .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.04);
}
.destination .shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(33, 28, 25, 0.58) 0%, rgba(33, 28, 25, 0.22) 38%, transparent 62%),
    linear-gradient(180deg, rgba(33, 28, 25, 0.28) 0%, transparent 26%, transparent 52%, rgba(33, 28, 25, 0.58) 100%);
}
.dest-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.dest-frame {
  position: absolute;
  inset: 1.05rem;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(216, 200, 184, 0.38);
  box-shadow: inset 0 0 0 1px rgba(33, 28, 25, 0.1);
}
.dest-corners {
  position: absolute;
  inset: 1.05rem;
  z-index: 4;
  pointer-events: none;
}
.dest-corners span {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-color: rgba(216, 200, 184, 0.92);
  border-style: solid;
}
.dest-corners span:nth-child(1) { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.dest-corners span:nth-child(2) { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.dest-corners span:nth-child(3) { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.dest-corners span:nth-child(4) { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.destination-copy {
  position: relative;
  z-index: 5;
  padding: 5.5rem 0 4.2rem;
}
.destination-copy.reveal { overflow: visible; }
.destination .hero-kicker .eyebrow { color: var(--champagne); }
.destination .hero-diamond { border-color: var(--champagne); }
.destination .hero-kicker-line {
  background: linear-gradient(90deg, var(--champagne), transparent);
}
.destination .headline {
  position: relative;
  margin-top: 1.15rem;
  z-index: 1;
  color: var(--ivory);
  text-shadow: 0 12px 40px rgba(33, 28, 25, 0.28);
}
.destination .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(216, 200, 184, 0.15));
  background-size: 4rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.dest-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: -0.18em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5rem, 10vw, 8.4rem);
  line-height: 0.7;
  color: rgba(216, 200, 184, 0.2);
  pointer-events: none;
  user-select: none;
}
.destination .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  max-width: 26rem;
  color: rgba(248, 244, 238, 0.88);
}
.dest-places {
  margin-top: 1.7rem;
  gap: 0.55rem 0.2rem;
  color: var(--champagne);
}
.dest-places li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dest-places li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.dest-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.7rem;
  margin-top: 2.1rem;
}
.destination .btn-fill {
  min-height: 3rem;
  padding: 0 1.4rem;
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--espresso);
  letter-spacing: 0.22em;
}
.destination .btn-fill:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--espresso);
}
.destination .btn-text {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--champagne);
  letter-spacing: 0.24em;
}
.destination .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.destination .btn-text:hover {
  background: none;
  color: var(--ivory);
}
.destination .btn-text:hover::after { right: 0; }
.dest-caption {
  position: absolute;
  right: 2.05rem;
  bottom: 2.05rem;
  z-index: 5;
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--ivory);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  pointer-events: none;
}
.dest-caption .num {
  color: var(--champagne);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.dest-caption .rule {
  width: 1.7rem;
  height: 1px;
  background: rgba(216, 200, 184, 0.7);
}
.locs {
  margin: 1.1rem 0 1.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ——— Enquire CTA ——— */
.enquire-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 70% at 50% 38%, rgba(216, 200, 184, 0.2), transparent 68%),
    radial-gradient(ellipse 40% 45% at 8% 100%, rgba(181, 154, 114, 0.07), transparent 70%),
    var(--ivory);
}
.enquire-section::before,
.enquire-section::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 1;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
  pointer-events: none;
}
.enquire-section::before { top: 0; }
.enquire-section::after { bottom: 0; }
.enquire-cta {
  position: relative;
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}
.enquire-cta.reveal { overflow: visible; }
.enquire-kicker { margin-bottom: 0.2rem; }
.enquire-kicker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.enquire-kicker .eyebrow { color: var(--brass); }
.enquire-kicker-line {
  width: 2.8rem;
  height: 1px;
  flex-shrink: 0;
}
.enquire-kicker-line.is-left {
  background: linear-gradient(90deg, transparent, var(--brass));
}
.enquire-kicker-line.is-right {
  background: linear-gradient(90deg, var(--brass), transparent);
}
.enquire-cta .headline {
  position: relative;
  z-index: 1;
  margin-top: 1.05rem;
}
.enquire-cta .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 4.2rem 1px;
  background-repeat: no-repeat;
  background-position: center 100%;
  padding-bottom: 0.12em;
}
.enquire-watermark {
  display: none;
  position: absolute;
  left: 50%;
  top: -0.08em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5rem, 10vw, 8.6rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%);
}
.enquire-cta .lede {
  position: relative;
  z-index: 1;
  margin: 1.45rem auto 0;
  max-width: 26rem;
  color: var(--mocha);
}
.enquire-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 1.85rem auto 0;
}
.enquire-seal::before,
.enquire-seal::after {
  content: "";
  width: 2.2rem;
  height: 1px;
}
.enquire-seal::before { background: linear-gradient(90deg, transparent, var(--brass)); }
.enquire-seal::after { background: linear-gradient(90deg, var(--brass), transparent); }
.enquire-seal i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.enquire-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.8rem;
  margin-top: 2rem;
}
.enquire-section .btn-fill {
  min-height: 3rem;
  padding: 0 1.4rem;
  letter-spacing: 0.22em;
}
.enquire-section .btn-text {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--espresso);
  letter-spacing: 0.24em;
}
.enquire-section .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.enquire-section .btn-text:hover {
  background: none;
  color: var(--espresso);
}
.enquire-section .btn-text:hover::after { right: 0; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.8rem;
}

/* ——— Form ——— */
.form {
  display: grid;
  gap: 1.15rem;
}
.form-grid {
  display: grid;
  gap: 1.15rem;
}
.field { display: grid; gap: 0.45rem; }
.field span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mocha);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.55rem 0 0.7rem;
  appearance: none;
  outline: none;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--taupe);
  opacity: 0.62;
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.42;
  cursor: pointer;
  filter: sepia(0.4);
}
.field textarea { min-height: 4.2rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--espresso); }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.6rem;
}
.form-status {
  min-height: 1.4rem;
  font-size: 0.9rem;
  color: var(--mocha);
}
.form-status.is-ok { color: var(--espresso); }
.form-status.is-err { color: #8a3a32; }

/* ——— Panel ——— */
.enquiry-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  justify-content: end;
  pointer-events: none;
  visibility: hidden;
}
.enquiry-panel.is-open { pointer-events: auto; visibility: visible; }
.enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 28, 25, 0.28);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.enquiry-panel.is-open .enquiry-backdrop { opacity: 1; }
.enquiry-sheet {
  position: relative;
  width: min(100vw, 520px);
  height: 100%;
  background: var(--ivory);
  padding: 5.5rem 2rem 2.4rem;
  overflow: auto;
  transform: translateX(24px);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}
.enquiry-panel.is-open .enquiry-sheet {
  transform: none;
  opacity: 1;
}
.panel-close {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.4rem;
  line-height: 1;
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #161210;
  color: var(--ivory);
  display: none;
}
.lightbox.is-open { display: grid; grid-template-rows: auto 1fr auto; }
.lightbox-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.lightbox-bar [data-lightbox-index] { color: var(--champagne); }
.lightbox-bar button {
  color: var(--ivory);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.62rem;
}
.lightbox-stage {
  display: grid;
  place-items: center;
  padding: 0 4vw 1.5rem;
}
.lightbox-stage img {
  max-height: 78vh;
  max-width: 92vw;
  object-fit: contain;
  border: 1px solid rgba(216, 200, 184, 0.28);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: calc(100% - 1.5rem);
  left: 0.75rem;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 52% 70% at 6% 18%, rgba(181, 154, 114, 0.14), transparent 58%),
    radial-gradient(ellipse 42% 50% at 96% 88%, rgba(216, 200, 184, 0.07), transparent 62%),
    var(--espresso);
  color: var(--ivory);
  padding: clamp(4.8rem, 8vw, 7.2rem) 0 1.7rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--brass), var(--champagne), transparent);
  opacity: 0.45;
  pointer-events: none;
}
.footer-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.site-footer .hero-kicker { margin-bottom: 1.15rem; }
.site-footer .hero-kicker .eyebrow { color: var(--champagne); }
.site-footer .hero-diamond { border-color: var(--champagne); }
.site-footer .hero-kicker-line {
  background: linear-gradient(90deg, var(--champagne), transparent);
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.8rem 3.2rem;
}
.footer-brand { position: relative; }
.footer-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: -0.15em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5.4rem, 10vw, 8.8rem);
  line-height: 0.7;
  color: rgba(216, 200, 184, 0.12);
  pointer-events: none;
  user-select: none;
}
.footer-brand .brand {
  position: relative;
  z-index: 1;
}
.footer-brand .brand-name {
  font-size: 1.85rem;
  color: var(--ivory);
}
.footer-brand .brand-by { color: var(--champagne); }
.footer-brand .brand-mark { border-color: var(--champagne); }
.footer-brand .brand:hover .brand-mark { background: var(--champagne); }
.footer-brand .brand:hover .brand-by { color: var(--ivory); }
.footer-role {
  position: relative;
  z-index: 1;
  margin: 1.25rem 0 0;
  max-width: 16rem;
  color: var(--champagne);
  font-size: 1.05rem;
}
.footer-places {
  margin-top: 1.35rem;
  gap: 0.55rem 0.2rem;
}
.footer-places li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-places li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.footer-links {
  display: grid;
  align-content: start;
  gap: 0.15rem;
}
.footer-links a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.28rem 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  transition: color 0.45s var(--ease);
}
.footer-links a:hover,
.footer-links a[aria-current="page"] { color: var(--ivory); }
.footer-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--brass);
  min-width: 1.35rem;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.footer-links a:hover .footer-num,
.footer-links a[aria-current="page"] .footer-num { color: var(--champagne); }
.footer-contact {
  display: grid;
  align-content: start;
  color: var(--champagne);
  font-size: 0.95rem;
}
.footer-line {
  display: block;
  margin: 0 0 0.4rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.footer-line.is-pending,
.socials .is-pending {
  color: var(--taupe);
  opacity: 0.72;
}
.footer-city {
  margin: 0.85rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.15rem;
  margin-top: 1.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.socials a,
.socials span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--champagne);
}
.socials a:hover { color: var(--ivory); }
.socials a:not(:last-child)::after,
.socials span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.footer-base {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem 1.4rem;
  margin-top: 3.4rem;
  padding-top: 1.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.footer-base::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), var(--champagne), transparent);
  opacity: 0.55;
}
.footer-base .btn-text {
  position: relative;
  padding-bottom: 0.3rem;
  color: var(--champagne);
  letter-spacing: 0.24em;
}
.footer-base .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.footer-base .btn-text:hover {
  background: none;
  color: var(--ivory);
}
.footer-base .btn-text:hover::after { right: 0; }

/* ——— Pages ——— */
.page-hero {
  padding: calc(var(--nav-h) + 4.5rem) 0 3.5rem;
}
.page-hero p { color: var(--mocha); max-width: 32rem; }

.about-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4.6rem) 0 4.4rem;
  background:
    radial-gradient(ellipse 55% 60% at 12% 28%, rgba(216, 200, 184, 0.22), transparent 64%),
    radial-gradient(ellipse 40% 45% at 92% 100%, rgba(181, 154, 114, 0.1), transparent 70%),
    var(--ivory);
}
.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 2;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
  pointer-events: none;
}
.about-hero::before { top: 0; }
.about-hero::after { bottom: 0; }
.about-hero-band {
  display: grid;
  gap: 2.8rem;
  align-items: end;
}
.about-hero-copy { position: relative; }
.about-hero-copy.reveal { overflow: visible; }
.about-hero .headline {
  position: relative;
  z-index: 1;
  margin-top: 1.05rem;
  font-size: clamp(3.1rem, 6.4vw, 6.4rem);
}
.about-hero .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 4.6rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.about-watermark {
  display: none;
  position: absolute;
  left: -0.06em;
  top: -0.12em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5.6rem, 12vw, 9.6rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.18);
  pointer-events: none;
  user-select: none;
}
.about-hero .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.55rem;
  max-width: 32rem;
  white-space: pre-line;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.about-hero-stats .stat {
  padding: 0.15rem 0.85rem 0.1rem 0;
}
.about-hero-stats .stat + .stat {
  padding-left: 1.05rem;
  border: 0;
}
.about-hero-stats .stat + .stat::before {
  left: 0;
  right: auto;
  top: 14%;
  bottom: 12%;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.55), transparent);
  opacity: 1;
}
.about-hero-stats .stat b {
  font-size: clamp(2rem, 3.4vw, 3.05rem);
}
.about-hero-stats .stat-label { max-width: none; }
.about-places {
  margin-top: 1.55rem;
  gap: 0.55rem 0.2rem;
  color: var(--mocha);
}
.about-places li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-places li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.7rem;
  margin-top: 1.9rem;
  position: relative;
  z-index: 1;
}
.about-hero .btn-fill {
  min-height: 3rem;
  padding: 0 1.4rem;
  letter-spacing: 0.22em;
}
.about-hero .btn-text {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--espresso);
  letter-spacing: 0.24em;
}
.about-hero .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.about-hero .btn-text:hover {
  background: none;
  color: var(--espresso);
}
.about-hero .btn-text:hover::after { right: 0; }
.about-hero-plate { position: relative; }
.about-hero-mount {
  padding: 0.7rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 48px rgba(33, 28, 25, 0.1);
}
.about-hero-plate .media { aspect-ratio: 3 / 3.75; }
.about-hero-plate .img-reveal.is-in img {
  animation: aboutKen 22s ease-in-out alternate infinite;
}
.about-hero-plate:hover .img-reveal.is-in img {
  animation: none;
  transform: scale(1.1);
  filter: saturate(1.08) contrast(1.06);
}
.about-hero-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 251, 246, 0.22) 46%, transparent 62%);
  transform: translateX(-130%);
  opacity: 0;
}
.about-hero-plate:hover .about-hero-shine {
  opacity: 1;
  transform: translateX(130%);
  transition: transform 1.2s var(--ease), opacity 0.4s var(--ease);
}
.about-hero-caption {
  position: absolute;
  left: 1.15rem;
  bottom: 1.1rem;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 8px 24px rgba(33, 28, 25, 0.35);
  pointer-events: none;
}
.about-hero-caption .num {
  color: var(--champagne);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.about-hero-caption .rule {
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), transparent);
}

@keyframes aboutKen {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

.practice-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 55% at 88% 30%, rgba(216, 200, 184, 0.16), transparent 62%),
    var(--ivory);
}
.practice-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.practice-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.practice-copy { position: relative; }
.practice-copy.reveal { overflow: visible; }
.practice-copy .headline {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
}
.practice-copy .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 4rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.practice-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: -0.12em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.6rem, 8vw, 7.6rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.practice-copy .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
  max-width: 30rem;
}
.practice-list {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
  gap: 0.55rem 0.2rem;
  color: var(--mocha);
}
.practice-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.practice-list li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.practice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
  margin-top: 2.1rem;
  position: relative;
  z-index: 1;
}
.practice-section .btn-fill {
  min-height: 3rem;
  padding: 0 1.4rem;
  letter-spacing: 0.22em;
}
.practice-section .btn-text {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--espresso);
  letter-spacing: 0.24em;
}
.practice-section .btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.55s var(--ease);
}
.practice-section .btn-text:hover {
  background: none;
  color: var(--espresso);
}
.practice-section .btn-text:hover::after { right: 0; }
.practice-plate { position: relative; }
.practice-plate .media { aspect-ratio: 4 / 5; }
.practice-caption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.95rem 0 0;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mocha);
}
.practice-caption .num {
  color: var(--brass);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.practice-caption .rule {
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.services-index {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(216, 200, 184, 0.14), transparent 62%),
    var(--ivory);
}
.services-index::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.services-index-head { position: relative; max-width: 36rem; }
.services-index-head.reveal { overflow: visible; }
.services-index-head .headline {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
}
.services-index-head .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.8rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.services-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: -0.08em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.6rem, 8vw, 7.6rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.services-index-head .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
}
.svc-grid {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 2.6rem;
}
.svc {
  position: relative;
  padding: 1.55rem 0 1.6rem 1.35rem;
}
.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--brass), rgba(181, 154, 114, 0.12));
}
.svc-num {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1;
  color: var(--brass);
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.svc-node {
  position: absolute;
  left: -3px;
  top: 1.85rem;
  width: 7px;
  height: 7px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  background: var(--ivory);
}
.svc h3 {
  margin: 0.7rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.1;
}
.svc-rule {
  display: block;
  width: 1.8rem;
  height: 1px;
  margin: 0.9rem 0 0.75rem;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.svc p {
  margin: 0;
  color: var(--mocha);
  max-width: 28rem;
}
.service-row {
  display: grid;
  gap: 0.6rem 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.service-row:first-of-type { border-top: 1px solid var(--line); }

.folio-count {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.6rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mocha);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  position: relative;
  z-index: 1;
}
.folio-count span:first-child,
.folio-count span:last-child {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}
.folio-count .rule {
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--line-strong));
}

.folio-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 78% 12%, rgba(216, 200, 184, 0.16), transparent 62%),
    var(--ivory);
}
.folio-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.folio-head { position: relative; max-width: 36rem; margin-bottom: 2.4rem; }
.folio-head.reveal { overflow: visible; }
.folio-head .headline {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
}
.folio-head .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.6rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.folio-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: -0.08em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.6rem, 8vw, 7.6rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.folio-head .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
}
.folio-section .gallery { gap: 1.15rem; }
.folio-section .gallery-item.img-reveal { overflow: visible; }
.folio-mount {
  opacity: 1;
  height: 100%;
}
.folio-section .gallery-item:hover .folio-mount,
.folio-section .gallery-item .folio-mount {
  transform: none;
  opacity: 1;
}
.folio-section .gallery-item .media { background: #d9cfc4; }
.folio-section .gallery-item.img-reveal img {
  clip-path: inset(10% 10% 10% 10%);
  filter: saturate(1.04) contrast(1.06) brightness(0.94);
  transform: scale(1.08);
  transition: clip-path 1.25s var(--ease), transform 1.6s var(--ease), filter 1s var(--ease);
}
.folio-section .gallery-item.img-reveal.is-in img {
  clip-path: inset(0);
  transform: scale(1.04);
}
.folio-section .gallery-item.img-reveal.is-in:hover img {
  transform: scale(1.09);
  filter: saturate(1.1) contrast(1.08) brightness(1);
}
.folio-section .gallery-item:hover .edit-shine {
  opacity: 1;
  transform: translateX(130%);
  transition: transform 1.15s var(--ease), opacity 0.4s var(--ease);
}
.folio-section .gallery-item:hover .edit-frame {
  border-color: rgba(216, 200, 184, 0.88);
}
.folio-section .gallery-item:hover .edit-caption .rule {
  width: 2.4rem;
  background: var(--champagne);
}
.folio-section .edit-caption .num {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  align-items: start;
}
.gallery-item { cursor: none; }
.gallery-item .media { aspect-ratio: 3 / 4; min-height: 240px; }
@media (max-width: 759px) {
  .gallery-item:nth-child(3n) { grid-column: span 2; }
  .gallery-item:nth-child(3n) .media { aspect-ratio: 16 / 10; }
}

.contact-grid {
  display: grid;
  gap: 3.2rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 55% at 88% 20%, rgba(216, 200, 184, 0.14), transparent 62%),
    var(--ivory);
}
.contact-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--brass) 42%, var(--champagne) 58%, transparent 100%);
  opacity: 0.42;
}
.contact-aside,
.contact-form-wrap { position: relative; }
.contact-aside.reveal,
.contact-form-wrap.reveal { overflow: visible; }
.contact-aside .headline,
.contact-form-wrap .headline {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
}
.contact-aside .headline em,
.contact-form-wrap .headline em {
  font-style: italic;
  background-image: linear-gradient(90deg, var(--brass), rgba(181, 154, 114, 0.12));
  background-size: 3.4rem 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 0.12em;
}
.contact-watermark {
  display: none;
  position: absolute;
  left: -0.08em;
  top: -0.12em;
  z-index: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.2rem, 7vw, 6.4rem);
  line-height: 0.7;
  color: rgba(181, 154, 114, 0.16);
  pointer-events: none;
  user-select: none;
}
.contact-aside .lede,
.contact-form-wrap .lede {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
}
.contact-hours {
  position: relative;
  z-index: 1;
  margin: 1.55rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.contact-aside .about-places { margin-top: 0.85rem; }
.contact-lines {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.85rem;
  padding-top: 1.45rem;
  border-top: 1px solid var(--line);
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.contact-lines a { color: inherit; }
.contact-lines a:hover { color: var(--brass); }
.contact-lines .is-pending {
  color: var(--taupe);
  opacity: 0.78;
}
.contact-socials {
  margin-top: 1.2rem;
}
.contact-socials a,
.contact-socials span { color: var(--mocha); }
.contact-socials span.is-pending {
  color: var(--mocha);
  opacity: 0.82;
}
.contact-socials a:hover { color: var(--espresso); }
.contact-places {
  margin-top: 1.85rem;
  color: var(--mocha);
}
.contact-form-wrap .form { margin-top: 1.9rem; }
.contact-form-wrap .form-grid { gap: 1.35rem 1.8rem; }
.contact-section .form-actions {
  gap: 1rem 1.6rem;
  margin-top: 1.65rem;
}
.contact-section .btn-fill {
  min-height: 3rem;
  padding: 0 1.4rem;
  letter-spacing: 0.22em;
}
.contact-note {
  margin: 1.55rem 0 0;
  max-width: 46ch;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
}

.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--brass); }
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brass) 50%),
    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position:
    calc(100% - 12px) calc(50% + 1px),
    calc(100% - 7px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1.4rem;
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.mobile-cta a,
.mobile-cta button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.2rem;
  padding: 0 0.75rem env(safe-area-inset-bottom, 0px);
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
}
.mobile-cta .wa {
  background: var(--espresso);
  color: var(--ivory);
}

.float-contact {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.15rem;
  padding: 0 1.2rem 0 0.55rem;
  background: var(--espresso);
  color: var(--ivory);
  border: 1px solid rgba(181, 154, 114, 0.62);
  box-shadow: 0 16px 36px rgba(33, 28, 25, 0.22);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 0.55s var(--ease), color 0.55s var(--ease), border-color 0.55s var(--ease), transform 0.55s var(--ease), opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.float-contact-icon {
  width: 2.05rem;
  height: 2.05rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 200, 184, 0.42);
}
.float-contact-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}
.float-contact:hover {
  background: var(--brass);
  color: var(--espresso);
  border-color: var(--brass);
  transform: translateY(-2px);
}
.float-contact:hover .float-contact-icon { border-color: rgba(33, 28, 25, 0.28); }
body.is-locked .float-contact {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 10px;
  height: 10px;
  border: 1px solid var(--espresso);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: width 0.45s var(--ease), height 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease);
}
.cursor.is-view {
  width: 72px;
  height: 72px;
  background: rgba(248, 244, 238, 0.88);
  color: var(--espresso);
}
.cursor.is-view::after { content: "View"; }

body.has-offset { padding-bottom: 3.2rem; }

@media (max-width: 759px) {
  :root {
    --nav-h: 4.15rem;
    --page: min(88vw, 1380px);
  }

  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  #meet,
  #journey,
  #offering,
  #edit,
  #words,
  #correspondence {
    scroll-margin-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 0.55rem);
  }

  .display {
    font-size: clamp(2.55rem, 12.4vw, 3.35rem);
    line-height: 0.92;
  }
  .headline {
    font-size: clamp(2.05rem, 9.6vw, 2.65rem);
    line-height: 1.02;
  }
  .lede {
    font-size: 0.94rem;
    line-height: 1.62;
    margin-top: 0.9rem;
  }
  .eyebrow { letter-spacing: 0.2em; }
  .btn {
    min-height: 2.95rem;
    letter-spacing: 0.16em;
  }

  .site-header {
    height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    padding: env(safe-area-inset-top, 0px) 1.05rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    overflow: visible;
    background: rgba(248, 244, 238, 0.88);
    border-bottom-color: rgba(33, 28, 25, 0.1);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
  }
  .site-header::after { display: none; }
  .site-nav { display: none !important; }
  .brand-name { letter-spacing: 0.26em; font-size: 1.14rem; }
  .brand-by { letter-spacing: 0.28em; margin-top: 0.24rem; }
  .site-header .brand {
    margin-right: auto;
    position: relative;
    z-index: 3;
    min-width: 0;
    gap: 0.65rem;
  }
  .header-end {
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    left: auto;
    transform: none;
    margin-left: 0;
    width: auto;
    height: auto;
    flex: 0 0 auto;
    z-index: 4;
    background: transparent;
    border: 0;
  }
  .enquire-link { display: none !important; }
  .menu-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 2.6rem;
    width: 2.6rem;
    height: 2.6rem;
    background: var(--ivory);
    border: 1px solid rgba(33, 28, 25, 0.28);
    color: var(--espresso);
  }
  .menu-toggle-bars {
    width: 1.05rem;
    height: 0.62rem;
  }
  .menu-toggle-bars span { height: 1.5px; }
  .menu-overlay { padding: env(safe-area-inset-top, 0px) 0 env(safe-area-inset-bottom, 0px); }
  .menu-layout { padding-bottom: calc(5.2rem + env(safe-area-inset-bottom, 0px)); }
  .menu-overlay nav a {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  }
  .hero-stage {
    order: -1;
    flex: 0 0 auto;
    width: 100%;
    height: 52svh;
    min-height: 17.5rem;
    max-height: 26rem;
  }
  .hero-slide img { object-position: 58% 12% !important; }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(33, 28, 25, 0.18) 0%, transparent 24%, transparent 52%, rgba(33, 28, 25, 0.42) 100%);
  }
  .hero-copy {
    max-width: none;
    width: 100%;
    margin-top: -2.35rem;
    padding: 2.15rem 6vw 1.15rem;
    background: linear-gradient(180deg, rgba(248, 244, 238, 0) 0%, var(--ivory) 1.7rem);
    position: relative;
    z-index: 6;
  }
  .hero-copy-main { padding: 0; }
  .hero-kicker { padding: 0; }
  .hero-kicker-inner { gap: 0.55rem; }
  .hero-kicker-line { width: 1.6rem; }
  .hero-place {
    margin-top: 0.55rem;
    letter-spacing: 0.16em;
    font-size: 0.56rem;
  }
  .hero .display { margin-top: 0.85rem; }
  .hero .lede {
    margin-top: 0.85rem;
    max-width: none;
    font-size: 0.94rem;
  }
  .hero-actions { margin-top: 1.15rem; }
  .hero-actions-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .hero-actions .btn-fill { display: none; }
  .hero-actions .btn-text {
    justify-content: center;
    width: 100%;
    min-height: 2.95rem;
    padding: 0 1.1rem;
    border: 1px solid var(--espresso);
  }
  .hero-actions .btn-text::after { display: none; }
  .hero-caption,
  .hero-foot { display: none; }
  .hero-frame,
  .hero-corners { inset: 0.65rem; }
  .scroll-hint { display: none; }

  .section { padding: 3.1rem 0 3.3rem; }
  .split { gap: 1.45rem; }

  .edit-head {
    min-height: 0;
    padding-right: 0;
    gap: 0.8rem;
  }
  .edit-head .lede { max-width: none; }
  .edit-tools {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.85rem 0.9rem;
    margin-top: 0.15rem;
  }
  .edit-index { grid-column: 1; grid-row: 1; }
  .edit-nav { grid-column: 2; grid-row: 1; }
  .edit-now {
    grid-column: 1 / -1;
    min-width: 0;
  }
  .edit-pager { display: none; }
  .edit-section .edit-card .media { aspect-ratio: 3 / 3.85; }
  .edit-card { flex: 0 0 78vw; }
  .edit-track {
    gap: 0.85rem;
    padding: 0.35rem 0 0.7rem;
  }
  .edit-card.is-active .edit-mount,
  .edit-card:hover .edit-mount { transform: none; }
  .edit-caption { letter-spacing: 0.16em; }
  .edit-section .section-link { margin-top: 1.1rem; }

  .intro-band { gap: 2.1rem; }
  .intro-figures .hero-kicker { margin-bottom: 1.15rem; }
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .stat {
    padding: 0.15rem 0.45rem 0.2rem 0;
  }
  .stat + .stat {
    padding-left: 0.75rem;
    border-top: 0;
  }
  .stat + .stat::before {
    left: 0;
    right: auto;
    top: 10%;
    bottom: 12%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.55), transparent);
  }
  .stat-index { display: none; }
  .stat b { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .stat-rule { margin: 0.5rem 0 0.45rem; width: 1.35rem; }
  .stat-label {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    max-width: none;
  }
  .intro-copy .lede { max-width: none; }

  .about-grid { gap: 1.7rem; }
  .meet-section .roles {
    gap: 0.4rem 0.55rem;
    font-size: 0.55rem;
    letter-spacing: 0.16em;
  }
  .meet-copy-wrap .headline { margin-top: 0.45rem; }
  .meet-section .meet-copy { margin-top: 0.95rem; }
  .meet-section .pull-quote {
    padding: 1.15rem 0 0 1rem;
    border-left: 1px solid rgba(181, 154, 114, 0.45);
  }
  .meet-section .pull-quote p { font-size: 1.28rem; }
  .meet-section .intro-link,
  .experience-section .intro-link { margin-top: 1.35rem; }
  .meet-section .intro-link .btn-text,
  .experience-section .intro-link .btn-text {
    width: 100%;
    justify-content: center;
    min-height: 2.95rem;
    padding: 0 1.1rem;
    border: 1px solid var(--espresso);
  }
  .meet-section .intro-link .btn-text::after,
  .experience-section .intro-link .btn-text::after { display: none; }

  .atelier-grid {
    display: flex;
    flex-direction: column;
  }
  .atelier-stage {
    order: -1;
    height: 46svh;
    min-height: 16rem;
    max-height: 23rem;
  }
  .atelier-veil {
    background: linear-gradient(180deg, rgba(33, 28, 25, 0.16) 0%, transparent 28%, transparent 58%, rgba(33, 28, 25, 0.46) 100%);
  }
  .atelier-copy {
    padding: 2.2rem 6vw 3.6rem;
  }
  .atelier-copy .lede { max-width: none; }
  .atelier-section .place-list {
    gap: 0.4rem 0.75rem;
    letter-spacing: 0.14em;
    font-size: 0.55rem;
    margin-top: 1.4rem;
  }
  .atelier-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-top: 1.55rem;
  }
  .atelier-actions .btn-fill { display: none; }
  .atelier-actions .btn-text {
    justify-content: center;
    width: 100%;
    min-height: 2.95rem;
    padding: 0 1.1rem;
    border: 1px solid rgba(216, 200, 184, 0.55);
    color: var(--champagne);
  }
  .atelier-actions .btn-text::after { display: none; }
  .atelier-frame,
  .atelier-corners { inset: 0.7rem; }
  .atelier-caption {
    left: 1.05rem;
    right: 1.05rem;
    bottom: 1.05rem;
    max-width: none;
  }

  .experience-head { max-width: none; }
  .experience-section .steps { margin-top: 1.7rem; }
  .experience-section .step {
    padding: 1rem 0 1.05rem 1.15rem;
  }
  .experience-section .step-num { font-size: 1.85rem; }
  .experience-section .step h3 {
    margin-top: 0.45rem;
    font-size: 1.38rem;
  }
  .experience-section .step p { max-width: none; }

  .kind-section .kind-grid {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
  }
  .kind-head .headline { margin-top: 0.45rem; }
  .kind-tools {
    margin-top: 1.15rem;
    gap: 0.75rem 1rem;
  }
  .kind-section .intro-link { margin-top: 1.1rem; }
  .kind-section .kind-photo { order: 1; }
  .kind-section .quote-stage { order: 2; }
  .kind-photo .media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .kind-section .quote-mark { font-size: 3.1rem; }
  .kind-section .quote-slide q {
    font-size: clamp(1.28rem, 6.2vw, 1.62rem);
    margin-top: 0.35rem;
  }
  .quote-stage { min-height: 0; }

  .place-list {
    gap: 0.4rem 0.75rem;
    letter-spacing: 0.14em;
    font-size: 0.55rem;
  }

  .destination {
    min-height: 0;
    align-items: end;
  }
  .destination .bg {
    min-height: 100%;
    position: absolute;
  }
  .destination .shade {
    background:
      linear-gradient(180deg, rgba(33, 28, 25, 0.42) 0%, rgba(33, 28, 25, 0.2) 28%, rgba(33, 28, 25, 0.82) 100%);
  }
  .destination-copy {
    padding: 5.4rem 0 3.1rem;
  }
  .destination .lede { max-width: none; }
  .dest-places { margin-top: 1.25rem; }
  .dest-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    margin-top: 1.55rem;
  }
  .dest-actions .btn-fill,
  .dest-actions .btn-text {
    justify-content: center;
    width: 100%;
  }
  .dest-actions .btn-text {
    min-height: 2.95rem;
    padding: 0 1.1rem;
    border: 1px solid rgba(216, 200, 184, 0.55);
    color: var(--champagne);
  }
  .dest-actions .btn-text::after { display: none; }
  .dest-frame,
  .dest-corners { inset: 0.7rem; }

  .enquire-cta { max-width: none; }
  .enquire-kicker-line { width: 1.35rem; }
  .enquire-cta .lede { max-width: none; }
  .enquire-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .enquire-actions .btn-fill,
  .enquire-actions .btn-text {
    justify-content: center;
    width: 100%;
  }
  .enquire-actions .btn-text {
    min-height: 2.95rem;
    padding: 0 1.1rem;
    border: 1px solid var(--espresso);
  }
  .enquire-actions .btn-text::after { display: none; }

  .page-hero,
  .about-hero {
    padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px)) 0 3.35rem;
  }
  .about-hero::before {
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  }
  .about-hero-band {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .about-hero-plate {
    order: -1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .about-hero-mount {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .about-hero-mount::before { display: none; }
  .about-hero-plate .media {
    aspect-ratio: auto;
    height: 48svh;
    min-height: 16.5rem;
    max-height: 24rem;
  }
  .about-hero-copy {
    margin-top: -2.35rem;
    padding-top: 2.7rem;
    padding-bottom: 0.35rem;
    background: linear-gradient(180deg, rgba(248, 244, 238, 0) 0%, rgba(248, 244, 238, 0.94) 1.45rem, var(--ivory) 2.35rem);
    z-index: 3;
  }
  .about-hero-copy .hero-kicker {
    position: relative;
    z-index: 2;
  }
  .about-hero .headline {
    font-size: clamp(2.35rem, 11vw, 3.05rem);
    margin-top: 0.75rem;
  }
  .about-hero .lede {
    margin-top: 0.95rem;
    max-width: none;
  }
  .about-hero-stats {
    margin-top: 1.45rem;
  }
  .about-hero-stats .stat-index { display: none; }
  .about-hero-stats .stat b { font-size: clamp(1.55rem, 6.5vw, 2.05rem); }
  .about-hero-stats .stat-label {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
  .about-hero-stats .stat-rule { margin: 0.45rem 0 0.4rem; }
  .about-places {
    margin-top: 1.15rem;
    letter-spacing: 0.14em;
    font-size: 0.55rem;
  }
  .folio-count {
    margin-top: 1.15rem;
    letter-spacing: 0.18em;
  }
  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    margin-top: 1.35rem;
  }
  .about-hero-actions .btn-fill,
  .about-hero-actions .btn-text {
    width: 100%;
    justify-content: center;
  }
  .about-hero-actions [data-enquiry-open] { display: none; }
  .about-hero-actions .btn-text {
    min-height: 2.95rem;
    padding: 0 1.1rem;
    border: 1px solid var(--espresso);
  }
  .about-hero-actions .btn-text::after { display: none; }
  .about-hero-caption {
    left: 1rem;
    bottom: 2.7rem;
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }
  .about-hero-plate .meet-frame,
  .about-hero-plate .meet-corners { inset: 0.7rem; }

  .practice-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .practice-plate { order: -1; }
  .practice-copy .lede { max-width: none; }
  .practice-list {
    margin-top: 1.25rem;
    letter-spacing: 0.14em;
    font-size: 0.55rem;
  }
  .practice-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    margin-top: 1.45rem;
  }
  .practice-actions .btn-fill,
  .practice-actions .btn-text {
    width: 100%;
    justify-content: center;
  }
  .practice-actions [data-enquiry-open] { display: none; }
  .practice-actions .btn-text {
    min-height: 2.95rem;
    padding: 0 1.1rem;
    border: 1px solid var(--espresso);
  }
  .practice-actions .btn-text::after { display: none; }

  .services-index-head { max-width: none; }
  .svc-grid { margin-top: 1.7rem; }
  .svc {
    padding: 1.1rem 0 1.15rem 1.15rem;
  }
  .svc-num { font-size: 1.7rem; }
  .svc h3 {
    margin-top: 0.4rem;
    font-size: 1.42rem;
  }
  .svc p { max-width: none; }

  .folio-head {
    max-width: none;
    margin-bottom: 1.55rem;
  }
  .gallery { gap: 0.55rem; }
  .gallery-item .media { min-height: 0; }
  .folio-section .gallery { gap: 0.7rem; }

  .words-head {
    max-width: none;
    margin-bottom: 0.4rem;
  }
  .word-entry {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding: 2rem 0 2.15rem;
  }
  .word-entry .kind-photo { order: -1; }
  .word-quote .quote-mark { font-size: 2.9rem; }
  .word-quote q {
    font-size: clamp(1.28rem, 6vw, 1.55rem);
  }
  .word-caption { letter-spacing: 0.16em; }

  .contact-grid { gap: 2.15rem; }
  .contact-aside .headline,
  .contact-form-wrap .headline {
    font-size: clamp(2rem, 8.4vw, 2.55rem);
  }
  .contact-aside .lede,
  .contact-form-wrap .lede { max-width: none; }
  .contact-lines { margin-top: 1.35rem; font-size: 1.08rem; }
  .contact-section .form { margin-top: 1.45rem; }
  .contact-section .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .contact-section .btn-fill {
    width: 100%;
    justify-content: center;
  }
  .contact-note { max-width: none; }

  .lightbox-bar {
    padding: calc(env(safe-area-inset-top, 0px) + 0.85rem) 1rem 0.85rem;
    gap: 0.7rem;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }
  .lightbox-stage {
    padding: 0 3vw calc(1.2rem + env(safe-area-inset-bottom, 0px));
  }
  .lightbox-stage img { max-height: 68svh; }
  .lightbox-nav {
    width: calc(100% - 1rem);
    left: 0.5rem;
  }
  .lightbox-nav .icon-btn {
    width: 2.55rem;
    height: 2.55rem;
    background: rgba(22, 18, 16, 0.42);
  }

  .enquiry-panel { justify-content: stretch; }
  .enquiry-sheet {
    width: 100%;
    padding: calc(env(safe-area-inset-top, 0px) + 4.4rem) 1.25rem calc(5.6rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta {
    background: rgba(248, 244, 238, 0.94);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-top: 1px solid rgba(181, 154, 114, 0.28);
  }
  .float-contact {
    display: none;
  }

  .site-footer {
    padding: 3.2rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
  .footer-grid { gap: 1.9rem; }
  .footer-base {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2.1rem;
  }

  body.has-offset {
    padding-bottom: calc(3.35rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 379px) {
  .hero-stage {
    height: 46svh;
    min-height: 15.5rem;
    max-height: 21rem;
  }
  .hero .display {
    font-size: clamp(2.25rem, 12.2vw, 2.8rem);
  }
  .hero .lede {
    font-size: 0.88rem;
    margin-top: 0.7rem;
  }
  .hero-copy {
    margin-top: -2rem;
    padding: 1.85rem 5.5vw 1rem;
  }
  .hero-actions { margin-top: 0.95rem; }
  .stat b { font-size: 1.55rem; }
  .stat-label { letter-spacing: 0.08em; }
  .about-hero-plate .media {
    height: 44svh;
    min-height: 15rem;
    max-height: 20.5rem;
  }
  .about-hero-copy {
    margin-top: -2rem;
    padding-top: 2.45rem;
  }
  .about-hero .headline {
    font-size: clamp(2.15rem, 11.5vw, 2.7rem);
  }
}

@media (min-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 0 4.5vw 0 6.2vw;
  }
  .site-nav { display: flex; gap: 1.2rem; }
  .enquire-link { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero {
    grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
    min-height: 100vh;
  }
  .hero-copy {
    max-width: none;
    padding: calc(var(--nav-h) + 1.4rem) 4.5vw 2.4rem 6.2vw;
  }
  .hero-copy-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.4rem 0 2rem;
  }
  .hero-watermark { display: block; }
  .hero-stage { min-height: 100vh; order: 0; }
  .hero-side { display: block; }
  .hero-frame,
  .hero-corners { inset: 1.35rem; }
  .hero-caption { left: 2.05rem; bottom: 2.05rem; }
  .scroll-hint { right: 2.05rem; bottom: 2.05rem; }
  .hero-veil {
    background:
      linear-gradient(90deg, var(--ivory) 0%, rgba(248,244,238,0.62) 12%, rgba(248,244,238,0.16) 32%, transparent 52%),
      linear-gradient(180deg, rgba(33, 28, 25, 0.2) 0%, transparent 24%, transparent 70%, rgba(33, 28, 25, 0.38) 100%);
  }
  .hero-foot {
    margin-top: 0;
    padding-top: 0.4rem;
  }
  .split { grid-template-columns: 0.5fr 1.5fr; align-items: end; }
  #featured .split { grid-template-columns: minmax(228px, 0.38fr) 1.62fr; gap: 3.8vw; align-items: end; }
  .edit-watermark { display: block; }
  .edit-head { padding-right: 2.4rem; }
  .edit-head::after {
    content: "";
    position: absolute;
    right: 0.35rem;
    top: 8%;
    bottom: 6%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.55), transparent);
  }
  .edit-card { flex: 0 0 calc((100% - 1.2rem) / 2.38); }
  .intro-band { grid-template-columns: 0.92fr 1.08fr; gap: 5.5vw; align-items: start; }
  .intro-copy { padding-left: 0.4rem; }
  .intro-copy::before {
    content: "";
    position: absolute;
    left: -2.4vw;
    top: 6%;
    bottom: 4%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.55), transparent);
  }
  .intro-watermark { display: block; }
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .stat {
    padding: 0.2rem 1.15rem 0.15rem 0;
  }
  .stat + .stat {
    padding-left: 1.35rem;
    padding-right: 0.4rem;
  }
  .stat + .stat::before {
    left: 0;
    right: auto;
    top: 12%;
    bottom: 10%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.55), transparent);
  }
  .stat b { font-size: clamp(2.8rem, 4.4vw, 4.2rem); }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .meet-watermark { display: block; }
  .about-watermark { display: block; }
  .about-hero-band {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 5.5vw;
    align-items: center;
  }
  .about-hero-copy {
    padding-bottom: 0.4rem;
  }
  .about-hero-stats .stat b { font-size: clamp(2.15rem, 2.8vw, 3.05rem); }
  .about-hero-plate::before {
    content: "";
    position: absolute;
    left: -2.6vw;
    top: 8%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.55), transparent);
  }
  .practice-watermark { display: block; }
  .services-watermark { display: block; }
  .folio-watermark { display: block; }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    column-gap: 4.8vw;
  }
  .svc-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.6rem;
    bottom: 0.6rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.45), transparent);
    pointer-events: none;
  }
  .services-index .svc::before { display: none; }
  .services-index .svc {
    padding-left: 0;
  }
  .services-index .svc-node {
    position: relative;
    left: auto;
    top: auto;
    display: block;
    margin: 0.95rem 0 0.85rem;
  }
  .practice-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 5vw; }
  .meet-section .pull-quote {
    grid-column: 2;
    max-width: 22rem;
    padding-top: 0.4rem;
  }
  .meet-section .quote-mark { font-size: 4.4rem; }
  .dark-grid { grid-template-columns: 1.05fr 0.95fr; }
  .atelier-grid {
    grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
    min-height: 82vh;
  }
  .atelier-copy { padding: 6.5rem 4.5vw 6.5rem 6.2vw; }
  .atelier-watermark { display: block; }
  .atelier-stage { min-height: 82vh; }
  .atelier-frame,
  .atelier-corners { inset: 1.35rem; }
  .atelier-caption { left: 2.05rem; bottom: 2.05rem; }
  .step { grid-template-columns: 6.5rem 1fr; align-items: center; }
  .experience-watermark { display: block; }
  .experience-section .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 0.4rem;
  }
  .experience-section .steps::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 4.55rem;
    height: 1px;
    background: linear-gradient(90deg, var(--brass), rgba(216, 200, 184, 0.35), var(--brass));
    opacity: 0.7;
  }
  .experience-section .step {
    padding: 0 1.8rem 0 0;
  }
  .experience-section .step::before { display: none; }
  .experience-section .step-node {
    position: relative;
    left: auto;
    top: auto;
    margin: 1.05rem 0 1.2rem;
  }
  .experience-section .step-num { position: relative; z-index: 1; }
  .meet-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .kind-grid { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
  .kind-section .kind-grid { grid-template-columns: 0.78fr 1.1fr 0.92fr; align-items: end; }
  .kind-watermark { display: block; }
  .words-watermark { display: block; }
  .word-entry {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 5vw;
    align-items: center;
  }
  .word-entry.is-flip {
    grid-template-columns: 1.08fr 0.92fr;
  }
  .word-entry.is-flip .kind-photo { order: 2; }
  .word-quote {
    padding-left: 0.4rem;
  }
  .word-entry.is-flip .word-quote {
    padding-left: 0;
    padding-right: 0.4rem;
  }
  .dest-watermark { display: block; }
  .enquire-watermark { display: block; }
  .dest-caption { display: flex; }
  .dest-frame,
  .dest-corners { inset: 1.35rem; }
  .destination-copy { padding: 6.6rem 0 5.4rem; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.25fr 0.9fr 1.05fr; align-items: start; }
  .footer-watermark { display: block; }
  .service-row { grid-template-columns: 4rem 0.8fr 1.4fr; align-items: baseline; }
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; gap: 5.5vw; }
  .contact-watermark { display: block; }
  .contact-form-wrap {
    position: relative;
  }
  .contact-form-wrap::before {
    content: "";
    position: absolute;
    left: -2.6vw;
    top: 6%;
    bottom: 4%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.55), transparent);
  }
  .mobile-cta { display: none; }
  body.has-offset { padding-bottom: 0; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:nth-child(3n) { grid-column: auto; }
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item:nth-child(5) .media,
  .gallery-item:nth-child(6) .media { aspect-ratio: 16 / 11; }
}

@media (min-width: 1100px) {
  .edit-card { flex: 0 0 calc((100% - 1.2rem) / 2.42); }
  .hero-copy { padding-left: 7vw; padding-right: 5vw; }
  .site-header { padding: 0 5vw 0 7vw; }
  .site-nav { gap: 1.75rem; }
  .hero .display { font-size: clamp(3.4rem, 6.6vw, 7.6rem); }
  .atelier-copy { padding-left: 7vw; padding-right: 5vw; }
  .about-grid { grid-template-columns: 0.82fr 0.95fr 0.68fr; align-items: start; }
  .meet-section .pull-quote {
    grid-column: auto;
    padding: 2.4rem 0 0 0.4rem;
    max-width: none;
  }
  .meet-section .pull-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(181, 154, 114, 0.55), transparent);
  }
}

@media (hover: hover) and (pointer: fine) {
  body.has-cursor .cursor { display: flex; }
  body.has-cursor a,
  body.has-cursor button { cursor: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .media img, .hero-slide img { transform: none; }
  .hero-slide.is-active { transform: none; }
  .edit-section .edit-card.img-reveal img,
  .edit-section .edit-card.img-reveal.is-in img,
  .edit-section .edit-card.img-reveal.is-in:hover img,
  .folio-section .gallery-item.img-reveal img,
  .folio-section .gallery-item.img-reveal.is-in img,
  .folio-section .gallery-item.img-reveal.is-in:hover img {
    clip-path: none;
    transform: none;
    filter: none;
  }
  .edit-shine { display: none; }
  .edit-mount,
  .edit-card.is-active .edit-mount,
  .edit-card:hover .edit-mount {
    transform: none;
    opacity: 1;
  }
  .hero-pager button[aria-selected="true"]::after,
  .hero-pager button.is-filling::after { width: 100%; }
}
