/* One Asian Jewellery — trust-first luxury atelier */

/* ───── Self-hosted brand typefaces (offline, fast, private) ───── */
@font-face { font-family: 'Cormorant Garamond'; src: url('../fonts/cormorant-garamond-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../fonts/cormorant-garamond-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../fonts/cormorant-garamond-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../fonts/cormorant-garamond-400i.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../fonts/jost-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../fonts/jost-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../fonts/jost-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }

:root {
  --ink: #0f1119;
  --ink-soft: #161a26;
  --ink-softer: #1e2332;
  --gold: #c9a35e;
  --gold-bright: #e6c989;
  --gold-deep: #8a6d3b;
  --bone: #f3ede0;
  --bone-soft: #cfc6b4;
  --hairline: rgba(201, 163, 94, .28);
  --hairline-strong: rgba(201, 163, 94, .5);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur-ambient: 600ms;
  --dur-hover: 280ms;
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.75; /* Wave B: lifted from 1.65 for body rhythm */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, .serif { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.eyebrow {
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold);
}
.kicker { color: var(--gold); font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* ───── utility / announcement bar ───── */
.utility {
  display: flex; justify-content: center; align-items: center; gap: 22px;
  padding: 11px 28px; font-size: 9.5px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--bone-soft); background: #080b16; border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.utility .sep { color: var(--gold); font-size: 7px; transform: translateY(-1px); }

/* ───── header ───── */
header.site {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px;
  padding: 26px 44px;
  background: rgba(14, 19, 33, .68); backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid var(--hairline);
  transition: padding var(--dur-hover) var(--ease), background var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease);
}
header.site.scrolled { padding: 12px 44px; background: rgba(9, 13, 26, .95); border-bottom-color: var(--hairline-strong); }

nav.main { display: flex; gap: 30px; justify-self: start; }
.nav-right { display: flex; gap: 26px; align-items: center; justify-self: end; }
nav.main a, .nav-right a {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--bone-soft);
  transition: color var(--dur-hover) var(--ease); position: relative; padding: 4px 0;
}
nav.main a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -3px; height: 1px;
  background: var(--gold); transition: left var(--dur-hover) var(--ease), right var(--dur-hover) var(--ease);
}
nav.main a:hover { color: var(--gold-bright); }
nav.main a:hover::after { left: 0; right: 0; }
.nav-right .nav-link-quiet:hover { color: var(--gold-bright); }

/* logo lockup */
.logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 5px; justify-self: center; }
.logo-mark { width: 58px; height: 58px; transition: width var(--dur-hover) var(--ease), height var(--dur-hover) var(--ease); }
header.site.scrolled .logo-mark { width: 40px; height: 40px; }
.logo-brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; letter-spacing: .38em; color: var(--bone); padding-left: .38em; transition: font-size var(--dur-hover) var(--ease); }
header.site.scrolled .logo-brand { font-size: 15px; }
.logo-tag { font-size: 8px; letter-spacing: .48em; color: var(--gold); text-transform: uppercase; padding-left: .48em; max-height: 14px; overflow: hidden; transition: max-height var(--dur-hover) var(--ease), opacity var(--dur-hover) var(--ease); }
header.site.scrolled .logo-tag { max-height: 0; opacity: 0; }

.nav-cta {
  padding: 11px 24px; border: 1px solid var(--gold); color: var(--gold-bright) !important;
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  transition: background var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }

/* hamburger */
.nav-toggle { display: none; width: 28px; height: 18px; position: relative; justify-self: start; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--gold-bright); transition: all var(--dur-hover) var(--ease); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
body.menu-open .nav-toggle span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* full-screen mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49; background: rgba(9, 13, 26, .98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--dur-hover) var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu nav a { font-family: 'Cormorant Garamond', serif; font-size: 27px; color: var(--bone); letter-spacing: .04em; transition: color var(--dur-hover) var(--ease); }
.mobile-menu nav a:hover { color: var(--gold-bright); }
.mobile-menu .mm-cta { margin-top: 14px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; border: 1px solid var(--gold); color: var(--gold-bright); padding: 14px 38px; }
.mobile-menu .mm-foot { position: absolute; bottom: 42px; font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); }

/* ───── hero ───── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: 48%; left: 50%; width: 64vw; height: 64vw;
  max-width: 820px; max-height: 820px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,163,94,.12), rgba(201,163,94,.04) 42%, transparent 66%);
  pointer-events: none; z-index: 1;
}
.hero-kanji {
  position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 50vw;
  color: rgba(201, 163, 94, .04); top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; line-height: 1; user-select: none; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 52%, rgba(8,11,18,.6) 100%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero h1 { font-size: clamp(42px, 7.2vw, 92px); line-height: 1.03; letter-spacing: .01em; }
/* Wave B: slide-up → fade-only (quiet-luxury motion, not tech-startup) */
.hero h1 .word { display: inline-block; opacity: 0; animation: rise var(--dur-ambient) forwards; }
.hero h1 .word:nth-child(1) { animation-delay: 150ms; }
.hero h1 .word:nth-child(2) { animation-delay: 280ms; }
.hero h1 .word:nth-child(3) { animation-delay: 410ms; }
.hero h1 .word:nth-child(4) { animation-delay: 540ms; font-style: italic; color: var(--gold-bright); }
.hero-kicker { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; opacity: 0; animation: rise var(--dur-ambient) 60ms forwards; }
.hero-kicker .eyebrow { margin: 0; }
.hk-rule { width: 33px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); opacity: .85; }
.hk-rule.right { background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1 .shimmer {
  background: linear-gradient(100deg, var(--gold-deep) 18%, var(--gold-bright) 40%, #fff7e4 50%, var(--gold-bright) 60%, var(--gold-deep) 82%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 6.5s linear infinite;
}
@keyframes sheen { to { background-position: -220% center; } }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: rise var(--dur-ambient) 1200ms forwards;
}
.hero-scroll-label {
  font-family: 'Jost', sans-serif; font-size: 9.5px; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold); opacity: .85;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 60px;
  background: var(--hairline); position: relative; overflow: hidden;
}
.hero-scroll::before {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(transparent, var(--gold-bright)); transform-origin: top;
  animation: scrolldown 2.4s ease-in-out infinite;
}
@keyframes scrolldown { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }
.hero-sub { margin: 30px auto 0; max-width: 600px; font-size: 16px; color: var(--bone-soft); opacity: 0; animation: rise var(--dur-ambient) 720ms forwards; }
.hero-ctas { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: rise var(--dur-ambient) 860ms forwards; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 34px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  transition: background var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease);
}
.btn-primary { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-ghost { border: 1px solid var(--gold); color: var(--gold-bright); }
.btn-ghost:hover { background: var(--gold); color: var(--ink); }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
/* Wave B: fade-only variants for hero family (no slide) */
.hero-kicker, .hero-sub, .hero-ctas, .hero-scroll { transform: none !important; }

/* ───── trust strip ───── */
.trust-strip {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  background: var(--ink-soft);
}
.trust-strip-inner {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 26px 22px; text-align: center; border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.trust-item:last-child { border-right: none; }
.trust-item .ti-icon { width: 26px; height: 26px; color: var(--gold); }
.trust-item .ti-title { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--bone); }
.trust-item .ti-sub { font-size: 12px; color: var(--bone-soft); letter-spacing: .02em; }

/* ───── sections ───── */
section { padding: 104px 28px; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(32px, 4.6vw, 54px); margin-top: 12px; line-height: 1.1; }
.section-head p { margin-top: 18px; color: var(--bone-soft); font-size: 15.5px; }
.section-divider { width: 46px; height: 1px; background: var(--gold); margin: 22px auto 0; }

/* ───── category chips ───── */
.cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; max-width: var(--maxw); margin: 0 auto 54px; }
.cat {
  padding: 10px 22px; border: 1px solid var(--hairline); font-size: 10.5px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--bone-soft); background: transparent;
  transition: all var(--dur-hover) var(--ease);
}
.cat:hover { border-color: var(--gold); color: var(--gold-bright); }
.cat.is-active { border-color: var(--gold); color: var(--ink); background: var(--gold); }

/* ───── collection grid ───── */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 30px; max-width: var(--maxw); margin: 0 auto; }
.piece {
  background: var(--ink-soft); border: 1px solid var(--hairline); overflow: hidden;
  display: flex; flex-direction: column; cursor: pointer; text-align: left; width: 100%;
  transition: transform var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease);
}
.piece:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 22px 44px -30px rgba(201,163,94,.5), 0 0 0 1px rgba(201,163,94,.12); }
/* Quiet luxury grid (Sushant directive 2026-06-06): 4:3 consistent tiles, clean ivory ground, contain not cover, 20px breathing room. */
.piece-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #FAF8F5;
  overflow: hidden;
}
.piece-img::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(138, 109, 59, .06);
}
.piece-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .3s ease;
}
.piece:hover .piece-img img { transform: scale(1.03); }
.piece-badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 10px; font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; background: rgba(8,11,18,.78); color: var(--gold-bright);
  border: 1px solid var(--hairline); backdrop-filter: blur(4px);
}
.piece-body { padding: 22px 22px 26px; text-align: center; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.piece-cat { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.piece-body h3 { font-size: 22px; font-weight: 500; color: var(--bone); line-height: 1.2; }
.piece-gold { font-size: 12px; color: var(--bone-soft); letter-spacing: .03em; }
.piece-view { margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--hairline); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-bright); }
.grid.is-empty::after { content: "No pieces in this category."; grid-column: 1/-1; text-align: center; color: var(--bone-soft); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; padding: 60px 0; }

/* ───── lightbox ───── */
.lightbox { position: fixed; inset: 0; background: rgba(8,11,18,.94); z-index: 100; display: none; align-items: center; justify-content: center; padding: 28px; }
.lightbox.is-open { display: flex; }
.lightbox-panel {
  position: relative; width: 100%; max-width: 1140px; max-height: 92vh; background: var(--ink);
  border: 1px solid var(--hairline-strong); display: grid; grid-template-columns: 1fr 400px; overflow: hidden;
}
.lightbox-stage { position: relative; background: var(--bone); display: flex; align-items: center; justify-content: center; min-height: 420px; }
.lightbox-stage img { width: 100%; height: 100%; max-height: 92vh; object-fit: contain; background: var(--bone); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(8,11,18,.72); color: var(--gold-bright); border: 1px solid var(--hairline); border-radius: 50%; transition: all var(--dur-hover) var(--ease); }
.lightbox-nav:hover { background: var(--gold); color: var(--ink); }
.lightbox-nav.prev { left: 16px; } .lightbox-nav.next { right: 16px; }
.lightbox-nav[hidden] { display: none; }

.lightbox-side { padding: 36px 32px 30px; display: flex; flex-direction: column; gap: 16px; overflow-y: auto; }
.lb-cat { font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); }
.lb-title { font-size: 32px; line-height: 1.12; color: var(--bone); }
.lb-gold { font-size: 13.5px; color: var(--gold-bright); letter-spacing: .03em; }
.lb-desc { font-size: 14px; color: var(--bone-soft); line-height: 1.7; }
.lb-story { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--bone); border-left: 2px solid var(--gold); padding-left: 14px; line-height: 1.6; }

.lb-specs { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--hairline); margin-top: 4px; }
.lb-spec { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--hairline); font-size: 13px; }
.lb-spec .k { color: var(--gold-deep); letter-spacing: .18em; text-transform: uppercase; font-size: 10px; align-self: center; }
.lb-spec .v { color: var(--bone); text-align: right; }

.lb-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.lb-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); border: 1px solid var(--hairline); background: var(--ink-soft); }
.lb-badge svg { width: 13px; height: 13px; }

.lb-cert { margin-top: 2px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.lb-cert img { margin-top: 8px; border: 1px solid var(--hairline); max-height: 200px; }

.lb-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.lb-enquire, .lb-whatsapp { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 0; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; transition: all var(--dur-hover) var(--ease); }
.lb-enquire { background: var(--gold); color: var(--ink); }
.lb-enquire:hover { background: var(--gold-bright); }
.lb-whatsapp { border: 1px solid #2faa5e; color: #6ee2a0; }
.lb-whatsapp:hover { background: #1f7a44; color: #fff; border-color: #1f7a44; }
.lb-whatsapp svg, .lb-enquire svg { width: 16px; height: 16px; }
.lb-valuation { font-family: 'Cormorant Garamond', serif; font-size: 20px; line-height: 1.3; color: var(--gold-bright); margin: 4px 0 8px; letter-spacing: .01em; }
.lb-valuation strong { font-weight: 600; }
.lb-valuation:empty { display: none; }
.lb-soon { font-style: italic; color: var(--bone-soft); font-size: 16px; }
.lb-reassure { font-size: 11px; color: var(--bone-soft); text-align: center; letter-spacing: .02em; }

.lightbox-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(8,11,18,.72); color: var(--bone); border: 1px solid var(--hairline); font-size: 18px; line-height: 1; z-index: 3; transition: all var(--dur-hover) var(--ease); }
.lightbox-close:hover { background: var(--gold); color: var(--ink); }

.lb-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.lb-thumb { width: 54px; height: 54px; border: 1px solid var(--hairline); background: var(--bone); cursor: pointer; overflow: hidden; padding: 0; transition: border-color var(--dur-hover) var(--ease); }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumb.is-current { border-color: var(--gold-bright); }

/* ───── authenticity ───── */
.authenticity { background: var(--ink-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.auth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: var(--maxw); margin: 0 auto; }
.auth-card { background: var(--ink); border: 1px solid var(--hairline); padding: 38px 30px; text-align: center; transition: border-color var(--dur-hover) var(--ease); }
.auth-card:hover { border-color: var(--gold); }
.auth-card .ac-icon { width: 38px; height: 38px; color: var(--gold); margin: 0 auto 18px; }
.auth-card h3 { font-size: 23px; color: var(--bone); margin-bottom: 12px; }
.auth-card p { font-size: 14px; color: var(--bone-soft); line-height: 1.7; }
.auth-note { max-width: 720px; margin: 48px auto 0; text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--bone-soft); line-height: 1.7; }

/* ───── atelier ───── */
.atelier-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.atelier-inner p { font-size: 18px; color: var(--bone-soft); margin-top: 22px; font-family: 'Cormorant Garamond', serif; font-style: italic; line-height: 1.8; }
.leadership { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--hairline); display: flex; flex-direction: column; gap: 24px; align-items: center; }
.leader { text-align: center; }
.leader-name { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-bright); }
.leader-role { font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--bone-soft); margin-top: 5px; }
.leader.primary .leader-name { font-size: 31px; }
.leader.secondary .leader-name { font-size: 21px; color: var(--bone); }

/* ───── commissions ───── */
.commissions { background: var(--ink-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.commissions-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.commissions-inner p { font-size: 16px; color: var(--bone-soft); margin-top: 18px; line-height: 1.8; }
.commissions .btn { margin-top: 34px; }

/* ───── delivery & care ───── */
.care-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1040px; margin: 0 auto; }
.care-col { border: 1px solid var(--hairline); padding: 40px 36px; background: var(--ink-soft); }
.care-col h3 { font-size: 25px; color: var(--bone); margin-bottom: 8px; }
.care-col h3 .k { color: var(--gold); font-style: italic; }
.care-list { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.care-list li { list-style: none; display: flex; gap: 13px; font-size: 14px; color: var(--bone-soft); line-height: 1.6; }
.care-list li::before { content: "—"; color: var(--gold); flex-shrink: 0; }

/* ───── reviews ───── */
.reviews { border-top: 1px solid var(--hairline); }
.reviews-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: var(--maxw); margin: 0 auto 60px; }
.review { background: var(--ink-soft); border: 1px solid var(--hairline); padding: 30px 28px; text-align: center; }
.review .stars { color: var(--gold-bright); letter-spacing: .18em; font-size: 15px; margin-bottom: 14px; }
.review blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; color: var(--bone); line-height: 1.6; }
.review figcaption { margin-top: 16px; font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--bone-soft); }
.review-form-wrap { max-width: 620px; margin: 0 auto; text-align: center; border: 1px solid var(--hairline); padding: 44px 34px; background: var(--ink-soft); }
.rf-title { font-size: 30px; color: var(--bone); }
.rf-note { font-size: 12.5px; color: var(--bone-soft); margin: 10px 0 26px; }
.review-form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.rf-row { display: flex; gap: 14px; flex-wrap: wrap; }
.rf-row input { flex: 1; min-width: 180px; }
.review-form input, .review-form select, .review-form textarea { background: var(--ink); border: 1px solid var(--hairline); color: var(--bone); padding: 13px 15px; font-family: 'Jost', sans-serif; font-size: 14px; width: 100%; }
.review-form input::placeholder, .review-form textarea::placeholder { color: var(--bone-soft); opacity: .7; }
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { outline: none; border-color: var(--gold); }
.rf-rating label { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.review-form textarea { resize: vertical; }
.rf-submit { margin-top: 6px; padding: 14px 0; background: var(--gold); color: var(--ink); border: none; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; cursor: pointer; transition: background var(--dur-hover) var(--ease); }
.rf-submit:hover { background: var(--gold-bright); }

/* ───── journey / development ───── */
.journey { border-top: 1px solid var(--hairline); }
.journey-track { list-style: none; max-width: 720px; margin: 0 auto; position: relative; }
.journey-track::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(180deg, var(--gold), var(--gold-deep)); opacity: .55; }
.journey-step { position: relative; padding: 0 0 36px 44px; }
.journey-step:last-child { padding-bottom: 0; }
.js-dot { position: absolute; left: 1px; top: 3px; width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--gold); background: var(--ink); box-sizing: border-box; }
.journey-step.is-done .js-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,163,94,.14); }
.journey-step.is-active .js-dot { background: var(--gold-bright); box-shadow: 0 0 0 4px rgba(230,201,137,.20); animation: jpulse 2.6s var(--ease) infinite; }
.js-status { display: inline-block; font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--hairline); padding: 3px 11px; margin-bottom: 11px; }
.journey-step.is-active .js-status { color: var(--ink); background: var(--gold-bright); border-color: var(--gold-bright); }
.journey-step.is-next .js-status { color: var(--bone-soft); }
.js-body h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 23px; color: var(--bone); }
.js-body p { margin-top: 7px; color: var(--bone-soft); font-size: 14.5px; line-height: 1.7; }
@keyframes jpulse { 0%,100% { box-shadow: 0 0 0 4px rgba(230,201,137,.20); } 50% { box-shadow: 0 0 0 8px rgba(230,201,137,.03); } }

/* ───── owner (founder) review ───── */
.owner-review { max-width: 760px; margin: 0 auto 48px; text-align: center; position: relative; padding: 48px 40px 40px; background: linear-gradient(180deg, rgba(201,163,94,.08), var(--ink-soft)); border: 1px solid var(--hairline-strong); }
.or-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; padding: 5px 18px; white-space: nowrap; }
.owner-review .stars { color: var(--gold-bright); letter-spacing: .2em; font-size: 16px; margin-bottom: 18px; }
.owner-review blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(20px, 2.5vw, 27px); color: var(--bone); line-height: 1.5; }
.owner-review figcaption { margin-top: 24px; }
.or-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold-bright); letter-spacing: .03em; }
.or-role { display: block; margin-top: 5px; font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--bone-soft); }

/* ───── collection tools: search + wishlist + count ───── */
.collection-tools { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: var(--maxw); margin: 0 auto 22px; }
.collection-tools .cats { margin: 0; }
.search-wrap { position: relative; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.search-ico { position: absolute; left: 14px; top: 21px; width: 18px; height: 18px; color: var(--gold); pointer-events: none; }
#collection-search { width: min(420px, 78vw); background: var(--ink-soft); border: 1px solid var(--hairline); color: var(--bone); padding: 12px 16px 12px 42px; font-family: 'Jost', sans-serif; font-size: 14px; letter-spacing: .02em; transition: border-color var(--dur-hover) var(--ease); }
#collection-search::placeholder { color: var(--bone-soft); opacity: .7; }
#collection-search:focus { outline: none; border-color: var(--gold); }
.wish-filter { padding: 11px 18px; border: 1px solid var(--hairline); background: transparent; color: var(--bone-soft); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: all var(--dur-hover) var(--ease); }
.wish-filter:hover { border-color: var(--gold); color: var(--gold-bright); }
.wish-filter.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.collection-count { text-align: center; margin: 0 auto 30px; font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--bone-soft); }
.collection-empty { text-align: center; color: var(--bone-soft); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 19px; padding: 50px 0; }

/* wishlist heart on each piece */
.piece-wish { position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--hairline); background: rgba(8,11,18,.6); backdrop-filter: blur(6px); color: var(--bone-soft); cursor: pointer; opacity: 0; transform: translateY(-4px); transition: all var(--dur-hover) var(--ease); }
.piece:hover .piece-wish, .piece-wish.is-saved, .piece-wish:focus-visible { opacity: 1; transform: none; }
.piece-wish svg { width: 18px; height: 18px; }
.piece-wish svg path { fill: none; stroke: currentColor; stroke-width: 1.6; }
.piece-wish:hover { border-color: var(--gold); color: var(--gold-bright); }
.piece-wish.is-saved { color: var(--gold-bright); border-color: var(--gold); background: rgba(201,163,94,.18); }
.piece-wish.is-saved svg path { fill: var(--gold-bright); stroke: var(--gold-bright); }

/* lightbox image zoom */
.lightbox-stage img { cursor: zoom-in; transition: transform .35s var(--ease); }
.lightbox-stage img.is-zoomed { transform: scale(2.3); cursor: zoom-out; }
/* 360 spin button */
.lb-spin { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 4; padding: 9px 18px; border: 1px solid var(--hairline-strong); background: rgba(8,11,18,.72); color: var(--gold-bright); font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; border-radius: 22px; cursor: pointer; backdrop-filter: blur(6px); transition: all var(--dur-hover) var(--ease); }
.lb-spin:hover { border-color: var(--gold); }
.lb-spin.is-on { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-spin[hidden] { display: none; }

/* Shopify Buy Button slot (dormant until store is live) */
.lb-shop { margin-bottom: 14px; }
.lb-shop:empty { display: none; margin: 0; }
.lb-shop .shopify-buy__product { margin: 0; }
.lb-shop .shopify-buy__btn, .lb-shop .shopify-buy__btn-wrapper button { width: 100%; cursor: pointer; }
.lb-shop .shopify-buy__product__price { font-family: 'Cormorant Garamond', serif; color: var(--bone); font-size: 22px; margin-bottom: 10px; }
/* Heirloom Passport link in lightbox */
.lb-passport { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-family: 'Jost', sans-serif; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease); }
.lb-passport:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }

/* ───── Home: Explore the House teasers ───── */
.explore { padding: 96px 24px; max-width: 1180px; margin: 0 auto; }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.explore-card { position: relative; display: block; padding: 34px 30px 30px; border: 1px solid var(--hairline); background: linear-gradient(160deg, var(--ink-soft), var(--ink)); overflow: hidden; transition: border-color var(--dur-hover) var(--ease), transform var(--dur-hover) var(--ease); }
.explore-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 0%, rgba(201,163,94,.10), transparent 60%); opacity: 0; transition: opacity var(--dur-hover) var(--ease); pointer-events: none; }
.explore-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.explore-card:hover::after { opacity: 1; }
.explore-card .ex-k { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .3em; color: var(--gold-deep); }
.explore-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 26px; color: var(--bone); margin: 12px 0 8px; }
.explore-card p { font-size: 14px; color: var(--bone-soft); line-height: 1.6; min-height: 44px; }
.explore-card .ex-go { display: inline-block; margin-top: 16px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* ───── slim Contact CTA (page footers) ───── */
.contact-cta { text-align: center; padding: 90px 24px; border-top: 1px solid var(--hairline); }
.contact-cta .contact-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

@media (max-width: 880px) { .explore-grid { grid-template-columns: 1fr; } }

/* ───── Gift Finder (example) ───── */
.gift-cta { text-align: center; margin: -20px auto 36px; }
.gift-modal { position: fixed; inset: 0; z-index: 400; background: rgba(7,9,15,.86); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.gift-modal.is-open { opacity: 1; visibility: visible; }
.gift-panel { position: relative; max-width: 560px; width: 100%; background: var(--ink-soft); border: 1px solid var(--hairline-strong); padding: 48px 40px 40px; text-align: center; max-height: 90vh; overflow-y: auto; }
.gift-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: var(--bone-soft); font-size: 28px; line-height: 1; cursor: pointer; transition: color var(--dur-hover) var(--ease); }
.gift-close:hover { color: var(--gold-bright); }
.gift-title { font-size: 30px; color: var(--bone); margin: 8px 0 28px; }
.gift-q { margin-bottom: 22px; }
.gift-q p { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.gift-opts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.gift-opt { padding: 9px 16px; border: 1px solid var(--hairline); background: transparent; color: var(--bone-soft); font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .05em; cursor: pointer; transition: all var(--dur-hover) var(--ease); }
.gift-opt:hover { border-color: var(--gold); color: var(--gold-bright); }
.gift-opt.is-sel { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.gift-reveal { margin-top: 16px; padding: 14px 32px; background: var(--gold); color: var(--ink); border: none; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; cursor: pointer; transition: opacity var(--dur-hover) var(--ease); }
.gift-reveal:hover:not(:disabled) { background: var(--gold-bright); }
.gift-reveal:disabled { opacity: .4; cursor: not-allowed; }
.gift-note { margin-top: 18px; font-size: 11px; color: var(--bone-soft); opacity: .65; font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* refined gold scrollbar + page fade-in */
html { scrollbar-color: var(--gold-deep) var(--ink); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 6px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
body { animation: pagein .6s var(--ease) both; }
@keyframes pagein { from { opacity: 0; } to { opacity: 1; } }

/* ───── the gold standard (market) ───── */
.goldmkt { border-top: 1px solid var(--hairline); }
.gm-quotes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: var(--maxw); margin: 0 auto; }
.gm-quote { background: var(--ink-soft); border: 1px solid var(--hairline); padding: 26px 20px; text-align: center; display: flex; flex-direction: column; gap: 9px; }
.gm-quote.feature { background: linear-gradient(180deg, rgba(201,163,94,.10), var(--ink-soft)); border-color: var(--hairline-strong); }
.gmq-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.gmq-val { font-family: 'Cormorant Garamond', serif; font-size: 38px; color: var(--bone); line-height: 1; }
.gm-quote.feature .gmq-val { color: var(--gold-bright); }
.gmq-unit { font-size: 10px; letter-spacing: .1em; color: var(--bone-soft); text-transform: uppercase; }
.gm-updated { text-align: center; margin: 18px auto 42px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--bone-soft); }
.gm-updated #gm-time { color: var(--gold-bright); }
.gm-chart { max-width: var(--maxw); margin: 0 auto; height: 480px; border: 1px solid var(--hairline); background: var(--ink-soft); overflow: hidden; }
.gm-chart #gm-tvchart, .gm-chart .tradingview-widget-container__widget { width: 100%; height: 100%; }
.gm-explain { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; max-width: 980px; margin: 58px auto 0; }
.gm-ex-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--bone); margin-bottom: 10px; }
.gm-ex-col p { color: var(--bone-soft); font-size: 15px; line-height: 1.75; }
.gm-disclaimer { max-width: 820px; margin: 30px auto 0; text-align: center; font-size: 12px; line-height: 1.6; color: var(--bone-soft); opacity: .72; font-style: italic; }
/* aira's market bar */
.marketbar { max-width: var(--maxw); margin: 96px auto 0; border-top: 1px solid var(--hairline); padding-top: 80px; }
.mb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mb-panel { background: var(--ink-soft); border: 1px solid var(--hairline); display: flex; flex-direction: column; min-height: 440px; }
.mb-head { padding: 16px 22px; border-bottom: 1px solid var(--hairline); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; }
.mb-dot { width: 8px; height: 8px; border-radius: 50%; background: #5fd08a; animation: mbpulse 2s infinite; }
@keyframes mbpulse { 0% { box-shadow: 0 0 0 0 rgba(95,208,138,.5); } 70% { box-shadow: 0 0 0 8px rgba(95,208,138,0); } 100% { box-shadow: 0 0 0 0 rgba(95,208,138,0); } }
.mb-chat { flex: 1; position: relative; min-height: 380px; }
.mb-chat iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }
.mb-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 30px; }
.mb-ph-glyph { font-family: 'Cormorant Garamond', serif; font-size: 56px; color: var(--gold); opacity: .5; line-height: 1; }
.mb-placeholder p { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--bone); }
.mb-note { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-soft); max-width: 290px; line-height: 1.5; }
#disqus_thread { padding: 20px; position: relative; z-index: 1; }
@media (max-width: 860px) {
  .gm-quotes { grid-template-columns: repeat(2, 1fr); }
  .gm-explain, .mb-grid { grid-template-columns: 1fr; }
  .marketbar { margin-top: 64px; padding-top: 56px; }
}

/* ───── marquee ───── */
.marquee { overflow: hidden; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--ink); padding: 16px 0; }
.marquee-track { display: flex; gap: 30px; white-space: nowrap; animation: scroll 30s linear infinite; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--gold); }
.marquee-track .dot { color: var(--gold-deep); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───── contact ───── */
.contact { text-align: center; }
.contact-lines { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; font-size: 15px; letter-spacing: .04em; color: var(--bone-soft); }
.contact-lines a { color: var(--gold-bright); }
.contact-lines .label { font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.contact-ctas { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ───── footer ───── */
footer { background: var(--ink-soft); border-top: 1px solid var(--hairline); padding: 58px 28px 40px; text-align: center; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 19px; letter-spacing: .3em; color: var(--bone); }
.footer-bio { max-width: 540px; margin: 16px auto 0; font-size: 13px; color: var(--bone-soft); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.footer-trust { margin: 30px auto 0; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.footer-leaders { margin-top: 34px; display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.fl-name { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-bright); font-size: 17px; }
.fl-role { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--bone-soft); margin-top: 4px; }
.copyright { margin-top: 34px; font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--bone-soft); opacity: .6; }

/* ───── cinematic intro veil ───── */
.intro-veil { position: fixed; inset: 0; z-index: 9999; background: radial-gradient(circle at 50% 42%, #161a26, #0a0d15 72%); display: flex; align-items: center; justify-content: center; transition: opacity .8s var(--ease), visibility .8s; }
.intro-veil.done { opacity: 0; visibility: hidden; pointer-events: none; }
.iv-crest { display: flex; flex-direction: column; align-items: center; gap: 20px; animation: ivrise 1.3s var(--ease) both; }
.iv-crest svg { width: 112px; height: 112px; filter: drop-shadow(0 0 26px rgba(201,163,94,.4)); }
.iv-brand { font-family: 'Cormorant Garamond', serif; font-size: 21px; letter-spacing: .42em; color: var(--bone); padding-left: .42em; opacity: 0; animation: ivfade 1s var(--ease) .5s both; }
@keyframes ivrise { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes ivfade { to { opacity: 1; } }

/* ───── scroll progress ───── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright)); transition: width .12s linear; pointer-events: none; }

/* ───── site-wide ambient background (behind everything, never blocks) ───── */
.ambient { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* ───── Films nav link (the special one) ───── */
.nav-films { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright) !important; border: 1px solid var(--hairline); padding: 9px 15px; border-radius: 2px; transition: background var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease); animation: navglow 3.4s var(--ease) infinite; }
.nav-films:hover { border-color: var(--gold); background: rgba(201,163,94,.14); }
@keyframes navglow { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,163,94,0); } 50% { box-shadow: 0 0 16px -4px rgba(201,163,94,.6); } }
.mm-films { color: var(--gold-bright) !important; }

/* ───── WhatsApp concierge button ───── */
.wa-fab { position: fixed; left: 24px; bottom: 24px; z-index: 80; display: flex; align-items: center; height: 54px; width: 54px; border-radius: 28px; background: rgba(9,13,26,.92); border: 1px solid var(--gold); color: var(--gold-bright); backdrop-filter: blur(8px); box-shadow: 0 14px 34px -12px rgba(0,0,0,.6); overflow: hidden; transition: width .42s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.wa-fab svg { width: 26px; height: 26px; flex: 0 0 54px; }
.wa-label { white-space: nowrap; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; opacity: 0; transition: opacity .3s var(--ease); padding-right: 22px; }
.wa-fab:hover, .wa-fab:focus-visible { width: 222px; background: var(--gold); color: var(--ink); }
.wa-fab:hover .wa-label, .wa-fab:focus-visible .wa-label { opacity: 1; }
@media (max-width: 760px) { .wa-fab { left: 16px; bottom: 16px; } }

/* ───── Maison Selects (featured) ───── */
.featured { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--ink-soft); padding: 0; overflow: hidden; }
.featured-inner { position: relative; max-width: var(--maxw); margin: 0 auto; min-height: 560px; }
.feat-slide { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; align-items: center; opacity: 0; visibility: hidden; transition: opacity .9s var(--ease); }
.feat-slide.is-active { position: relative; opacity: 1; visibility: visible; }
.feat-media { height: 100%; min-height: 560px; background: var(--bone); }
.feat-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-text { padding: 60px clamp(30px, 6vw, 90px); }
.feat-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(30px, 4vw, 50px); line-height: 1.08; margin: 12px 0 0; }
.feat-gold { display: block; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); margin: 16px 0 18px; }
.feat-desc { color: var(--bone-soft); font-size: 16px; line-height: 1.8; font-family: 'Cormorant Garamond', serif; font-style: italic; margin-bottom: 30px; max-width: 46ch; }
.feat-nav { position: absolute; bottom: 30px; width: 46px; height: 46px; border: 1px solid var(--hairline); background: rgba(8,11,18,.62); color: var(--gold-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; z-index: 4; transition: all var(--dur-hover) var(--ease); }
.feat-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.feat-nav.prev { right: 86px; }
.feat-nav.next { right: 30px; }
.feat-dots { position: absolute; bottom: 44px; left: clamp(30px, 6vw, 90px); display: flex; gap: 10px; z-index: 4; }
.feat-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold); background: transparent; cursor: pointer; padding: 0; transition: background var(--dur-hover) var(--ease); }
.feat-dot.is-active { background: var(--gold); }
@media (max-width: 860px) {
  .feat-slide { grid-template-columns: 1fr; }
  .feat-slide:not(.is-active) { display: none; }
  .featured-inner { min-height: 0; }
  .feat-media { min-height: 58vw; }
  .feat-text { padding: 36px 24px 74px; }
  .feat-dots { bottom: 26px; left: 24px; }
  .feat-nav { bottom: 18px; }
}

/* ───── FAQ ───── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 46px 22px 4px; position: relative; font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--bone); transition: color var(--dur-hover) var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-family: 'Jost', sans-serif; font-weight: 300; font-size: 26px; line-height: 1; color: var(--gold); }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-a { padding: 0 4px 24px; }
.faq-a p { color: var(--bone-soft); font-size: 15px; line-height: 1.78; max-width: 72ch; }
.faq-a strong { color: var(--bone); }
.faq-a em { color: var(--gold-bright); font-style: normal; }

/* ───── footer (rich) ───── */
.footer-top { max-width: var(--maxw); margin: 0 auto 44px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 44px; text-align: left; }
.footer-col h4 { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--bone-soft); font-size: 14px; margin-bottom: 11px; transition: color var(--dur-hover) var(--ease); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-about .footer-brand { text-align: left; }
.footer-about .footer-bio { text-align: left; max-width: none; margin: 14px 0 18px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--hairline); border-radius: 50%; color: var(--gold-bright); margin: 0; transition: all var(--dur-hover) var(--ease); }
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; }
.footer-news p { color: var(--bone-soft); font-size: 13.5px; line-height: 1.65; margin-bottom: 14px; }
.news-form { display: flex; border: 1px solid var(--hairline); }
.news-form input { flex: 1; min-width: 0; background: var(--ink); border: none; color: var(--bone); padding: 12px 14px; font-family: 'Jost', sans-serif; font-size: 13px; }
.news-form input::placeholder { color: var(--bone-soft); opacity: .7; }
.news-form input:focus { outline: none; }
.news-form button { background: var(--gold); color: var(--ink); border: none; padding: 0 20px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: background var(--dur-hover) var(--ease); }
.news-form button:hover { background: var(--gold-bright); }
.news-note { display: block; margin-top: 9px; font-size: 10.5px; letter-spacing: .06em; color: var(--bone-soft); opacity: .7; }
.footer-legal { max-width: var(--maxw); margin: 26px auto 0; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-legal .copyright { margin: 0; }
.legal-links a { color: var(--bone-soft); }
.legal-links a:hover { color: var(--gold-bright); }
.social-soon { display: block; margin-top: 12px; font-size: 11px; letter-spacing: .08em; font-style: italic; color: var(--bone-soft); opacity: .65; font-family: 'Cormorant Garamond', serif; }
.form-sent { margin-top: 12px; font-size: 12.5px; letter-spacing: .04em; color: var(--gold-bright); font-style: italic; font-family: 'Cormorant Garamond', serif; }
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-legal { justify-content: center; text-align: center; }
}

/* ───── scroll reveal ───── */
html.has-js :is(.section-head, .trust-item, .auth-card, .care-col, .review, .leader, .gold-mark, .symbol, .commissions-inner, .piece, .journey-step, .owner-review, .gm-quote, .gm-ex-col, .marketbar) {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
html.has-js .reveal-in { opacity: 1 !important; transform: none !important; }

/* ───── active nav ───── */
nav.main a.active { color: var(--gold-bright); }
nav.main a.active::after { left: 0; right: 0; }
nav.main a[aria-current="page"] { color: var(--gold-bright); }
nav.main a[aria-current="page"]::after { left: 0; right: 0; }

/* ───── button sheen micro-interaction ───── */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 65%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn:hover::after { animation: btnsheen .85s var(--ease); }
@keyframes btnsheen { to { left: 150%; } }

/* ───── hero parallax easing ───── */
.hero-kanji { transition: transform .4s var(--ease); }

/* ───── The Language of the House ───── */
.house { background: var(--ink-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.gold-marks { display: flex; flex-wrap: wrap; justify-content: center; max-width: 920px; margin: 0 auto 60px; border: 1px solid var(--hairline); }
.gold-mark { flex: 1 1 0; min-width: 170px; padding: 32px 18px; text-align: center; border-right: 1px solid var(--hairline); display: flex; flex-direction: column; gap: 10px; }
.gold-mark:last-child { border-right: none; }
.gm-big { font-size: 42px; color: var(--gold-bright); line-height: 1; }
.gm-cap { font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--bone-soft); }
.symbols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--maxw); margin: 0 auto; }
.symbol { text-align: center; padding: 34px 22px; border: 1px solid var(--hairline); background: var(--ink); transition: border-color var(--dur-hover) var(--ease), transform var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease); }
.symbol:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 24px 44px -28px rgba(201,163,94,.4); }
.sym-glyph { font-family: 'Cormorant Garamond', serif; font-size: 62px; color: var(--gold); line-height: 1; display: block; margin-bottom: 14px; }
.symbol h3 { font-size: 21px; color: var(--bone); margin-bottom: 9px; }
.symbol p { font-size: 13.5px; color: var(--bone-soft); line-height: 1.65; }

/* ───── back to top ───── */
.to-top {
  position: fixed; right: 26px; bottom: 26px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--hairline-strong); background: rgba(9,13,26,.82); backdrop-filter: blur(8px);
  color: var(--gold-bright); display: flex; align-items: center; justify-content: center; z-index: 60;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold); color: var(--ink); }
.to-top svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .symbols { grid-template-columns: repeat(2, 1fr); }
  .gold-mark { flex-basis: 50%; }
}
@media (max-width: 760px) {
  .symbols { grid-template-columns: 1fr; }
  .gold-mark { flex-basis: 100%; border-right: none; border-bottom: 1px solid var(--hairline); }
  .gold-mark:last-child { border-bottom: none; }
  .to-top { right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html.has-js :is(.section-head, .trust-item, .auth-card, .care-col, .review, .leader, .gold-mark, .symbol, .commissions-inner, .piece, .journey-step, .owner-review, .gm-quote, .gm-ex-col, .marketbar) {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .hero-kanji { transition: none; }
}

/* ───── mobile ───── */
@media (max-width: 900px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .auth-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .lightbox-panel { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
  .lightbox-stage { min-height: 62vw; }
}
@media (max-width: 760px) {
  nav.main, .nav-right { display: none; }
  .nav-toggle { display: block; }
  header.site { padding: 16px 22px; }
  header.site.scrolled { padding: 12px 22px; }
  section { padding: 66px 20px; }
  .utility { gap: 12px; font-size: 9px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
  .piece-body { padding: 16px 13px 20px; gap: 6px; }
  .piece-body h3 { font-size: 17px; }
  .lightbox-side { padding: 22px; }
  .review-form-wrap { padding: 30px 20px; }
  .rf-row { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero h1 .word, .hero-sub, .hero-ctas, .hero .eyebrow { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   WAVE 4 (2026-06-06) — WCAG AA quick-wins
   Targets Lighthouse "contrast ratio" + "aria-hidden focusable descendants" fails.
   ═══════════════════════════════════════════════════════════════════ */

/* Contrast fix: bump small text that uses --gold (#c9a35e, ~7.6:1 on ink)
   to --gold-bright (#e6c989, ~10:1 on ink) for small-caps under 14px.
   Original was passing AA narrowly; now passes AAA. */
.piece-cat,
.cat,
.lb-cat,
.feat-cap,
.eyebrow,
.utility,
.gm-cap,
.review figcaption,
.or-role,
.leader-role {
  color: var(--gold-bright);
}
/* Keep .ti-title, headings etc on --bone (already passes) */

/* Inert is the modern aria-hidden — make sure styling matches when applied */
[inert] { pointer-events: none; }
.mobile-menu[inert] { opacity: 0; }
.mobile-menu.is-open[inert] { /* never happens but safety */ opacity: 1; pointer-events: auto; }



/* Skip-to-content link — hidden until focused (WCAG 2.4.1) */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--gold); color: var(--ink);
  padding: 12px 22px; z-index: 9999;
  font-family: 'Jost', sans-serif; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Better focus-visible — visible 3px gold ring instead of default 2px */
:focus-visible {
  outline: 3px solid var(--gold-bright) !important;
  outline-offset: 4px !important;
  border-radius: 2px;
}
/* Don't double up on inputs that have their own focus */
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline-offset: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   WAVE B (2026-06-06) — Futuristic luxury polish
   Vision locked at .planning/VISION-2027.md
   Additive layer: tokens, View Transitions, magnetic cursor, kinetic numerals.
   All additions respect prefers-reduced-motion.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Refined motion tokens (from VISION-2027 §Motion) */
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fade: 700ms;
  --dur-page: 350ms;

  /* Color extensions */
  --ink-glass: color-mix(in srgb, var(--ink) 86%, transparent);
  --gold-glow: color-mix(in srgb, var(--gold-bright) 60%, transparent);
  --gold-soft: color-mix(in srgb, var(--gold) 30%, transparent);

  /* Strict 8px spacing scale */
  --s-1: .5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;
  --s-9: 12rem;

  /* Fluid type scale (clamp-based, viewport-responsive) */
  --t-hero:  clamp(3rem, 8vw, 9rem);
  --t-h2:    clamp(2rem, 4vw, 4rem);
  --t-h3:    clamp(1.4rem, 2vw, 2rem);
  --t-body:  clamp(.95rem, 1.05vw, 1.1rem);
  --t-spec:  clamp(.7rem, .8vw, .85rem);
}

/* View Transitions API — silk-smooth page-to-page (Chrome/Edge 111+, Safari 18+) */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: var(--dur-page);
  animation-timing-function: var(--ease-snap);
}

/* Kinetic numerals — Jost variable-weight feel for prices, IDs, years */
.kinetic-num {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums lining-nums;
  transition: font-weight 600ms var(--ease-luxe), letter-spacing 600ms var(--ease-luxe);
}
.kinetic-num:hover { font-weight: 500; letter-spacing: .06em; }

/* Spec label refinement (VISION-2027 §Typography) */
.spec-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: var(--t-spec);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* CTA hover — quiet luxury underline grow + arrow slide (VISION §Motion) */
.btn-ghost::before {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 8px;
  height: 1px; background: var(--gold-bright);
  transition: left .35s var(--ease-luxe), right .35s var(--ease-luxe);
}
.btn-ghost:hover::before { left: 18%; right: 18%; }

/* Magnetic cursor (desktop only, mouse only) — VISION §Futuristic
   Implemented via :hover pull on key CTAs. Subtle scale + glow at close range.
   Real magnetic-cursor uses JS pointer tracking; this is the CSS hover companion. */
@media (hover: hover) and (pointer: fine) {
  .btn-primary, .btn-ghost, .nav-cta, .lb-enquire {
    transition: transform .28s var(--ease-luxe), background var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease), box-shadow .35s var(--ease-luxe);
  }
  .btn-primary:hover, .btn-ghost:hover, .nav-cta:hover, .lb-enquire:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -16px var(--gold-glow);
  }
}

/* Cinematic hairline — subtle gold filament that grows on section hover */
.section-divider {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width .6s var(--ease-luxe), opacity .6s var(--ease-luxe);
}

/* Improved card hover bloom (additive to existing .piece:hover) */
@media (hover: hover) and (pointer: fine) {
  .piece { transition: transform .42s var(--ease-luxe), border-color var(--dur-hover) var(--ease), box-shadow .42s var(--ease-luxe); }
}

/* Gold-dust canvas: container-level fade hook (JS sets --gd-opacity on scroll) */
.hero-canvas { opacity: var(--gd-opacity, 1); transition: opacity .3s linear; }

/* Trust block hairline rhythm */
.trust-strip { position: relative; }
.trust-strip::before {
  content: ""; position: absolute; left: 50%; top: -1px; transform: translateX(-50%);
  width: 60px; height: 1px; background: var(--gold);
  opacity: .6;
}

/* Container queries on product cards (modern responsive replaces JS resize) */
.grid { container-type: inline-size; container-name: collection; }
@container collection (max-width: 540px) {
  .piece-body h3 { font-size: 18px; }
  .piece-body { padding: 14px 12px 18px; }
  .piece-cat { font-size: 9.5px; letter-spacing: .22em; }
}

/* Accessibility safety: reduce ALL Wave B additions on prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .kinetic-num, .section-divider, .btn-ghost::before {
    transition: none !important;
  }
  ::view-transition-old(root), ::view-transition-new(root) {
    animation-duration: .01ms !important;
  }
}

