/*
  ═══════════════════════════════════════════════════════════════════════
  VISION BOARD — Elara Fine Jewels
  ═══════════════════════════════════════════════════════════════════════
  Business Type   : Luxury Diamond & Fine Jewelry Retailer
  Personality     : Quiet luxury — timeless, editorial, restrained
  Color Palette   : Midnight black · Champagne gold · Warm ivory
    Primary       : #0A0A0C  (deep midnight)
    Accent        : #C9A96E  (champagne gold)
    Ivory         : #F5F0E8  (warm white)
    Muted         : #6B6055  (warm stone)
  Typography      : Cormorant Garamond (display) · Plus Jakarta Sans (body)
  Hero Format     : Scroll Expansion Hero — centered image expands as user scrolls
  Image Style     : Editorial studio shots · diamond macro · jeweler craftsmanship
  Animation       : Subtle · parallax · clip-reveal on scroll · fade-up
  Card Style      : Elevated — champagne gold border · soft shadow · clean hierarchy
  Cursor          : Dot + trail (jeweler's precision, fine and restrained)
  Chatbot Icon    : Faceted diamond SVG (industry-specific)
  Sections        : Hero · Brand Statement · Collections · Stats · CTA · Trust · Testimonials
  Overall Vibe    : "The weight of something rare."
  ═══════════════════════════════════════════════════════════════════════
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #FAF9F7;
  --bg-secondary: #F2EDE3;
  --bg-tertiary: #EBE4D6;
  --gold: #B8903C;
  --gold-light: #C9A96E;
  --gold-dark: #8B6835;
  --ivory: #1E1B18;
  --ivory-dim: #4A4540;
  --text-muted: #7A7060;
  --text-dim: #C0B8AC;
  --border-gold: rgba(184, 144, 60, 0.3);
  --border-gold-hover: rgba(184, 144, 60, 0.6);
  --border-ivory: rgba(30, 27, 24, 0.1);
  --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --nav-h: 80px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-fast: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.4s var(--ease);
  --t-fast: 0.2s var(--ease-fast);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: none; }

/* ── Custom Cursor ────────────────────────────────────── */

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  will-change: left, top;
}

.cursor-trail {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(184, 144, 60, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.2s;
  will-change: left, top;
}

.cursor-dot.hover { width: 10px; height: 10px; background: var(--gold-light); }
.cursor-trail.hover { width: 48px; height: 48px; opacity: 0.5; }

@media (hover: none) {
  .cursor-dot, .cursor-trail { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ── Navigation ───────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 100;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 249, 247, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ivory);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav-logo span { color: var(--gold); }

.nav-logo-icon {
  width: 22px;
  height: 24px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-fast);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FAF9F7;
  background: var(--gold);
  padding: 0.55rem 1.5rem;
  transition: background var(--t-fast);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ivory);
  transition: var(--t);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Drawer ─────────────────────────────────── */

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 98;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.drawer-overlay.visible { opacity: 1; pointer-events: all; }

.mobile-drawer {
  position: fixed;
  top: var(--nav-h); right: 0;
  width: 300px;
  max-width: 82vw;
  height: calc(100dvh - var(--nav-h));
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-gold);
  transform: translateX(100%);
  transition: transform var(--t);
  z-index: 99;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-drawer-links a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--ivory);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-ivory);
  transition: color var(--t-fast);
}
.mobile-drawer-links a:hover { color: var(--gold); }

.mobile-drawer-cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FAF9F7;
  background: var(--gold);
  padding: 0.8rem 1.75rem;
  transition: background var(--t-fast);
  align-self: flex-start;
}
.mobile-drawer-cta:hover { background: var(--gold-light); }

/* ── Typography Utilities ─────────────────────────── */

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--ivory);
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ivory-dim);
}

.body-md {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Buttons ─────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FAF9F7;
  background: var(--gold);
  padding: 0.85rem 2.2rem;
  border: none;
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold);
  transition: background var(--t-fast), color var(--t-fast);
}
.btn-outline:hover { background: var(--gold); color: var(--bg-primary); }

/* ── Layout & Spacing ─────────────────────────── */

.section { padding: 7rem 5%; }
.section-sm { padding: 4rem 5%; }

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }

.gold-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.gold-rule.centered { margin: 1.25rem auto; }

/* ── Scroll Animations ────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.fade-in.visible { opacity: 1; }

.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease);
}
.clip-reveal.visible { clip-path: inset(0 0% 0 0); }

/* ── Elevated Card ────────────────────────────── */

.card-elevated {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.card-elevated::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.card-elevated:hover {
  border-color: var(--border-gold-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep), 0 0 0 0 transparent;
}
.card-elevated:hover::before { opacity: 1; }

/* ── Page Hero (interior pages) ──────────────── */

.page-hero {
  min-height: 65dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  padding-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.08);
  transition: transform 1.2s var(--ease), opacity 1s ease;
}
.page-hero.loaded .page-hero-bg {
  transform: scale(1);
  opacity: 0.35;
}

.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* ── Footer ──────────────────────────────────── */

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  padding: 5.5rem 5% 2.5rem;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--gold); }

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 1.75rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--ivory-dim); }

.footer-bottom {
  border-top: 1px solid var(--border-ivory);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.footer-credit {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.footer-credit a {
  color: var(--gold-dark);
  transition: color var(--t-fast);
}
.footer-credit a:hover { color: var(--gold); }

/* ── Background Paths ────────────────────────── */

.bg-paths-section { position: relative; overflow: hidden; }

.bg-paths-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.bg-paths-content { position: relative; z-index: 1; }

/* ── Animated Blur Number ─────────────────────── */

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.8rem;
  display: block;
}

/* ── Display Cards (3D Stacked) ──────────────── */

.display-cards-wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  position: relative;
  height: 300px;
}

.display-card {
  grid-area: 1 / 1;
  width: 300px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  padding: 2rem;
  transition: all 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.display-card:nth-child(1) {
  transform: translate(28px, -18px) rotate(7deg) skewX(2deg);
  filter: grayscale(0.75) brightness(0.7);
  z-index: 1;
}
.display-card:nth-child(2) {
  transform: translate(-18px, 10px) rotate(-4.5deg) skewX(-1deg);
  filter: grayscale(0.45) brightness(0.85);
  z-index: 2;
}
.display-card:nth-child(3) {
  transform: none;
  z-index: 3;
}

.display-cards-wrap:hover .display-card:nth-child(1) {
  transform: translate(50px, -32px) rotate(9deg);
  filter: grayscale(0) brightness(1);
}
.display-cards-wrap:hover .display-card:nth-child(2) {
  transform: translate(-36px, 14px) rotate(-6deg);
  filter: grayscale(0) brightness(1);
}

.display-card-icon {
  width: 32px; height: 32px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.display-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.35rem;
}

.display-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.display-card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0.8;
}

/* ── Container Scroll Animation ──────────────── */

.container-scroll-section {
  position: relative;
  height: 200vh;
}

.container-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  overflow: hidden;
  padding: 2rem 5%;
}

.container-scroll-headline {
  text-align: center;
  will-change: transform;
}

.container-scroll-card {
  width: min(700px, 90vw);
  perspective: 1200px;
}

.container-scroll-inner {
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transform: rotateX(20deg) scale(0.96);
  transform-origin: top center;
  will-change: transform;
}

.container-scroll-inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}
.container-scroll-inner:hover img { transform: scale(1.08); }

/* ── Scroll Expansion Hero ───────────────────── */

.hero-expansion {
  position: relative;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-expansion-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-wrap {
  position: absolute;
  width: 90%; left: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  gap: 1rem;
}

.hero-title-first,
.hero-title-rest {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ivory);
  will-change: transform;
  line-height: 1;
  flex-shrink: 0;
}
.hero-title-rest { text-align: right; }

.hero-media-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  width: 270px;
  height: 370px;
  overflow: hidden;
  will-change: width, height;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}

.hero-expansion.loaded .hero-media img { transform: scale(1); }

.hero-tagline {
  position: absolute;
  bottom: 6.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(30, 27, 24, 0.45);
  z-index: 10;
  white-space: nowrap;
  pointer-events: none;
  will-change: opacity;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  will-change: opacity;
}

.scroll-cue-text {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-cue-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: cueDown 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes cueDown {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  80% { transform: scaleY(1); opacity: 0; }
  100% { transform: scaleY(0); opacity: 0; }
}

/* ── Brand Statement ─────────────────────────── */

.brand-statement {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.brand-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--ivory-dim);
}

.brand-statement .brand-rule {
  width: 1px;
  height: 80px;
  background: var(--border-gold);
  margin: 3rem auto;
}

/* ── Collection Cards ────────────────────────── */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.collection-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}
.collection-card:hover .collection-card-img { transform: scale(1.07); }

.collection-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(250,249,247,0.95) 0%, rgba(250,249,247,0.45) 45%, transparent 75%);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.collection-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.collection-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.85rem;
  line-height: 1.1;
}

.collection-link {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.collection-card:hover .collection-link { opacity: 1; transform: translateY(0); }

/* ── Stats Section ──────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 3.5rem 2rem;
  border-right: 1px solid var(--border-gold);
  position: relative;
}
.stat-item:last-child { border-right: none; }

/* ── Testimonials ───────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-ivory);
  padding: 2.75rem 2.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.testimonial-stars span { color: var(--gold); font-size: 0.75rem; }

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-dim);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Services Grid ──────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: 3.5rem 2.75rem;
  border-bottom: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}

.service-card:hover { background: var(--bg-secondary); }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.55s var(--ease);
}
.service-card:hover::after { width: 100%; }

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border-gold);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Process ────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  padding-top: 3.5rem;
  position: relative;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: 2rem; right: 0;
  height: 1px;
  background: var(--border-gold);
}
.process-step:last-child::after { display: none; }

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.65rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ ────────────────────────────────────── */

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 6rem;
  align-items: start;
}

.faq-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }

.faq-sidebar-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  padding: 0.6rem 0 0.6rem 1rem;
  border-left: 1px solid transparent;
  margin-bottom: 0.5rem;
  transition: color var(--t-fast), border-color var(--t-fast);
  line-height: 1.35;
  cursor: none;
}

.faq-sidebar-link:hover,
.faq-sidebar-link.active { color: var(--ivory); border-left-color: var(--gold); }

.faq-list { display: flex; flex-direction: column; }

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

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

.faq-q-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory-dim);
  line-height: 1.3;
  transition: color var(--t-fast);
}
.faq-item.open .faq-q-text { color: var(--ivory); }

.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--t);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-icon::before { width: 18px; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 1px; height: 18px; left: 50%; top: 0; transform: translateX(-50%); transition: transform var(--t), opacity var(--t); }

.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.75rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Contact ────────────────────────────────── */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contact-info-block { margin-bottom: 2.25rem; }

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ivory-dim);
  line-height: 1.5;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--gold); background: var(--bg-tertiary); }
.form-input::placeholder { color: var(--text-dim); }

textarea.form-input { resize: vertical; min-height: 150px; }

select.form-input option { background: var(--bg-secondary); }

/* ── Legal Pages ─────────────────────────── */

.legal-content {
  max-width: 740px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ivory);
  margin: 2.75rem 0 0.75rem;
  padding-top: 0.5rem;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.35rem;
}

/* ── Responsive ─────────────────────────────── */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border-gold); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border-gold); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after { display: none; }
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-sidebar { position: static; display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .faq-sidebar-link { border-left: none; border-bottom: 1px solid transparent; padding: 0.3rem 0.5rem; font-size: 0.85rem; margin-bottom: 0; }
  .faq-sidebar-link:hover, .faq-sidebar-link.active { border-bottom-color: var(--gold); border-left-color: transparent; }
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .collection-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }

  .hero-title-first,
  .hero-title-rest { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-media { width: 180px; height: 260px; }
  .hero-tagline { font-size: 0.75rem; letter-spacing: 0.3em; }

  .section { padding: 5rem 5%; }
  .section-sm { padding: 3rem 5%; }
  .brand-statement p { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 2.5rem 1rem; }
  .display-cards-wrap { transform: scale(0.85); }
}

/* ── Product Grid (Collection Pricing) ──────── */

.collection-section-anchor {
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}

.product-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.product-card:hover::before { opacity: 1; }

.product-category {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.product-spec {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border-ivory);
  padding-top: 1rem;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.product-price-from {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.product-enquire {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.product-enquire:hover {
  background: var(--gold);
  color: #FAF9F7;
  border-color: var(--gold);
}

.collection-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin: 5rem 0;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .product-grid { grid-template-columns: 1fr; }
}
