/* ============================================================
   RVSE — Shared Styles
   Quiet confidence, worn within.
   ============================================================ */

:root {
  --bg: #0A0908;
  --bg-soft: #13110F;
  --surface: #1A1814;
  --surface-2: #222019;
  --line: #2A2620;
  --line-soft: #1E1B16;
  --text: #EDEAE3;
  --text-muted: #8A857B;
  --text-dim: #56524A;
  --gold: #C9A961;
  --gold-bright: #DFC07E;
  --gold-soft: #9E8649;
  --serif: "Cormorant Garamond", "Noto Serif SC", serif;
  --sans: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  --serif-zh: "Noto Serif SC", "Cormorant Garamond", serif;
  --sans-zh: "Noto Sans SC", "Inter", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html[lang="zh"] body { font-family: var(--sans-zh); }

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

a { color: inherit; }

/* Hide default cursor site-wide on pointer devices (custom cursor takes over) */
@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * { cursor: none !important; }
}

/* =========== TYPOGRAPHY =========== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.005em;
}
html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3,
html[lang="zh"] h4 { font-family: var(--serif-zh); font-weight: 300; letter-spacing: 0.04em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
html[lang="zh"] .eyebrow { letter-spacing: 0.25em; }

.display-italic { font-style: italic; color: var(--gold); font-weight: 400; }

/* =========== LAYOUT =========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 48px; }
section { padding: 140px 0; position: relative; }

.section-head { text-align: center; margin-bottom: 88px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.1;
  max-width: 20ch;
  margin: 0 auto;
}

/* =========== CUSTOM CURSOR =========== */
.cursor-cross, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-cross {
  width: 16px; height: 16px;
  transform: translate3d(-50%,-50%,0);
  transition: opacity 0.3s ease, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}
.cursor-cross svg { width: 100%; height: 100%; display: block; }
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.55;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.35s var(--ease-out), background 0.3s ease, border-color 0.3s ease;
}
html.cursor-hover .cursor-cross { width: 22px; height: 22px; transform: translate3d(-50%,-50%,0) rotate(45deg); }
html.cursor-hover .cursor-ring { width: 64px; height: 64px; opacity: 0.85; background: rgba(201,169,97,0.06); border-color: var(--gold-bright); }
html.cursor-down .cursor-ring { width: 24px; height: 24px; opacity: 1; }

@media (hover: none), (pointer: coarse) {
  .cursor-cross, .cursor-ring { display: none; }
}

/* =========== PAGE-TRANSITION CURTAIN =========== */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  pointer-events: none;
}
.curtain.in  { animation: curtainIn 0.75s var(--ease-in-out) forwards; pointer-events: auto; }
.curtain.out { animation: curtainOut 0.75s var(--ease-in-out) forwards; pointer-events: none; }
.curtain-mark {
  width: 64px; height: 64px;
  opacity: 0;
  transform: scale(0.6) rotate(-12deg);
}
.curtain.in .curtain-mark { animation: markIn 0.75s var(--ease-out) 0.15s forwards; }
.curtain.out .curtain-mark { animation: markOut 0.4s var(--ease-out) forwards; }
@keyframes curtainIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes curtainOut { from { transform: translateY(0); } to { transform: translateY(-100%); } }
@keyframes markIn { 0% { opacity: 0; transform: scale(0.6) rotate(-12deg); } 60% { opacity: 1; } 100% { opacity: 1; transform: scale(1) rotate(0deg); } }
@keyframes markOut { to { opacity: 0; transform: scale(1.2); } }

/* On initial load */
body.page-loading { overflow: hidden; }

/* =========== NAV =========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 9, 8, 0);
  transition: background 0.4s ease, border-bottom 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 14px 48px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 28px; width: auto; }
.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.lang-toggle { display: flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.2em; }
.lang-toggle a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 2px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.lang-toggle a.active { color: var(--gold); }
.lang-toggle a:hover { color: var(--text); }
.lang-toggle .sep { color: var(--text-dim); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 4px;
  margin-left: 14px;
}
.nav-burger svg { display: block; }

/* =========== HERO (HOMEPAGE) =========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 160px 48px 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(0.4) contrast(1.05);
  transform: scale(1.02);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,9,8,0.3) 0%, rgba(10,9,8,0.85) 70%, rgba(10,9,8,0.98) 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero > div { position: relative; z-index: 2; }
.hero-emblem {
  width: 88px;
  height: auto;
  margin: 0 auto 44px;
  opacity: 0.95;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 102px);
  line-height: 1.04;
  font-weight: 300;
  max-width: 14ch;
  margin: 0 auto 28px;
  letter-spacing: -0.005em;
}
html[lang="zh"] .hero h1 {
  font-size: clamp(42px, 6.5vw, 88px);
  letter-spacing: 0.05em;
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero p.sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 60px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.hero-meta {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta span { display: flex; align-items: center; gap: 12px; }
.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-meta span:first-child::before { display: none; }

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* Subpage hero (smaller) */
.page-hero {
  padding: 220px 48px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { display: block; margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.1;
  font-weight: 300;
  max-width: 18ch;
  margin: 0 auto 20px;
}
.page-hero p.lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: grayscale(0.3);
  z-index: 0;
}
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,0.6), rgba(10,9,8,0.95) 70%, var(--bg) 100%);
}
.page-hero > div { position: relative; z-index: 2; }

/* =========== MANIFESTO =========== */
.manifesto {
  background: var(--bg);
  text-align: center;
  padding: 160px 0;
  position: relative;
}
.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px; height: 60px;
  background: var(--gold);
  opacity: 0.4;
}
.manifesto::before { top: 40px; }
.manifesto::after { bottom: 40px; }
.manifesto .container { max-width: 820px; }
.manifesto .eyebrow { margin-bottom: 32px; display: block; }
.manifesto blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.45;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.005em;
}
html[lang="zh"] .manifesto blockquote {
  font-family: var(--serif-zh);
  font-style: normal;
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: 0.08em;
  line-height: 1.75;
}

/* =========== PILLARS =========== */
.pillars {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--bg-soft);
  padding: 64px 48px;
  transition: background 0.5s ease;
  position: relative;
}
.pillar:hover { background: var(--surface); }
.pillar-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}
.pillar h3 {
  font-size: 30px;
  margin-bottom: 28px;
  font-weight: 400;
}
html[lang="zh"] .pillar h3 { font-size: 28px; letter-spacing: 0.08em; }
.pillar p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36ch;
}

/* =========== LOOKBOOK (horizontal marquee) =========== */
.lookbook { background: var(--bg); padding: 140px 0 120px; overflow: hidden; }
.lookbook .section-head { margin-bottom: 64px; padding: 0 48px; }
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 44s linear infinite;
  padding: 20px 0;
}
.marquee:hover .marquee-track,
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.look-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  width: 320px;
  height: 440px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out), border-color 0.6s ease;
}
a.look-card { text-decoration: none; color: inherit; }
.look-card-hero { border-color: var(--gold-soft); }
.look-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
}
.look-card-hero:hover { border-color: var(--gold); }
.look-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201,169,97,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.look-card:hover::before { opacity: 1; }
.look-tag {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  align-self: flex-start;
  position: relative;
}
.look-silhouette {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.look-silhouette svg {
  width: 72%;
  max-width: 180px;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.4s ease, transform 0.6s var(--ease-out);
}
.look-card:hover .look-silhouette svg { opacity: 1; transform: scale(1.06); }
.look-meta { text-align: center; position: relative; }
.look-meta h3 { font-size: 22px; font-weight: 400; margin-bottom: 10px; }
.look-meta .status {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* =========== JOURNAL =========== */
.journal {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}
.essay {
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color 0.5s ease, transform 0.6s var(--ease-out);
  overflow: hidden;
}
.essay:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.essay-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  position: relative;
}
.essay-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,9,8,0.6) 100%);
}
.essay-body { padding: 44px 40px 48px; }
.essay .meta {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.essay h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.25;
}
.essay p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.essay .read {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.essay .read:hover { color: var(--gold); border-color: var(--gold); }

/* =========== FULL-BLEED EDITORIAL =========== */
.editorial {
  position: relative;
  padding: 0;
  background: var(--bg);
}
.editorial-image {
  aspect-ratio: 21/9;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: grayscale(0.25) contrast(1.08);
}
.editorial-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,9,8,0.75) 0%, rgba(10,9,8,0.1) 50%, rgba(10,9,8,0.75) 100%);
}
.editorial-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 48px;
  z-index: 2;
  text-align: center;
}
.editorial-caption .eyebrow { display: block; margin-bottom: 14px; }
.editorial-caption h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  max-width: 24ch;
  margin: 0 auto;
  font-style: italic;
}

/* =========== WAITLIST =========== */
.waitlist {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,169,97,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.waitlist .container { max-width: 640px; position: relative; }
.waitlist .eyebrow { display: block; margin-bottom: 24px; }
.waitlist h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 20px;
}
.waitlist h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.waitlist p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 46ch;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.form-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  max-width: 480px;
  margin: 0 auto;
  transition: border-color 0.3s ease;
}
.form-row:focus-within { border-bottom-color: var(--gold); }
.form-row input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 16px 4px;
  letter-spacing: 0.03em;
}
.form-row input:focus { outline: none; }
.form-row input::placeholder {
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 11px;
}
.form-row button {
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0 8px;
  transition: color 0.3s ease;
}
.form-row button:hover { color: var(--text); }
.waitlist .note {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 24px;
  letter-spacing: 0.08em;
}

/* =========== FOOTER =========== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 32px; margin-bottom: 22px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 36ch;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.footer-socials a:hover { color: var(--bg); background: var(--gold); border-color: var(--gold); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.3s ease;
}
.footer-bottom .legal a:hover { color: var(--text-muted); }

/* =========== REVEAL ANIMATION =========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* =========== CONTENT PAGES — Accordion (FAQ) =========== */
.accordion { border-top: 1px solid var(--line); }
.accordion-group h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 56px 0 20px;
  font-weight: 500;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
details > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s ease;
}
details > summary::-webkit-details-marker { display: none; }
details > summary::after {
  content: "＋";
  font-family: var(--sans);
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out);
}
details[open] > summary::after { content: "−"; }
details[open] > summary { color: var(--gold); }
details > div.answer {
  padding-top: 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 70ch;
}
details > div.answer p + p { margin-top: 12px; }

/* =========== CONTENT PAGES — Two-column article =========== */
.two-col {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: flex-start;
}
.two-col aside h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.two-col aside ul { list-style: none; }
.two-col aside li { margin-bottom: 10px; }
.two-col aside a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.two-col aside a.is-active,
.two-col aside a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.content-block { margin-bottom: 72px; }
.content-block h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 20px;
  font-weight: 400;
}
.content-block h3 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.content-block p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 68ch;
}
.content-block ul, .content-block ol {
  padding-left: 20px;
  margin-bottom: 18px;
  color: var(--text-muted);
}
.content-block ul li, .content-block ol li {
  margin-bottom: 10px;
  line-height: 1.75;
  font-size: 15px;
  padding-left: 8px;
}
.content-block ul li::marker { color: var(--gold); }
.content-block strong { color: var(--text); font-weight: 500; }
.content-block a { color: var(--gold); }

/* =========== CONTENT PAGES — Cards (Careers) =========== */
.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.role {
  border: 1px solid var(--line);
  padding: 40px 36px;
  background: var(--bg-soft);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.5s var(--ease-out);
  display: block;
  text-decoration: none;
  color: inherit;
}
.role:hover { background: var(--surface); border-color: var(--gold-soft); transform: translateY(-4px); }
.role .role-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.role h3 {
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 400;
  font-family: var(--serif);
  color: var(--text);
  text-transform: none;
  letter-spacing: 0.005em;
}
.role .role-meta {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.role p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.role-apply {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
}

/* =========== CONTENT PAGES — Size Guide table =========== */
.size-tabs {
  display: inline-flex;
  border: 1px solid var(--line);
  margin-bottom: 40px;
  background: var(--bg-soft);
}
.size-tabs button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 14px 28px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease;
  border-right: 1px solid var(--line);
}
.size-tabs button:last-child { border-right: none; }
.size-tabs button.active { background: var(--gold); color: var(--bg); }
.size-tabs button:hover:not(.active) { color: var(--text); }
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 14px;
}
.size-table th, .size-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.size-table th {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-soft);
}
.size-table td:first-child {
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  width: 120px;
}
.size-table tr:hover td { background: var(--bg-soft); }
.size-fit-panel {
  display: none;
}
.size-fit-panel.active { display: block; }

/* =========== CONTENT PAGES — Contact / Location =========== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05);
}
.location-card h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; font-weight: 400; }
.location-card .detail-row {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.location-card .detail-row span.label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  flex: 0 0 100px;
  padding-top: 4px;
}
.location-card .detail-row span.value {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 24px;
  margin-top: 40px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 10px 0 12px;
  transition: border-color 0.3s ease;
  letter-spacing: 0.02em;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-bottom-color: var(--gold); }
.contact-form select option { background: var(--bg); color: var(--text); }
.contact-form button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 16px 40px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  justify-self: flex-start;
  margin-top: 12px;
}
.contact-form button:hover { background: var(--gold); color: var(--bg); }

/* =========== RESPONSIVE =========== */
@media (max-width: 960px) {
  .container, .container-narrow { padding: 0 28px; }
  .section-head { margin-bottom: 64px; }
  .nav { padding: 18px 28px; }
  .nav.scrolled { padding: 12px 28px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10, 9, 8, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 22px;
    padding: 32px 28px 40px;
    border-bottom: 1px solid var(--line);
  }
  section { padding: 96px 0; }
  .hero { padding: 140px 28px 100px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .role-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { grid-template-columns: 1fr; }
  .look-card { width: 260px; height: 360px; }
  .page-hero { padding: 160px 28px 80px; }
}
@media (max-width: 520px) {
  .hero-meta { gap: 14px; font-size: 10px; }
  .hero-meta span::before { display: none; }
  .editorial-image { aspect-ratio: 4/5; }
  .editorial-caption { padding: 40px 24px; }
}

@media print {
  .cursor-cross, .cursor-ring, .nav, .curtain, .scroll-hint { display: none !important; }
}

/* ============================================================
   PRODUCT PAGE (PDP) — The Brief
   ============================================================ */
.pdp {
  padding: 148px 0 120px;
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: flex-start;
}

/* ---- Gallery ---- */
.pdp-gallery { position: sticky; top: 110px; }
.pdp-stage {
  position: relative;
  aspect-ratio: 864 / 1222;
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.pdp-stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.pdp-stage img.is-active { opacity: 1; }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.pdp-thumb {
  aspect-ratio: 864 / 1222;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 0;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { opacity: 0.85; }
.pdp-thumb.is-active { opacity: 1; border-color: var(--gold); }

/* ---- Info column ---- */
.pdp-info .eyebrow { display: block; margin-bottom: 18px; }
.pdp-info h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 16px;
}
.pdp-info h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.pdp-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.pdp-avail {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pdp-avail::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.18);
}
.pdp-lede {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 36px;
}

.pdp-selector { margin-bottom: 30px; }
.pdp-selector .selector-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.pdp-selector .selector-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.pdp-selector .selector-value {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Colour swatches */
.swatch-row { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  padding: 0;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}
.swatch::after {
  content: "";
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.swatch:hover { transform: translateY(-2px); }
.swatch.is-active::after { border-color: var(--gold); }

/* Size pills */
.size-row { display: flex; gap: 10px; flex-wrap: wrap; }
.size-pill {
  min-width: 52px;
  padding: 12px 6px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.size-pill:hover { color: var(--text); border-color: var(--gold-soft); }
.size-pill.is-active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.pdp-sizelink {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.pdp-sizelink a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; }

/* CTA */
.pdp-cta {
  display: flex;
  gap: 14px;
  margin: 34px 0 20px;
  flex-wrap: wrap;
}
.btn-primary {
  flex: 1;
  min-width: 220px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 18px 28px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-primary:hover { background: var(--gold-bright); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 18px 28px;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.pdp-reassure {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pdp-reassure span {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pdp-reassure span::before { content: "—"; color: var(--gold); }

/* ---- Spec / feature strip ---- */
.spec {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.spec-cell {
  background: var(--bg-soft);
  padding: 44px 32px;
}
.spec-cell .spec-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 18px;
}
.spec-cell h3 { font-size: 21px; font-weight: 400; margin-bottom: 12px; }
.spec-cell p { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }

/* ---- Colourway showcase ---- */
.colorways { background: var(--bg); }
.colorway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.colorway {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.6s var(--ease-out);
}
.colorway:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.colorway-img {
  aspect-ratio: 864 / 1222;
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-soft) 100%);
}
.colorway-img img { width: 100%; height: 100%; object-fit: cover; }
.colorway-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
}
.colorway-meta h4 { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.colorway-meta .status {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Other silhouettes (coming soon) ---- */
.silhouettes { background: var(--bg-soft); border-top: 1px solid var(--line); }
.sil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.sil-card {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 48px 32px 40px;
  text-align: center;
  position: relative;
}
.sil-card .sil-svg { height: 130px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.sil-card .sil-svg svg { width: 130px; height: auto; opacity: 0.8; }
.sil-card h3 { font-size: 24px; font-weight: 400; margin-bottom: 10px; }
.sil-card .status { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); }

@media (max-width: 960px) {
  .pdp { padding: 120px 0 90px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-gallery { position: static; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .colorway-grid { grid-template-columns: 1fr 1fr; }
  .sil-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .spec-grid { grid-template-columns: 1fr; }
  .colorway-grid { grid-template-columns: 1fr; }
  .pdp-thumbs { grid-template-columns: repeat(6, 1fr); gap: 6px; }
}
