/* ═══════════════════ DESIGN TOKENS ═══════════════════ */
:root {
  /* palette — warm off-whites · charcoal · stone · gold */
  --bg: #f6f3ed;
  /* warm off-white   */
  --bg-soft: #efeade;
  /* soft beige       */
  --paper: #fcfaf5;
  /* ivory panels     */
  --ink: #191712;
  /* warm charcoal    */
  --ink-2: #37332a;
  --ink-dark: #14120d;
  /* dark sections    */
  --cream: #f3efe6;
  /* text on dark     */
  --stone: #857c6b;
  /* muted stone      */
  --stone-2: #a99f8c;
  --line: rgba(25, 23, 18, 0.14);
  --line-soft: rgba(25, 23, 18, 0.08);
  --gold: #b08a47;
  --gold-2: #c9a96a;
  --gold-soft: rgba(176, 138, 71, 0.12);
  --blueprint: #3f5b74;

  /* type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --hand: "Caveat", cursive;

  /* motion + layout */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2: cubic-bezier(0.65, 0.05, 0, 1);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(6rem, 12vw, 11rem);
  --radius: 2px;
}

/* ═══════════════════ RESET / BASE ═══════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

html:not(.js) {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #c7bda9;
  border-radius: 99px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 1rem;
}

/* grain + textures (kept ≤5% opacity) */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 2000;
  pointer-events: none;
  width: 200%;
  height: 200%;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-3%, -5%);
  }

  30% {
    transform: translate(4%, 2%);
  }

  50% {
    transform: translate(-4%, 6%);
  }

  70% {
    transform: translate(5%, -3%);
  }

  90% {
    transform: translate(-2%, 4%);
  }
}

/* ═══════════════════ TYPOGRAPHY UTILITIES ═══════════════════ */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
}

.overline::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
}

.overline--center {
  justify-content: center;
}

.overline--center::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
}

.overline--light {
  color: var(--stone-2);
}

.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.lead {
  color: var(--stone);
  max-width: 34em;
}

.hand-note {
  font-family: var(--hand);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  color: var(--gold);
  line-height: 1.25;
  transform: rotate(-2deg);
  display: inline-block;
}

/* split-text line masking */
.js [data-split] .line {
  overflow: hidden;
  display: block;
}

.js [data-split] .word {
  display: inline-block;
  will-change: transform;
}

/* generic reveal state (JS adds motion; visible without JS) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(2.4rem);
}

.js [data-mask-img] {
  clip-path: inset(0 0 100% 0);
}

.js [data-mask-img] img {
  transform: scale(1.18);
}

/* ═══════════════════ LAYOUT PRIMITIVES ═══════════════════ */
.wrap {
  width: min(1440px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
  position: relative;
}

.section-head {
  max-width: 52rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-head .h-display {
  margin-top: 1.4rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 2.2rem;
  border-radius: 99px;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  isolation: isolate;
  transition: color 0.45s var(--ease);
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover {
  color: #fff;
}

.btn .btn-arrow {
  transition: transform 0.45s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #fff;
}

.btn--gold::before {
  background: var(--ink-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn--ghost::before {
  background: var(--ink);
}

.btn--ghost:hover {
  color: var(--cream);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(243, 239, 230, 0.32);
}

.btn--ghost-light::before {
  background: var(--cream);
}

.btn--ghost-light:hover {
  color: var(--ink);
}

.link-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.link-underline:hover::after {
  transform: scaleX(1);
}

/* magnetic wrapper */
.magnetic {
  display: inline-block;
  will-change: transform;
}

/* ═══════════════════ SCROLL PROGRESS ═══════════════════ */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1600;
  background: transparent;
  pointer-events: none;
}

.progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

/* ═══════════════════ CUSTOM CURSOR ═══════════════════ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  pointer-events: none;
  border-radius: 50%;
  translate: -50% -50%;
  display: none;
}

@media (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    display: flex;
  }
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(176, 138, 71, 0.65);
  align-items: center;
  justify-content: center;
  transition:
    width 0.35s var(--ease),
    height 0.35s var(--ease),
    background 0.35s,
    border-color 0.35s;
}

.cursor-ring span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s;
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(176, 138, 71, 0.14);
  border-color: var(--gold);
}

.cursor-ring.is-label {
  width: 82px;
  height: 82px;
  background: rgba(20, 18, 13, 0.82);
  border-color: transparent;
  backdrop-filter: blur(4px);
}

.cursor-ring.is-label span {
  opacity: 1;
}

.cursor-hidden .cursor-dot,
.cursor-hidden .cursor-ring {
  opacity: 0;
}

/* ═══════════════════ PRELOADER ═══════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  background: var(--ink-dark);
  color: var(--cream);
}

.preloader-inner {
  text-align: center;
}

.preloader-mark {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: 0.14em;
  display: block;
  overflow: hidden;
}

.preloader-mark span {
  display: inline-block;
  transform: translateY(110%);
}

.preloader-sub {
  margin-top: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--stone-2);
  opacity: 0;
}

.preloader-count {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--gold-2);
}

.preloader-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  transition:
    transform 0.5s var(--ease),
    background 0.4s,
    box-shadow 0.4s,
    backdrop-filter 0.4s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem var(--gutter);
  transition: padding 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(246, 243, 237, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow:
    0 1px 0 var(--line-soft),
    0 18px 45px -30px rgba(25, 23, 18, 0.35);
}

.nav.is-scrolled .nav-inner {
  padding-block: 0.85rem;
}

.nav.is-hidden {
  transform: translateY(-102%);
}

.nav.is-dark:not(.is-scrolled) {
  color: var(--cream);
}

.nav.is-dark:not(.is-scrolled) .nav-link {
  color: var(--cream);
}

.nav.is-dark:not(.is-scrolled) .brand-sub {
  color: rgba(243, 239, 230, 0.6);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 2;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.brand-mark i {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}

.brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  gap: 2.6rem;
}

.nav-link {
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: 0.35rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
}

.burger {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 52px;
  height: 52px;
  padding: 14px;
  border-radius: 50%;
  background: rgba(25, 23, 18, 0.05);
  backdrop-filter: blur(6px);
}

.burger span {
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition:
    transform 0.45s var(--ease),
    opacity 0.3s;
  transform-origin: center;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(4.2px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  transform: translateY(-4.2px) rotate(-45deg);
}

.nav.is-dark:not(.is-scrolled) .burger {
  background: rgba(243, 239, 230, 0.12);
}

/* full-screen menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 1400;
  visibility: hidden;
  background: var(--ink-dark);
  color: var(--cream);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.menu-media {
  flex: 0 0 38%;
  position: relative;
  overflow: hidden;
  display: none;
}

@media (min-width: 960px) {
  .menu-media {
    display: block;
  }
}

.menu-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transform: scale(1.08);
}

.menu-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--ink-dark));
}

.menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 10vh, 8rem) clamp(2rem, 6vw, 6rem) clamp(3rem, 6vh, 5rem);
}

.menu-list li {
  overflow: hidden;
}

.menu-link {
  display: inline-flex;
  align-items: baseline;
  gap: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.4vh, 3.6rem);
  font-weight: 500;
  color: var(--cream);
  padding-block: 0.45rem;
  transition:
    color 0.4s,
    letter-spacing 0.5s var(--ease);
}

.menu-link small {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold-2);
}

.menu-link:hover {
  color: var(--gold-2);
  letter-spacing: 0.02em;
}

.menu-foot {
  margin-top: auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(243, 239, 230, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 3rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-2);
}

.menu-foot a:hover {
  color: var(--gold-2);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--ink-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  opacity: 0.92;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(20, 18, 13, 0.42) 0%,
      rgba(20, 18, 13, 0.08) 34%,
      rgba(20, 18, 13, 0.16) 62%,
      rgba(20, 18, 13, 0.82) 100%
    ),
    radial-gradient(
      120% 70% at 78% 20%,
      transparent 40%,
      rgba(20, 18, 13, 0.35)
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) clamp(2.2rem, 5vh, 4rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.2rem, 2.5vh, 2rem);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero-eyebrow::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: var(--gold-2);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  color: #fdfcf8;
  font-size: clamp(3rem, 8.6vw, 8.2rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 12em;
}

.hero-title .it {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
}

.hero-title .circled {
  position: relative;
  display: inline-block;
}

.hero-title .circled svg {
  position: absolute;
  inset: -14% -9% -20% -9%;
  width: 118%;
  height: 140%;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 2.4;
  opacity: 0.9;
  pointer-events: none;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(1.8rem, 4vh, 3rem);
}

.hero-sub {
  max-width: 30em;
  color: rgba(243, 239, 230, 0.78);
  font-weight: 300;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-meta {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.6);
}

.hero-meta .hand-note {
  color: var(--gold-2);
  text-transform: none;
  letter-spacing: 0;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 5vh, 3.5rem);
  padding: 1.4rem var(--gutter) 1.8rem;
  border-top: 1px solid rgba(243, 239, 230, 0.16);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.62);
}

.hero-bottom .coords {
  font-family: var(--hand);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(243, 239, 230, 0.75);
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.scroll-hint .line {
  width: 1px;
  height: 44px;
  background: rgba(243, 239, 230, 0.35);
  overflow: hidden;
  position: relative;
}

.scroll-hint .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-2);
  animation: scrollline 2.2s var(--ease-2) infinite;
}

@keyframes scrollline {
  0% {
    top: -100%;
  }

  55% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

/* ═══════════════════ MARQUEE ═══════════════════ */
.marquee {
  position: relative;
  padding-block: clamp(1.6rem, 3vw, 2.6rem);
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: var(--paper);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.marquee-item em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}

.marquee-item svg {
  width: 0.55em;
  height: 0.55em;
  fill: var(--gold);
  flex: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════ ABOUT / ATELIER ═══════════════════ */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  gap: clamp(3rem, 6vw, 7rem);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.about-copy .h-display {
  margin-block: 1.4rem 2rem;
}

.about-copy p + p {
  margin-top: 1.3rem;
}

.about-copy .dropcap::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  line-height: 0.82;
  float: left;
  padding: 0.08em 0.12em 0 0;
  color: var(--gold);
  font-weight: 500;
}

.about-signature {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.about-signature svg {
  width: 150px;
  height: 52px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  opacity: 0.85;
}

.about-signature figcaption {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
}

.about-media {
  position: relative;
}

.about-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(25, 23, 18, 0.4);
}

.about-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

/* blueprint corner ticks */
.corner-ticks::before,
.corner-ticks::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gold);
  z-index: 2;
}

.corner-ticks::before {
  top: -9px;
  left: -9px;
  border-right: 0;
  border-bottom: 0;
}

.corner-ticks::after {
  bottom: -9px;
  right: -9px;
  border-left: 0;
  border-top: 0;
}

.about-ruler {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.about-ruler svg {
  flex: 1;
  height: 14px;
  stroke: var(--stone);
  opacity: 0.7;
}

.about-ruler .hand-note {
  flex: none;
}

.about-card {
  position: absolute;
  left: clamp(-2.5rem, -3vw, -1rem);
  bottom: clamp(2rem, 5vw, 3.5rem);
  z-index: 3;
  background: rgba(252, 250, 245, 0.72);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 28px 60px -28px rgba(25, 23, 18, 0.45);
  padding: 1.4rem 1.7rem;
  max-width: 16.5rem;
}

.about-card strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  display: block;
  color: var(--ink);
}

.about-card span {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 600px) {
  .about-card {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

/* faint floor-plan behind about */
.floorplan-bg {
  position: absolute;
  top: 6%;
  right: -4%;
  width: min(46vw, 620px);
  opacity: 0.05;
  pointer-events: none;
  stroke: var(--ink);
  fill: none;
  z-index: 0;
}

/* ═══════════════════ STATS BAND ═══════════════════ */
.stats {
  background: var(--ink-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, var(--cream) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, var(--cream) 0 1px, transparent 1px 120px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-inline: 1px solid rgba(243, 239, 230, 0.1);
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: clamp(2.4rem, 4.5vw, 4rem) clamp(1.4rem, 3vw, 3rem);
  border-right: 1px solid rgba(243, 239, 230, 0.1);
  border-bottom: 1px solid rgba(243, 239, 230, 0.1);
  position: relative;
}

.stat:hover .stat-num {
  color: var(--gold-2);
}

.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1;
  color: var(--cream);
  transition: color 0.5s;
  display: flex;
  align-items: baseline;
}

.stat-num small {
  font-size: 0.5em;
  color: var(--gold-2);
  margin-left: 0.12em;
}

.stat-label {
  margin-top: 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-2);
}

/* ═══════════════════ COLLECTION (horizontal) ═══════════════════ */
.collection {
  background: var(--bg-soft);
  overflow: hidden;
}

.collection-pin {
  padding-block: clamp(4rem, 8vh, 6rem) 0;
}

.collection-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-inline: var(--gutter);
  margin-bottom: clamp(2.4rem, 5vh, 4rem);
}

.collection-track {
  display: flex;
  gap: clamp(1.4rem, 2.5vw, 2.5rem);
  padding: 0 var(--gutter) clamp(4rem, 8vh, 6rem);
  width: max-content;
}

.p-intro {
  flex: 0 0 auto;
  width: clamp(16rem, 24vw, 24rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}

.p-intro .hand-note {
  transform: rotate(-3deg);
}

.p-intro-arrow {
  width: 74px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
}

.p-card {
  flex: 0 0 auto;
  width: clamp(19rem, 42vw, 40rem);
  position: relative;
}

.p-card-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  transform-style: preserve-3d;
  box-shadow: 0 34px 70px -34px rgba(25, 23, 18, 0.5);
}

.p-card-media img {
  position: absolute;
  inset: -6% -10%;
  width: 120%;
  height: 112%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
  will-change: transform;
}

.p-card:hover .p-card-media img {
  transform: scale(1.06);
}

.p-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 13, 0.05) 45%,
    rgba(20, 18, 13, 0.55)
  );
}

.p-index {
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.p-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 18, 13, 0.5);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.9rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.p-info {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(252, 250, 245, 0.14);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  color: #fff;
  transform: translateY(0);
  transition:
    background 0.5s,
    transform 0.5s var(--ease);
}

.p-card:hover .p-info {
  background: rgba(20, 18, 13, 0.55);
}

.p-name {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 500;
  line-height: 1.15;
}

.p-loc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.p-loc svg {
  width: 11px;
  height: 11px;
  stroke: var(--gold-2);
}

.p-price {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  color: var(--gold-2);
  white-space: nowrap;
}

.p-specs {
  display: flex;
  gap: 1.3rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.p-specs b {
  color: #fff;
  font-weight: 700;
}

.collection-progress {
  height: 1px;
  background: var(--line);
  margin: 0 var(--gutter) clamp(3rem, 6vh, 4rem);
  position: relative;
}

.collection-progress i {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  display: block;
}

@media (max-width: 900px) {
  .collection-track {
    flex-direction: column;
    width: auto;
    padding-bottom: 2rem;
  }

  .p-card {
    width: 100%;
  }

  .p-intro {
    width: auto;
  }

  .collection-progress {
    display: none;
  }
}

/* ═══════════════════ SIGNATURE ESTATE (pinned story) ═══════════════════ */
.signature {
  background: var(--ink-dark);
  color: var(--cream);
  overflow: clip;
}

.signature .overline {
  color: var(--stone-2);
}

.signature .h-display {
  color: var(--cream);
}

.sig-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 6rem);
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .sig-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.sig-media {
  position: sticky;
  top: 9vh;
  height: 82vh;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 50px 100px -50px rgba(0, 0, 0, 0.8);
  display: none;
}

@media (min-width: 960px) {
  .sig-media {
    display: block;
  }
}

.sig-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1s var(--ease),
    transform 1.4s var(--ease);
}

.sig-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.sig-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.sig-media-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.sig-chapters {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 16vh, 9rem);
  padding-block: 6vh;
}

.sig-chapter {
  max-width: 34rem;
}

.sig-chapter .chap-idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sig-chapter .chap-idx::after {
  content: "";
  flex: 0 0 3rem;
  height: 1px;
  background: rgba(201, 169, 106, 0.5);
}

.sig-chapter h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-block: 1rem 1.1rem;
  color: var(--cream);
}

.sig-chapter p {
  color: rgba(243, 239, 230, 0.66);
  font-weight: 300;
}

.sig-chapter .hand-note {
  margin-top: 1.2rem;
  color: var(--gold-2);
}

.sig-chapter-img {
  display: block;
  margin-top: 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 960px) {
  .sig-chapter-img {
    display: none;
  }
}

.sig-cta {
  margin-top: 1rem;
}

/* ═══════════════════ VISION (before/after) ═══════════════════ */
.vision {
  background: var(--bg);
}

.ba {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  max-height: 78vh;
  width: 100%;
  box-shadow: 0 45px 90px -45px rgba(25, 23, 18, 0.5);
  touch-action: pan-y;
  user-select: none;
  cursor: ew-resize;
  --pos: 52%;
}

.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  z-index: 2;
}

.ba-before img {
  filter: grayscale(1) brightness(1.02) contrast(1.02) sepia(0.34)
    hue-rotate(165deg) saturate(2.4);
}

.ba-before::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.5) 0 1px,
      transparent 1px 64px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.5) 0 1px,
      transparent 1px 64px
    );
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 4;
  width: 1px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-0.5px);
}

.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(20, 18, 13, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
}

.ba-knob svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-2);
}

.ba-label {
  position: absolute;
  bottom: 1.3rem;
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 18, 13, 0.55);
  backdrop-filter: blur(8px);
  padding: 0.55rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.ba-label--l {
  left: 1.3rem;
}

.ba-label--r {
  right: 1.3rem;
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.vision-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.vision-foot p {
  font-size: 0.85rem;
  color: var(--stone);
  max-width: 36em;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.services-blob {
  position: absolute;
  top: -18%;
  right: -12%;
  width: 56vw;
  height: 56vw;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(201, 169, 106, 0.16),
    transparent 62%
  );
  filter: blur(58px);
  pointer-events: none;
}

.services-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1160px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.svc {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgba(252, 250, 245, 0.62);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem 2rem;
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
  --mx: 50%;
  --my: 50%;
}

.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  background: radial-gradient(
    320px circle at var(--mx) var(--my),
    rgba(201, 169, 106, 0.2),
    transparent 65%
  );
}

.svc:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -32px rgba(25, 23, 18, 0.4);
}

.svc:hover::before {
  opacity: 1;
}

.svc::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
}

.svc-icon svg {
  width: 22px;
  height: 22px;
}

.svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--stone-2);
}

.svc h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 1.6rem 0 0.7rem;
}

.svc p {
  font-size: 0.9rem;
  color: var(--stone);
}

.svc-link {
  margin-top: 1.4rem;
  color: var(--gold);
  font-size: 0.66rem;
}

/* ═══════════════════ PROCESS / METHOD ═══════════════════ */
.process {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 900px) {
  .process-line {
    display: block;
  }
}

.process-line svg {
  width: 2px;
  height: 100%;
}

.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 5.5rem);
}

.step {
  display: grid;
  gap: 1.2rem;
  position: relative;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .step {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
  }

  .step:nth-child(even) .step-body {
    order: 2;
  }

  .step:nth-child(even) .step-side {
    order: 1;
    text-align: right;
  }

  .step:nth-child(odd) .step-side {
    text-align: left;
  }
}

.step-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 6px var(--paper),
    0 0 0 7px var(--line);
}

@media (min-width: 900px) {
  .step-dot {
    display: block;
  }
}

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}

.step-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-block: 0.8rem 0.6rem;
}

.step-body p {
  color: var(--stone);
  max-width: 28em;
}

.step-side .hand-note {
  color: var(--gold);
}

.step-side svg.step-arrow {
  width: 64px;
  height: 34px;
  stroke: var(--gold);
  fill: none;
  opacity: 0.85;
  display: inline-block;
  margin-top: 0.4rem;
}

/* ═══════════════════ NEIGHBORHOODS ═══════════════════ */
.hoods {
  background: var(--bg);
}

.hoods-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 680px) {
  .hoods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .hoods-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hood {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: 0 30px 60px -34px rgba(25, 23, 18, 0.5);
}

.hood img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s var(--ease),
    filter 1.2s var(--ease);
  filter: saturate(0.9);
}

.hood:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}

.hood::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 13, 0) 40%,
    rgba(20, 18, 13, 0.72)
  );
  transition: background 0.6s;
}

.hood:hover::after {
  background: linear-gradient(
    180deg,
    rgba(176, 138, 71, 0.12) 0%,
    rgba(20, 18, 13, 0.8)
  );
}

.hood-body {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
  width: 100%;
}

.hood-count {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hood h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 0.4rem;
}

.hood-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.hood:hover .hood-cta {
  opacity: 1;
  transform: translateY(0);
}

.hood-cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-2);
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.voices {
  background: var(--ink-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.voices .overline {
  color: var(--stone-2);
}

.voices-quote-mark {
  position: absolute;
  top: 4rem;
  right: 6vw;
  font-family: var(--serif);
  font-size: clamp(12rem, 26vw, 24rem);
  line-height: 0.6;
  color: rgba(201, 169, 106, 0.07);
  pointer-events: none;
  user-select: none;
}

.voices .swiper {
  overflow: hidden;
}

.voice {
  max-width: 56rem;
}

.voice blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  line-height: 1.35;
  color: var(--cream);
}

.voice blockquote em {
  font-style: italic;
  color: var(--gold-2);
}

.voice-meta {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.voice-meta img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 169, 106, 0.5);
}

.voice-meta strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.voice-meta span {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-2);
}

.voices-controls {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.voices-frac {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--stone-2);
}

.voices-frac b {
  color: var(--gold-2);
  font-weight: 500;
}

.voice-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 239, 230, 0.25);
  color: var(--cream);
  transition:
    background 0.45s,
    border-color 0.45s,
    color 0.45s;
}

.voice-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.voice-btn svg {
  width: 20px;
  height: 20px;
}

.voices-bar {
  flex: 1;
  height: 1px;
  background: rgba(243, 239, 230, 0.15);
  position: relative;
  overflow: hidden;
}

.voices-bar i {
  position: absolute;
  inset: 0;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

/* ═══════════════════ TEAM ═══════════════════ */
.team {
  background: var(--bg);
}

.team-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.member-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  box-shadow: 0 26px 54px -30px rgba(25, 23, 18, 0.45);
}

.member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition:
    filter 0.8s var(--ease),
    transform 1.1s var(--ease);
}

.member:hover .member-media img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.member-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(20, 18, 13, 0.55));
  opacity: 0;
  transition: opacity 0.6s;
}

.member:hover .member-media::after {
  opacity: 1;
}

.member-contact {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.member:hover .member-contact {
  opacity: 1;
  transform: translateY(0);
}

.member-contact svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-2);
}

.member-body {
  padding: 1.2rem 0.2rem 0;
}

.member-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
}

.member-body span {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ═══════════════════ CTA ═══════════════════ */
.cta {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  color: var(--cream);
  overflow: hidden;
  text-align: center;
  background: var(--ink-dark);
}

.cta-media {
  position: absolute;
  inset: -12% 0;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 90% at 50% 50%,
    rgba(20, 18, 13, 0.25),
    rgba(20, 18, 13, 0.85)
  );
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: var(--section) var(--gutter);
  max-width: 62rem;
}

.cta-title {
  font-family: var(--serif);
  font-weight: 500;
  color: #fdfcf8;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.1;
  margin-block: 1.6rem 1.2rem;
}

.cta-title .underlined {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--gold-2);
}

.cta-title .underlined svg {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.28em;
  width: 104%;
  height: 0.42em;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 3;
  opacity: 0.9;
}

.cta-sub {
  color: rgba(243, 239, 230, 0.72);
  max-width: 36em;
  margin-inline: auto;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2.6rem;
}

.cta-note {
  margin-top: 2.2rem;
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: 1fr;
}

@media (min-width: 1000px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info .h-display {
  margin-block: 1.4rem 1.6rem;
}

.contact-list {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.4s var(--ease);
}

.contact-item:first-child {
  border-top: 1px solid var(--line-soft);
}

.contact-item:hover {
  padding-left: 0.5rem;
}

.contact-item .c-ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
}

.contact-item .c-ico svg {
  width: 18px;
  height: 18px;
}

.contact-item small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}

.contact-item a,
.contact-item p {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  transition:
    background 0.4s,
    color 0.4s,
    border-color 0.4s;
}

.socials a:hover {
  background: var(--ink);
  color: var(--gold-2);
  border-color: var(--ink);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.form-panel {
  position: relative;
  background: rgba(252, 250, 245, 0.7);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: 0 44px 90px -44px rgba(25, 23, 18, 0.45);
  padding: clamp(1.8rem, 4vw, 3.2rem);
}

.form-panel .corner-ticks::before {
  top: -9px;
  left: -9px;
}

.form-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid .span-2 {
    grid-column: span 2;
  }
}

.field {
  position: relative;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0 0.7rem;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.4s;
  appearance: none;
  -webkit-appearance: none;
}

.field textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.field label {
  position: absolute;
  left: 0;
  top: 1.35rem;
  pointer-events: none;
  font-size: 0.95rem;
  color: var(--stone);
  transition:
    top 0.35s var(--ease),
    font-size 0.35s var(--ease),
    letter-spacing 0.35s,
    color 0.35s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field.filled label {
  top: 0;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.field .bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.field input:focus ~ .bar,
.field select:focus ~ .bar,
.field textarea:focus ~ .bar {
  transform: scaleX(1);
}

.field select {
  cursor: pointer;
  color: var(--ink);
}

.field .select-arrow {
  position: absolute;
  right: 0;
  top: 1.6rem;
  width: 14px;
  height: 14px;
  stroke: var(--stone);
  pointer-events: none;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.form-foot small {
  color: var(--stone);
  font-size: 0.72rem;
  max-width: 22em;
}

.form-success {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(252, 250, 245, 0.94);
  backdrop-filter: blur(10px);
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s,
    visibility 0.6s;
  padding: 2rem;
}

.form-success.is-visible {
  opacity: 1;
  visibility: visible;
}

.form-success .ok-ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.form-success .ok-ring svg {
  width: 30px;
  height: 30px;
}

.form-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--stone);
  max-width: 26em;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--ink-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.footer-plan {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: min(52vw, 700px);
  opacity: 0.04;
  stroke: var(--cream);
  fill: none;
  pointer-events: none;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(243, 239, 230, 0.1);
}

.footer-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.12;
  max-width: 14em;
  color: var(--cream);
}

.footer-title em {
  font-style: italic;
  color: var(--gold-2);
}

.newsletter {
  min-width: min(100%, 26rem);
}

.newsletter p {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 1.1rem;
}

.newsletter-row {
  display: flex;
  border-bottom: 1px solid rgba(243, 239, 230, 0.25);
  transition: border-color 0.4s;
}

.newsletter-row:focus-within {
  border-color: var(--gold-2);
}

.newsletter input {
  flex: 1;
  background: none;
  border: 0;
  color: var(--cream);
  font: inherit;
  padding: 0.9rem 0;
}

.newsletter input::placeholder {
  color: rgba(243, 239, 230, 0.4);
}

.newsletter input:focus {
  outline: none;
}

.newsletter button {
  color: var(--gold-2);
  display: grid;
  place-items: center;
  padding: 0 0.4rem;
  transition: transform 0.4s var(--ease);
}

.newsletter button:hover {
  transform: translateX(5px);
}

.newsletter button svg {
  width: 20px;
  height: 20px;
}

.footer-mid {
  display: grid;
  gap: 2.6rem;
  grid-template-columns: 1fr;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .footer-mid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand .brand-mark {
  font-size: 1.7rem;
}

.footer-brand p {
  margin-top: 1.1rem;
  color: var(--stone-2);
  font-weight: 300;
  font-size: 0.9rem;
  max-width: 24em;
}

.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.3rem;
}

.footer-col li + li {
  margin-top: 0.75rem;
}

.footer-col a {
  color: rgba(243, 239, 230, 0.72);
  font-size: 0.9rem;
  transition:
    color 0.3s,
    padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--gold-2);
  padding-left: 0.4rem;
}

.footer-wordmark {
  font-family: var(--serif);
  font-weight: 600;
  text-align: center;
  line-height: 0.9;
  font-size: clamp(4.5rem, 14.5vw, 15rem);
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 239, 230, 0.16);
  user-select: none;
  white-space: nowrap;
  padding-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.6rem 2rem;
  border-top: 1px solid rgba(243, 239, 230, 0.1);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--stone-2);
}

.footer-bottom nav {
  display: flex;
  gap: 1.8rem;
}

.footer-bottom a:hover {
  color: var(--gold-2);
}

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.to-top .to-top-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243, 239, 230, 0.25);
  display: grid;
  place-items: center;
  transition:
    background 0.4s,
    border-color 0.4s;
}

.to-top:hover .to-top-ico {
  background: var(--gold);
  border-color: var(--gold);
}

.to-top svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════ MISC / A11Y / RESPONSIVE ═══════════════════ */
.icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

@media (max-width: 640px) {
  .hero-meta {
    display: none;
  }

  .hero-bottom {
    font-size: 0.56rem;
    gap: 1rem;
  }

  .voices-quote-mark {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .js [data-reveal],
  .js [data-mask-img] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .js [data-mask-img] img {
    transform: none;
  }

  .marquee-track {
    animation: none;
  }

  .grain {
    display: none;
  }
}

html.rm .js-motion {
  opacity: 1 !important;
  transform: none !important;
}

/* no-JS resilience */
html:not(.js) .preloader {
  display: none;
}

html:not(.js) .cursor-dot,
html:not(.js) .cursor-ring {
  display: none;
}

/* hero manual line reveal */
.h-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.h-line-inner {
  display: inline-block;
}

.js .h-line-inner {
  transform: translateY(115%);
  will-change: transform;
}
