/* ============================================================
   SELF-HOSTED FONTS — Futura PT + Questa Grande
   ============================================================ */
@font-face {
  font-family: 'futura-pt';
  src: url('assets/fonts/futura-pt-light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'futura-pt';
  src: url('assets/fonts/futura-pt-light-italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'futura-pt';
  src: url('assets/fonts/futura-pt-book.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'futura-pt';
  src: url('assets/fonts/futura-pt-book-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'futura-pt';
  src: url('assets/fonts/futura-pt-medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'futura-pt';
  src: url('assets/fonts/futura-pt-medium-italic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'futura-pt';
  src: url('assets/fonts/futura-pt-demi.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'questa-grande';
  src: url('assets/fonts/questa-grande-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'questa-grande';
  src: url('assets/fonts/questa-grande-regular.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}

/* ============================================================
   DESIGN TOKENS — pure black & white only
   ============================================================ */
:root {
  --white:        #ffffff;
  --off-white:    #fafafa;
  --black:        #0a0a0a;
  --gray-line:    rgba(10, 10, 10, 0.12);

  --font-serif: 'questa-grande', 'Times New Roman', serif;
  --font-sans:  'futura-pt', 'Futura', 'Helvetica Neue', Arial, sans-serif;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--black); color: var(--white); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 11px 16px;
  font-weight: 400;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
}
.announce span { opacity: 0.9; }

/* ============================================================
   NAVIGATION — transparent over hero, white when scrolled
   ============================================================ */
.nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.is-scrolled {
  background: var(--white);
  border-bottom-color: var(--gray-line);
  box-shadow: 0 1px 30px rgba(10, 10, 10, 0.04);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px;
  gap: 24px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.4s var(--ease);
}
.nav.is-scrolled .nav-link { color: var(--black); }

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); }

/* Mobile menu — hidden on desktop, revealed inside small breakpoint */
.mobile-toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 640px) {
  .mobile-menu { display: flex; }
}

.nav-logo-wrap {
  position: relative;
  display: block;
  height: 92px;
  width: 240px;
  transition: transform 0.4s var(--ease);
}
.nav-logo-wrap:hover { transform: scale(1.04); }
.nav-logo {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: opacity 0.5s var(--ease);
}
.nav-logo-gold { opacity: 0; }
.nav.is-scrolled .nav-logo-white { opacity: 0; }
.nav.is-scrolled .nav-logo-gold  { opacity: 1; }

.nav-icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  background: transparent;
}
.nav.is-scrolled .nav-icon-btn {
  border-color: var(--gray-line);
  color: var(--black);
}
.nav-icon-btn svg { width: 14px; height: 14px; }

/* ============================================================
   HERO — Full-viewport video
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.38) 45%, rgba(0,0,0,0.66) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-slow) 0.4s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(46px, 8vw, 124px);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-slow) 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 19px);
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-slow) 0.85s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-slow) 1.2s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
/* The text span carries the letter-spacing and the compensating margin
   so the line above stays centered while the word visually centers too. */
.hero-scroll .label {
  letter-spacing: 0.4em;
  /* Half the letter-spacing pulled back from the right with a negative
     margin offsets the trailing tracking after the final letter */
  margin-right: -0.4em;
  display: inline-block;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 42px;
  background: var(--white);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION ATOMS
   ============================================================ */
.section {
  padding: 120px 40px;
  position: relative;
  background: var(--white);
}
.container { max-width: 1320px; margin: 0 auto; }
.narrow    { max-width: 760px; margin: 0 auto; text-align: center; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 22px;
}
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: var(--black);
}
.display em { font-style: italic; }

.body-copy {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--black);
  margin-top: 28px;
}

/* Decorative ornamental divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--white);
}
.divider svg { width: 110px; height: auto; opacity: 0.85; }
.divider-mark {
  width: 110px;
  height: auto;
  opacity: 0.92;
  flex-shrink: 0;
}
.divider-line {
  flex: 0 0 110px;
  height: 1px;
  background: var(--gray-line);
  margin: 0 28px;
}

/* ============================================================
   COLLECTIONS — three-up edge-to-edge video row (reference layout)
   ============================================================ */
.collections-intro {
  text-align: center;
  padding: 130px 40px 80px;
  background: var(--white);
}

.collections-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--black);
  width: 100%;
}
.collection-frame + .collection-frame { margin-left: -1px; }

.collection-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--black);
  display: block;
}
.collection-frame video,
.collection-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-slow);
}
.collection-frame:hover video,
.collection-frame:hover img {
  transform: scale(1.04);
}
.collection-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  transition: background 0.5s var(--ease);
}
.collection-frame:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 30%, rgba(0,0,0,0.65) 100%);
}

/* Title + CTA centered over the lower half of the frame */
.collection-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 36px 32px 56px;
  z-index: 2;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.collection-overlay h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.005em;
}
.collection-overlay h3 em { font-style: italic; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  width: fit-content;
  transition: letter-spacing 0.4s var(--ease), opacity 0.3s var(--ease);
}
.link-arrow:hover { letter-spacing: 0.4em; opacity: 0.85; }
.link-arrow svg { width: 18px; height: 9px; }
.link-arrow.dark { color: var(--black); }

/* ============================================================
   EDITORIAL — image + copy block
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 140px 40px;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--white);
}
.editorial-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-slow);
}
.editorial-img:hover img { transform: scale(1.05); }

.editorial-copy .display { margin-bottom: 30px; }
.editorial-copy p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 18px;
}

/* ============================================================
   SIGNATURE / BRIDAL
   ============================================================ */
.signature {
  padding: 130px 40px;
  background: var(--white);
}
.signature-head {
  text-align: center;
  margin-bottom: 80px;
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.piece {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  display: block;
}
.piece img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-slow);
}
.piece::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.piece-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  color: var(--white);
}
.piece-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 6px;
}
.piece-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}
.piece:hover img { transform: scale(1.05); }
.signature-cta { text-align: center; margin-top: 64px; }

/* ============================================================
   ATELIER
   ============================================================ */
.atelier {
  padding: 140px 40px;
  text-align: center;
  background: var(--white);
}
.atelier .narrow .display { margin-bottom: 36px; }
.atelier .narrow p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--black);
}

/* ============================================================
   HERITAGE STORY
   ============================================================ */
.heritage { padding: 0 0 140px; background: var(--white); }
.heritage-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 720px;
}
.heritage-img { overflow: hidden; position: relative; }
.heritage-img img { width: 100%; height: 100%; object-fit: cover; }
.heritage-copy {
  padding: 100px 80px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--gray-line);
  border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.heritage-copy .display { margin-bottom: 28px; }
.heritage-copy p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 18px;
}

/* ============================================================
   PRESS STRIP
   ============================================================ */
.press {
  padding: 80px 40px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.press-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 38px;
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 68px;
}
.press-logo {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--black);
  opacity: 0.55;
  transition: opacity 0.4s var(--ease);
}
.press-logo.italic { font-style: italic; }
.press-logo.allcaps {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.press-logo:hover { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 100px 40px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto 80px;
}
.footer-brand img { height: 100px; width: auto; margin-bottom: 24px; }
.footer-brand p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom small {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  font-weight: 400;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.footer-social svg { width: 14px; height: 14px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-slow), transform 1.2s var(--ease-slow);
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-inner { padding: 16px 24px; gap: 12px; }
  .nav-left, .nav-right { gap: 22px; }
  .nav-link { font-size: 10px; letter-spacing: 0.22em; }
  .nav-logo-wrap { height: 72px; width: 190px; }

  .section, .signature, .atelier { padding: 100px 24px; }
  .collection-overlay { padding: 28px 22px 40px; gap: 22px; }
  .collection-overlay h3 { font-size: clamp(22px, 3.4vw, 32px); }

  .editorial { grid-template-columns: 1fr; gap: 56px; padding: 100px 24px; }
  .signature-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .heritage-inner { grid-template-columns: 1fr; min-height: auto; }
  .heritage-copy { padding: 64px 32px; border-right: none; border-left: 1px solid var(--gray-line); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .announce { font-size: 9.5px; letter-spacing: 0.22em; padding: 9px 12px; }
  .nav-inner { padding: 12px 16px; grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-right { gap: 14px; }
  .nav-right .nav-link:not(.mobile-toggle) { display: none; }
  .nav-logo-wrap { height: 60px; width: 160px; }

  /* Mobile menu toggle */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--white);
  }
  .nav.is-scrolled .mobile-toggle,
  body.no-hero .mobile-toggle,
  .nav.always-solid .mobile-toggle { color: var(--black); }
  .mobile-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform .35s var(--ease), opacity .25s var(--ease);
  }
  body.menu-open .mobile-toggle span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
  body.menu-open .mobile-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .mobile-toggle span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 80;
    transform: translateY(-100%);
    transition: transform .5s var(--ease-slow);
    display: flex;
    flex-direction: column;
    padding: 96px 32px 40px;
    overflow-y: auto;
  }
  body.menu-open .mobile-menu { transform: translateY(0); }
  body.menu-open { overflow: hidden; }
  .mobile-menu a {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--black);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-line);
    letter-spacing: -0.005em;
  }
  .mobile-menu a em { font-style: italic; }
  .mobile-menu .small-links {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-menu .small-links a {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: none;
    padding: 4px 0;
    color: rgba(10,10,10,0.6);
  }

  .section, .signature, .atelier { padding: 72px 18px; }

  .divider { padding: 32px 16px; }
  .divider svg, .divider-mark { width: 70px; }
  .divider-line { flex: 0 0 50px; margin: 0 14px; }

  /* On phones, stack the three video frames vertically */
  .collections-row { grid-template-columns: 1fr; }
  .collection-overlay { padding: 32px 24px 44px; }
  .collection-overlay h3 { font-size: 30px; }

  .editorial { padding: 72px 18px; gap: 36px; }
  .signature-grid { grid-template-columns: 1fr; }
  .heritage-copy { padding: 48px 22px; }

  .press-logos { gap: 28px; }
  .press-logo { font-size: 17px; }
  .press-logo.allcaps { font-size: 11px; }

  .footer { padding: 64px 22px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

/* ============================================================
   MULTI-PAGE ADDITIONS — Solid nav, page-hero, footer, etc.
   ============================================================ */

/* Solid nav variant for inner pages (no hero behind) */
body.no-hero { padding-top: 88px; }
body.no-hero .nav,
.nav.always-solid {
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
body.no-hero .nav-link,
.nav.always-solid .nav-link { color: var(--black); }
body.no-hero .nav-link::after,
.nav.always-solid .nav-link::after { background: var(--black); }
body.no-hero .nav-logo-white,
.nav.always-solid .nav-logo-white { opacity: 0; }
body.no-hero .nav-logo-gold,
.nav.always-solid .nav-logo-gold { opacity: 1; }
body.no-hero .nav-icon-btn,
.nav.always-solid .nav-icon-btn {
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.18);
}

/* CTA-style nav link */
.nav-link.nav-cta {
  border: 1px solid currentColor;
  padding: 9px 16px;
  letter-spacing: 0.2em;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: currentColor;
}
.nav-link.nav-cta:hover { color: var(--white); }
body.no-hero .nav-link.nav-cta:hover,
.nav.is-scrolled .nav-link.nav-cta:hover { color: var(--white); }
body.no-hero .nav-link.nav-cta:hover { background: var(--black); color: var(--white); }

/* Page hero — minimal, editorial */
.page-hero {
  text-align: center;
  padding: 110px 32px 80px;
  background: var(--white);
  position: relative;
}
.page-hero .crumb {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 28px;
}
.page-hero .crumb a { color: inherit; }
.page-hero .crumb a:hover { color: var(--black); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 76px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 980px;
}
.page-hero h1 em { font-style: italic; }
.page-hero .page-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.7);
  max-width: 640px;
  margin: 32px auto 0;
}

/* Ornament between sections */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 56px;
}
.ornament img { width: 64px; height: auto; opacity: 0.7; }

/* Article/long-form content */
.long-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 32px 110px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--black);
}
.long-form h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(26px, 2.5vw, 34px);
  margin: 64px 0 22px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.long-form h2:first-child { margin-top: 0; }
.long-form h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--black);
  margin: 40px 0 14px;
}
.long-form p { margin-bottom: 20px; color: rgba(10,10,10,0.82); }
.long-form ul, .long-form ol {
  margin: 0 0 24px 0;
  padding-left: 22px;
}
.long-form li { margin-bottom: 10px; color: rgba(10,10,10,0.82); }
.long-form strong { font-weight: 500; color: var(--black); }
.long-form a { color: var(--black); border-bottom: 1px solid var(--gray-line); transition: border-color .3s var(--ease); }
.long-form a:hover { border-color: var(--black); }
.long-form .updated {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-line);
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.cat-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
  padding: 0 20px 60px;
  border-bottom: 1px solid var(--gray-line);
  background: var(--white);
}
.cat-tab {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  padding: 12px 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease);
}
.cat-tab::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 4px;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.cat-tab:hover { color: var(--black); }
.cat-tab.is-active {
  color: var(--black);
}
.cat-tab.is-active::after { transform: scaleX(1); }
.cat-count {
  font-size: 9px;
  opacity: 0.5;
  margin-left: 6px;
  letter-spacing: 0.15em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 28px;
  padding: 80px 40px 130px;
  background: var(--white);
  max-width: 1480px;
  margin: 0 auto;
}
.product-card {
  display: block;
  text-align: center;
  transition: opacity 0.3s var(--ease);
}
.product-img-wrap {
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 22px;
  aspect-ratio: 4 / 5;
  position: relative;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-slow);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 4px;
}
.product-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
}

@media (max-width: 880px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 18px; padding: 48px 18px 80px; }
  .cat-tab { padding: 12px 14px; font-size: 10px; letter-spacing: 0.24em; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   LUXURY GUIDE PAGE
   ============================================================ */
.guide-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  text-align: center;
}
.guide-intro p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  color: rgba(10, 10, 10, 0.78);
  margin-bottom: 20px;
}

.guide-list {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.guide-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 64px 0;
  border-top: 1px solid var(--gray-line);
}
.guide-item:last-child { border-bottom: 1px solid var(--gray-line); }
.guide-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 60px;
  font-style: italic;
  color: var(--black);
  line-height: 1;
  opacity: 0.92;
}
.guide-num-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin-top: 12px;
}
.guide-content h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.005em;
  line-height: 1.18;
  margin-bottom: 8px;
}
.guide-content h2 em { font-style: italic; }
.guide-content .place {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 22px;
}
.guide-content > p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(10, 10, 10, 0.82);
  margin-bottom: 22px;
  max-width: 680px;
}
.guide-tip {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  margin-top: 14px;
  border-top: 1px solid var(--gray-line);
}
.guide-tip .tip-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
.guide-tip .tip-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.78);
}
.guide-addr {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 10, 0.55);
  margin-top: 14px;
}

@media (max-width: 780px) {
  .guide-item { grid-template-columns: 1fr; gap: 16px; padding: 48px 0; }
  .guide-num { font-size: 44px; }
  .guide-tip { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   APPOINTMENT / BOOK A VIDEO CALL
   ============================================================ */
.appt-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 40px 100px;
  gap: 80px;
  align-items: start;
}
.appt-side {
  position: sticky;
  top: 110px;
  padding-right: 40px;
}
.appt-side h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 36px);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.appt-side p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(10,10,10,0.78);
  margin-bottom: 18px;
}
.appt-side ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--gray-line);
}
.appt-side li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-line);
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: baseline;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10,10,10,0.82);
}
.appt-side li::before {
  content: attr(data-num);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--black);
}

.appt-form {
  background: var(--off-white);
  padding: 56px 56px 64px;
  border: 1px solid var(--gray-line);
}
.appt-form .eyebrow {
  margin-bottom: 12px;
}
.appt-form h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin-bottom: 36px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10,10,10,0.22);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--black); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.appt-form .submit-btn {
  margin-top: 18px;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s var(--ease);
  width: 100%;
}
.appt-form .submit-btn:hover { background: #2a2a2a; }
.appt-form .form-note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(10,10,10,0.55);
  margin-top: 18px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .appt-wrap { grid-template-columns: 1fr; padding: 24px 22px 64px; gap: 40px; }
  .appt-side { position: static; padding-right: 0; }
  .appt-form { padding: 32px 24px 36px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   EXPANDED FOOTER COLUMNS
   ============================================================ */
.footer-cols-4 {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto 56px;
}
@media (max-width: 880px) {
  .footer-cols-4 { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-cols-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   SUNITA-SHEKHAWAT-INSPIRED REFINEMENTS — warm paper + gold
   (added layer; keeps Ameyaa identity)
   ============================================================ */
:root {
  --paper:   #faf6ee;   /* warm gallery paper for sketch sections */
  --gold:    #9a7c4d;   /* antique gold accent */
  --gold-soft: rgba(154,124,77,0.22);
}
.eyebrow.gold, .page-hero .crumb.gold { color: var(--gold); }
.ornament img { opacity: 0.78; }

/* Thin gold rule used as a delicate divider */
.rule-gold {
  width: 64px; height: 1px; background: var(--gold);
  margin: 26px auto 0; opacity: 0.8;
}

/* ============================================================
   DESIGN-SKETCH  ·  before / after reveal slider
   ============================================================ */
.sketch-section {
  background: var(--paper);
  padding: 120px 40px 130px;
  text-align: center;
}
.sketch-section .eyebrow { color: var(--gold); }
.sketch-head { max-width: 720px; margin: 0 auto 56px; }
.sketch-head .display { color: var(--black); }
.sketch-head p {
  font-family: var(--font-sans);
  font-size: clamp(15px,1.15vw,17px);
  line-height: 1.75;
  color: rgba(10,10,10,0.7);
  margin-top: 22px;
}

.compare {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(10,10,10,0.10);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  border: 1px solid var(--gold-soft);
}
.compare img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.compare .c-before {            /* the design sketch (revealed from the left) */
  clip-path: inset(0 50% 0 0);
  background: var(--paper);
  z-index: 2;
}
.compare .c-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1px rgba(10,10,10,0.12);
  z-index: 3;
  pointer-events: none;
}
.compare .c-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 20px rgba(10,10,10,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  z-index: 4;
  pointer-events: none;
}
.compare .c-grip svg { width: 22px; height: 22px; }
.compare .c-tag {
  position: absolute; bottom: 18px;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--black);
  background: rgba(250,246,238,0.86);
  padding: 7px 14px;
  pointer-events: none;
  backdrop-filter: blur(2px);
}
.compare .c-tag.left  { left: 18px; }
.compare .c-tag.right { right: 18px; color: #fff; background: rgba(10,10,10,0.42); }
.sketch-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(10,10,10,0.7);
  margin-top: 28px;
}
.sketch-hint {
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(10,10,10,0.45); margin-top: 10px;
}

/* row of multiple sketch reveals on the collection page */
.sketch-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.sketch-duo .compare { max-width: none; box-shadow: 0 20px 50px rgba(10,10,10,0.09); }
.sketch-duo figcaption {
  font-family: var(--font-serif); font-style: italic; font-size: 15px;
  color: rgba(10,10,10,0.7); margin-top: 18px; text-align: center;
}
@media (max-width: 760px) {
  .sketch-section { padding: 80px 18px 90px; }
  .sketch-duo { grid-template-columns: 1fr; gap: 56px; }
  .compare .c-grip { width: 44px; height: 44px; }
}

/* ============================================================
   LUXURY GUIDE — premium imagery
   ============================================================ */
.guide-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 30px;
  background: linear-gradient(135deg,#f3ede2,#e7ddca);
  border: 1px solid var(--gold-soft);
}
.guide-figure img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 6s var(--ease-slow);
}
.guide-item:hover .guide-figure img { transform: scale(1.045); }
.guide-figure .ph {            /* elegant placeholder shown until a real image is dropped in */
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--gold);
  gap: 12px; padding: 24px;
}
.guide-figure .ph .ph-mark { width: 46px; height: auto; opacity: 0.6; }
.guide-figure .ph .ph-name {
  font-family: var(--font-serif); font-style: italic; font-size: 22px; color: #6b5733;
}
.guide-figure .ph .ph-note {
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(107,87,51,0.7);
}
/* When the guide item carries an image, the layout becomes single-column with image on top */
.guide-item.has-figure { grid-template-columns: minmax(0,0.82fr) 1fr; gap: 52px; align-items: start; }
.guide-item.has-figure .guide-figure {
  aspect-ratio: 3 / 4; margin-bottom: 0; position: sticky; top: 104px;
}
.guide-item.has-figure .guide-head-row {
  display: flex; align-items: baseline; gap: 20px; margin-bottom: 18px;
}
.guide-item.has-figure .guide-num { font-size: 44px; }
.guide-item.has-figure .guide-num-sub { display: inline; margin: 0 0 0 4px; }
/* alternate the image side for editorial rhythm */
.guide-item.has-figure:nth-of-type(even) { grid-template-columns: 1fr minmax(0,0.82fr); }
.guide-item.has-figure:nth-of-type(even) .guide-figure { order: 2; }
@media (max-width: 780px) {
  .guide-item.has-figure,
  .guide-item.has-figure:nth-of-type(even) { grid-template-columns: 1fr; gap: 22px; }
  .guide-item.has-figure .guide-figure { position: static; aspect-ratio: 4 / 3; }
  .guide-item.has-figure:nth-of-type(even) .guide-figure { order: 0; }
}


/* ============================================================
   B&W collection videos ("Crafted to be remembered" section)
   ============================================================ */
.collections-row video {
  filter: grayscale(100%) contrast(1.05);
}
.collections-row .collection-frame:hover video {
  filter: grayscale(100%) contrast(1.07);
}

/* ============================================================
   COLLECTION  ·  grouped tiles + lightbox (Option B)
   ============================================================ */
.product-card {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.3s var(--ease);
}
.product-count {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(10,10,10,0.55);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 5px 9px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 3;
  font-weight: 400;
}

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(8,8,8,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 64px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.lightbox.is-open {
  opacity: 1; visibility: visible;
  transition: opacity 0.35s ease;
}
body.lb-open { overflow: hidden; }
.lb-stage {
  display: flex; flex-direction: column;
  align-items: center; gap: 26px;
  max-width: 100%; max-height: 100%;
}
.lb-img {
  max-width: min(74vw, 780px);
  max-height: 68vh;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  background: #111;
}
.lb-caption {
  text-align: center;
  max-width: 480px;
  display: flex; flex-direction: column;
  gap: 8px; align-items: center;
  color: #fff;
}
.lb-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: #fff;
}
.lb-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.lb-counter {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.lb-thumbs {
  display: flex; gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap; justify-content: center;
}
.lb-thumbs button {
  width: 52px; height: 64px;
  padding: 0;
  background: none;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.lb-thumbs button:hover { transform: translateY(-2px); }
.lb-thumbs button.is-active { border-color: var(--gold); }
.lb-thumbs button img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.lb-cta {
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 5px;
  transition: border-color 0.3s var(--ease);
}
.lb-cta:hover { border-bottom-color: #fff; }

.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lb-close:hover, .lb-nav:hover {
  background: rgba(255,255,255,0.16);
  transform: scale(1.04);
}
.lb-close { top: 28px; right: 28px; }
.lb-prev  { left: 28px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 28px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.04); }
.lb-next:hover { transform: translateY(-50%) scale(1.04); }
.lb-close svg { width: 18px; height: 18px; }
.lb-nav svg   { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .lightbox { padding: 12px; }
  .lb-img { max-width: 92vw; max-height: 58vh; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
  .lb-thumbs button { width: 44px; height: 54px; }
}

/* ============================================================
   NAV — Collection category dropdown  (v11 additions)
   ============================================================ */
.nav-item.has-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-item.has-dropdown > .nav-dd-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-item.has-dropdown > .nav-dd-toggle::before {
  content: '';
  position: absolute;
  top: 100%; left: -20px; right: -20px; height: 22px;   /* hover bridge */
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--gray-line);
  box-shadow: 0 18px 50px rgba(10,10,10,0.10);
  min-width: 210px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 70;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--black);
  padding: 11px 26px;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-dropdown a:hover { background: #faf7f2; color: var(--gold); }

/* small caret on the Collection toggle */
.nav-dd-toggle .dd-caret { width: 8px; height: 8px; opacity: 0.7; transition: transform 0.35s var(--ease); }
.nav-item.has-dropdown:hover .dd-caret { transform: rotate(180deg); }

/* Catalog nav link — subtle gold accent */
.nav-link.nav-catalog { color: var(--gold); }
.nav.is-scrolled .nav-link.nav-catalog,
body.no-hero .nav-link.nav-catalog,
.nav.always-solid .nav-link.nav-catalog { color: var(--gold); }
.nav-link.nav-catalog::after { background: var(--gold); }

@media (max-width: 1024px) {
  .nav-dropdown { min-width: 190px; }
}

/* ============================================================
   CATALOG — homepage CTA band + collection page button
   ============================================================ */
.catalog-cta {
  text-align: center;
  padding: 120px 32px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.catalog-cta .eyebrow { justify-content: center; }
.catalog-cta .display { margin: 14px 0 22px; }
.catalog-cta p {
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(10,10,10,0.72);
}
.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 16px 34px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.btn-catalog svg { width: 16px; height: 16px; }
.btn-catalog:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-catalog.outline { background: transparent; color: var(--black); }
.btn-catalog.outline:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* Collection page slim catalog bar */
.collection-catalog-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  padding: 30px 24px;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  margin-top: 8px;
}
.collection-catalog-bar p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(10,10,10,0.75);
}

/* ============================================================
   ABOUT + FOUNDER pages
   ============================================================ */
.about-intro { padding: 96px 32px 40px; }
.about-intro .narrow p { font-size: 17px; line-height: 1.9; color: rgba(10,10,10,0.78); margin-top: 22px; }

.founder-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px;
}
.founder-feature .founder-img { overflow: hidden; }
.founder-feature .founder-img img {
  width: 100%; height: 100%;
  max-height: 760px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.founder-feature .founder-img:hover img { transform: scale(1.04); }
.founder-copy .display { margin: 12px 0 28px; }
.founder-copy p { font-size: 15px; line-height: 1.9; color: rgba(10,10,10,0.78); margin-bottom: 20px; }
.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  color: var(--black);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 32px;
}
.founder-quote .rule-gold { margin: 28px auto 0; }
.founder-sign {
  margin-top: 30px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

/* Markets / export strip */
.markets {
  text-align: center;
  padding: 100px 32px;
  border-top: 1px solid var(--gray-line);
}
.markets .display { margin: 14px 0 40px; }
.markets-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.market {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.04em;
  color: var(--black);
  position: relative;
}
.market span {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .founder-feature { grid-template-columns: 1fr; gap: 36px; padding: 56px 22px; }
  .founder-feature .founder-img img { max-height: 520px; }
}
@media (max-width: 640px) {
  .catalog-cta { padding: 72px 20px; }
  .markets-row { gap: 30px; }
  .markets { padding: 64px 20px; }
}

/* Catalogue — solid gold button in header (v11) */
.nav-link.nav-catalog-btn {
  background: var(--gold);
  color: var(--white) !important;
  border: 1px solid var(--gold);
  padding: 9px 18px;
  letter-spacing: 0.2em;
  border-radius: 1px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav-link.nav-catalog-btn::after { display: none; }
.nav-link.nav-catalog-btn:hover { background: #826640; border-color: #826640; color: var(--white) !important; }
@media (max-width: 1024px) {
  .nav-link.nav-catalog-btn { padding: 8px 14px; }
}

/* ============================================================
   HEADER BUTTONS — unified style for Schedule + Catalogue (v11)
   Both share the same gold fill; hover goes to black so the label
   stays legible on every nav state (never camouflaged).
   ============================================================ */
.nav-link.nav-cta,
.nav-link.nav-catalog-btn,
.nav.is-scrolled .nav-link.nav-cta,
.nav.is-scrolled .nav-link.nav-catalog-btn,
body.no-hero .nav-link.nav-cta,
body.no-hero .nav-link.nav-catalog-btn,
.nav.always-solid .nav-link.nav-cta,
.nav.always-solid .nav-link.nav-catalog-btn {
  background: var(--gold);
  color: #ffffff !important;
  border: 1px solid var(--gold);
  padding: 9px 18px;
  letter-spacing: 0.2em;
  border-radius: 1px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.nav-link.nav-cta::after,
.nav-link.nav-catalog-btn::after { display: none; }

.nav-link.nav-cta:hover,
.nav-link.nav-catalog-btn:hover,
.nav.is-scrolled .nav-link.nav-cta:hover,
.nav.is-scrolled .nav-link.nav-catalog-btn:hover,
body.no-hero .nav-link.nav-cta:hover,
body.no-hero .nav-link.nav-catalog-btn:hover,
.nav.always-solid .nav-link.nav-cta:hover,
.nav.always-solid .nav-link.nav-catalog-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: #ffffff !important;
}
@media (max-width: 1024px) {
  .nav-link.nav-cta, .nav-link.nav-catalog-btn { padding: 8px 14px; }
}

/* Footer contact block (v11) */
.footer-contact {
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  max-width: 320px;
}
.footer-contact a { color: rgba(255,255,255,0.78); transition: color 0.3s var(--ease); }
.footer-contact a:hover { color: var(--gold); }
