/* =============================================================
   Ramchandra Jewellers — Landing Page
   Style: Luxury / Elegant  ·  Indian fine jewellery
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colours */
  --gold:        #C9A24B;
  --gold-soft:   #E6C877;
  --gold-deep:   #A37E2C;
  --wine:        #6B1228;
  --wine-deep:   #4A0E1C;
  --emerald:     #1F5F4E;

  /* Neutrals */
  --ivory:       #FBF8F2;
  --cream:       #F4EDE0;
  --sand:        #EADFC9;
  --ink:         #211A12;
  --ink-soft:    #4A4034;
  --muted:       #6B6053;
  --line:        #E3D8C2;
  --white:       #ffffff;

  /* Semantic */
  --bg:          var(--ivory);
  --surface:     var(--white);
  --text:        var(--ink);
  --text-muted:  var(--muted);
  --primary:     var(--gold);

  /* Gradients */
  --grad-gold:   linear-gradient(135deg, #E6C877 0%, #C9A24B 45%, #A37E2C 100%);
  --grad-wine:   linear-gradient(150deg, #7A1530 0%, #4A0E1C 100%);
  --grad-foil:   linear-gradient(100deg, #A37E2C 0%, #E6C877 25%, #FFF6DC 42%, #E6C877 60%, #A37E2C 100%);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", "Segoe UI", system-ui, sans-serif;

  /* Spacing scale (4 / 8 based) */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;   --s-8: 3rem;     --s-10: 4rem;
  --s-12: 6rem;   --s-16: 8rem;

  /* Radii & shadow */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(33,26,18,.06);
  --shadow-md: 0 14px 36px rgba(33,26,18,.10);
  --shadow-lg: 0 26px 70px rgba(33,26,18,.16);

  /* Layout */
  --container: 1180px;
  --nav-h: 76px;

  /* Z-index scale */
  --z-base: 0; --z-raise: 10; --z-sticky: 40; --z-overlay: 100; --z-top: 1000;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 280ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: .2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p  { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.gold-text {
  /* Rich, readable gold — no near-white stop so text never vanishes on cream */
  background: linear-gradient(95deg, #8C6A1C 0%, #B98E2C 38%, #D7AE45 52%, #B98E2C 66%, #8C6A1C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* faint definition so the highlight band stays legible on light backgrounds */
  -webkit-text-stroke: 0.4px rgba(120,92,24,.22);
}
.serif-accent { font-family: var(--font-display); font-style: italic; font-weight: 500; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.4rem); position: relative; z-index: 1; }
.section { padding-block: clamp(3.5rem, 8vw, var(--s-16)); position: relative; overflow: hidden; }

/* Decorative jewellery / mandala graphics behind sections */
.deco { position: absolute; pointer-events: none; color: var(--gold); opacity: .06; z-index: 0; }
.deco--tr { top: -40px; right: -50px; width: clamp(180px, 26vw, 300px); }
.deco--bl { bottom: -50px; left: -60px; width: clamp(190px, 28vw, 320px); }
.deco--tl { top: -40px; left: -50px; width: clamp(160px, 22vw, 260px); }
.deco--gem { opacity: .09; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 5rem); }
.center { text-align: center; }
.section-head { max-width: 640px; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head p { margin-top: .9rem; font-size: 1.08rem; color: var(--muted); }
.section-head h2 { margin-top: .8rem; }

/* Decorative ornament divider */
.ornament { display: inline-flex; align-items: center; gap: .8rem; color: var(--gold); margin: 0 auto; }
.ornament::before, .ornament::after { content: ""; width: 54px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .8rem 1.7rem;
  border-radius: var(--r-pill);
  font-weight: 500; font-size: .98rem; letter-spacing: .02em;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-gold); color: #2a2008; box-shadow: 0 10px 26px rgba(163,126,44,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(163,126,44,.45); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn--wine { background: var(--grad-wine); color: #fff; box-shadow: 0 10px 26px rgba(74,14,28,.3); }
.btn--wine:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(74,14,28,.42); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* =============================================================
   Announcement bar
   ============================================================= */
.topbar {
  background: var(--grad-wine);
  color: #f6e7c8;
  font-size: .8rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(230,200,119,.18);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding-block: .55rem; flex-wrap: wrap; }
.topbar__badges, .topbar__contact { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); flex-wrap: wrap; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; color: #f6e7c8; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--gold-soft); flex: none; }
.topbar__sep { width: 1px; height: 14px; background: rgba(230,200,119,.4); }
@media (max-width: 900px) { .topbar__contact .topbar__sep, .topbar__contact span:not(.topbar__sep) { display: none; } }
@media (max-width: 640px) { .topbar__badges span { display: none; } .topbar .container { justify-content: center; } }

/* =============================================================
   Header / Nav
   ============================================================= */
.header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(251,248,242,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(251,248,242,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--nav-h); }

.brand { display: flex; align-items: center; gap: .7rem; flex: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 4.2vw, 1.5rem); line-height: 1; color: var(--ink); white-space: nowrap; }
.brand__sub { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-deep); margin-top: 5px; white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.9rem); margin-inline: auto; }
.nav__links a { font-size: .95rem; font-weight: 400; color: var(--ink-soft); position: relative; padding: .3rem 0; white-space: nowrap; transition: color var(--dur) var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--gold); transition: width var(--dur) var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: .7rem; flex: none; }
.nav__cta .btn { padding-inline: 1.4rem; }

.nav__toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: var(--r-sm); }
.nav__toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(33,26,18,.5); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px);
  background: var(--ivory); padding: 1.4rem 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav__links { display: flex; flex-direction: column; gap: .3rem; margin-top: .5rem; }
.mobile-nav__links a { padding: .9rem .4rem; font-size: 1.15rem; font-family: var(--font-display); border-bottom: 1px solid var(--line); }
.mobile-nav__links a:last-child { border-bottom: none; }

/* =============================================================
   Hero
   ============================================================= */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 6.5rem); }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg::before {
  content: ""; position: absolute; width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  top: -22%; right: -14%;
  background: radial-gradient(circle, rgba(230,200,119,.35), rgba(230,200,119,0) 62%);
}
.hero__bg::after {
  content: ""; position: absolute; width: 50vw; height: 50vw; max-width: 540px; max-height: 540px;
  bottom: -25%; left: -16%;
  background: radial-gradient(circle, rgba(107,18,40,.10), rgba(107,18,40,0) 60%);
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.hero__rating { display: inline-flex; align-items: center; gap: .6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .4rem .9rem .4rem .55rem; box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; }
.hero__rating .stars { display: inline-flex; color: var(--gold); }
.hero__rating .stars svg { width: 16px; height: 16px; }
.hero__rating small { font-size: .82rem; color: var(--muted); }
.hero__rating b { color: var(--ink); }

.hero h1 { margin-bottom: 1.2rem; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 44ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }
.hero__stats { display: flex; gap: clamp(1.2rem, 4vw, 2.6rem); flex-wrap: wrap; }
.hero__stats .stat strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); display: block; line-height: 1; }
.hero__stats .stat span { font-size: .82rem; color: var(--muted); letter-spacing: .03em; }
.hero__stats .stat { border-left: 2px solid var(--gold); padding-left: .9rem; }

/* Hero visual panel */
.hero__visual { position: relative; }
.hero__card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
  background: var(--grad-wine);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(230,200,119,.4);
  display: grid; place-items: center;
}
.hero__card::before { /* subtle radial sheen */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 30% 15%, rgba(230,200,119,.28), transparent 55%);
}
.hero__card .jewel { width: 62%; max-width: 280px; color: var(--gold-soft); filter: drop-shadow(0 12px 30px rgba(0,0,0,.45)); position: relative; }
.hero__card .frame-text { position: absolute; z-index: 2; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: #f3e4c2; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; letter-spacing: .04em; text-shadow: 0 1px 8px rgba(0,0,0,.65); }
.hero__card .corner { position: absolute; z-index: 2; width: 34px; height: 34px; border-color: rgba(230,200,119,.85); }
.hero__card .corner.tl { top: 14px; left: 14px; border-top: 2px solid; border-left: 2px solid; }
.hero__card .corner.tr { top: 14px; right: 14px; border-top: 2px solid; border-right: 2px solid; }
.hero__card .corner.bl { bottom: 14px; left: 14px; border-bottom: 2px solid; border-left: 2px solid; }
.hero__card .corner.br { bottom: 14px; right: 14px; border-bottom: 2px solid; border-right: 2px solid; }
/* Legibility scrim over the photo (top + bottom), so caption/badges read cleanly */
.hero__scrim { position: absolute; inset: 14px; border-radius: 12px; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(18,11,7,.72) 0%, rgba(18,11,7,.12) 26%, rgba(18,11,7,0) 46%, rgba(18,11,7,0) 78%, rgba(18,11,7,.28) 100%); }

.hero__badge {
  position: absolute; z-index: 3; left: -16px; bottom: 84px;
  background: var(--white); border-radius: var(--r-md); padding: .85rem 1.1rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; border: 1px solid var(--line);
}
.hero__badge .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--gold-deep); }
.hero__badge .ic svg { width: 22px; height: 22px; }
.hero__badge b { display: block; font-size: .92rem; color: var(--ink); }
.hero__badge small { font-size: .76rem; color: var(--muted); }
.hero__badge--top { left: auto; right: -16px; bottom: auto; top: 26px; }

/* Decorative mandala + floating jewels inside the hero card */
.hero-mandala { position: absolute; width: 92%; color: rgba(230,200,119,.16); top: 50%; left: 50%; transform: translate(-50%,-52%); animation: spin 60s linear infinite; }
.hero-jewel { position: absolute; color: var(--gold-soft); aspect-ratio: 1; height: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,.4)); }
.hj-tikka { width: 16%; top: 12%; left: 50%; transform: translateX(-50%); opacity: .9; }
.hj-e1 { width: 13%; top: 60%; left: 16%; animation: floaty 7s ease-in-out infinite; }
.hj-e2 { width: 13%; top: 60%; right: 16%; animation: floaty 7s ease-in-out 1s infinite; }
@media (max-width: 600px) { .hero__badge--top { right: 8px; } }

/* =============================================================
   Marquee / trust strip
   ============================================================= */
.trustbar { border-block: 1px solid var(--line); background: var(--cream); }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.2rem; padding-block: 1.3rem; }
.trustbar .item { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink-soft); font-size: .92rem; }
.trustbar .item svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }

/* =============================================================
   Collections
   ============================================================= */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.collection {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem; color: #fff;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  isolation: isolate;
}
.collection:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.collection::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,12,8,0) 28%, rgba(20,12,8,.78) 100%); }
/* Large jewellery line-art graphic */
.collection__art { position: absolute; top: -8%; right: -10%; width: 72%; color: rgba(255,247,222,.9); opacity: .9; filter: drop-shadow(0 8px 16px rgba(0,0,0,.25)); transition: transform .5s var(--ease); z-index: 0; }
.collection:hover .collection__art { transform: rotate(-4deg) scale(1.06); }
.collection__tag { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.25); padding: .3rem .7rem; border-radius: var(--r-pill); }
.collection__body { position: relative; z-index: 2; }
.collection h3 { color: #fff; }
.collection p { color: rgba(255,255,255,.88); font-size: .92rem; margin-top: .3rem; }
.collection .link { margin-top: 1rem; display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 500; color: var(--gold-soft); }
.collection .link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.collection:hover .link svg { transform: translateX(4px); }
/* gradient themes per card */
.bg-bridal  { background: linear-gradient(150deg,#7A1530,#3a0a16); }
.bg-gold    { background: linear-gradient(150deg,#b9882f,#7a5614); }
.bg-diamond { background: linear-gradient(150deg,#3d4f5c,#1b2730); }
.bg-polki   { background: linear-gradient(150deg,#7a5a1e,#4a330e); }
.bg-daily   { background: linear-gradient(150deg,#1F5F4E,#0f3328); }
.bg-silver  { background: linear-gradient(150deg,#6b6f73,#3a3d40); }

/* =============================================================
   Why choose us
   ============================================================= */
.why { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.5rem); }
.feature {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.8rem 1.6rem; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: var(--gold); }
.feature__ic { width: 54px; height: 54px; border-radius: 14px; background: var(--grad-gold); display: grid; place-items: center; color: #2a2008; margin-bottom: 1.1rem; }
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.feature p { font-size: .95rem; }

/* =============================================================
   Bridal split banner
   ============================================================= */
.bridal { background: var(--grad-wine); color: #f5e8cf; position: relative; overflow: hidden; }
.bridal::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; top: -200px; right: -150px; background: radial-gradient(circle, rgba(230,200,119,.18), transparent 60%); }
.bridal .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; position: relative; }
.bridal .eyebrow { color: var(--gold-soft); }
.bridal h2 { color: #fff; margin-block: .8rem 1rem; }
.bridal p { color: rgba(245,232,207,.82); margin-bottom: 1.8rem; max-width: 48ch; }
.bridal__list { display: grid; gap: .7rem; margin-bottom: 2rem; }
.bridal__list li { display: flex; align-items: center; gap: .7rem; color: #f5e8cf; }
.bridal__list svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; }
.bridal__visual { aspect-ratio: 5/4; border-radius: var(--r-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(230,200,119,.35); display: grid; place-items: center; position: relative; overflow: hidden; }
.bridal__art { position: absolute; color: var(--gold-soft); filter: drop-shadow(0 10px 26px rgba(0,0,0,.4)); aspect-ratio: 1; height: auto; }
.bridal__art--main { width: 46%; top: 50%; left: 50%; transform: translate(-50%,-54%); }
.bridal__art--tikka { width: 18%; top: 14%; left: 50%; transform: translateX(-50%); opacity: .92; }
.bridal__art--e1 { width: 15%; bottom: 16%; left: 22%; opacity: .85; animation: floaty 7s ease-in-out infinite; }
.bridal__art--e2 { width: 15%; bottom: 16%; right: 22%; opacity: .85; animation: floaty 7s ease-in-out .8s infinite; }

/* =============================================================
   Testimonials
   ============================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.6rem); }
.testi {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-sm);
}
.testi .stars { display: inline-flex; color: var(--gold); }
.testi .stars svg { width: 18px; height: 18px; }
.testi blockquote { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.45; color: var(--ink); }
.testi__person { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testi__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #2a2008; font-size: 1.05rem; }
.testi__person b { display: block; font-size: .95rem; color: var(--ink); font-weight: 500; }
.testi__person small { color: var(--muted); font-size: .82rem; }

/* ---------- Reviews slider ---------- */
.reviews { position: relative; max-width: 1140px; margin-inline: auto; padding-inline: clamp(0px, 5vw, 3.4rem); }
.reviews__viewport { overflow: hidden; border-radius: var(--r-md); }
.reviews__track { display: flex; align-items: stretch; transition: transform .55s var(--ease); touch-action: pan-y; }
.review { flex: 0 0 33.3333%; padding: .5rem; box-sizing: border-box; }   /* 3 per view (desktop) */
.review .testi { height: 100%; margin: 0; }
.review .testi blockquote { font-size: 1.08rem; }
@media (max-width: 900px) { .review { flex-basis: 50%; } }   /* 2 per view (tablet) */
@media (max-width: 600px) { .review { flex-basis: 100%; } }  /* 1 per view (mobile) */
.reviews__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--gold-deep); z-index: 3; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.reviews__nav:hover { border-color: var(--gold); background: var(--ivory); }
.reviews__nav svg { width: 22px; height: 22px; }
.reviews__prev { left: 0; }
.reviews__prev svg { transform: rotate(180deg); }
.reviews__prev:hover { transform: translateY(-50%) translateX(-2px); }
.reviews__next { right: 0; }
.reviews__next:hover { transform: translateY(-50%) translateX(2px); }
.reviews__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.reviews__dots button { width: 9px; height: 9px; padding: 0; border-radius: 999px; background: var(--sand); transition: width var(--dur) var(--ease), background var(--dur) var(--ease); }
.reviews__dots button[aria-selected="true"] { width: 26px; background: var(--gold); }
@media (max-width: 560px) {
  .reviews { padding-inline: 0; }
  .reviews__nav { width: 40px; height: 40px; background: rgba(255,255,255,.9); backdrop-filter: blur(3px); }
  .reviews__prev { left: 2px; }
  .reviews__next { right: 2px; }
}

/* =============================================================
   Visit Us / Contact
   ============================================================= */
.visit .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: stretch; }
.visit__info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card { display: flex; gap: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.3rem 1.4rem; transition: border-color var(--dur) var(--ease); }
.info-card:hover { border-color: var(--gold); }
.info-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--cream); display: grid; place-items: center; color: var(--gold-deep); flex: none; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.info-card p { color: var(--ink); font-size: 1.02rem; }
.info-card a { color: var(--ink); }
.info-card a:hover { color: var(--gold-deep); }
.visit__map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 420px; box-shadow: var(--shadow-sm); }
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(.9) contrast(1.02); }

/* =============================================================
   CTA strip
   ============================================================= */
.ctastrip { background: var(--cream); }
.ctastrip .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.ctastrip h2 { font-size: clamp(1.7rem,3vw,2.4rem); }
.ctastrip p { color: var(--muted); margin-top: .4rem; }

/* =============================================================
   Footer
   ============================================================= */
.footer { background: var(--ink); color: #cdc2ad; padding-block: clamp(3rem,6vw,4.5rem) 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: var(--gold-soft); }
.footer__brand p { color: #a99e8a; margin-top: 1rem; font-size: .92rem; max-width: 32ch; }
.footer h4 { font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; }
.footer ul { display: grid; gap: .65rem; }
.footer a { color: #cdc2ad; font-size: .94rem; transition: color var(--dur) var(--ease); }
.footer a:hover { color: var(--gold-soft); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #2a2008; }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-block: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8d8473; }

/* Floating WhatsApp */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: var(--z-top);
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }

/* =============================================================
   Hero floating sparkles / gems
   ============================================================= */
.hero__spark { position: absolute; color: var(--gold); pointer-events: none; aspect-ratio: 1; height: auto; animation: floaty 6s ease-in-out infinite; }
.hero__spark.s1 { top: 12%; left: 6%; width: 26px; opacity: .8; animation-delay: 0s; }
.hero__spark.s2 { top: 70%; left: 10%; width: 18px; opacity: .6; animation-delay: 1.2s; }
.hero__spark.s3 { top: 22%; right: 8%; width: 22px; opacity: .7; color: var(--wine); animation-delay: .6s; }
.hero__spark.s4 { bottom: 14%; right: 14%; width: 30px; opacity: .5; animation-delay: 1.8s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(8deg); } }

/* =============================================================
   Craftsmanship / process strip
   ============================================================= */
.craft { background: var(--white); }
.craft-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.craft-step { text-align: center; position: relative; padding: 1.4rem 1rem; }
.craft-step__art { width: 84px; height: 84px; margin: 0 auto 1rem; border-radius: 50%; background: var(--ivory); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-deep); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.craft-step:hover .craft-step__art { transform: translateY(-4px); border-color: var(--gold); }
.craft-step__art svg { width: 44px; height: 44px; }
.craft-step__num { font-family: var(--font-display); font-size: .9rem; color: var(--gold-deep); letter-spacing: .2em; }
.craft-step h3 { font-size: 1.25rem; margin: .3rem 0 .4rem; }
.craft-step p { font-size: .92rem; }
.craft-step:not(:last-child)::after { content: ""; position: absolute; top: 42px; right: -8%; width: 16%; height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px); }
@media (max-width: 760px) { .craft-grid { grid-template-columns: 1fr 1fr; } .craft-step:not(:last-child)::after { display: none; } }
@media (max-width: 420px) { .craft-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Lead form
   ============================================================= */
.lead { background: var(--grad-wine); color: #f5e8cf; position: relative; overflow: hidden; }
.lead .deco { color: var(--gold-soft); opacity: .12; }
.lead .container { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.lead__copy .eyebrow { color: var(--gold-soft); }
.lead__copy h2 { color: #fff; margin: .7rem 0 1rem; }
.lead__copy p { color: rgba(245,232,207,.82); margin-bottom: 1.6rem; max-width: 44ch; }
.lead__points { display: grid; gap: .7rem; }
.lead__points li { display: flex; align-items: center; gap: .7rem; color: #f5e8cf; }
.lead__points svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; }

.lead-form { background: var(--ivory); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); border: 1px solid rgba(230,200,119,.4); }
.lead-form h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.lead-form > p { color: var(--muted); font-size: .92rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .82rem; font-weight: 500; color: var(--ink-soft); margin-bottom: .4rem; }
.field label .req { color: var(--wine); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: .7rem .9rem; font: inherit; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.field input:user-invalid, .field select:user-invalid { border-color: #b3261e; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field__error { display: none; color: #b3261e; font-size: .78rem; margin-top: .35rem; }
.field.has-error .field__error { display: block; }
.field.has-error input, .field.has-error select { border-color: #b3261e; }
.lead-form__note { font-size: .76rem; color: var(--muted); margin-top: .9rem; text-align: center; }
.lead-form .btn[disabled] { opacity: .6; cursor: not-allowed; }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(42,32,8,.35); border-top-color: #2a2008; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 940px) { .lead .container { grid-template-columns: 1fr; } }
@media (max-width: 440px) { .field__row { grid-template-columns: 1fr; } }

/* =============================================================
   Thank-you modal
   ============================================================= */
.modal { position: fixed; inset: 0; z-index: var(--z-top); display: grid; place-items: center; padding: 1.2rem;
  background: rgba(33,26,18,.55); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__card { background: var(--ivory); border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.8rem); max-width: 420px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); border: 1px solid rgba(230,200,119,.5); position: relative;
  transform: translateY(20px) scale(.96); transition: transform var(--dur) var(--ease); }
.modal.is-open .modal__card { transform: none; }
.modal__check { width: 76px; height: 76px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: #2a2008; box-shadow: 0 10px 26px rgba(163,126,44,.4); }
.modal__check svg { width: 40px; height: 40px; }
.modal__card h3 { font-size: 1.9rem; margin-bottom: .5rem; }
.modal__card p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.modal__card .name { color: var(--gold-deep); font-style: italic; }
.modal__close { position: absolute; top: .8rem; right: .8rem; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); }
.modal__close:hover { background: var(--cream); color: var(--ink); }
.modal__close svg { width: 22px; height: 22px; }
.confetti { position: absolute; top: -10px; width: 9px; height: 9px; border-radius: 2px; opacity: 0; }

/* =============================================================
   Image slots + placeholders (drop your own photos in /assets/img)
   ============================================================= */
.shot { position: relative; overflow: hidden; border-radius: var(--r-md); background: var(--cream); aspect-ratio: var(--ratio, 1); }
.shot img { display: block; width: 100%; height: 100%; object-fit: cover; }
.shot--fill, .shot--cover { position: absolute; aspect-ratio: auto; }
.shot--fill { inset: 14px; border-radius: 12px; z-index: 1; }
.shot--cover { inset: 0; border-radius: 0; z-index: 0; background: transparent; }
.shot--card { border: 1px solid var(--line); box-shadow: var(--shadow-sm); }

/* Placeholder shown only when the image file is missing */
.ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; text-align: center; padding: 1rem;
  background:
    repeating-linear-gradient(45deg, rgba(201,162,75,.05) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #f6efe1, #efe5d2);
  border: 2px dashed rgba(201,162,75,.7); border-radius: inherit; color: var(--gold-deep); }
.ph__icon { width: 38px; height: 38px; opacity: .85; }
.ph__label { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); line-height: 1.1; }
.ph__meta { font-size: .7rem; letter-spacing: .03em; color: var(--muted); word-break: break-all; max-width: 90%; }
.ph__hint { font-size: .68rem; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .14em; }
/* Dark variant for placeholders over coloured collection cards */
.collection .ph { background: rgba(20,12,8,.34); border-color: rgba(255,247,222,.6); color: #fff; }
.collection .ph__label { color: #fff; }
.collection .ph__meta, .collection .ph__hint { color: rgba(255,247,222,.85); }

/* =============================================================
   Gallery
   ============================================================= */
.gallery .deco { color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: clamp(.6rem, 1.4vw, 1rem); }
.gallery__item { aspect-ratio: 1; cursor: pointer; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; aspect-ratio: 1; } }

/* =============================================================
   Scroll reveal
   ============================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .bridal .container { grid-template-columns: 1fr; }
  .bridal__visual { order: -1; }
  .visit .container { grid-template-columns: 1fr; }
  .collections-grid, .feature-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 600px) {
  .collections-grid, .feature-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .ctastrip .container { flex-direction: column; text-align: center; align-items: center; }
  .hero__badge { left: 8px; }
}
@media (max-width: 480px) {
  .nav__cta .btn--primary { display: none; } /* CTA lives in the drawer on tiny screens */
}

/* =============================================================
   Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =============================================================
   Legal pages (Privacy Policy)
   ============================================================= */
.page-hero { background: var(--grad-wine); color: #f5e8cf; padding-block: clamp(2.8rem, 6vw, 4.5rem); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; top: -240px; right: -120px; background: radial-gradient(circle, rgba(230,200,119,.18), transparent 60%); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.3rem); margin-block: .6rem .7rem; }
.page-hero p { color: rgba(245,232,207,.82); }
.page-hero .eyebrow { color: var(--gold-soft); }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .85rem; color: rgba(245,232,207,.7); margin-top: 1rem; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

.legal { background: var(--white); }
.legal__wrap { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: clamp(1.45rem, 3vw, 1.95rem); margin-top: 2.6rem; margin-bottom: .7rem; scroll-margin-top: 100px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.15rem; margin-top: 1.6rem; margin-bottom: .5rem; }
.legal p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.35rem; margin-bottom: 1.1rem; display: grid; gap: .55rem; }
.legal li { color: var(--ink-soft); line-height: 1.75; }
.legal a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--wine); }
.legal strong { color: var(--ink); font-weight: 600; }

.legal__updated { display: inline-flex; align-items: center; gap: .5rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .45rem 1rem; font-size: .84rem; color: var(--ink-soft); margin-bottom: 2rem; }
.legal__updated svg { width: 16px; height: 16px; color: var(--gold-deep); }

.legal__toc { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem 1.7rem; margin-bottom: 2.6rem; }
.legal__toc h2 { margin: 0 0 .9rem; font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.legal__toc ol { margin: 0; padding-left: 1.2rem; display: grid; gap: .45rem; list-style: decimal; }
.legal__toc a { color: var(--ink-soft); text-decoration: none; }
.legal__toc a:hover { color: var(--gold-deep); text-decoration: underline; }

.legal__card { background: var(--ivory); border: 1px solid var(--gold); border-radius: var(--r-md); padding: 1.7rem; margin-top: 2.6rem; }
.legal__card h2 { margin-top: 0; }
.legal__card ul { list-style: none; padding-left: 0; }
.legal__card li { display: flex; gap: .65rem; align-items: flex-start; }
.legal__card svg { width: 18px; height: 18px; color: var(--gold-deep); flex: none; margin-top: 4px; }
.legal__back { margin-top: 2.5rem; display: flex; justify-content: center; }
