/* =========================================================
   APOLLO DE VALEUR — Calicut Atelier
   Palette: Oxblood #5B1A1F · Gold #C9A65D · Cream #F5EDDE
   ========================================================= */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #F5EDDE;
  color: #15110D;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- CSS VARS --- */
:root {
  --ink:         #15110D;
  --paper:       #F5EDDE;
  --paper-warm:  #EDE0C7;
  --oxblood:     #5B1A1F;
  --oxblood-deep:#3A0F12;
  --gold:        #C9A65D;
  --gold-deep:   #A48142;
  --sienna:      #A85431;
  --muted:       #6F5E4C;
  --rule:        #1F1A14;
  --wrap:        min(1240px, 94vw);
  --gold-border: linear-gradient(90deg, transparent 0%, #C9A65D 20%, #A48142 50%, #C9A65D 80%, transparent 100%);
}

/* --- TYPOGRAPHY --- */
.f-display, h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100, 'WONK' 0;
  font-weight: 400;
  line-height: 1.15;
}
.f-mono, .mono { font-family: 'JetBrains Mono', monospace; }
.f-arabic { font-family: 'Noto Naskh Arabic', serif; direction: rtl; }
.f-ml { font-family: 'Noto Serif Malayalam', serif; }
.wrap { width: var(--wrap); margin-inline: auto; }

/* --- KASAVU DIVIDER (Kerala gold-border motif) --- */
.kasavu {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--gold-border);
  margin-block: 0;
}
.kasavu-thin {
  display: block;
  width: 240px;
  height: 1px;
  background: var(--gold-border);
  margin-inline: auto;
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
  max-width: 120px;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--oxblood-deep);
  border-bottom: 2px solid var(--gold-deep);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--paper);
  white-space: nowrap;
}
.brand .since {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 2px 7px;
  border: 1px solid var(--gold-deep);
}
.nav-ticker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-ticker span { color: var(--paper); opacity: 0.6; margin-right: 4px; }
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245,237,222,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: var(--gold-deep);
  color: var(--paper);
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--paper);
  transition: all 0.25s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--oxblood-deep);
  border-top: 1px solid var(--gold-deep);
  padding: 16px 24px 20px;
  gap: 14px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245,237,222,0.85);
  padding-block: 4px;
  border-bottom: 1px solid rgba(201,166,93,0.15);
}
.mobile-menu a.cta-m {
  margin-top: 8px;
  text-align: center;
  background: var(--gold-deep);
  color: var(--paper);
  padding: 10px;
  letter-spacing: 0.08em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--oxblood-deep);
  color: var(--paper);
  padding-block: 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 80px;
  padding-right: 60px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow .chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid rgba(201,166,93,0.4);
}
.hero-eyebrow .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
h1.hero-h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--paper);
  margin-bottom: 22px;
  max-width: 560px;
}
h1.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(245,237,222,0.75);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-deep);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold); color: var(--ink); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,166,93,0.5);
  color: rgba(245,237,222,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
}
.hero-image-cap {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(58,15,18,0.7);
  padding: 4px 10px;
  border-left: 2px solid var(--gold);
}
.hero-meta {
  background: var(--oxblood);
  border-top: 1px solid rgba(201,166,93,0.25);
}
.hero-meta .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-meta .cell {
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid rgba(201,166,93,0.15);
}
.hero-meta .cell:last-child { border-right: none; }
.hero-meta .num {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1.9rem;
  color: var(--gold);
}
.hero-meta .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,222,0.55);
  margin-top: 2px;
}

/* =========================================================
   GOLD RATE TICKER SECTION
   ========================================================= */
.gold-ticker {
  background: var(--paper-warm);
  border-bottom: 1px solid rgba(164,129,66,0.3);
  padding: 12px 0;
}
.gold-ticker .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gold-ticker-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.gold-ticker-rates {
  display: flex;
  gap: 32px;
  align-items: center;
}
.gold-ticker-rate {
  display: flex;
  flex-direction: column;
}
.gold-ticker-rate .karat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.gold-ticker-rate .price {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1.1rem;
  color: var(--oxblood);
  font-weight: 500;
}
.gold-ticker-rate .price .unit { font-size: 0.65rem; color: var(--muted); }
.gold-ticker-note {
  font-size: 0.7rem;
  color: var(--muted);
  font-style: italic;
}

/* =========================================================
   COLLECTIONS SECTION (HOME)
   ========================================================= */
.section { padding-block: 80px; }
.section-head {
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--oxblood);
  margin-top: 10px;
}
.section-head h2 em { font-style: italic; color: var(--sienna); }
.section-head .sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 500px;
  margin-top: 12px;
  line-height: 1.7;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
}
.coll-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--oxblood-deep);
  cursor: pointer;
}
.coll-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.coll-card:hover img { transform: scale(1.04); filter: brightness(0.65) saturate(1); }
.coll-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(to top, rgba(58,15,18,0.95) 0%, transparent 100%);
}
.coll-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 6px;
}
.coll-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1.6rem;
  color: var(--paper);
  line-height: 1.1;
}
.coll-card-sub {
  font-size: 0.78rem;
  color: rgba(245,237,222,0.65);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.coll-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.coll-card:hover .coll-card-link { opacity: 1; transform: translateY(0); }

/* =========================================================
   HERITAGE STRIP (dark)
   ========================================================= */
.heritage {
  background: var(--oxblood-deep);
  color: var(--paper);
  padding-block: 72px;
}
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.heritage-image {
  position: relative;
}
.heritage-image img {
  width: 100%; height: 420px;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.8);
}
.heritage-image-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(58,15,18,0.75);
  padding: 4px 10px;
  border-left: 2px solid var(--gold);
}
.heritage-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--paper);
  margin-bottom: 20px;
}
.heritage-copy h2 em { color: var(--gold); font-style: italic; }
.heritage-copy p {
  font-size: 0.95rem;
  color: rgba(245,237,222,0.72);
  line-height: 1.8;
  margin-bottom: 16px;
}
.heritage-copy .signature {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 24px;
}

/* =========================================================
   CERTIFICATIONS / INDIA BADGES
   ========================================================= */
.certs-strip {
  background: var(--paper-warm);
  border-top: 1px solid rgba(164,129,66,0.25);
  border-bottom: 1px solid rgba(164,129,66,0.25);
  padding-block: 28px;
}
.certs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cert-badge .badge-icon {
  width: 40px; height: 40px;
  background: var(--oxblood);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-badge .badge-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.cert-badge .badge-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--oxblood);
}
.cert-badge .badge-text span {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* =========================================================
   BRIDAL SECTION
   ========================================================= */
.bridal {
  background: var(--paper);
}
.bridal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(164,129,66,0.25);
  margin-bottom: 40px;
  gap: 0;
}
.bridal-tab {
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.bridal-tab.active, .bridal-tab:hover {
  color: var(--oxblood);
  border-bottom-color: var(--oxblood);
}
.bridal-panel { display: none; }
.bridal-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bridal-panel-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.bridal-panel-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--oxblood);
  margin-bottom: 14px;
}
.bridal-panel-copy h3 em { font-style: italic; color: var(--sienna); }
.bridal-panel-copy p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.bridal-set-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.bridal-set-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border: 1px solid rgba(91,26,31,0.25);
  color: var(--oxblood);
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process { background: var(--paper-warm); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(164,129,66,0.2);
  margin-top: 40px;
}
.process-step {
  background: var(--paper-warm);
  padding: 28px 24px;
  position: relative;
}
.process-step .step-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.process-step .step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1.1rem;
  color: var(--oxblood);
  margin-bottom: 10px;
}
.process-step .step-blurb {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.process-step .step-dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(164,129,66,0.3);
}

/* =========================================================
   VOICES / TESTIMONIALS
   ========================================================= */
.voices { background: var(--oxblood-deep); color: var(--paper); }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.voice-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,166,93,0.2);
  padding: 28px 24px;
}
.voice-card .quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}
.voice-card .quote {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(245,237,222,0.8);
  font-style: italic;
  margin-bottom: 18px;
}
.voice-card .author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--paper);
}
.voice-card .location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 3px;
}

/* =========================================================
   NRI SECTION
   ========================================================= */
.nri-strip {
  background: var(--oxblood);
  color: var(--paper);
  padding-block: 56px;
}
.nri-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.nri-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--paper);
  margin-bottom: 12px;
}
.nri-copy h2 em { color: var(--gold); }
.nri-copy p {
  font-size: 0.9rem;
  color: rgba(245,237,222,0.7);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.nri-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.nri-feat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border: 1px solid rgba(201,166,93,0.35);
  color: var(--gold);
}

/* =========================================================
   VISIT / BRANCHES
   ========================================================= */
.visit { background: var(--paper); }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(164,129,66,0.2);
  margin-top: 40px;
}
.branch-card {
  background: var(--paper);
  padding: 22px 20px;
}
.branch-card.flagship {
  background: var(--oxblood-deep);
  grid-column: span 2;
  color: var(--paper);
}
.branch-card .city {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1.1rem;
  color: var(--oxblood);
  margin-bottom: 4px;
}
.branch-card.flagship .city { color: var(--gold); }
.branch-card .note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.branch-card.flagship .note { color: rgba(245,237,222,0.6); }
.branch-card .year-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 2px 7px;
  border: 1px solid rgba(91,26,31,0.2);
  color: var(--muted);
  margin-top: 8px;
}
.branch-card.flagship .year-badge { border-color: rgba(201,166,93,0.3); color: var(--gold); }
.flagship-info {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(245,237,222,0.75);
  line-height: 1.7;
}
.flagship-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--gold-deep);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 20px;
}
.flagship-cta:hover { background: var(--gold); color: var(--ink); }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services { background: var(--paper-warm); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(164,129,66,0.2);
  margin-top: 40px;
}
.service-card {
  background: var(--paper-warm);
  padding: 28px 24px;
}
.service-card .svc-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.service-card .svc-title {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1.05rem;
  color: var(--oxblood);
  margin-bottom: 10px;
}
.service-card .svc-blurb {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.72;
}

/* =========================================================
   BOOKING FORM
   ========================================================= */
.book {
  background: var(--oxblood-deep);
  color: var(--paper);
  padding-block: 80px;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.book-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--paper);
  margin-bottom: 16px;
}
.book-copy h2 em { color: var(--gold); }
.book-copy p {
  font-size: 0.9rem;
  color: rgba(245,237,222,0.7);
  line-height: 1.8;
  margin-bottom: 12px;
}
.book-copy .contact-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book-copy .contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(245,237,222,0.75);
}
.book-copy .contact-list .icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  width: 40px;
  flex-shrink: 0;
}
.book-form { display: flex; flex-direction: column; gap: 14px; }
.book-form label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,222,0.5);
  margin-bottom: 5px;
  display: block;
}
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,166,93,0.25);
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.88rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus { border-color: var(--gold); }
.book-form select option { background: var(--oxblood-deep); color: var(--paper); }
.book-form textarea { height: 110px; resize: vertical; }
.book-form button[type=submit] {
  background: var(--gold-deep);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  align-self: flex-start;
  transition: background 0.2s;
}
.book-form button[type=submit]:hover { background: var(--gold); color: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--rule);
  color: rgba(245,237,222,0.55);
  padding-block: 40px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1.1rem;
  color: var(--paper);
  margin-bottom: 6px;
}
.footer-brand .brand-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(245,237,222,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(245,237,222,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .copy {
  font-size: 0.72rem;
  color: rgba(245,237,222,0.35);
}
.footer-bottom .credit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: rgba(245,237,222,0.3);
}
.footer-bottom .credit a:hover { color: var(--gold); }

/* =========================================================
   COLLECTION PAGE (inner)
   ========================================================= */
.coll-hero {
  background: var(--oxblood-deep);
  color: var(--paper);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}
.coll-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coll-hero-copy .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.75;
}
.coll-hero-copy .back-link:hover { opacity: 1; }
.coll-hero-copy .coll-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
}
.coll-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--paper);
  margin-bottom: 8px;
}
.coll-hero-copy .subtitle {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.coll-hero-copy p {
  font-size: 0.92rem;
  color: rgba(245,237,222,0.75);
  line-height: 1.8;
  max-width: 440px;
}
.coll-hero-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  filter: brightness(0.85);
}
.coll-pieces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  margin-top: 40px;
}
.piece-card {
  background: var(--paper-warm);
  overflow: hidden;
  position: relative;
}
.piece-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 0.5s ease;
}
.piece-card:hover img { transform: scale(1.03); }
.piece-card-body {
  padding: 16px 18px 18px;
}
.piece-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: 1rem;
  color: var(--oxblood);
  margin-bottom: 4px;
}
.piece-card-detail {
  font-size: 0.77rem;
  color: var(--muted);
}
.piece-card-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold-deep);
  margin-top: 8px;
}

/* =========================================================
   ARABIC / MANTHOORAH SPECIAL
   ========================================================= */
.manthoorah-hero {
  background: var(--rule);
}
.arabic-accent {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 2.2rem;
  direction: rtl;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1.4;
  display: block;
  margin-bottom: 16px;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--hidden {
  opacity: 0;
  transform: translateY(22px);
}

/* =========================================================
   CAMPAIGNS / EDITORIAL SECTION
   ========================================================= */
.campaigns-section { background: var(--paper-warm); }
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--rule);
  margin-top: 40px;
}
.campaign-card {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.campaign-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,8,10,0.92) 0%, rgba(30,8,10,0.35) 55%, transparent 100%);
  transition: background 0.4s ease;
}
.campaign-card:hover .campaign-overlay {
  background: linear-gradient(to top, rgba(30,8,10,0.97) 0%, rgba(30,8,10,0.55) 55%, rgba(30,8,10,0.15) 100%);
}
.campaign-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
}
.campaign-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.8;
}
.campaign-name {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 100;
  font-size: clamp(0.9rem, 1.2vw, 1.15rem);
  color: var(--paper);
  margin-bottom: 4px;
  line-height: 1.2;
}
.campaign-sub {
  font-size: 0.7rem;
  color: rgba(245,237,222,0.6);
  line-height: 1.4;
}
.campaign-card:hover .campaign-name { color: var(--gold); }

/* =========================================================
   INSTAGRAM SOCIAL STRIP
   ========================================================= */
.ig-social-strip {
  background: var(--oxblood-deep);
  border-top: 1px solid rgba(201,166,93,0.15);
  border-bottom: 1px solid rgba(201,166,93,0.15);
  padding-block: 20px;
}
.ig-social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ig-social-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ig-social-left strong {
  display: block;
  font-size: 0.9rem;
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 2px;
}
.ig-social-left span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(201,166,93,0.7);
}
.ig-follow-btn {
  font-size: 0.75rem !important;
  padding: 10px 20px !important;
  white-space: nowrap;
  color: var(--gold) !important;
  border-color: rgba(201,166,93,0.4) !important;
}

/* =========================================================
   PREMIUM POLISH LAYER  (editorial / anti-template)
   Native-scroll only — no scroll hijacking. Fail-open reveals.
   ========================================================= */

/* --- Scroll progress: thin gold seam at the very top --- */
.scroll-seam {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  z-index: 200; pointer-events: none;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 60%, #F0DCA8);
  box-shadow: 0 0 8px rgba(201,166,93,0.5);
  transition: width 0.1s linear;
}

/* --- Real product images: tuned brightness so the gold/stones read --- */
.coll-card img { filter: brightness(0.74) saturate(1) contrast(1.02); }
.coll-card:hover img { filter: brightness(0.9) saturate(1.05); transform: scale(1.05); }
.heritage-image img { filter: brightness(0.92) saturate(0.95); }

/* --- Gold corner-frame that draws itself on collection-card hover --- */
.coll-card::after {
  content: ''; position: absolute; inset: 14px; pointer-events: none;
  border: 1px solid rgba(201,166,93,0);
  transition: border-color 0.45s ease, inset 0.45s ease;
}
.coll-card:hover::after { border-color: rgba(201,166,93,0.55); inset: 11px; }

/* --- HERO: framed editorial plate + slow Ken-Burns drift + vignette --- */
.hero-image::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 120px 20px rgba(58,15,18,0.55);
}
.hero-image::after {
  content: ''; position: absolute; inset: 18px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(201,166,93,0.35);
}
.hero-image img {
  filter: brightness(0.82) saturate(1.02) contrast(1.03);
  object-position: center 38%;
  transform: scale(1.06);
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to   { transform: scale(1.13) translate3d(-1.5%, -2%, 0); }
}
/* Pointer gleam — a soft warm light that follows the cursor (desktop) */
.hero-image .gleam {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,40%), rgba(201,166,93,0.28), transparent 60%);
  transition: opacity 0.4s ease;
}
.hero-image:hover .gleam { opacity: 1; }

/* --- Animated kasavu: a light travels along the gold seam --- */
.kasavu {
  background-size: 220% 100%;
  animation: kasavu-flow 9s linear infinite;
}
@keyframes kasavu-flow { from { background-position: 0% 0; } to { background-position: 220% 0; } }

/* --- Brand wordmark gleam on hover --- */
.brand:hover { color: #fff; }
.brand .since { transition: background 0.3s, color 0.3s; }
.brand:hover .since { background: var(--gold); color: var(--oxblood-deep); }

/* --- Section headings: a small gold rule rises in as they appear --- */
.section-head h2 { position: relative; }

/* --- Richer reveal: lift + de-blur, with optional stagger via --i --- */
.reveal--hidden { opacity: 0; transform: translateY(26px); filter: blur(6px); }
.reveal {
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1),
              transform 0.7s cubic-bezier(.22,.61,.36,1),
              filter 0.7s ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}

/* Stagger grids automatically (children fade in sequence) */
.collections-grid .coll-card,
.services-grid .service-card,
.voices-grid .voice-card,
.branches-grid .branch-card,
.campaigns-grid .campaign-card,
.process-steps .process-step,
.coll-pieces-grid .piece-card { will-change: transform, opacity; }

/* --- Campaign cards: legible text on real photos + gold baseline grow --- */
.campaign-name, .campaign-year { text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.campaign-body::before {
  content: ''; display: block; width: 22px; height: 2px; margin-bottom: 12px;
  background: var(--gold); transition: width 0.4s ease;
}
.campaign-card:hover .campaign-body::before { width: 56px; }

/* --- Buttons: gold sheen sweep on hover --- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 140%; }

/* --- Gallery pieces: gold underline grows under the name on hover --- */
.piece-card { position: relative; }
.piece-card img { filter: brightness(0.97) saturate(1.02); }
.piece-card-name { position: relative; display: inline-block; }
.piece-card-name::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s ease;
}
.piece-card:hover .piece-card-name::after { width: 100%; }

/* --- Voices: oversized quote mark drifts, gold edge --- */
.voice-card { transition: transform 0.4s ease, border-color 0.4s ease; }
.voice-card:hover { transform: translateY(-4px); }

/* --- Branch cards: flagship pulse ring, hover lift --- */
.branch-card { transition: transform 0.35s ease, background 0.35s ease; }
.branch-card:hover { transform: translateY(-3px); }

/* --- Honour reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-image img { animation: none; transform: scale(1.04); }
  .kasavu { animation: none; }
  .reveal { transition-duration: 0.001s; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; min-height: unset; }
  .hero-copy { padding: 60px 0 0; padding-right: 0; }
  .hero-image { height: 360px; }
  .hero-meta .wrap { grid-template-columns: repeat(2, 1fr); }
  .heritage-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .bridal-panel.active { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .coll-hero-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .branches-grid { grid-template-columns: 1fr 1fr; }
  .branch-card.flagship { grid-column: span 2; }
  .nri-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .coll-pieces-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-ticker { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .campaigns-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-social-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 600px) {
  .wrap { width: 92vw; }
  .section { padding-block: 52px; }
  .hero-copy { padding-top: 40px; }
  .hero-meta .wrap { grid-template-columns: repeat(2, 1fr); }
  .hero-meta .num { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .branch-card.flagship { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .coll-pieces-grid { grid-template-columns: 1fr; }
  .bridal-tabs { overflow-x: auto; }
  .certs-row { gap: 20px; }
  .gold-ticker-rates { gap: 16px; }
  .campaigns-grid { grid-template-columns: repeat(2, 1fr); }
}
