/*
Theme Name:  Ceyora Gems
Theme URI:   https://ceyoragems.com
Author:      Ceyora Gems
Description: Pure origin. Timeless expression. Premium Ceylon gemstones and bespoke jewellery.
Version:     2.0.0
Text Domain: ceyora
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --black:       #000000;
  --off-black:   #0a0a0a;
  --charcoal:    #111111;
  --dark:        #1a1a1a;
  --mid:         #2a2a2a;
  --border:      #2e2e2e;
  --white:       #ffffff;
  --off-white:   #f5f0e8;
  --cream:       #ede8de;
  --gold:        #b8965a;
  --gold-light:  #d4ae78;
  --gold-dark:   #8a6d3b;
  --sapphire:    #1b2d4a;

  --serif:       'Cormorant Garant', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);

  --header-h:    80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 1024px) { .container { padding: 0 2.5rem; } }
@media (max-width: 768px)  { .container { padding: 0 1.5rem; } }
@media (max-width: 480px)  { .container { padding: 0 1.25rem; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(0,0,0,0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-text-link { display: flex; flex-direction: column; gap: 0.1rem; }

.logo-name {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.logo-tagline {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.custom-logo-link img { height: 40px; width: auto; }

.primary-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.primary-nav .nav-menu a {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s var(--ease);
  position: relative;
}

.primary-nav .nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.primary-nav .nav-menu a:hover,
.primary-nav .nav-menu .current-menu-item > a,
.primary-nav .nav-menu a.is-active { color: var(--white); }

.primary-nav .nav-menu a:hover::after,
.primary-nav .nav-menu .current-menu-item > a::after,
.primary-nav .nav-menu a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-cta {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.35);
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.is-active .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.is-visible { opacity: 1; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 85vw);
  background: var(--charcoal);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-close { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.mobile-nav-close:hover { color: var(--white); }

.mobile-nav-menu {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-nav-menu .menu-item a {
  display: block;
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-menu .menu-item a:hover { color: var(--white); padding-left: 0.5rem; }

.mobile-nav-footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-contact {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.3);
}
.btn-outline-dark:hover { border-color: var(--black); background: rgba(0,0,0,0.04); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.3);
  padding: 0.75rem 1.75rem;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(184,150,90,0.06); }

.btn-block { width: 100%; }
.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.625rem; }
.btn-lg { padding: 1.125rem 2.75rem; }

.btn-text {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: gap 0.3s;
}
.btn-text::after { content: '→'; }
.btn-text:hover { gap: 1.1rem; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero-home {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 9s var(--ease);
}

.hero-home:hover .hero-bg { transform: scale(1); }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.55) 35%,
      rgba(0,0,0,0.15) 65%,
      transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--off-white);
  display: block;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
  max-width: 400px;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-label {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.section-marquee {
  background: var(--gold);
  padding: 0.875rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-item {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-dot {
  width: 3px; height: 3px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-body {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,240,232,0.55);
}

.section-body p + p { margin-top: 1rem; }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.about-image-col {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.about-image-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.section-about:hover .about-image-col img { transform: scale(1.03); }

.about-content-col {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  padding: 7rem 5rem;
  border-left: 1px solid var(--border);
}

.about-inner { max-width: 520px; }

/* ============================================================
   COLLECTIONS GRID
   ============================================================ */
.section-collections {
  background: var(--off-black);
  padding: 8rem 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--charcoal);
  cursor: pointer;
  display: block;
}

.collection-card--wide {
  grid-column: span 2;
  aspect-ratio: unset;
  min-height: 500px;
}

.collection-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s;
  filter: brightness(0.7);
}

.collection-card:hover .collection-card-image {
  transform: scale(1.06);
  filter: brightness(0.5);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
}

.collection-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.25rem 2rem;
}

.collection-card-cat {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.collection-card-title {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.collection-card-cta {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.4s, transform 0.4s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collection-card:hover .collection-card-cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   GEMSTONES GRID
   ============================================================ */
.section-gems {
  background: var(--black);
  padding: 8rem 0;
}

.gems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.gem-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  transition: border-color 0.4s;
  overflow: hidden;
  display: block;
}

.gem-card:hover { border-color: rgba(184,150,90,0.35); }

.gem-card-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.gem-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gem-card:hover .gem-card-image img { transform: scale(1.07); }

.gem-card-status {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: rgba(0,0,0,0.75);
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.25);
  backdrop-filter: blur(4px);
}

.gem-card-body { padding: 1.25rem 1.375rem 1.5rem; }

.gem-card-type {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.gem-card-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.gem-card-specs {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(245,240,232,0.35);
  margin-bottom: 1.25rem;
}

/* ============================================================
   EDITORIAL (full-bleed quote section)
   ============================================================ */
.section-editorial {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.editorial-bg {
  position: absolute;
  inset: 0;
}

.editorial-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.25) 100%);
}

.editorial-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.editorial-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.editorial-attr {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2.5rem;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.section-process {
  background: var(--charcoal);
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  border-left: 1px solid var(--border);
}

.process-step {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}

.step-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,150,90,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

.step-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.45);
}

/* ============================================================
   FOUNDERS
   ============================================================ */
.section-founders {
  background: var(--off-black);
  padding: 8rem 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}

.founder-card {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.founder-card-image {
  overflow: hidden;
  position: relative;
}

.founder-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  filter: grayscale(15%);
  min-height: 400px;
}

.founder-card:hover .founder-card-image img { transform: scale(1.04); }

.founder-card-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-card-name {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.375rem;
}

.founder-card-role {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.founder-card-bio {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.5);
  margin-bottom: 2rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.section-trust {
  background: var(--black);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}

.trust-item {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.trust-icon { width: 28px; height: 28px; color: var(--gold); }

.trust-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

.trust-desc {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.4);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-cta-final {
  background: var(--charcoal);
  padding: 8rem 0;
}

.cta-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final-label {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-final-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.cta-final-sub {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.5);
  max-width: 460px;
}

.cta-final-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
}

.footer-top { padding: 5rem 0 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.footer-tagline-text {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.35);
  margin-bottom: 2rem;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(245,240,232,0.4);
}

.footer-contact-list svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.footer-contact-list a { color: rgba(245,240,232,0.55); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-col-heading {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.875rem; }

.footer-nav-list a {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(245,240,232,0.4);
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--off-white); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.04em;
}

.footer-legal-menu { display: flex; gap: 2rem; }

.footer-legal-menu a {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(245,240,232,0.2);
  transition: color 0.2s;
}
.footer-legal-menu a:hover { color: rgba(245,240,232,0.55); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 90;
  width: 52px; height: 52px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: opacity 0.4s, transform 0.4s, background 0.2s;
  pointer-events: none;
}

.whatsapp-float.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.whatsapp-float:hover { background: #20c05a; }
.whatsapp-float svg { width: 22px; height: 22px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}

.page-hero-compact { height: 40vh; min-height: 300px; }

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
}

.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-hero-eyebrow::before {
  content: '';
  width: 1.75rem; height: 1px;
  background: var(--gold);
}

.page-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}

.filter-list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-btn {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 1.125rem 1.75rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.filter-btn:hover { color: rgba(255,255,255,0.65); }
.filter-btn.is-active { color: var(--white); border-bottom-color: var(--gold); }

/* ============================================================
   ARCHIVE GRIDS
   ============================================================ */
.archive-section { background: var(--off-black); padding: 5rem 0 8rem; }
.archive-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.archive-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   GEM DETAIL (single)
   ============================================================ */
.gem-detail-section { background: var(--off-black); padding: 5rem 0 8rem; }

.gem-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.gem-gallery-main {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--charcoal);
}

.gem-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gem-status-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: rgba(0,0,0,0.75);
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.25);
  backdrop-filter: blur(4px);
}

.gem-thumbs { display: flex; gap: 0.5rem; margin-top: 0.5rem; }

.gem-thumb {
  width: 72px; height: 72px;
  overflow: hidden;
  opacity: 0.45;
  transition: opacity 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}

.gem-thumb.active, .gem-thumb:hover { opacity: 1; }
.gem-thumb img { width: 100%; height: 100%; object-fit: cover; }

.gem-info-panel { padding-top: 0.5rem; }

.gem-type-tag {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.gem-detail-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.gem-specs { border-top: 1px solid var(--border); margin-bottom: 2.5rem; }

.spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.spec-row dt {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  flex-shrink: 0;
}

.spec-row dd {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  text-align: right;
}

.status-pill {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(184,150,90,0.35);
  color: var(--gold);
}

.gem-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; }

.gem-cert-note {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
}

.gem-cert-note svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.gem-cert-note p {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245,240,232,0.35);
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--off-black); padding: 6rem 0 8rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-method svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.contact-method-detail { display: flex; flex-direction: column; gap: 0.2rem; }

.contact-method-detail strong {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.contact-method-detail a,
.contact-method-detail span {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  transition: color 0.2s;
}
.contact-method-detail a:hover { color: var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.125rem; }

.form-group label {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  outline: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(184,150,90,0.5); }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-message {
  padding: 0.875rem 1rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  margin-bottom: 0.875rem;
}

.form-success { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2); color: #86efac; }
.form-error { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.2); color: #fca5a5; }

.form-privacy {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(245,240,232,0.2);
  text-align: center;
  margin-top: 0.875rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { margin-bottom: 3rem; }

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.faq-section-header svg { color: var(--gold); width: 16px; height: 16px; }

.faq-section-header h2 {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 400;
  color: rgba(245,240,232,0.75);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-item.is-open .faq-question span:first-child,
.faq-question:hover span:first-child { color: var(--white); }

.faq-icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  transition: transform 0.35s var(--ease), color 0.2s;
}

.faq-item.is-open .faq-icon { transform: rotate(180deg); color: var(--gold); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }

.faq-answer p {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.45);
  padding-bottom: 1.5rem;
}

/* ============================================================
   NO RESULTS / 404
   ============================================================ */
.no-results, .not-found-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 6rem 0;
}

.no-results svg, .not-found-inner svg { width: 48px; height: 48px; color: rgba(184,150,90,0.25); }
.no-results h2, .not-found-inner h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--white); }
.no-results p, .not-found-inner > p { font-family: var(--sans); font-size: 0.875rem; color: rgba(245,240,232,0.35); max-width: 400px; line-height: 1.7; }
.not-found-links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrap { margin-top: 4rem; display: flex; justify-content: center; gap: 0.25rem; }

.pagination-wrap .page-numbers {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: rgba(245,240,232,0.35);
  transition: all 0.2s;
}

.pagination-wrap .page-numbers:hover { border-color: var(--gold); color: var(--gold); }
.pagination-wrap .page-numbers.current { background: var(--gold); color: var(--black); border-color: var(--gold); }
.pagination-wrap .prev, .pagination-wrap .next { width: auto; padding: 0 1.25rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* ============================================================
   GENERIC PAGE CONTENT
   ============================================================ */
.page-content-section { background: var(--off-black); padding: 6rem 0 8rem; }
.page-content-wrap { max-width: 800px; }

.entry-content {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
}

.entry-content h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--white); margin: 3rem 0 1rem; }
.entry-content h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--white); margin: 2rem 0 0.75rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content a { color: var(--gold); border-bottom: 1px solid rgba(184,150,90,0.25); transition: border-color 0.2s; }
.entry-content a:hover { border-color: var(--gold); }
.entry-content ul { margin: 1rem 0 1.25rem 1.5rem; list-style: disc; }
.entry-content ul li { margin-bottom: 0.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .gems-grid { grid-template-columns: repeat(3, 1fr); }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card--wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .founders-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-overlay { display: block; pointer-events: none; }
  .header-cta span { display: none; }
  .header-cta { padding: 0.6rem 0.9rem; }

  .section-about { grid-template-columns: 1fr; }
  .about-image-col { height: 60vw; max-height: 500px; }
  .about-content-col { padding: 4.5rem 2.5rem; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .trust-items { grid-template-columns: 1fr 1fr; }
  .gems-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gem-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Hero — headline uses the new .hero-headline-wrap class */
  .hero-headline,
  .hero-headline-wrap { font-size: clamp(3rem, 11vw, 4.75rem); }
  .hero-content { padding-bottom: 3.5rem; }
  .hero-scroll { display: none; }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* About */
  .about-image-col { height: 55vw; max-height: 400px; }
  .about-content-col { padding: 3.5rem 1.5rem; }
  .about-inner { max-width: 100%; }

  /* Collections / gems */
  .collections-grid { grid-template-columns: 1fr; }
  .gems-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }
  .step-num { font-size: 3.5rem; }

  /* Trust */
  .trust-items { grid-template-columns: 1fr; }

  /* Section padding */
  .section-process,
  .section-collections,
  .section-gems,
  .section-founders,
  .section-trust,
  .section-about { padding-top: 4rem; padding-bottom: 4rem; }
  .section-editorial { height: 60vh; min-height: 420px; }

  /* Founders */
  .founder-card { grid-template-columns: 1fr; }
  .founder-card-image img { min-height: 280px; }
  .founder-card-body { padding: 2rem 1.75rem; }

  /* CTA */
  .cta-final-actions { flex-direction: column; width: 100%; }
  .cta-final-actions .btn { width: 100%; justify-content: center; }
  .section-cta-final { padding: 5rem 0 4rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal-menu { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Archive */
  .archive-grid-3, .archive-grid-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-headline,
  .hero-headline-wrap { font-size: clamp(2.75rem, 13vw, 3.75rem); }
  .hero-line { padding-bottom: 0.04em; }

  .gems-grid { grid-template-columns: 1fr; }
  .archive-grid-3 { grid-template-columns: 1fr; }

  .about-image-col { height: 70vw; }
  .about-content-col { padding: 3rem 1.25rem; }

  .step-num { font-size: 3rem; }
  .process-step { padding: 2rem 1.5rem; }

  .trust-item { padding: 2rem 1.5rem; }

  .founders-grid { gap: 0; }
  .founder-card-body { padding: 1.75rem 1.25rem; }

  .section-marquee { padding: 0.75rem 0; }
  .marquee-item { font-size: 0.5rem; }

  /* WhatsApp float — smaller on mobile */
  .whatsapp-float { width: 46px; height: 46px; bottom: 1.5rem; right: 1.5rem; }
}

/* ============================================================
   LUXURY ENHANCEMENTS — Transitions, Animations & Interactions
   ============================================================ */

/* Extended easing tokens */
:root {
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-silk:   cubic-bezier(0.77, 0, 0.175, 1);
}

/* Sharper reveal easing — overrides the default gentler curve */
.reveal {
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

/* ── Page entrance veil ─────────────────────────────────── */
.page-veil {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  transform-origin: top;
  pointer-events: none;
  transition: transform 1.1s var(--ease-silk), opacity 0.4s ease 0.85s;
}
.page-veil.is-lifted {
  transform: scaleY(0);
  opacity: 0;
}

/* ── Custom cursor (desktop only) ───────────────────────── */
@media (hover: hover) and (pointer: fine) {
  html { cursor: none; }
  a, button, [role="button"], .btn,
  .collection-card, .gem-card, .filter-btn { cursor: none; }
}
.c-cursor {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s var(--ease-expo),
    height 0.4s var(--ease-expo),
    background 0.35s ease,
    border 0.35s ease,
    opacity 0.3s ease;
  opacity: 0;
  will-change: left, top;
}
.c-cursor.is-ready    { opacity: 1; }
.c-cursor.is-hovering {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(184, 150, 90, 0.5);
}
.c-cursor.is-clicking {
  width: 18px;
  height: 18px;
  background: rgba(184, 150, 90, 0.2);
}

/* ── Button fill-sweep hover ─────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-102%);
  transition: transform 0.55s var(--ease-silk);
  z-index: -1;
}
.btn:hover::before { transform: translateX(0); }
.btn-gold::before  { background: rgba(255, 255, 255, 0.1); }

/* ── Gold shimmer on eyebrows & section labels ───────────── */
@keyframes gold-shimmer {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

/* Solid gold fallback for all browsers (safe base) */
.hero-eyebrow,
.section-label {
  color: var(--gold);
}

/* Shimmer applied only where background-clip: text is supported */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero-eyebrow,
  .section-label {
    background: linear-gradient(
      90deg,
      var(--gold-dark) 0%,
      var(--gold)       28%,
      var(--gold-light) 48%,
      var(--gold)       68%,
      var(--gold-dark) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 5s linear infinite;
  }
}

/* Restore the decorative line — ::before has its own background, unaffected by text-fill */
.hero-eyebrow::before,
.section-label::before {
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Hero headline — line-split slide-up ─────────────────── */
.hero-headline-wrap {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-expo);
  opacity: 1;
}
.hero-line-inner.is-revealed { transform: translateY(0); }
.hero-line-inner em {
  font-style: italic;
  color: var(--off-white);
  display: block;
}

/* ── Process step numbers — outlined watermark ──────────── */
.step-num {
  font-size: 5.5rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 150, 90, 0.14);
  letter-spacing: -0.04em;
  line-height: 0.9;
  transition: -webkit-text-stroke-color 0.45s;
}
.process-step:hover .step-num {
  -webkit-text-stroke-color: rgba(184, 150, 90, 0.4);
}

/* ── Image reveal — sliding charcoal cover ──────────────── */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform: translateX(0);
  transition: transform 1.15s var(--ease-silk);
  z-index: 2;
  pointer-events: none;
}
.img-reveal.is-revealed::after { transform: translateX(101%); }

/* ── Collection card body — lifts on hover ───────────────── */
.collection-card-body {
  transition: transform 0.65s var(--ease-expo);
}
.collection-card:hover .collection-card-body { transform: translateY(-10px); }

/* ── Final CTA — gold descent line ───────────────────────── */
.section-cta-final {
  background: var(--off-black);
  position: relative;
}
.section-cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  pointer-events: none;
}

/* ── WhatsApp float — circular with pulse ring ───────────── */
.whatsapp-float { border-radius: 50%; }
@keyframes wa-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  60%       { transform: scale(1.6); opacity: 0; }
}
.whatsapp-float.is-visible::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  animation: wa-pulse 2.8s ease-out infinite;
  z-index: -1;
}

/* ── Mobile nav — staggered item entrance ────────────────── */
@keyframes nav-item-in {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-nav.is-open .mobile-nav-menu .menu-item {
  animation: nav-item-in 0.5s var(--ease-expo) both;
}
.mobile-nav.is-open .mobile-nav-menu .menu-item:nth-child(1) { animation-delay: 0.08s; }
.mobile-nav.is-open .mobile-nav-menu .menu-item:nth-child(2) { animation-delay: 0.14s; }
.mobile-nav.is-open .mobile-nav-menu .menu-item:nth-child(3) { animation-delay: 0.20s; }
.mobile-nav.is-open .mobile-nav-menu .menu-item:nth-child(4) { animation-delay: 0.26s; }
.mobile-nav.is-open .mobile-nav-menu .menu-item:nth-child(5) { animation-delay: 0.32s; }
.mobile-nav.is-open .mobile-nav-menu .menu-item:nth-child(6) { animation-delay: 0.38s; }
.mobile-nav.is-open .mobile-nav-menu .menu-item:nth-child(7) { animation-delay: 0.44s; }
.mobile-nav.is-open .mobile-nav-menu .menu-item:nth-child(8) { animation-delay: 0.50s; }

/* ── Mobile-specific layout refinements ─────────────────── */
@media (max-width: 768px) {
  /* Hero — reduce min-height on small screens */
  .hero-home { min-height: 560px; }
  .hero-content { padding-bottom: 3.5rem; }

  /* About — tighten section-label spacing */
  .section-label { margin-bottom: 1rem; }

  /* Collections section header on mobile */
  .section-collections .container > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  /* Gems section header on mobile */
  .section-gems .container > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  /* Editorial quote */
  .editorial-quote { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .editorial-content { max-width: 100%; padding: 0 1rem; }

  /* CTA final */
  .cta-final-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .section-cta-final::before { height: 3rem; }
}

@media (max-width: 480px) {
  /* Hero subtitle smaller */
  .hero-sub { font-size: 0.8125rem; }

  /* Reduce section heading sizes */
  .section-title { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .hero-headline-wrap { line-height: 1.0; }

  /* Trust items tighter */
  .trust-item { padding: 1.75rem 1.25rem; gap: 0.75rem; }

  /* Editorial overlay stronger on small screens */
  .editorial-overlay {
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.7) 100%
    );
  }

  /* Footer brand col */
  .footer-logo-text { font-size: 1.125rem; }
  .footer-desc { font-size: 0.75rem; }
  .footer-nav-list a { font-size: 0.8125rem; }
}

/* ── Reduced-motion — respect user preference ────────────── */
@media (prefers-reduced-motion: reduce) {
  /* Disable entrance animations */
  .page-veil { transition: none; opacity: 0; transform: scaleY(0); }
  .reveal { transition: opacity 0.3s ease; transform: none !important; }
  .reveal.revealed { opacity: 1; }
  .hero-line-inner { transition: none; transform: none !important; }
  .hero-line-inner.is-revealed { transform: none !important; }
  .img-reveal::after { transition: none; transform: translateX(101%) !important; }
  .collection-card-body { transition: none; }
  .collection-card:hover .collection-card-body { transform: none; }

  /* Disable looping animations */
  @keyframes gold-shimmer { from, to { background-position: center; } }
  @keyframes marquee      { from, to { transform: translateX(0); } }
  @keyframes wa-pulse     { from, to { transform: scale(1); opacity: 0; } }
  @keyframes nav-item-in  { from { opacity: 1; transform: none; } }
  @keyframes scrollLine   { from, to { transform: scaleY(1); } }

  /* Disable custom cursor */
  .c-cursor { display: none !important; }
  html, a, button, .btn { cursor: auto !important; }
}

/* ============================================================
   THIRD-PARTY SUPPRESSION — Cookie consent banners
   All cookie/GDPR plugin banners are hidden site-wide.
   The hosting server handles compliance at infrastructure level.
   ============================================================ */
#cookie-notice,
.cookie-notice-container,
#cookie-law-info-bar,
.cli-bar-container,
.cli-modal-backdrop,
.cky-consent-container,
.cky-modal,
#cmplz-cookiebanner,
.cmplz-cookiebanner,
.cmplz-overlay,
.cc-window,
.cc-banner,
.cc-floating,
#cookie_action_close_header,
.wt-cli-cookie-bar-container,
.cookie-bar,
.cookie-popup,
.cookieconsent,
[id*="cookie-banner"],
[class*="cookie-banner"],
[id*="gdpr-banner"],
[class*="gdpr-banner"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
