/* ==========================================================
   Sarit Weissman Jewelry — v2 "Night Gallery"
   UI/UX Pro Max: Luxury · Cormorant + Montserrat · Dark
   ========================================================== */

:root {
  --bg:       #0A0806;
  --bg-2:     #100E0B;
  --bg-3:     #161210;
  --ink:      #FCC10E;   /* marigold yellow — headings (banner accent color) */
  --body:     #F5F2EC;   /* warm white — body / paragraph text */
  --ink-soft: rgba(245,242,236,0.6);  /* dim white — secondary text */
  --gold:     #C9A84C;
  --gold-lt:  #E8C96A;
  --gold-dk:  #8A6B2A;
  --line:     rgba(201,168,76,0.18);
  --line-soft:rgba(242,234,216,0.08);

  --f-display: 'Heebo', 'Cormorant', Georgia, serif;
  --f-sans:    'Heebo', system-ui, sans-serif;

  --gut:  clamp(24px, 5vw, 80px);
  --max:  1400px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:    500ms var(--ease);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; }

/* ===== UTILS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 400; line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 24px;
}
.section-title em {
  font-style: italic; color: var(--gold);
  display: block;
}

/* ===== PROGRESS ===== */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); z-index: 200;
  transform-origin: right; transform: scaleX(0);
  transition: transform 80ms linear;
}
[dir="ltr"] .progress { transform-origin: left; }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 800ms ease, visibility 800ms ease;
}
.loader.gone { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { width: 140px; margin: 0 auto 32px; opacity: 0; animation: fade-in 600ms ease 200ms forwards; }
.loader-bar {
  width: 160px; height: 1px; background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.loader-fill {
  position: absolute; inset: 0;
  background: var(--gold);
  transform-origin: right;
  animation: load-bar 1400ms var(--ease) 300ms forwards;
}
[dir="ltr"] .loader-fill { transform-origin: left; }
@keyframes load-bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes fade-in  { to { opacity: 1; } }

/* ===== NAV ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 28px var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding var(--t), background var(--t);
}
.nav.scrolled { background: rgba(10,8,6,0.9); backdrop-filter: blur(16px); padding: 18px var(--gut); }
/* Hide logo while in hero (nav not yet scrolled) — banner already
   has the SW logo built in, so the top logo was redundant.
   Fades in once user scrolls past the hero. */
.nav-brand {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.nav.scrolled .nav-brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav::after {
  content: ''; position: absolute; bottom: 0; left: var(--gut); right: var(--gut);
  height: 1px; background: var(--line);
  transform: scaleX(0); transform-origin: right;
  transition: transform 600ms var(--ease) 200ms;
}
.nav.scrolled::after { transform: scaleX(1); }
.nav-brand img { height: 64px; transition: height var(--t); }
.nav.scrolled .nav-brand img { height: 44px; }
.nav-links {
  display: flex; gap: 40px; list-style: none;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 400;
  color: var(--ink-soft);
}
.nav-links a { transition: color var(--t); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background var(--t), color var(--t);
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: hero-zoom 8s ease forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,8,6,0.2) 0%,
    rgba(10,8,6,0.3) 40%,
    rgba(10,8,6,0.75) 75%,
    rgba(10,8,6,0.95) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gut) clamp(60px, 8vh, 100px);
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
  margin-bottom: 32px;
  opacity: 0; animation: fade-up 800ms var(--ease) 1.8s forwards;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 400; line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: clamp(40px, 5vh, 60px);
}
.hero-title .line {
  display: block; overflow: hidden;
}
/* hero title — direct fade-up per line */
.hero-title .line {
  opacity: 0; transform: translateY(30px);
  animation: fade-up 900ms var(--ease) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 300ms; }
.hero-title .line.italic { font-style: italic; color: var(--gold); animation-delay: 500ms; }
.hero-title .line:nth-child(3) { animation-delay: 650ms; }
.hero-title .line:nth-child(4) { animation-delay: 800ms; }

.hero-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px;
  opacity: 0; animation: fade-up 800ms var(--ease) 1.2s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ink); font-weight: 400;
  padding: 18px 36px;
  background: var(--gold);
  transition: all var(--t);
}
.hero-cta:hover { background: var(--gold-lt); gap: 22px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(28px, 3vw, 42px); color: var(--gold); line-height: 1;
}
.stat-label {
  display: block;
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px;
}
.stat-div { width: 1px; height: 40px; background: var(--line); }

.hero-scroll {
  position: absolute; bottom: clamp(40px, 5vh, 60px); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--ink-soft); z-index: 2;
  opacity: 0; animation: fade-in 800ms ease 2.4s forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(1.3); opacity: 1; }
}
.scroll-arrow {
  width: 16px; height: 24px;
  color: var(--gold);
  animation: arrow-bounce 1.8s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(6px); opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ===== TICKER ===== */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden; background: var(--bg-2);
}
.ticker-track {
  display: flex; gap: 48px; width: max-content;
  animation: ticker-scroll 40s linear infinite;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ink-soft);
}
[dir="rtl"] .ticker-track { animation-direction: reverse; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.dot { color: var(--gold); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== STORY ===== */
.story {
  padding: clamp(80px, 12vw, 180px) var(--gut);
  max-width: var(--max); margin: 0 auto;
}
.story-label {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 60px;
}
.label-line { width: 48px; height: 1px; background: var(--gold); }
.story-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center;
}
.story-image {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
}
.story-image::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: transform 1200ms var(--ease);
}
.story-image:hover::after { transform: scale(1.04); }
.story-image-tag {
  position: absolute; bottom: 20px; right: 20px; z-index: 2;
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(10,8,6,0.5); backdrop-filter: blur(8px);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.1);
}
.story-heading {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400; line-height: 1.0;
  margin-bottom: 32px;
}
.story-heading em { font-style: italic; color: var(--gold); }
.story-quote p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.85; color: var(--ink-soft);
  margin-bottom: 16px;
}
.story-link {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 36px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold-dk);
  padding-bottom: 8px;
  transition: gap var(--t), border-color var(--t);
}
.story-link:hover { gap: 20px; border-color: var(--gold); }
@media (max-width: 860px) { .story-body { grid-template-columns: 1fr; } }

/* ===== COLLECTION ===== */
.collection {
  padding: clamp(80px, 10vw, 160px) var(--gut);
  background: var(--bg-2);
}
.collection-header {
  max-width: var(--max); margin: 0 auto 60px;
}
.col-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
}
.col-item { position: relative; overflow: hidden; cursor: pointer; background: var(--bg-3); }
.col-lg   { grid-column: span 8; grid-row: span 2; }
.col-md   { grid-column: span 4; grid-row: span 2; }
.col-sm   { grid-column: span 4; }

.col-img {
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: transform 1200ms var(--ease), filter 600ms ease;
  filter: brightness(0.75) saturate(0.9);
}
.col-item:hover .col-img { transform: scale(1.06); filter: brightness(0.9) saturate(1); }
.col-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 24px 24px;
  background: linear-gradient(0deg, rgba(10,8,6,0.85) 0%, transparent 100%);
  transform: translateY(8px); opacity: 0.85;
  transition: transform var(--t), opacity var(--t);
}
.col-item:hover .col-meta { transform: translateY(0); opacity: 1; }
.col-tag {
  display: block; font-size: 9px; letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 8px;
}
.col-meta h3 {
  font-family: var(--f-display); font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400; color: #ffffff; line-height: 1.2;
}
.col-meta h3 em { font-style: italic; color: #ffffff; opacity: 0.9; }

@media (max-width: 900px) {
  .col-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .col-lg, .col-md, .col-sm { grid-column: span 2; grid-row: span 1; }
  .col-lg { grid-row: span 2; }
}
@media (max-width: 560px) {
  .col-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .col-lg, .col-md, .col-sm { grid-column: span 1; grid-row: span 1; }
}

/* ===== STONES ===== */
.stones {
  padding: clamp(80px, 10vw, 160px) var(--gut);
  background: var(--bg);
}
.stones-header {
  max-width: var(--max); margin: 0 auto 64px;
}
.stones-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stone-card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  padding: 40px 28px 36px;
  position: relative; overflow: hidden;
  transition: background 400ms ease, border-color 400ms ease;
  cursor: default;
}
.stone-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 500ms var(--ease);
}
.stone-card:hover { background: var(--bg-3); border-color: var(--line); }
.stone-card:hover::before { transform: scaleX(1); transform-origin: left; }
.stone-num {
  font-family: var(--f-display); font-style: italic;
  font-size: 13px; color: var(--gold-dk); letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.stone-img {
  width: 80px; aspect-ratio: 1; object-fit: contain;
  transform: rotate(45deg);
  filter: drop-shadow(0 6px 20px rgba(201,168,76,0.2));
  margin-bottom: 28px;
  transition: transform 600ms var(--ease), filter 400ms ease;
}
.stone-card:hover .stone-img {
  transform: rotate(45deg) scale(1.1);
  filter: drop-shadow(0 8px 28px rgba(201,168,76,0.35));
}
.stone-name {
  font-family: var(--f-display); font-size: clamp(22px, 2vw, 28px);
  font-weight: 400; color: var(--ink); line-height: 1.1; margin-bottom: 4px;
}
.stone-en {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.stone-desc {
  font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 20px;
}
.stone-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.stone-tags span {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line-soft);
  padding: 5px 10px;
  transition: border-color var(--t), color var(--t);
}
.stone-card:hover .stone-tags span { border-color: var(--line); color: var(--gold); }
@media (max-width: 1100px) { .stones-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .stones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .stones-grid { grid-template-columns: 1fr; } }

/* ===== PROCESS ===== */
.process {
  padding: clamp(80px, 10vw, 160px) var(--gut);
  background: var(--bg-2);
  max-width: 100%;
}
.process-intro {
  max-width: var(--max); margin: 0 auto 80px;
}
.process-steps {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 2px;
}
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr 360px;
  align-items: center; gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line-soft);
  transition: border-color 400ms ease;
}
.process-step:last-child { border-bottom: 1px solid var(--line-soft); }
.process-step:hover { border-color: var(--line); }
.ps-num {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(72px, 8vw, 120px);
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  line-height: 1; transition: color 500ms ease, -webkit-text-stroke-color 500ms ease;
}
.process-step:hover .ps-num { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.ps-body h3 {
  font-family: var(--f-display); font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400; margin-bottom: 12px;
}
.ps-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 36ch; }
.ps-img {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
  background-image: var(--img);
  background-size: cover; background-position: center;
  filter: brightness(0.6) saturate(0.7);
  transition: filter 600ms ease;
}
.process-step:hover .ps-img { filter: brightness(0.85) saturate(1); }

/* Icon variant: replaces the photo with a transparent line icon */
.ps-icon {
  background: none !important;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 16px;
  filter: none !important;
  transition: transform 500ms var(--ease), opacity 400ms ease;
}
.ps-icon img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  /* clip to circle — hides any square white background around
     circular icons (e.g. step-04 truck) */
  clip-path: circle(49% at 50% 50%);
  transition: opacity 400ms ease, transform 600ms var(--ease);
}
.process-step:hover .ps-icon img {
  opacity: 1;
  transform: scale(1.06);
}
@media (max-width: 860px) {
  .process-step { grid-template-columns: 80px 1fr; }
  .ps-img:not(.ps-icon) { display: none; }
  .ps-icon { grid-column: 1 / -1; aspect-ratio: auto; padding: 8px 0 24px; }
  .ps-icon img { max-height: 130px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: clamp(80px, 10vw, 160px) var(--gut);
  background: var(--bg);
}
.test-wrap {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  border-top: 1px solid var(--line);
  padding-top: clamp(40px, 5vw, 80px);
}
@media (max-width: 900px) { .test-wrap { grid-template-columns: 1fr 1fr; } }
.test-item { position: relative; padding-top: 16px; }
.test-quote-mark {
  font-family: var(--f-display); font-size: 120px; line-height: 0.8;
  color: var(--gold); opacity: 0.25;
  position: absolute; top: 0; left: 0;
}
[dir="rtl"] .test-quote-mark { left: auto; right: 0; }
.test-item p {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.5;
  margin-bottom: 24px; padding-top: 68px;
}
.test-item cite {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ink-soft); font-style: normal;
}
@media (max-width: 640px) { .test-wrap { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gut) clamp(60px, 8vh, 100px);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  filter: brightness(0.42) saturate(0.65);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,8,6,0.6) 50%, rgba(10,8,6,0.95) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.cta-title {
  font-family: var(--f-display);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 400; line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 20px 0 32px;
}
.cta-title em { font-style: italic; color: var(--gold); display: block; }
.cta-sub {
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 40px;
}
.form { display: grid; gap: 0; max-width: 580px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; }
.field {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid transparent;
  transition: border-color 400ms ease;
}
.field:focus-within { border-bottom-color: var(--gold); }
.field input, .field textarea, .field select {
  width: 100%; padding: 20px 0;
  background: transparent; border: 0; outline: 0;
  color: var(--ink); font-family: var(--f-sans); font-size: 14px;
  font-weight: 300; letter-spacing: 0.05em;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(242,234,216,0.3); }
.field select { cursor: pointer; appearance: none; }
.field select option { background: var(--bg-3); color: var(--ink); }
.field textarea { resize: none; min-height: 80px; }
.form-row .field:first-child { border-left: none; }
.submit {
  margin-top: 24px;
  display: inline-flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 28px;
  background: #FCC10E; color: var(--bg);
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; font-weight: 600;
  transition: all var(--t);
}
.submit:hover { background: #FFD33E; }
.form.sent .field,
.form.sent .submit { opacity: 0.25; pointer-events: none; filter: blur(1px); transition: all 600ms ease; }
.form-msg {
  display: none;
  font-family: var(--f-display);
  margin-top: 32px;
  padding: 28px 32px;
  background: rgba(252,193,14,0.08);
  border: 1px solid rgba(252,193,14,0.25);
  border-radius: 2px;
  text-align: center;
  animation: form-msg-in 600ms ease 200ms both;
}
.form-msg-title {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: #FCC10E;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.form-msg-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,242,236,0.85);
  line-height: 1.6;
}
.form.sent .form-msg { display: block; }
@keyframes form-msg-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cta-links {
  display: flex; gap: 36px; margin-top: 36px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-soft);
}
.cta-links a { transition: color var(--t); border-bottom: 1px solid transparent; padding-bottom: 4px; }
.cta-links a:hover { color: var(--gold); border-color: var(--gold-dk); }

/* ===== FOOTER ===== */
.foot {
  background: var(--bg); border-top: 1px solid var(--line);
  padding: 60px var(--gut) 32px;
  max-width: 100%;
}
.foot-top {
  display: flex; align-items: flex-start; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 40px;
}
.foot-logo { height: 44px; }
.foot-tagline {
  font-family: var(--f-display); font-style: italic;
  font-size: 17px; color: var(--ink-soft); line-height: 1.6;
}
.foot-mid {
  display: flex; gap: 80px; margin-bottom: 40px;
}
.foot-mid h4 {
  font-size: 9px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px; font-family: var(--f-sans);
}
.foot-mid ul { list-style: none; display: grid; gap: 10px; }
.foot-mid a { font-size: 13px; color: var(--ink-soft); transition: color var(--t); }
.foot-mid a:hover { color: var(--gold); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(160,152,128,0.4);
  border-top: 1px solid var(--line-soft); padding-top: 28px;
}
@media (max-width: 640px) {
  .foot-top { flex-direction: column; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== FOCUS / A11Y ===== */
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════════════
   V2 ENHANCED — cursor, grain, horizontal scroll,
   parallax, advanced animations
   ═══════════════════════════════════════════════════ */

/* ── GRAIN ────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  animation: grain-shift 0.08s steps(8) infinite;
}
@keyframes grain-shift {
  0%  { background-position: 0    0;    }
  12% { background-position: -5%  -10%; }
  25% { background-position: 10%  5%;   }
  37% { background-position: -3%  8%;   }
  50% { background-position: 7%   -5%;  }
  62% { background-position: -8%  3%;   }
  75% { background-position: 4%   -8%;  }
  87% { background-position: -6%  6%;   }
}
@media (max-width: 768px) { .grain { display: none; } }

/* ── CURSOR ───────────────────────────────────────── */
/* Custom cursor removed — use native system cursor for guaranteed
   visibility across all backgrounds. */
.cursor-dot, .cursor-ring { display: none !important; }

/* ── HORIZONTAL GALLERY ───────────────────────────── */
.pin-section {
  position: relative;
  background: var(--bg-2);
}

.pin-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.h-track {
  display: flex;
  align-items: stretch;
  height: 100%;
  will-change: transform;
}

.h-intro-panel {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px;
  border-left: 1px solid var(--line);
}

.h-eyebrow {
  display: block;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}

.h-intro-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400; line-height: 1.1;
  color: var(--ink);
}
.h-intro-title em { font-style: italic; color: var(--gold); }

.h-intro-body {
  margin-top: 20px;
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: var(--ink-soft);
}

.h-intro-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-top: 32px;
}

.h-item {
  flex: 0 0 auto;
  width: calc(100vh * 0.78);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.h-img {
  flex: 1;
  overflow: hidden;
}

.h-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1), filter 0.6s ease;
  filter: brightness(0.95) saturate(0.9);
}

.h-item:hover .h-img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.h-info {
  padding: 20px 28px;
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}

.h-num {
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold); font-weight: 500;
}

.h-title {
  font-family: var(--f-display);
  font-size: 18px; font-weight: 400;
  color: var(--ink);
}

.h-end-panel {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  border-left: 1px solid var(--line);
  background: var(--bg-3);
  gap: 32px;
}

.h-end-text {
  font-family: var(--f-display);
  font-size: 36px; font-weight: 400;
  color: var(--ink); line-height: 1.2;
  text-align: center;
}

.h-end-cta {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s ease;
}

.h-end-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── ENHANCED REVEALS ─────────────────────────────── */
/* Clip-path reveal variant for section titles */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  opacity: 1 !important;
  transform: none !important;
  transition: clip-path 0.9s cubic-bezier(0.16,1,0.3,1) !important;
}

.reveal-clip.in {
  clip-path: inset(0 0 0% 0) !important;
}

/* Section title split effect */
.section-title {
  overflow: hidden;
}

/* ── COLLECTION CARD TILT ─────────────────────────── */
/* transition is applied dynamically by JS (off during mousemove, on during mouseleave) */
.col-item {
  transition: transform 0.5s var(--ease);
}

/* ── MAGNETIC ─────────────────────────────────────── */
.magnetic {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1) !important;
}

/* ── PARALLAX IMAGE ───────────────────────────────── */
[data-parallax] {
  will-change: transform;
}

/* ── SCROLL PROGRESS GLOW ────────────────────────── */
#progress {
  box-shadow: 0 0 8px var(--gold);
}

/* ── HERO TITLE WORD ANIMATION ───────────────────── */
.hero-title .line {
  display: block;
  overflow: hidden;
}

/* ── STONE CARD GLOW ON HOVER ────────────────────── */
.stone-card {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.stone-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(201,168,76,0.15);
}

/* ── COL-ITEM SHIMMER LINE ON HOVER ─────────────── */
.col-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: left 0.6s ease, right 0.6s ease;
  z-index: 3;
}
.col-item:hover::before {
  left: 0; right: 0;
}

/* ── MOBILE NAV ──────────────────────────────────── */
.nav-ham {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-ham span {
  display: block; width: 22px; height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-ham.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 860px) { .nav-ham { display: flex; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-close {
  position: absolute; top: 28px; left: var(--gut);
  color: var(--ink-soft); padding: 8px;
  transition: color var(--t);
}
.mobile-menu-close:hover { color: var(--gold); }

.mobile-menu-links {
  list-style: none; display: flex; flex-direction: column;
  align-items: center; gap: 4px; margin-bottom: 48px;
}
.mm-link {
  display: block; padding: 16px 32px;
  font-family: var(--f-display);
  font-size: clamp(36px, 8vw, 54px); font-weight: 400;
  color: var(--ink); line-height: 1.1;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease), color 0.3s;
}
.mm-link:hover { color: var(--gold); }
.mobile-menu.open .mm-link { opacity: 1; transform: none; }
.mobile-menu.open .mobile-menu-links li:nth-child(1) .mm-link { transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) .mm-link { transition-delay: 0.14s; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) .mm-link { transition-delay: 0.20s; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) .mm-link { transition-delay: 0.26s; }

.mm-cta {
  display: inline-block; padding: 14px 40px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease 0.32s, transform 0.4s var(--ease) 0.32s,
              background 0.3s, color 0.3s;
}
.mm-cta:hover { background: var(--gold); color: var(--bg); }
.mobile-menu.open .mm-cta { opacity: 1; transform: none; }

.mm-tagline {
  margin-top: 28px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0; transition: opacity 0.4s ease 0.4s;
}
.mobile-menu.open .mm-tagline { opacity: 1; }

/* ── HORIZONTAL GALLERY PROGRESS ─────────────────── */
.h-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--line-soft); z-index: 10;
}
.h-progress-fill {
  height: 100%; width: 0%;
  background: var(--gold);
  transition: width 80ms linear;
  transform-origin: right;
}
[dir="rtl"] .h-progress-fill { margin-right: auto; }

/* ── MOBILE HORIZONTAL GALLERY ───────────────────── */
@media (max-width: 768px) {
  .pin-section {
    display: block;
    height: auto !important;
  }
  .pin-inner {
    position: relative;
    height: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pin-inner::-webkit-scrollbar { display: none; }
  .h-track {
    width: max-content;
    transform: none !important;
  }
  .h-item {
    width: 80vw;
    height: 70vw;
    scroll-snap-align: start;
  }
  .h-intro-panel {
    flex: 0 0 80vw;
    scroll-snap-align: start;
    padding: 40px 28px;
  }
  .h-end-panel {
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }
  .h-progress-bar { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── PROCESS TIME HINTS ───────────────────────────── */
.ps-time {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-dk); font-weight: 500;
  border-left: 2px solid var(--gold-dk);
  padding-left: 10px;
}
[dir="rtl"] .ps-time {
  border-left: none; border-right: 2px solid var(--gold-dk);
  padding-left: 0; padding-right: 10px;
}

/* ── OCCASION TILES ───────────────────────────────── */
.occasions {
  display: flex; gap: 2px;
  margin-bottom: 40px;
  max-width: 580px;
}
.occasion-tile {
  flex: 1;
  padding: 20px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform 0.3s var(--ease);
}
.occasion-tile:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--line);
  transform: translateY(-3px);
}
.occasion-tile.active {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}
.oc-num {
  font-size: 9px; letter-spacing: 0.4em;
  color: var(--gold); font-weight: 500;
}
.oc-label {
  font-family: var(--f-display); font-style: italic;
  font-size: 17px; color: var(--ink); line-height: 1.2; text-align: center;
}
@media (max-width: 560px) { .occasions { flex-direction: column; } }

/* ── SELECT ARROW ─────────────────────────────────── */
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--gold);
  pointer-events: none;
}

/* ── FORM MOBILE STACK ────────────────────────────── */
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}


/* ── MOBILE GENERAL ──────────────────────────────── */
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}


/* ============================================================
   HERO — BANNER VARIANT (full-bleed marketing banner)
   Image: model on left, yellow + SW logo on right.
   We lean into the composition — no big H1 overlay on logo side.
   Title sits at the visual-LEFT (RTL flex-end) over the model
   area, with a soft gradient for legibility.
   ============================================================ */
.hero--banner { background: #d9a824; }
.hero--banner .hero-bg {
  background-size: cover;
  background-position: 50% 35%;
  /* keep both model face and yellow/logo visible across aspects */
}
@media (max-width: 760px) {
  .hero--banner .hero-bg { background-position: 22% 30%; }
}

/* Replace harsh dark gradient — bright banner needs lighter overlay,
   only enough to keep text legible on the model side + flow into bg */
.hero--banner .hero-overlay {
  background:
    /* darken visual-LEFT (the model side) so title is readable */
    linear-gradient(270deg,
      rgba(10,8,6,0.55) 0%,
      rgba(10,8,6,0.25) 28%,
      rgba(10,8,6,0)    55%),
    /* subtle bottom dim */
    linear-gradient(180deg,
      rgba(10,8,6,0) 55%,
      rgba(10,8,6,0.45) 100%);
}

/* hard fade at the very bottom into the body bg to bridge the
   bright yellow → dark page transition */
.hero--banner .hero-fade-bottom {
  position: absolute; inset: auto 0 0 0;
  height: clamp(120px, 18vh, 220px);
  background: linear-gradient(180deg, transparent 0%, var(--bg) 92%);
  z-index: 2; pointer-events: none;
}

/* Content layout: column with title pinned to visual-left
   (flex-end in RTL) and footer row spanning full width */
.hero--banner .hero-content {
  display: flex; flex-direction: column;
  align-items: flex-end;          /* RTL flex-end = visual LEFT */
  gap: clamp(28px, 5vh, 56px);
  z-index: 3;
}
.hero--banner .hero-text {
  max-width: 640px;
  text-align: left;               /* lines stack visually left */
}
.hero--banner .hero-title {
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.92;
  text-shadow: 0 2px 40px rgba(10,8,6,0.35);
  margin-bottom: 0;
}
.hero--banner .hero-eyebrow {
  color: var(--gold-lt);
  text-shadow: 0 1px 12px rgba(10,8,6,0.45);
}
.hero--banner .hero-footer {
  width: 100%;
  border-top: 1px solid rgba(218,189,151,0.25);
  padding-top: clamp(24px, 3vh, 36px);
}
.hero--banner .hero-cta {
  background: rgba(10,8,6,0.55);
  border-color: rgba(218,189,151,0.4);
  backdrop-filter: blur(6px);
}
.hero--banner .hero-cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.hero--banner .hero-cta:hover svg { color: var(--bg); }
.hero--banner .stat-num { text-shadow: 0 1px 14px rgba(10,8,6,0.4); }
.hero--banner .stat-label { color: rgba(255,243,220,0.78); }
.hero--banner .stat-div { background: rgba(218,189,151,0.25); }

.hero--banner .hero-scroll {
  z-index: 3;
  color: rgba(255,243,220,0.85);
}
.hero--banner .scroll-line {
  background: linear-gradient(to bottom, var(--gold-lt), transparent);
}

@media (max-width: 760px) {
  .hero--banner .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(10,8,6,0)   0%,
        rgba(10,8,6,0.2) 45%,
        rgba(10,8,6,0.6) 100%);
  }
  .hero--banner .hero-stats { display: none; }
  .hero--banner .hero-footer { border-top: 0; padding-top: 0; }
  .hero--banner .hero-title { font-size: clamp(56px, 14vw, 96px); }
}


/* ============================================================
   HERO CINEMATIC — two-scene scroll-scrubbed composition
   ----------------------------------------------------------
   The section itself is a normal block; ScrollTrigger pins
   .hero-stage and creates the spacer for scroll-through.
   ============================================================ */
.hero--cinematic { background: var(--bg); }
/* ============================================================
   HERO — CINEMATIC SCROLL VARIANT
   Two-scene zoom: full banner → macro close-up of the ring.
   Pinned via GSAP ScrollTrigger.
   ============================================================ */
.hero--cinematic {
  /* override .hero's flex-end which would push stage below the
     pin-spacer once ScrollTrigger wraps it */
  justify-content: flex-start;
  min-height: 100vh; min-height: 100svh;
}
.hero--cinematic .hero-stage {
  position: relative;
  width: 100%;
  height: 100vh; height: 100svh;
  overflow: hidden;
}

/* Each scene is a full-bleed absolute layer */
.hero-scene {
  position: absolute; inset: 0;
  overflow: hidden;
  will-change: opacity, transform;
}
.hero-scene__img-wrap {
  position: absolute; inset: -4%;  /* slight bleed for float */
  will-change: transform;
}
.hero-scene__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: 50% 50%;
  will-change: transform, filter;
}

/* ---- SCENE 1 — banner ------------------------------------ */
.hero-scene--1 .hero-scene__img {
  background-position: 50% 35%;
}
@media (max-width: 760px) {
  .hero-scene--1 .hero-scene__img { background-position: 22% 30%; }
}
.hero-scene--1 .hero-scene__overlay {
  position: absolute; inset: 0;
  /* Minimal overlay — we want full color visible from the start.
     Just a soft bottom fade so the page transition feels smooth.
     Title legibility is handled by text-shadow on the title itself. */
  background:
    linear-gradient(180deg,
      rgba(10,8,6,0)   55%,
      rgba(10,8,6,0.25) 100%);
  pointer-events: none;
}

.hero--cinematic .hero-content {
  position: absolute; inset: auto var(--gut) clamp(60px, 8vh, 100px) var(--gut);
  display: flex; flex-direction: column;
  align-items: flex-start;           /* RTL flex-start = visual right */
  gap: clamp(28px, 5vh, 56px);
  z-index: 3; max-width: var(--max);
  margin: 0 auto; left: 0; right: 0;
  padding: 0 var(--gut);
}
.hero--cinematic .hero-text { max-width: 640px; text-align: right; }
.hero--cinematic .hero-title {
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.92;
  /* stronger text-shadow now that overlay is minimal */
  text-shadow:
    0 2px 24px rgba(10,8,6,0.6),
    0 1px 4px rgba(10,8,6,0.5);
  text-shadow: 0 2px 40px rgba(10,8,6,0.4);
  margin-bottom: 0;
}
.hero--cinematic .hero-eyebrow {
  color: var(--gold-lt);
  text-shadow: 0 1px 12px rgba(10,8,6,0.5);
}
.hero--cinematic .hero-footer {
  width: 100%;
  border-top: 1px solid rgba(218,189,151,0.25);
  padding-top: clamp(24px, 3vh, 36px);
}
.hero--cinematic .hero-cta {
  background: rgba(10,8,6,0.55);
  border-color: rgba(218,189,151,0.4);
  backdrop-filter: blur(6px);
}
.hero--cinematic .hero-cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.hero--cinematic .hero-cta:hover svg { color: var(--bg); }
.hero--cinematic .stat-num   { text-shadow: 0 1px 14px rgba(10,8,6,0.45); }
.hero--cinematic .stat-label { color: rgba(255,243,220,0.78); }
.hero--cinematic .stat-div   { background: rgba(218,189,151,0.25); }

/* ---- SCENE 2 — macro close-up ---------------------------- */
.hero-scene--2 { z-index: 2; }
.hero-scene--2 .hero-scene__img {
  background-position: center 45%;
}
@media (max-width: 760px) {
  .hero-scene--2 .hero-scene__img { background-position: 40% 40%; }
}
.hero-scene__overlay--macro {
  position: absolute; inset: 0;
  background:
    /* vignette for cinematic depth */
    radial-gradient(120% 80% at 60% 50%, transparent 38%, rgba(10,8,6,0.55) 100%),
    /* warm soft tone over bg */
    linear-gradient(180deg,
      rgba(10,8,6,0.15) 0%,
      rgba(10,8,6,0)    35%,
      rgba(10,8,6,0.55) 100%);
  pointer-events: none;
}
.hero-macro {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gut) clamp(60px, 9vh, 110px);
  z-index: 3;
  max-width: var(--max); margin: 0 auto; left: 0; right: 0;
  pointer-events: none;
}
.hero-macro__label {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
  text-shadow: 0 1px 12px rgba(10,8,6,0.5);
}
.hero-macro__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff5d8;
  text-align: left;            /* visual-left, RTL */
  align-self: flex-end;        /* RTL flex-end = visual LEFT */
  max-width: 640px;
  text-shadow: 0 4px 50px rgba(10,8,6,0.55);
}
.hero-macro__title em {
  display: block;
  font-style: italic;
  color: #ffffff;
}
.hero-macro__sub {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 20px;
  align-self: flex-end;
  text-shadow: 0 1px 12px rgba(10,8,6,0.7);
}

/* ---- Fade to body bg at the very bottom of the stage ---- */
.hero--cinematic .hero-fade-bottom {
  position: absolute; inset: auto 0 0 0;
  height: clamp(120px, 18vh, 220px);
  background: linear-gradient(180deg, transparent 0%, var(--bg) 92%);
  z-index: 4; pointer-events: none;
}

/* ---- Scroll indicator sits above scene + fade ---- */
.hero--cinematic .hero-scroll { z-index: 5; }

/* ---- Mobile tweaks ---- */
@media (max-width: 760px) {
  .hero-scene--1 .hero-scene__overlay {
    background:
      linear-gradient(180deg,
        rgba(10,8,6,0)   0%,
        rgba(10,8,6,0.2) 45%,
        rgba(10,8,6,0.6) 100%);
  }
  .hero--cinematic .hero-stats { display: none; }
  .hero--cinematic .hero-footer { border-top: 0; padding-top: 0; }
  .hero--cinematic .hero-title { font-size: clamp(56px, 14vw, 96px); }
  .hero-macro__title { font-size: clamp(48px, 13vw, 84px); }
}


/* Smaller, black title variant for the cinematic hero */
.hero--cinematic .hero-title--soft {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
  color: #0A0806;
  text-shadow:
    0 1px 1px rgba(255,255,255,0.18),
    0 2px 18px rgba(255,210,80,0.35);
  letter-spacing: -0.005em;
  font-weight: 500;
  max-width: 560px;
}
.hero--cinematic .hero-title--soft .italic {
  font-style: italic;
  font-weight: 400;
  color: #0A0806;
  text-shadow:
    0 1px 1px rgba(255,255,255,0.18),
    0 2px 18px rgba(255,210,80,0.35);
}
.hero--cinematic .hero-title--soft .dots {
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.hero--cinematic .hero-text .hero-eyebrow {
  color: #0A0806;
  opacity: 0.65;
}
@media (max-width: 760px) {
  .hero--cinematic .hero-title--soft {
    font-size: clamp(28px, 7vw, 44px);
  }
}
