/* ============================================================
   CALICUT GOLD AND DIAMONDS — Poonoor Boutique Jewellers
   Deep Emerald + Champagne Gold + Warm White
   Site crafted by Shijil Kumar · digitalshijil.com
   ============================================================ */

:root {
  --ink: #181814;
  --ink-soft: #2C2C26;
  --paper: #FEFCF9;
  --paper-warm: #F5EFE4;
  --paper-deep: #EDE4D5;
  --emerald: #1A3D2B;
  --emerald-deep: #112A1E;
  --emerald-soft: #24553C;
  --champagne: #D4AF7A;
  --champagne-deep: #B8935A;
  --champagne-light: #E8CEAD;
  --wine: #6B2737;
  /* Rose-gold — echoes their real logo monogram */
  --rosegold: #C9986A;
  --rosegold-light: #E6C3A0;
  --rosegold-deep: #A9764B;
  --espresso: #211711;
  /* Readable deep-gold for SMALL text on light backgrounds (AA 4.6:1) */
  --gold-text: #8A6233;

  --rule: rgba(24, 24, 20, 0.13);
  --rule-gold: rgba(212, 175, 122, 0.35);
  --rule-ivory: rgba(254, 252, 249, 0.18);

  --display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 130px);
  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--emerald); color: var(--paper); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 500;
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tag { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.section-tag::before { content: ""; width: 32px; height: 1px; background: var(--champagne); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(254, 252, 249, 0.0);
  backdrop-filter: blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(254, 252, 249, 0.95);
  backdrop-filter: blur(12px) saturate(140%);
  padding: 12px 0;
  border-bottom-color: var(--rule);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-mark { flex-shrink: 0; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-word { display: inline-flex; align-items: baseline; gap: 10px; }
.brand .since {
  font-family: var(--mono); font-size: 9px;
  color: var(--rosegold-deep);
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border: 1px solid var(--rule-gold);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a:hover { color: var(--champagne-deep); }
.nav-cta {
  border: 1px solid var(--emerald);
  color: var(--emerald);
  padding: 10px 18px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s ease, color .25s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--emerald); color: var(--paper); }
.hamburger { display: none; width: 28px; height: 18px; position: relative; }
.hamburger span {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  flex: 1;
}
.hero-copy { padding-right: 20px; }
.hero-mono-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 30px;
  color: var(--gold-text);
}
.hero-mono-row::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--champagne) 0%, transparent 100%);
  margin-left: 6px; max-width: 180px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--emerald); font-weight: 400; }
.hero h1 .since-tag {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.46em;
  color: var(--champagne-deep);
  margin-top: 16px;
  font-weight: 300;
}
.hero-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--gold-text);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  line-height: 1.4;
  border-left: 2px solid var(--rosegold);
  padding-left: 16px;
}
.hero-sub {
  font-size: 16px; line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  color: var(--ink-soft);
}
.hero-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--emerald);
  color: var(--paper);
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.btn-primary::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(230,195,160,0.45), transparent);
  transform: skewX(-18deg);
  transition: left .6s ease;
  pointer-events: none;
}
.btn-primary:hover { background: var(--emerald-deep); }
.btn-primary:hover::after { left: 130%; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary .arr { transition: transform .25s ease; }
.btn-primary:hover .arr { transform: translateX(4px); }
.nav-cta, .gr-wa-btn { transition: background .25s ease, color .25s ease, transform .3s cubic-bezier(.2,.7,.2,1); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 4px;
  border-bottom: 1px solid var(--ink);
}
.btn-ghost:hover { color: var(--champagne-deep); border-bottom-color: var(--champagne-deep); }

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(0.90) brightness(0.97);
  transform: scale(1.02);
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(26, 61, 43, 0.16);
  pointer-events: none;
}
.hero-image-cap {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(26, 61, 43, 0.92);
  color: var(--paper);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 36px;
  margin-top: 60px;
  border-top: 1px solid var(--rule);
}
.hero-meta-row .cell { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-row .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 30px;
  color: var(--emerald);
  letter-spacing: -0.01em;
}
.hero-meta-row .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   HERITAGE STRIP
   ============================================================ */
.heritage {
  background: var(--emerald-deep);
  color: var(--paper);
  padding: 24px 0;
  overflow: hidden;
}
.heritage-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}
.heritage-row .item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
}
.heritage-row .item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--champagne);
}

/* ============================================================
   GOLD RATE WIDGET
   ============================================================ */
.gold-rate { background: var(--paper-warm); }
.gr-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 60px;
}
.gr-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.gr-head h2 em { font-style: italic; color: var(--emerald); }
.gr-note {
  font-size: 14px; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 440px;
}
.gr-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gr-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  overflow: hidden;
}
.gr-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--champagne), var(--champagne-light));
}
.gr-card--diamond::before { background: linear-gradient(90deg, var(--emerald), var(--emerald-soft)); }
.gr-card--wa::before { background: linear-gradient(90deg, #25D366, #128C7E); }
.gr-purity {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  font-weight: 500;
}
.gr-card--diamond .gr-purity { color: var(--emerald); }
.gr-card--wa .gr-purity { color: #128C7E; }
.gr-rate {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rate-loading {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.gr-unit {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.gr-badge {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.gr-pavan {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--gold-text);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
  min-height: 14px;
}
.gr-pavan-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--gold-text);
  text-transform: uppercase;
  margin-top: 10px;
}
.gr-wa-btn {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background .2s ease;
}
.gr-wa-btn:hover { background: #128C7E; }
.gr-disclaimer {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  opacity: 0.7;
  line-height: 1.6;
}

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.story-aside { position: sticky; top: 100px; }
.story-aside .eyebrow { margin-bottom: 20px; display: block; }
.story-aside h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.story-aside h2 em { font-style: italic; color: var(--emerald); }

.bis-badge {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
  padding: 20px;
  background: var(--paper-warm);
  border: 1px solid var(--rule-gold);
}
.bis-text {}
.bis-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--champagne-deep);
}
.bis-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.story-body p {
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.story-body p strong { color: var(--ink); font-weight: 500; }
.story-body p:first-child::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 5.2em;
  line-height: 0.86;
  padding-right: 14px;
  padding-top: 8px;
  font-weight: 400;
  color: var(--emerald);
  font-style: italic;
}
.story-pillars {
  margin-top: 50px;
  border-top: 1px solid var(--rule);
  padding-top: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.sp .sph {
  font-family: var(--display);
  font-size: 21px; font-style: italic;
  color: var(--champagne-deep);
  margin-bottom: 6px;
  font-weight: 400;
}
.sp .spb { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }

.orn-rule {
  display: flex; align-items: center; gap: 14px; margin: 16px 0;
}
.orn-rule .line { height: 1px; flex: 1; max-width: 80px; background: var(--champagne); opacity: 0.6; }
.orn-rule svg { width: 16px; height: 16px; }

/* ============================================================
   BRIDAL
   ============================================================ */
.bridal { background: var(--emerald); color: var(--paper); }
.bridal .eyebrow { color: var(--champagne-light); }
.bridal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.bridal-copy h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 18px 0 28px;
  color: var(--paper);
}
.bridal-copy h2 em { font-style: italic; color: var(--champagne-light); }
.bridal-copy p {
  font-size: 16px; line-height: 1.75;
  color: rgba(254, 252, 249, 0.82);
  margin-bottom: 22px;
  max-width: 540px;
}
.bridal-categories {
  margin-top: 38px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  border-top: 1px solid var(--rule-ivory);
  padding-top: 28px;
}
.bc .bch {
  font-family: var(--display);
  font-size: 20px; font-style: italic;
  color: var(--champagne-light);
  margin-bottom: 6px;
}
.bc .bcb { font-size: 13px; line-height: 1.6; color: rgba(254, 252, 249, 0.74); }
.bridal-img {
  aspect-ratio: 3 / 4;
  background: var(--emerald-deep);
  overflow: hidden;
  position: relative;
}
.bridal-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95) saturate(0.88); }
.bridal-img-cap {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(254, 252, 249, 0.96);
  color: var(--emerald-deep);
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { background: var(--paper); }
.collections-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 70px; flex-wrap: wrap;
}
.collections-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.collections-head h2 em { font-style: italic; color: var(--emerald); }
.collections-head .right {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 36px;
}
.coll-card { display: flex; flex-direction: column; position: relative; }
.coll-img {
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.coll-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  filter: contrast(1.03) saturate(0.95);
}
.coll-card:hover .coll-img img { transform: scale(1.04); }
.coll-img .num {
  position: absolute; top: 16px; left: 16px;
  background: var(--paper);
  color: var(--emerald);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
}
.coll-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.coll-card p {
  font-size: 14px; line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
  flex: 1;
}
.coll-card .from {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

/* ============================================================
   RECENT / GALLERY
   ============================================================ */
.recent { background: var(--paper-warm); }
.recent-head { text-align: center; margin-bottom: 70px; }
.recent-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px auto 18px;
  max-width: 700px;
}
.recent-head h2 em { font-style: italic; color: var(--emerald); }
.recent-head .sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}
.recent-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 18px;
}
.r-cell { position: relative; overflow: hidden; background: var(--paper-deep); }
.r-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
.r-cell:hover img { transform: scale(1.06); }
.r-cell .cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(26, 61, 43, 0.92), rgba(26, 61, 43, 0));
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
}
.r-cell .cap .tag {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--champagne-light);
  margin-bottom: 4px;
}
.r-cell.r-1 { grid-column: span 5; grid-row: span 4; }
.r-cell.r-2 { grid-column: span 4; grid-row: span 2; }
.r-cell.r-3 { grid-column: span 3; grid-row: span 3; }
.r-cell.r-4 { grid-column: span 4; grid-row: span 2; }
.r-cell.r-5 { grid-column: span 3; grid-row: span 3; }
.r-cell.r-6 { grid-column: span 4; grid-row: span 3; }
.r-cell.r-7 { grid-column: span 5; grid-row: span 3; }

/* ============================================================
   NRI SECTION
   ============================================================ */
.nri { background: var(--emerald-deep); color: var(--paper); }
.nri .eyebrow { color: var(--champagne-light); }
.nri-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.nri-copy h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 18px 0 26px;
  color: var(--paper);
}
.nri-copy h2 em { font-style: italic; color: var(--champagne-light); }
.nri-copy p {
  font-size: 15.5px; line-height: 1.75;
  color: rgba(254, 252, 249, 0.8);
  margin-bottom: 20px;
  max-width: 540px;
}
.nri-steps {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--rule-ivory);
  padding-top: 32px;
}
.ns {}
.nsn {
  font-family: var(--display);
  font-style: italic;
  font-size: 40px;
  color: var(--champagne);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}
.nst {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 6px;
}
.nsb { font-size: 13px; line-height: 1.6; color: rgba(254, 252, 249, 0.7); }

.nri-aside {
  display: flex; flex-direction: column; gap: 20px;
  padding-top: 56px;
}
.nri-card {
  background: rgba(254, 252, 249, 0.06);
  border: 1px solid rgba(254, 252, 249, 0.1);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.nri-flag { font-size: 28px; }
.nri-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--champagne-light);
}
.nri-text { font-size: 13.5px; line-height: 1.6; color: rgba(254, 252, 249, 0.75); }
.nri-wa-cta {
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(254, 252, 249, 0.15);
}
.nri-wa-cta .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}
.nri-wa-cta .num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  color: var(--paper);
  letter-spacing: -0.01em;
  display: block;
}
.nri-wa-cta .num:hover { color: var(--champagne-light); }

.nri-wa-scan {
  display: flex; align-items: center; gap: 20px;
  background: rgba(254, 252, 249, 0.06);
  border: 1px solid rgba(254, 252, 249, 0.15);
  padding: 20px 24px;
  margin-top: 4px;
}
.nri-wa-qr-wrap {
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
  border-radius: 4px;
}
.nri-wa-qr-wrap img { display: block; }
.nri-wa-scan-label {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  color: var(--champagne-light);
  font-weight: 300;
}
.nri-wa-scan-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254, 252, 249, 0.5);
  margin-top: 6px;
}
.phone-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(254, 252, 249, 0.6);
  margin-left: 4px;
}

/* ============================================================
   GALLERY MASONRY
   ============================================================ */
.gallery { background: var(--paper-warm); }
.gallery-head { text-align: center; margin-bottom: 56px; }
.gallery-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
  color: var(--ink);
}
.gallery-head h2 em { font-style: italic; color: var(--emerald); }
.gallery-head .sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 560px; margin: 0 auto;
}
.gallery-head .sub a { color: var(--rosegold-deep); border-bottom: 1px solid var(--rosegold-deep); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.g-cell {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  margin: 0;
}
.g-cell.g-tall { grid-row: span 2; }
.g-cell.g-wide { grid-column: span 2; }
.g-cell img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.03) saturate(0.95);
  transition: transform 1.3s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.g-cell:hover img { transform: scale(1.07); filter: contrast(1.06) saturate(1.05); }
.g-cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 18px 16px;
  background: linear-gradient(0deg, rgba(17,42,30,0.88) 0%, rgba(17,42,30,0) 100%);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.02em;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.g-cell:hover figcaption { transform: translateY(0); opacity: 1; }
.g-cell .g-tag {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rosegold-light);
  margin-bottom: 4px;
}
/* Instagram banner */
.ig-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 28px;
  padding: 26px 32px;
  background: var(--emerald);
  color: var(--paper);
  transition: background .3s ease;
}
.ig-banner:hover { background: var(--emerald-deep); }
.ig-banner-left { display: flex; align-items: center; gap: 18px; }
.ig-banner-left svg { color: var(--rosegold-light); flex-shrink: 0; }
.ig-handle {
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--paper);
}
.ig-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(254,252,249,0.65);
  margin-top: 5px;
}
.ig-cta {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rosegold-light);
  display: inline-flex; align-items: center; gap: 10px;
}
.ig-banner:hover .ig-cta .arr { transform: translateX(5px); }
.ig-cta .arr { transition: transform .25s ease; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.voices { background: var(--ink); color: var(--paper); }
.voices .eyebrow { color: var(--champagne-light); }
/* Keep light gold on dark sections (eyebrows are readable deep-gold by default) */
.nri .eyebrow, .visit-info .eyebrow { color: var(--champagne-light); }
.voices-head { text-align: center; margin-bottom: 70px; }
.voices-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0;
  color: var(--paper);
}
.voices-head h2 em { font-style: italic; color: var(--champagne-light); }
.voices-stats {
  display: flex; justify-content: center; gap: clamp(20px, 5vw, 64px);
  margin-top: 30px; flex-wrap: wrap;
}
.voices-stats .vs { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.voices-stats .vs .vn {
  font-family: var(--display);
  font-weight: 300; font-size: 36px;
  color: var(--champagne-light);
}
.voices-stats .vs .vl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(254, 252, 249, 0.65);
}
.voices-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 30px;
}
.voice {
  padding: 36px 32px;
  border: 1px solid rgba(254, 252, 249, 0.1);
  background: rgba(254, 252, 249, 0.02);
  position: relative;
}
.voice::before {
  content: "\201C";
  position: absolute; top: 8px; left: 24px;
  font-family: var(--display);
  font-size: 80px; color: var(--champagne);
  line-height: 1; opacity: 0.4; font-style: italic;
}
.voice .q {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px; line-height: 1.55;
  font-weight: 300; color: var(--paper);
  margin-bottom: 24px; margin-top: 18px;
  position: relative; z-index: 1;
}
.voice .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(254, 252, 249, 0.1);
}
.voice .who .name { font-size: 13px; font-weight: 500; color: var(--champagne-light); }
.voice .who .ctx {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(254, 252, 249, 0.5);
}
.voice .who .sep { color: rgba(254, 252, 249, 0.3); }
.voices-note {
  margin-top: 40px; text-align: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(254, 252, 249, 0.45);
}

/* ============================================================
   ENQUIRE FORM
   ============================================================ */
.book { background: var(--paper); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.book-aside h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 24px;
}
.book-aside h2 em { font-style: italic; color: var(--emerald); }
.book-aside p {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-soft); margin-bottom: 20px; max-width: 420px;
}
.book-aside .phone {
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.book-aside .phone .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champagne-deep); margin-bottom: 8px;
}
.book-aside .phone .num {
  font-family: var(--display);
  font-size: 32px; font-weight: 300;
  color: var(--emerald); letter-spacing: -0.01em; display: block;
}
.book-aside .phone .num:hover { color: var(--champagne-deep); }

.book-form {
  background: var(--paper-warm);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--rule);
}
.book-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--body); font-size: 14.5px;
  color: var(--ink); outline: none;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--emerald); }
.field textarea { resize: vertical; min-height: 90px; }
.book-form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.form-wa-alt {
  margin-top: 16px; text-align: center;
  font-size: 13.5px; color: var(--ink-soft);
}
.form-wa-alt a { color: #25D366; font-weight: 500; }
.form-wa-alt a:hover { text-decoration: underline; }

/* ============================================================
   VISIT US
   ============================================================ */
.visit { background: var(--ink); color: var(--paper); padding-top: 0; padding-bottom: 0; }
.visit-grid { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 540px; }
.visit-map { background: var(--ink); position: relative; }
.visit-map iframe {
  width: 100%; height: 100%; min-height: 540px;
  border: 0;
  filter: grayscale(0.5) contrast(1.1) brightness(0.85);
}
.visit-info {
  padding: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 60px);
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
}
.visit-info .eyebrow { color: var(--champagne-light); margin-bottom: 18px; }
.visit-info h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 32px;
}
.visit-info h2 em { font-style: italic; color: var(--champagne-light); }
.visit-info .block { margin-bottom: 26px; }
.visit-info .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champagne-light); margin-bottom: 8px;
}
.visit-info .val {
  font-family: var(--display); font-size: 20px;
  font-weight: 300; color: var(--paper); line-height: 1.4;
}
.visit-info .val a:hover { color: var(--champagne-light); }
.visit-info .hours-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.visit-info .hours-list li {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(254, 252, 249, 0.1);
  font-size: 14px;
}
.visit-info .hours-list li .d { color: rgba(254, 252, 249, 0.7); }
.visit-info .hours-list li .t { color: var(--paper); font-family: var(--display); font-style: italic; font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--emerald-deep);
  color: rgba(254, 252, 249, 0.7);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
}
.foot-brand .brand-large {
  font-family: var(--display); font-size: 26px;
  color: var(--paper); margin-bottom: 14px; font-weight: 400;
}
.foot-brand .since-small {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--champagne-light); margin-bottom: 20px;
}
.foot-brand p { font-size: 13.5px; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.foot-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 12px 18px; font-size: 13px; font-weight: 500;
  transition: background .2s ease;
}
.foot-wa:hover { background: #128C7E; }
.foot-col h4 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--champagne-light); margin-bottom: 18px; font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a { font-size: 14px; color: rgba(254, 252, 249, 0.7); }
.foot-col ul li a:hover { color: var(--champagne-light); }
.foot-bottom {
  border-top: 1px solid rgba(254, 252, 249, 0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.foot-bottom a { color: rgba(254, 252, 249, 0.7); }
.foot-bottom a:hover { color: var(--champagne-light); }
.foot-credit { color: var(--champagne-light) !important; }

/* ============================================================
   REVEAL ANIMATIONS — FALLBACK SAFE
   ============================================================ */
.reveal--hidden { opacity: 0; transform: translateY(28px); }
.reveal--shown {
  opacity: 1; transform: translateY(0);
  transition: opacity 1.0s cubic-bezier(.2,.7,.2,1), transform 1.0s cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { aspect-ratio: 3/4; max-height: 65vh; }
  .hero-copy { padding-right: 0; }
  .hero-meta-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gr-head { grid-template-columns: 1fr; gap: 20px; }
  .gr-cards { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-aside { position: static; }
  .story-pillars { grid-template-columns: 1fr 1fr; }
  .bridal-grid { grid-template-columns: 1fr; gap: 40px; }
  .bridal-categories { grid-template-columns: 1fr 1fr; }
  .coll-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .nri-grid { grid-template-columns: 1fr; gap: 40px; }
  .nri-aside { padding-top: 0; }
  .nri-steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-cell.g-wide { grid-column: span 2; }
  .voices-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map iframe { min-height: 360px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .nav { padding: 14px 0; }
  .brand { font-size: 16px; }
  .brand .since { display: none; }
  .hero { padding-top: 88px; min-height: auto; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); }
  .hero h1 .since-tag { font-size: 0.44em; }
  .hero-mono-row::after { display: none; }
  .hero-cta-row { gap: 14px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: space-between; }
  .hero-meta-row { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 24px; margin-top: 36px; }
  .hero-meta-row .num { font-size: 24px; }
  .heritage { padding: 16px 0; }
  .heritage-row { gap: 12px; }
  .heritage-row .item { font-size: 13.5px; gap: 8px; }
  .gr-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gr-card { padding: 20px 16px; }
  .story-body p { font-size: 17px; }
  .story-body p:first-child::first-letter { font-size: 4em; }
  .story-pillars { grid-template-columns: 1fr; gap: 20px; }
  .bridal-categories { grid-template-columns: 1fr; gap: 16px; }
  .coll-grid { grid-template-columns: 1fr; gap: 40px; }
  .nri-steps { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .g-cell figcaption { opacity: 1; transform: translateY(0); padding: 20px 12px 10px; font-size: 11px; }
  .ig-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px; }
  .ig-handle { font-size: 20px; }
  .nri-wa-scan { flex-direction: column; text-align: center; padding: 20px 16px; }
  .voice { padding: 26px 20px; }
  .voice .q { font-size: 17px; }
  .book-form { padding: 22px; }
  .book-form .row { grid-template-columns: 1fr; gap: 0; }
  .visit-info { padding: 36px 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
