:root {
  --bg:        #F8F5F0;
  --surface:   #FFFFFF;
  --fg:        #1E1E1E;
  --muted:     #6B6864;
  --border:    rgba(30,30,30,0.12);
  --hairline:  rgba(30,30,30,0.18);
  --gold:      #B89B5E;
  --burgundy:  #5E1F28;

  --font-display: 'Cormorant Garamond', 'Iowan Old Style', 'Apple Garamond', Georgia, serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --max:  1440px;
  --pad:  clamp(20px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--muted);
  display: inline-block;
}
.eyebrow--gold { color: var(--gold); }

.hairline {
  height: 1px;
  background: var(--hairline);
  width: 100%;
}
.hairline--gold { background: var(--gold); height: 1px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,155,94,0.18), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(94,31,40,0.32), transparent 50%),
    linear-gradient(180deg, #14110f 0%, #1a1614 60%, #0f0d0c 100%);
}
.hero__media {
  position: absolute;
  inset: -2%;
  z-index: -3;
  overflow: hidden;
  background:
    url('../video/hero-poster.jpg') center 35% / cover no-repeat;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.55) saturate(0.85) contrast(1.05);
}
.hero__photo {
  display: none;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 9px),
    repeating-linear-gradient(25deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 30%, rgba(8,6,5,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 25%, transparent 55%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 0 var(--pad);
  animation: hero-rise 1.2s cubic-bezier(0.2,0.7,0.2,1) both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 12vw, 140px);
  line-height: 0.96;
  letter-spacing: 0.06em;
  margin: 24px 0 6px;
}
.hero__sub {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 11px;
  opacity: 0.8;
  padding-left: 0.5em;
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.45;
  margin: 56px auto 44px;
  max-width: 640px;
  color: rgba(255,255,255,0.9);
  text-wrap: balance;
}
.hero__cta {
  display: inline-block;
  padding: 18px 38px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.hero__cta:hover {
  background: var(--gold);
  color: var(--fg);
  border-color: var(--gold);
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  margin: 14px auto 0;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
  50%      { opacity: 0.9; transform: translate(-50%, 4px); }
}

/* ============== SECTION SCAFFOLD ============== */
section { position: relative; }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) var(--pad);
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
}
.section-head .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  font-weight: 400;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.01em;
}
.section-head .line {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  margin-bottom: 12px;
}

/* ============== ABOUT ============== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.about__portrait {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.45) 100%),
    url('https://images.unsplash.com/photo-1559563458-527698bf5295?w=1400&q=80&auto=format&fit=crop') center 25% / cover,
    linear-gradient(165deg, #2a2723 0%, #181513 70%, #0e0c0b 100%);
  filter: grayscale(0.85) contrast(1.05) brightness(0.95);
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.7);
}
.about__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 5px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.photo-slot__caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
}
.photo-slot__mark {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.36em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.about__copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin: 18px 0 28px;
  letter-spacing: 0.005em;
}
.about__copy p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--fg);
  max-width: 48ch;
  margin: 0 0 18px;
}
.about__copy p + p { color: var(--muted); }
.about__sig {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.about__sig::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; }
  .about__portrait { aspect-ratio: 4 / 5; }
}

/* ============== BESPOKE PROCESS ============== */
.bespoke {
  background: #EFEAE2;
}
.bespoke .wrap { padding-top: clamp(80px, 12vh, 140px); padding-bottom: clamp(80px, 12vh, 140px); }
.bespoke__lede {
  max-width: 680px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: var(--fg);
  margin: 0 0 80px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.step {
  background: #EFEAE2;
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  transition: background 0.4s ease;
}
.step:hover { background: #F8F5F0; }
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.01em;
}
.step__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.step__photo {
  margin-top: auto;
  height: 130px;
  background-color: #181513;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: grayscale(0.35) contrast(1.02);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.step:hover .step__photo {
  filter: grayscale(0) contrast(1.05);
}
.step__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.step--01 .step__photo { background-image: url('https://images.unsplash.com/photo-1567532900872-f4e906cbf06a?w=900&q=75&auto=format&fit=crop'); }
.step--02 .step__photo { background-image: url('https://images.unsplash.com/photo-1606522754091-a3bbf9ad4cb3?w=900&q=75&auto=format&fit=crop'); background-position: center 40%; }
.step--03 .step__photo { background-image: url('https://images.unsplash.com/photo-1581338834647-b0fb40704e21?w=900&q=75&auto=format&fit=crop'); }
.step--04 .step__photo { background-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=900&q=75&auto=format&fit=crop'); }
.step--05 .step__photo { background-image: url('https://images.unsplash.com/photo-1581375074612-d1fd0e661aeb?w=900&q=75&auto=format&fit=crop'); }

@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 240px; }
}

/* ============== MANIFESTO ============== */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,155,94,0.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 90%, rgba(94,31,40,0.18), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 8px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}
.manifesto .wrap {
  padding-top: clamp(110px, 16vh, 200px);
  padding-bottom: clamp(110px, 16vh, 200px);
  max-width: 1180px;
  text-align: center;
}
.manifesto .eyebrow {
  color: var(--gold);
  margin-bottom: 36px;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--bg);
  margin: 0 auto;
  max-width: 22ch;
  text-wrap: balance;
}
.manifesto__quote em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.manifesto__attrib {
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.5);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.manifesto__attrib::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ============== COLLECTIONS ============== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}
.collection {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  background: #1c1916;
  color: #fff;
}
.collection__bg {
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(0.2,0.7,0.2,1);
}
.collection:hover .collection__bg { transform: scale(1.06); }
.collection--men    .collection__bg {
  background:
    linear-gradient(165deg, rgba(31,28,25,0.35) 0%, rgba(15,13,12,0.55) 100%),
    url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1400&q=80&auto=format&fit=crop') center 20% / cover,
    linear-gradient(165deg, #1f1c19 0%, #0f0d0c 100%);
}
.collection--women  .collection__bg {
  background:
    linear-gradient(165deg, rgba(44,31,35,0.30) 0%, rgba(20,16,15,0.55) 100%),
    url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1400&q=80&auto=format&fit=crop') center 25% / cover,
    linear-gradient(165deg, #2c1f23 0%, #14100f 100%);
}
.collection--formal .collection__bg {
  background:
    linear-gradient(165deg, rgba(42,36,29,0.35) 0%, rgba(17,15,12,0.55) 100%),
    url('https://images.unsplash.com/photo-1591047139829-d91aecb6caea?w=1400&q=80&auto=format&fit=crop') center 30% / cover,
    linear-gradient(165deg, #2a241d 0%, #110f0c 100%);
}
.collection--custom .collection__bg {
  background:
    linear-gradient(165deg, rgba(28,31,34,0.35) 0%, rgba(12,14,16,0.55) 100%),
    url('https://images.unsplash.com/photo-1594938298603-c8148c4dae35?w=1400&q=80&auto=format&fit=crop') center / cover,
    linear-gradient(165deg, #1c1f22 0%, #0c0e10 100%);
}
.collection__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(108deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 8px);
  mix-blend-mode: overlay;
}
.collection__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.collection__label {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  z-index: 2;
}
.collection__title {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.collection__title h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.01em;
}
.collection__arrow {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.collection:hover .collection__arrow { transform: translate(8px, -8px); }

@media (max-width: 540px) {
  .collections-grid { grid-template-columns: 1fr; }
}

/* ============== STORIES ============== */
.stories {
  background: var(--fg);
  color: var(--bg);
}
.stories .wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.stories .section-head h2 { color: var(--bg); }
.stories .section-head .num { color: var(--gold); }
.stories .section-head .line { background: rgba(248,245,240,0.18); }

.stories__col-left { position: sticky; top: 100px; }
.stories__col-left .eyebrow { color: var(--gold); }
.stories__col-left h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  margin: 18px 0 0;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.story {
  padding: 36px 0;
  border-bottom: 1px solid rgba(248,245,240,0.14);
}
.story:first-child { padding-top: 0; }
.story:last-child  { border-bottom: 0; }
.story__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.story__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--bg);
  letter-spacing: 0.005em;
}
.story__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(248,245,240,0.7);
  margin: 0 0 16px;
  max-width: 56ch;
}
.story__read {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  display: inline-block;
}

@media (max-width: 900px) {
  .stories .wrap { grid-template-columns: 1fr; }
  .stories__col-left { position: static; }
}

/* ============== GALLERY ============== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 4px;
}
.photo {
  background-color: #161311;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.45);
  transition: transform 1.2s cubic-bezier(0.2,0.7,0.2,1), filter 0.6s ease;
  filter: brightness(0.92) saturate(0.95);
}
.photo:hover {
  transform: scale(1.015);
  filter: brightness(1) saturate(1.02);
}
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.35) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo--g1 { background-image: url('https://images.unsplash.com/photo-1594938298603-c8148c4dae35?w=1600&q=80&auto=format&fit=crop'); }
.photo--g2 { background-image: url('https://images.unsplash.com/photo-1606522754091-a3bbf9ad4cb3?w=1000&q=75&auto=format&fit=crop'); background-position: center 30%; }
.photo--g3 { background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1000&q=75&auto=format&fit=crop'); background-position: center 20%; }
.photo--g4 { background-image: url('https://images.unsplash.com/photo-1542596768-5d1d21f1cf98?w=1200&q=75&auto=format&fit=crop'); }
.photo--g5 { background-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1200&q=75&auto=format&fit=crop'); }
.photo--g6 { background-image: url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?w=1200&q=75&auto=format&fit=crop'); background-position: center 22%; }
.photo--g7 { background-image: url('https://images.unsplash.com/photo-1581375074612-d1fd0e661aeb?w=1200&q=75&auto=format&fit=crop'); }
.photo--g8 { background-image: url('https://images.unsplash.com/photo-1591047139829-d91aecb6caea?w=1200&q=75&auto=format&fit=crop'); background-position: center 28%; }

/* photo placement */
.photo:nth-child(1) { grid-column: span 6; grid-row: span 4; }
.photo:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.photo:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.photo:nth-child(4) { grid-column: span 3; grid-row: span 3; }
.photo:nth-child(5) { grid-column: span 3; grid-row: span 3; }
.photo:nth-child(6) { grid-column: span 4; grid-row: span 3; }
.photo:nth-child(7) { grid-column: span 4; grid-row: span 3; }
.photo:nth-child(8) { grid-column: span 4; grid-row: span 3; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .photo:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .photo:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

/* ============== TESTIMONIALS ============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.testimonial {
  background: var(--bg);
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 0.6;
  color: var(--gold);
  font-weight: 400;
  margin: 0;
  height: 28px;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: var(--fg);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.testimonial__author {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}
.testimonial__author strong {
  display: block;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 4px;
}
@media (max-width: 820px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============== CONTACT ============== */
.contact {
  background: #EFEAE2;
}
.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.contact__intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  margin: 18px 0 32px;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.contact__intro p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 0 40px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.contact__row span:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__row span:last-child {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg);
}
.contact__socials {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.contact__socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.contact__socials a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
}

.form {
  background: var(--bg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--hairline);
}
.form__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 6px;
}
.form__sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  margin: 0 0 32px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg);
  transition: border-color 0.3s ease;
  font-weight: 400;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}
.form__submit {
  margin-top: 14px;
  width: 100%;
  background: var(--fg);
  color: var(--bg);
  border: 0;
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.form__submit:hover { background: var(--burgundy); }

.form__success {
  display: none;
  padding: 24px;
  background: rgba(184,155,94,0.12);
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--fg);
}
.form__success.is-visible { display: block; }
.form__success.is-visible + form { display: none; }

@media (max-width: 900px) {
  .contact .wrap { grid-template-columns: 1fr; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--fg);
  color: rgba(248,245,240,0.7);
  padding: 56px var(--pad) 36px;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(248,245,240,0.14);
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: var(--bg);
  margin: 0 0 10px;
}
.footer__brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__statement {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  max-width: 36ch;
  color: rgba(248,245,240,0.5);
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-family: var(--font-display);
  font-size: 17px;
  color: rgba(248,245,240,0.8);
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.45);
}
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============== SECTION TICKER (right-edge index) ============== */
.ticker {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.ticker.is-ready { opacity: 1; }
.ticker a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 4px 0;
}
.ticker a::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  transition: width 0.4s cubic-bezier(0.2,0.7,0.2,1), opacity 0.3s ease;
}
.ticker a .ticker__num { font-variant-numeric: tabular-nums; }
.ticker a .ticker__label {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker a:hover {
  color: var(--fg);
}
.ticker a:hover .ticker__label,
.ticker a.is-active .ticker__label {
  opacity: 1;
  transform: translateX(0);
  max-width: 200px;
}
.ticker a.is-active {
  color: var(--gold);
}
.ticker a.is-active::before {
  width: 38px;
  opacity: 1;
}
.ticker.is-on-dark a { color: rgba(248,245,240,0.45); }
.ticker.is-on-dark a:hover { color: var(--bg); }
.ticker.is-on-dark a.is-active { color: var(--gold); }

@media (max-width: 1100px) { .ticker { display: none; } }

/* ============== SCROLL REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2,0.7,0.2,1), transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__inner { animation: none; }
}

/* ============== HOME EXPLORE ============== */
.home-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}
.home-explore__card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 140px;
  padding: 28px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.home-explore__card:hover {
  border-color: var(--gold);
  background: rgba(184, 155, 94, 0.06);
}
.home-explore__label {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}
.home-explore__arrow {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.35s ease;
}
.home-explore__card:hover .home-explore__arrow {
  transform: translate(6px, -6px);
}
@media (max-width: 900px) {
  .home-explore__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .home-explore__grid { grid-template-columns: 1fr; }
}
