/* ───────────────────────────────────────────────────
   SWARN SAGAR JEWELLERS — Deoli, Tonk
   Palette: Heritage Ivory (Indian jewellery, research-led)
   ivory canvas · espresso ink · gold metallic · maroon CTA
   ─────────────────────────────────────────────────── */

:root {
  --bg: #fbf7f0;          /* warm ivory canvas */
  --bg-2: #f4ece0;        /* section panels */
  --bg-3: #efe4d2;        /* cards */
  --ink: #2a1e15;         /* espresso text (softer than black) */
  --ink-2: rgba(42, 30, 21, 0.66);
  --ink-3: rgba(42, 30, 21, 0.42);
  --line: rgba(42, 30, 21, 0.14);
  --gold: #b8893b;        /* antique gold */
  --gold-bright: #d4a24e; /* lit gold */
  --maroon: #7a1f2b;      /* auspicious CTA / heritage emphasis */
  --maroon-deep: #5e1620;
  --green: #2f6b4f;       /* Mughal emerald, positive notes */
  --deep: #2e1a12;        /* footer band only */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --pad: clamp(20px, 5vw, 110px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold); color: #fff; }

body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-weight: 300; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden; cursor: none;
}
body.loading { overflow: hidden; height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* media fallback — warm so slots never look broken */
.hero-img, .ch-media img, .rs-img, .coll-img img, .rev-photo img, .sp-img img {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(184,137,59,0.28) 0%, transparent 60%),
    linear-gradient(160deg, #efe0c8 0%, #e6d4b8 70%);
}

/* ─── PRELOADER ─── */
.preloader { position: fixed; inset: 0; z-index: 9000; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity 1s cubic-bezier(.65,0,.35,1), visibility 1s; }
.preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { width: min(620px, 86vw); text-align: center; }
.pre-bless { font-family: var(--serif); font-size: clamp(13px,1.6vw,17px); letter-spacing: 0.14em; color: var(--gold); margin-bottom: 18px; opacity: 0; animation: blessIn 1.1s ease .15s forwards; }
@keyframes blessIn { to { opacity: 1; } }
.pre-deva { font-family: var(--serif); font-size: clamp(30px,5vw,52px); color: var(--maroon); margin-bottom: 14px; font-weight: 500; }
.pre-logo { font-family: var(--serif); font-size: clamp(30px,6vw,64px); letter-spacing: 0.26em; display: flex; justify-content: center; margin-bottom: 40px; padding-left: 0.26em; overflow: hidden; }
.pl { display: inline-block; transform: translateY(110%); animation: plFall 1s cubic-bezier(.65,0,.35,1) forwards; animation-delay: var(--d); color: var(--gold); }
@keyframes plFall { to { transform: translateY(0); } }
.pre-bar { width: 100%; height: 1px; background: var(--line); overflow: hidden; margin-bottom: 16px; }
.pre-bar span { display: block; height: 100%; width: 0; background: var(--gold); transition: width .4s linear; }
.pre-meta { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); }

/* ─── CURSOR ─── */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; }
.cursor { width: 6px; height: 6px; background: var(--maroon); transform: translate(-50%,-50%); transition: width .25s, height .25s; }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(122,31,43,0.4); transform: translate(-50%,-50%); transition: width .3s, height .3s, border-color .3s; }
.cursor.hover { width: 10px; height: 10px; }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none), (max-width: 900px) { body { cursor: auto; } .cursor, .cursor-ring { display: none; } a, button { cursor: pointer; } }

/* ─── NAV ─── */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 24px var(--pad); background: linear-gradient(180deg, rgba(251,247,240,0.92) 0%, rgba(251,247,240,0) 100%); backdrop-filter: blur(6px); }
.logo { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; color: var(--ink); }
.logo.lg { font-size: 38px; }
@media (max-width: 560px) { .logo { font-size: 21px; } }
.nav-links { display: flex; gap: 36px; list-style: none; font-size: 13px; letter-spacing: 0.06em; }
.nav-links a { color: var(--ink-2); transition: color .3s; }
.nav-links a:hover { color: var(--maroon); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-wa { font-size: 12px; letter-spacing: 0.1em; color: var(--green); transition: color .3s; }
.nav-wa:hover { color: var(--ink); }
.nav-cta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 12px 24px; background: var(--maroon); color: #fff; border-radius: 999px; transition: background .35s; }
.nav-cta:hover { background: var(--maroon-deep); }
@media (max-width: 900px) { .nav-links { display: none; } .nav-wa { display: none; } }

/* ─── HERO ─── */
.hero { position: relative; height: 100vh; min-height: 660px; display: flex; align-items: center; padding: 0 var(--pad); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(90deg, rgba(251,247,240,0.94) 0%, rgba(251,247,240,0.72) 38%, rgba(251,247,240,0.25) 70%, rgba(251,247,240,0.5) 100%),
  linear-gradient(180deg, rgba(251,247,240,0.6) 0%, transparent 35%, transparent 60%, rgba(251,247,240,0.85) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--maroon); margin-bottom: 26px; }
.hero-title { font-family: var(--serif); font-size: clamp(50px,8.5vw,140px); line-height: 1; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 30px; color: var(--ink); }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.ital { font-style: italic; color: var(--gold); }
.hero-title [data-split] { display: inline-block; }
.hero-sub { font-size: clamp(15px,1.2vw,18px); line-height: 1.7; color: var(--ink-2); max-width: 540px; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

.btn-primary { display: inline-block; padding: 18px 40px; background: var(--maroon); color: #fff; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; border-radius: 999px; transition: background .35s; will-change: transform; border: 0; cursor: none; font-family: var(--sans); }
.btn-primary:hover { background: var(--maroon-deep); }
.btn-ghost { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); position: relative; padding-bottom: 4px; }
.btn-ghost::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform-origin: right; transform: scaleX(1); transition: transform .4s cubic-bezier(.65,0,.35,1); }
.btn-ghost:hover::after { transform-origin: left; transform: scaleX(0); }
.btn-ghost span { display: inline-block; transition: transform .3s; }
.btn-ghost:hover span { transform: translateX(5px); }

/* ─── TRUST BAR ─── */
.trustbar { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg,#fff 0%,var(--bg-2) 100%); }
.tb-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; padding: 38px 22px; border-right: 1px solid var(--line); }
.tb-item:last-child { border-right: 0; }
.tb-mark { color: var(--gold); font-size: 20px; line-height: 1; }
.tb-item strong { display: block; font-family: var(--serif); font-size: 19px; font-weight: 500; letter-spacing: 0.005em; color: var(--ink); }
.tb-item small { font-size: 12px; letter-spacing: 0.03em; color: var(--ink-2); line-height: 1.4; }
@media (max-width: 1024px) {
  .trustbar { grid-template-columns: repeat(2,1fr); }
  .tb-item { border-bottom: 1px solid var(--line); padding: 26px 18px; }
  .tb-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .tb-item:nth-child(even) { border-right: 0; }
  .tb-item:last-child { grid-column: 1 / -1; border-bottom: 0; }
}
@media (max-width: 560px) {
  .tb-item strong { font-size: 17px; }
  .tb-item small { font-size: 11.5px; }
  .tb-mark { font-size: 17px; }
}

/* ─── LIVE RATE STRIP (hidden for now — restore by removing this display:none) ─── */
.rates { display: none !important; }
.rates-disabled { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 44px; padding: 22px var(--pad); background: var(--maroon); color: #fff; }
.rate-item { display: flex; align-items: baseline; gap: 8px; }
.rate-k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.rate-v { font-family: var(--serif); font-size: 24px; font-weight: 500; color: #fff; }
.rate-v.pulse { animation: rpulse .6s ease; }
@keyframes rpulse { 0%{opacity:.3} 100%{opacity:1} }
.rate-u { font-size: 11px; color: rgba(255,255,255,0.55); }
.rate-note { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; width: 100%; text-align: center; margin-top: 4px; }
.rate-note a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.5); }
@media (max-width: 700px) { .rates { gap: 12px 26px; } .rate-v { font-size: 20px; } }

/* ─── CHAPTERS ─── */
.chapter { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px var(--pad); overflow: hidden; }
.ch-media { position: absolute; inset: 0; z-index: 0; }
.ch-media img { width: 100%; height: 120%; object-fit: cover; }
.ch-tint { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(251,247,240,0.985) 0%, rgba(251,247,240,0.92) 38%, rgba(251,247,240,0.55) 70%, rgba(251,247,240,0.3) 100%),
  linear-gradient(180deg, var(--bg) 0%, transparent 26%, transparent 74%, var(--bg) 100%); }
.chapter.alt { justify-content: flex-end; }
.chapter.alt .ch-tint { background:
  linear-gradient(270deg, rgba(251,247,240,0.985) 0%, rgba(251,247,240,0.92) 38%, rgba(251,247,240,0.55) 70%, rgba(251,247,240,0.3) 100%),
  linear-gradient(180deg, var(--bg) 0%, transparent 26%, transparent 74%, var(--bg) 100%); }
.chapter.alt .ch-text { text-align: right; }
.chapter.alt .ch-text p { margin-left: auto; }
.ch-text { position: relative; z-index: 2; max-width: 620px; }
.ch-num { display: inline-block; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--maroon); margin-bottom: 22px; }
.ch-head { font-family: var(--serif); font-size: clamp(46px,7vw,114px); line-height: 0.98; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 26px; color: var(--ink); }
.ch-head .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.ch-head [data-split] { display: inline-block; }
.ch-text p { font-size: clamp(15px,1.2vw,18px); line-height: 1.75; color: var(--ink); max-width: 480px; }
@media (max-width: 760px) {
  .chapter, .chapter.alt { justify-content: flex-start; }
  .chapter.alt .ch-text { text-align: left; }
  .chapter.alt .ch-text p { margin-left: 0; }
  .ch-tint, .chapter.alt .ch-tint { background:
    linear-gradient(180deg, rgba(251,247,240,0.97) 0%, rgba(251,247,240,0.86) 40%, rgba(251,247,240,0.55) 75%, rgba(251,247,240,0.9) 100%); }
}

/* ─── REVEAL STAGE (Ch III) ─── */
.reveal-stage { position: relative; height: 220vh; }
.rs-pin { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rs-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.rs-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(251,247,240,0.15) 0%, rgba(251,247,240,0.62) 62%, var(--bg) 100%); }
.rs-copy { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 var(--pad); }
.rs-copy .ch-num { margin-bottom: 18px; }
.rs-head { font-family: var(--serif); font-size: clamp(52px,9vw,150px); line-height: 0.98; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 22px; color: var(--ink); }
.rs-head .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.rs-head [data-split] { display: inline-block; }
.rs-copy p { font-family: var(--serif); font-style: italic; font-size: clamp(18px,2vw,28px); color: var(--maroon); }

/* ─── SECTION HEAD ─── */
.section-head { padding: 150px var(--pad) 80px; max-width: 1000px; }
.section-title { font-family: var(--serif); font-size: clamp(40px,6vw,96px); line-height: 1.02; font-weight: 300; letter-spacing: -0.01em; margin-top: 16px; color: var(--ink); }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--ink); }
.section-sub { font-size: clamp(14px,1.1vw,17px); color: var(--ink-2); margin-top: 22px; max-width: 520px; line-height: 1.7; }

/* ─── COLLECTION ─── */
.collection { padding-bottom: 150px; }
.coll-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; padding: 0 var(--pad); }
.coll-card { position: relative; will-change: transform; background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: 14px; }
.coll-img { aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; position: relative; }
.coll-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.65,0,.35,1); }
.coll-card:hover .coll-img img { transform: scale(1.05); }
.cert-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: rgba(122,31,43,0.92); padding: 6px 11px; border-radius: 999px; }
.coll-info { padding: 20px 6px 4px; }
.coll-info h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: 0.01em; color: var(--ink); }
.spec { list-style: none; margin: 14px 0; border-top: 1px solid var(--line); }
.spec li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.spec li span { color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.spec li b { color: var(--ink-2); font-weight: 500; }
.price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 14px; }
.price { font-family: var(--serif); font-size: 26px; color: var(--maroon); line-height: 1; font-weight: 500; }
.price small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; font-weight: 400; }
.enquire { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: color .3s; }
.enquire:hover { color: var(--maroon); }
@media (max-width: 1024px) { .coll-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .coll-grid { grid-template-columns: 1fr; } }

/* ─── TRANSPARENT PRICING ─── */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 60px var(--pad) 150px; align-items: center; max-width: 1400px; margin: 0 auto; }
.pr-left .eyebrow { margin-bottom: 18px; }
.pr-left .section-title { margin-top: 0; }
.pr-left p { font-size: clamp(15px,1.2vw,17px); color: var(--ink-2); margin-top: 22px; line-height: 1.75; max-width: 460px; }
.pr-meta { display: flex; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.pr-meta strong { display: block; font-family: var(--serif); font-size: 34px; color: var(--maroon); font-weight: 500; }
.pr-meta small { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.pr-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 40px; box-shadow: 0 24px 60px -30px rgba(42,30,21,0.25); }
.prc-head { font-family: var(--serif); font-size: 20px; color: var(--ink); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.prc-rows { list-style: none; margin: 8px 0; }
.prc-rows li { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-2); }
.prc-rows li b { color: var(--ink); font-weight: 500; }
.prc-total { display: flex; justify-content: space-between; align-items: center; padding: 24px 0 16px; }
.prc-total span { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.prc-total b { font-family: var(--serif); font-size: 32px; color: var(--maroon); font-weight: 600; }
.prc-note { font-size: 12px; color: var(--green); letter-spacing: 0.02em; font-weight: 400; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; gap: 48px; } }

/* ─── REVIEWS ─── */
.reviews { padding-bottom: 140px; }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 0 var(--pad); }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 18px 50px -34px rgba(42,30,21,0.3); }
.rev-photo { aspect-ratio: 4/3; overflow: hidden; }
.rev-photo img { width: 100%; height: 100%; object-fit: cover; }
.rev-card blockquote { font-family: var(--serif); font-size: 18px; line-height: 1.5; font-style: italic; color: var(--ink); padding: 30px 30px 20px; }
.rev-card figcaption { padding: 0 30px 30px; display: flex; flex-direction: column; gap: 4px; }
.rev-card figcaption strong { font-size: 14px; font-weight: 500; color: var(--ink); }
.rev-card figcaption span { font-size: 12px; letter-spacing: 0.06em; color: var(--ink-3); }
.stars { color: var(--gold) !important; letter-spacing: 2px; margin-top: 4px; }
@media (max-width: 1024px) { .rev-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ─── HERITAGE + STORE ─── */
.heritage { padding: 40px var(--pad) 150px; max-width: 1200px; margin: 0 auto; }
.her-line { display: flex; align-items: baseline; gap: 40px; padding: 44px 0; border-bottom: 1px solid var(--line); }
.her-line:first-child { border-top: 1px solid var(--line); }
.her-line .big { font-family: var(--serif); font-size: clamp(58px,9vw,140px); line-height: 1; color: var(--gold); font-weight: 400; min-width: 2.4ch; text-align: right; }
.her-line .sm { font-family: var(--serif); font-style: italic; font-size: clamp(18px,2.2vw,32px); color: var(--ink-2); }
.store-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 80px; }
.sp-text h4 { font-family: var(--serif); font-size: clamp(28px,3vw,44px); font-weight: 500; margin-bottom: 18px; color: var(--ink); }
.sp-text p { font-size: 15px; color: var(--ink-2); line-height: 1.75; margin-bottom: 26px; max-width: 40ch; }
.sp-img { aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; }
.sp-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .store-proof { grid-template-columns: 1fr; gap: 32px; } .her-line { flex-direction: column; gap: 6px; } .her-line .big { text-align: left; min-width: 0; } }

/* ─── APPOINTMENT ─── */
.appointment { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; padding: 120px var(--pad); text-align: center; overflow: hidden; background: var(--bg-2); }
.bs-glow { position: absolute; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; background: radial-gradient(circle, rgba(184,137,59,0.18) 0%, transparent 60%); border-radius: 50%; filter: blur(40px); }
.ap-content { position: relative; z-index: 2; max-width: 900px; width: 100%; }
.bs-title { font-family: var(--serif); font-size: clamp(38px,6vw,100px); line-height: 1.02; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 26px; color: var(--ink); }
.bs-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.bs-title [data-split] { display: inline-block; }
.ap-content p { font-size: clamp(15px,1.2vw,18px); color: var(--ink-2); max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }
.ap-actions { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 50px; }
.ap-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; max-width: 800px; margin: 0 auto; }
.ap-form input, .ap-form select { background: #fff; border: 1px solid var(--line); color: var(--ink); padding: 16px 18px; border-radius: 6px; font-family: var(--sans); font-size: 14px; cursor: none; }
.ap-form input::placeholder { color: var(--ink-3); }
.ap-form button { white-space: nowrap; }
@media (max-width: 760px) { .ap-form { grid-template-columns: 1fr; } }

/* ─── OWNER NOTE ─── */
.owner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; padding: 60px var(--pad) 150px; max-width: 1300px; margin: 0 auto; }
.ow-photo { border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 70px -36px rgba(42,30,21,0.4); }
.ow-photo img { width: 100%; height: 100%; object-fit: cover; }
.ow-text .eyebrow { margin-bottom: 20px; }
.ow-text blockquote { font-family: var(--serif); font-size: clamp(24px,2.8vw,40px); line-height: 1.32; font-style: italic; color: var(--ink); margin-bottom: 30px; }
.ow-text p { display: flex; flex-direction: column; gap: 4px; }
.ow-text p strong { font-size: 16px; font-weight: 500; color: var(--ink); }
.ow-text p span { font-size: 13px; letter-spacing: 0.06em; color: var(--ink-3); }
.ow-bless { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 20px; color: var(--gold); letter-spacing: 0.08em; }
.ow-bless small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); margin-top: 6px; }
@media (max-width: 860px) { .owner { grid-template-columns: 1fr; gap: 36px; } .ow-photo { max-width: 420px; } }

/* ─── VISIT ─── */
.visit { padding-bottom: 150px; }
.visit-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; padding: 0 var(--pad); align-items: center; }
.vi-img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 26px 64px -36px rgba(42,30,21,0.4); }
.vi-img img { width: 100%; height: 100%; object-fit: cover; }
.vi-row { padding: 22px 0; border-bottom: 1px solid var(--line); }
.vi-row:first-child { border-top: 1px solid var(--line); }
.vi-row h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.vi-row p { font-size: 16px; line-height: 1.7; color: var(--ink); font-family: var(--serif); }
.vi-row em { color: var(--maroon); font-size: 13px; font-family: var(--sans); font-style: italic; }
.vi-info .btn-primary { margin-top: 30px; }
.vi-map { margin: 50px var(--pad) 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: 0 22px 56px -34px rgba(42,30,21,0.32); }
.vi-map iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.9) contrast(1.02); }
.vi-map-cta { display: block; text-align: center; padding: 18px; background: var(--maroon); color: #fff; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; transition: background .3s; }
.vi-map-cta:hover { background: var(--maroon-deep); }
@media (max-width: 600px) { .vi-map iframe { height: 320px; } }
.vi-interior { padding: 50px var(--pad) 0; max-width: 1000px; margin: 0 auto; text-align: center; }
.vi-cap { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(15px,1.4vw,19px); color: var(--ink-3); margin-bottom: 22px; }
.vi-int-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vi-int-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; filter: saturate(0.96); }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; gap: 32px; } .vi-int-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER (deep band — only dark allowed) ─── */
.footer { position: relative; padding: 120px var(--pad) 40px; background: var(--deep); color: #f2ebdd; overflow: hidden; }
.foot-bleed { position: absolute; left: 0; right: 0; bottom: -0.16em; font-family: var(--serif); font-size: clamp(100px,20vw,320px); font-weight: 400; line-height: 0.9; letter-spacing: 0.06em; color: transparent; -webkit-text-stroke: 1px rgba(212,162,78,0.12); text-align: center; pointer-events: none; user-select: none; }
.footer .logo { color: #f2ebdd; }
.foot-grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(242,235,221,0.12); }
.foot-tag { font-size: 14px; color: rgba(242,235,221,0.66); margin-top: 18px; max-width: 26ch; }
.foot-grid h5 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(242,235,221,0.4); margin-bottom: 16px; }
.foot-grid p { font-size: 14px; line-height: 1.8; color: rgba(242,235,221,0.66); }
.foot-bottom { position: relative; display: flex; justify-content: space-between; padding-top: 30px; font-size: 12px; letter-spacing: 0.06em; color: rgba(242,235,221,0.4); }
@media (max-width: 768px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .foot-bottom { flex-direction: column; gap: 10px; } }

/* ─── STICKY MOBILE BAR ─── */
.mbar { display: none; }
@media (max-width: 900px) {
  .mbar { display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 30px -16px rgba(42,30,21,0.3); }
  .mbar a { padding: 16px 0; text-align: center; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); border-right: 1px solid var(--line); }
  .mbar a:last-child { border-right: 0; }
  .mbar-wa { background: var(--maroon); color: #fff !important; }
  body { padding-bottom: 52px; }
}

/* ─── REVEAL PRIMITIVES ─── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1.1s cubic-bezier(.65,0,.35,1), transform 1.1s cubic-bezier(.65,0,.35,1); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-split] { display: inline-block; transform: translateY(110%); transition: transform 1.15s cubic-bezier(.65,0,.35,1); }
[data-split].in { transform: translateY(0); }

@media (max-width: 900px) {
  [data-tilt] { transform: none !important; }
  .hero { min-height: 600px; }
  .reveal-stage { height: 150vh; }
  .ch-media img { height: 100%; }
}

/* ─── MOBILE EXPERIENCE TUNING ─── */
@media (max-width: 760px) {
  /* shorter hero — trust bar visible sooner */
  .hero { height: 82vh; min-height: 540px; }
  .hero-title { font-size: clamp(44px,12vw,72px); }

  /* thumb-friendly tap targets (min 48px) */
  .btn-primary { padding: 18px 34px; }
  .nav-cta { padding: 14px 22px; }
  .enquire { display: inline-block; padding: 10px 0; }
  .mbar a { padding: 18px 0; font-size: 13px; }
  .vi-row a, .ow-text a, .nav-wa { display: inline-block; padding: 4px 0; }

  /* readable minimum type */
  .section-sub, .ch-text p, .ap-content p, .mr-head p { font-size: 15px; }
  .coll-info span, .vi-row em, .foot-grid p, .pre-meta { font-size: 12px; }

  /* collection: app-like horizontal swipe */
  .coll-grid {
    grid-template-columns: none;
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--pad) 6px;
    scrollbar-width: none;
  }
  .coll-grid::-webkit-scrollbar { display: none; }
  .coll-card {
    flex: 0 0 78%; scroll-snap-align: center;
  }
  .coll-card:last-child { margin-right: var(--pad); }

  /* keep content clear of FAB + mobile bar */
  .footer { padding-bottom: 90px; }

  /* compress oversized desktop section padding on mobile */
  .section-head { padding: 70px var(--pad) 36px; }
  .owner { padding: 40px var(--pad) 60px; gap: 28px; }
  .pricing { padding: 30px var(--pad) 64px; }
  .collection { padding-bottom: 64px; }
  .reviews { padding-bottom: 64px; }
  .heritage { padding: 24px var(--pad) 64px; }
  .visit { padding-bottom: 64px; }
  .chapter { padding: 80px var(--pad); min-height: 78vh; }
  .ow-photo { max-width: 100%; aspect-ratio: 4/4; }
  .vi-map { margin-top: 28px; }
  .vi-interior { padding-top: 28px; }
  .store-proof { margin-top: 36px; }
}
