/* ============================================================
   ROSY GOLD JEWELLERY CO — design system
   Navy + gold editorial. Cormorant Garamond / Mulish / Tajawal.
   ============================================================ */

:root {
  /* brand */
  --navy:      #16243f;
  --navy-900:  #0d1730;
  --navy-800:  #142039;
  --navy-700:  #1d2c4a;
  --gold:      #c39b46;
  --gold-300:  #e6cd92;
  --gold-400:  #d4b25f;
  --gold-600:  #a67f2c;
  --ivory:     #f6f1e7;
  --paper:     #fffdf8;
  --slate:     #7c8596;
  --ink:       #182135;
  --line:      rgba(22, 36, 63, 0.12);
  --line-soft: rgba(22, 36, 63, 0.07);

  /* semantic (light theme default) */
  --bg:        var(--ivory);
  --surface:   var(--paper);
  --text:      var(--ink);
  --text-soft: #5a6373;
  --heading:   var(--navy);
  --accent:    var(--gold);
  --accent-deep: var(--gold-600);

  --gold-grad: linear-gradient(135deg, #e6cd92 0%, #c39b46 38%, #9c7426 72%, #d9bd76 100%);

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Mulish", system-ui, sans-serif;
  --arab:  "Tajawal", var(--sans);
  --r: 3px;

  --serif-scale: 1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- type ---------- */
.serif { font-family: var(--serif); }
h1, h2, h3, .display {
  font-family: var(--serif);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: calc(clamp(2.9rem, 7vw, 5.6rem) * var(--serif-scale)); }
h2 { font-size: calc(clamp(2.1rem, 4.6vw, 3.6rem) * var(--serif-scale)); font-weight: 500; }
h3 { font-size: calc(clamp(1.35rem, 2.4vw, 1.85rem) * var(--serif-scale)); }
p  { margin: 0; text-wrap: pretty; }

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.kicker.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.kicker.center { justify-content: center; }
.kicker.bare::before { display: none; }

.lede { font-size: 1.12rem; color: var(--text-soft); line-height: 1.7; }
.eyebrow { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: var(--slate); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 10vw, 132px); }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

.btn-gold {
  background: var(--gold-grad);
  color: #2a1f06;
  box-shadow: 0 8px 26px -12px rgba(163, 124, 38, 0.8);
}
.btn-gold:hover { box-shadow: 0 14px 34px -12px rgba(163, 124, 38, 0.95); }

.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: var(--navy-700); }

.btn-ghost { background: transparent; color: var(--heading); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { border-color: var(--gold-300); color: var(--gold-300); }

.btn-sm { padding: 11px 18px; font-size: 0.7rem; }

/* link with arrow */
.linkarrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-deep);
}
.linkarrow svg { width: 15px; height: 15px; transition: transform .25s ease; }
.linkarrow:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.hdr-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut);
  height: 104px; display: flex; align-items: center; justify-content: space-between;
  transition: height .35s ease;
}
.hdr.scrolled { background: rgba(13,23,48,0.94); backdrop-filter: blur(12px); border-color: rgba(255,255,255,0.08); }
.hdr.scrolled .hdr-inner { height: 88px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 88px; height: 88px; transition: width .3s, height .3s; }
.hdr.scrolled .brand img { width: 72px; height: 72px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b {
  font-family: var(--serif); font-weight: 600; font-size: 1.32rem; letter-spacing: 0.14em;
  color: #fff;
}
.brand-txt span {
  font-size: 0.52rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-300); margin-top: 3px; font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.82); position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold-300); transition: width .3s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.hdr-cta { display: flex; align-items: center; gap: 16px; }
.burger { display: none; background: none; border: 0; padding: 8px; color: #fff; }
.burger svg { width: 26px; height: 26px; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: var(--navy-900);
  display: flex; flex-direction: column;
  padding: 28px var(--gut);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
  visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-top button { background: none; border: 0; color: #fff; padding: 8px; }
.drawer-top button svg { width: 26px; height: 26px; }
.drawer nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.drawer nav a {
  font-family: var(--serif); font-size: 2rem; color: #fff; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer nav a span { font-family: var(--sans); font-size: 0.7rem; color: var(--gold-300); letter-spacing: 0.2em; }
.drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: stretch; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13,23,48,0.18) 0%, rgba(13,23,48,0.42) 42%, rgba(13,23,48,0.86) 100%),
    linear-gradient(to top, rgba(13,23,48,0.7), transparent 40%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: var(--maxw);
  margin: 0 auto; padding: 0 var(--gut);
  width: 100%; display: flex; align-items: center;
}
.hero-content {
  margin-left: auto; max-width: 620px; padding: 140px 0 90px;
  color: #fff;
}
.hero[data-align="center"] .hero-content { margin: 0 auto; text-align: center; align-items: center; }
.hero[data-align="left"] .hero-content { margin-right: auto; margin-left: 0; }
.hero-content h1 { color: #fff; margin: 22px 0 0; }
.hero-content h1 em { font-style: italic; color: var(--gold-300); }
.hero-content .lede { color: rgba(255,255,255,0.82); margin-top: 24px; max-width: 48ch; }
.hero[data-align="center"] .hero-content .lede { margin-inline: auto; }
.hero-arab { font-family: var(--arab); font-size: 1.5rem; color: var(--gold-300); direction: rtl; margin-bottom: 4px; opacity: .92; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero[data-align="center"] .hero-actions { justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,0.6); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,0.6), transparent); }

/* ---------- trust strip ---------- */
.trust {
  background: var(--navy); color: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; align-items: center; gap: 14px; padding: 26px 22px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold-300); flex: none; }
.trust-item b { font-family: var(--serif); font-size: 1.18rem; color: #fff; font-weight: 600; display: block; line-height: 1.1; }
.trust-item small { font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }

/* ---------- collections ---------- */
.coll-grid {
  display: grid; gap: 18px; margin-top: 56px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 230px;
}
.coll-card {
  position: relative; overflow: hidden; border-radius: var(--r);
  background: var(--navy); cursor: pointer; isolation: isolate;
}
.coll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.coll-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,38,0.9) 4%, rgba(10,18,38,0.15) 52%, rgba(10,18,38,0.35) 100%);
  z-index: 1; transition: background .4s;
}
.coll-card:hover img { transform: scale(1.06); }
.coll-card-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; color: #fff; }
.coll-card-body h3 { color: #fff; }
.coll-card-body .ct { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 4px; }
.coll-card .cnum {
  position: absolute; top: 18px; left: 20px; z-index: 2;
  font-family: var(--serif); font-size: 0.92rem; font-style: italic; color: var(--gold-300);
}
.coll-card .cenq {
  position: absolute; top: 18px; right: 20px; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-300); opacity: 0; transform: translateY(-4px); transition: .35s;
}
.coll-card:hover .cenq { opacity: 1; transform: none; }
/* spans */
.c-tall { grid-row: span 2; }
.c-wide { grid-column: span 2; }

/* ---------- featured / spotlight ---------- */
.spot { background: var(--surface); }
.spot-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 76px); align-items: center; }
.spot-figure { position: relative; }
.spot-figure img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: var(--r); }
.spot-figure .tag {
  position: absolute; left: 18px; top: 18px;
  background: rgba(13,23,48,0.82); color: var(--gold-300); backdrop-filter: blur(4px);
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  padding: 8px 13px; border-radius: 100px;
}
.spec-list { margin: 30px 0; border-top: 1px solid var(--line); }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.spec-row dt { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); font-weight: 700; }
.spec-row dd { margin: 0; font-family: var(--serif); font-size: 1.32rem; color: var(--heading); }
.price-note { font-size: 0.82rem; color: var(--text-soft); font-style: italic; margin-bottom: 26px; }

/* dual product strip */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 64px; }
.pcard { background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; display: flex; }
.pcard img { width: 44%; object-fit: cover; }
.pcard-body { padding: 24px 26px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.pcard-body .code { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; }
.pcard-body h3 { font-size: 1.4rem; }
.pcard-body .meta { font-size: 0.85rem; color: var(--text-soft); }

/* ---------- gold rate ---------- */
.rate { background: var(--navy); color: #fff; overflow: hidden; position: relative; }
.rate::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 10%, rgba(195,155,70,0.18), transparent 55%);
}
.rate-grid { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.rate h2 { color: #fff; }
.rate p { color: rgba(255,255,255,0.78); margin-top: 16px; max-width: 52ch; }
.rate-cards { display: flex; gap: 14px; }
.rate-card {
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r);
  padding: 22px 26px; text-align: center; min-width: 118px;
  background: rgba(255,255,255,0.03);
}
.rate-card .k { font-family: var(--serif); font-size: 2rem; color: var(--gold-300); }
.rate-card .v { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }
.rate-card .dash { font-family: var(--serif); font-size: 1.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.svc {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: 32px 28px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc:hover { transform: translateY(-5px); box-shadow: 0 22px 50px -30px rgba(22,36,63,0.45); border-color: var(--line); }
.svc-ic {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--accent); color: var(--accent-deep); margin-bottom: 22px;
}
.svc-ic svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.32rem; }
.svc p { font-size: 0.92rem; color: var(--text-soft); margin-top: 10px; }
.svc .note { font-size: 0.72rem; color: var(--slate); margin-top: 14px; font-style: italic; }

/* ---------- gallery ---------- */
.gal { background: var(--navy-900); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; margin-top: 52px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; background: var(--navy-800); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); filter: saturate(1.02); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(8,14,30,0.55)); opacity: 0; transition: .35s; }
.gal-item:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 90; background: rgba(8,12,24,0.94); display: grid; place-items: center; padding: 30px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lb.open { opacity: 1; pointer-events: auto; }
.lb img { max-width: 90vw; max-height: 86vh; border-radius: var(--r); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lb-close { position: absolute; top: 24px; right: 28px; background: none; border: 0; color: #fff; padding: 8px; }
.lb-close svg { width: 30px; height: 30px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; width: 52px; height: 52px; display: grid; place-items: center; color: #fff; }
.lb-nav:hover { background: rgba(255,255,255,0.16); }
.lb-nav.prev { left: 24px; } .lb-nav.next { right: 24px; }
.lb-nav svg { width: 24px; height: 24px; }
.lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.7); font-size: 0.8rem; letter-spacing: 0.08em; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.visit-info { display: flex; flex-direction: column; }
.info-list { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; gap: 16px; }
.info-row svg { width: 22px; height: 22px; color: var(--accent-deep); flex: none; margin-top: 3px; }
.info-row .lbl { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); font-weight: 700; }
.info-row .val { font-size: 1.02rem; color: var(--heading); margin-top: 3px; }
.info-row .val a:hover { color: var(--accent-deep); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.map-wrap { position: relative; border-radius: var(--r); overflow: hidden; min-height: 420px; background: var(--navy); }
.map-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.map-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; color: #fff; padding: 30px; }
.map-ph .pin { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: var(--navy-900); }
.map-ph .pin svg { width: 28px; height: 28px; }
.map-ph b { font-family: var(--serif); font-size: 1.5rem; }
.map-ph .ph-note { font-size: 0.74rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); max-width: 34ch; font-family: monospace; }

/* ---------- footer ---------- */
.foot { background: var(--navy-900); color: rgba(255,255,255,0.66); padding-top: clamp(56px, 8vw, 96px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand img { width: 120px; }
.foot-brand .ft-name { font-family: var(--serif); font-size: 1.6rem; letter-spacing: 0.1em; color: #fff; margin-top: 14px; }
.foot-brand p { font-size: 0.9rem; margin-top: 14px; max-width: 34ch; line-height: 1.7; }
.foot h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-300); margin: 0 0 18px; font-family: var(--sans); font-weight: 700; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot ul a { font-size: 0.92rem; }
.foot ul a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,0.8); transition: .3s; }
.socials a:hover { background: var(--gold-grad); color: var(--navy-900); border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: clamp(40px, 6vw, 72px); padding: 26px 0; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 0.78rem; }
.foot-disc { font-size: 0.72rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 70ch; margin-top: 18px; }

/* floating whatsapp */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; border: 0;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7);
  transition: transform .3s;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
.fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: ping 2.4s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   DARK THEME (hero stays dark always; this flips body sections)
   ============================================================ */
body.theme-dark {
  --bg: #0f1830;
  --surface: #14203a;
  --text: #d7ddea;
  --text-soft: #9aa4b8;
  --heading: #f3ead2;
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.07);
}
body.theme-dark .spot { background: #111c33; }
body.theme-dark .pcard { background: #0f1830; }
body.theme-dark .svc { background: #14203a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .coll-grid { grid-template-columns: repeat(4, 1fr); }
  .c-wide { grid-column: span 2; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .hdr-cta .btn { display: none; }
  .burger { display: block; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .spot-grid { grid-template-columns: 1fr; gap: 32px; }
  .dual { grid-template-columns: 1fr; }
  .rate-grid { grid-template-columns: 1fr; gap: 30px; }
  .visit-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .coll-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .c-wide, .c-tall { grid-column: auto; grid-row: auto; }
  .coll-card.c-feature { grid-column: span 2; grid-row: span 1; }
  .svc-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .pcard { flex-direction: column; }
  .pcard img { width: 100%; height: 200px; }
  .rate-cards { width: 100%; }
  .hero-content { padding-top: 120px; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-tall, .g-wide { grid-column: auto; grid-row: auto; }
}
