/* ============================================================
   GoldShopDubai & Jewellery — design system
   Palette keyed to the brand logo: warm ivory canvas, near-black
   serif ink, a single refined gold accent (the GS monogram gold).
   Photography supplies the gold; UI stays calm + premium.
   ============================================================ */
:root {
  --bg: #FBF8F3;          /* warm ivory canvas */
  --surface: #FFFFFF;     /* cards / sheets */
  --surface-alt: #F3EDE3; /* champagne sections */
  --ink: #1A1714;         /* near-black ink */
  --muted: #6E665C;       /* secondary text */
  --secondary: #7C5A2E;   /* deep antique-gold / bronze */
  --accent: #C9A24B;      /* refined polished gold */
  --accent-deep: #A9842F; /* darker gold for text on light */
  --border: #E7DECF;      /* warm hairline */
  --focus: #C9A24B;
  --wa: #25D366;          /* WhatsApp green */
  --ink-90: rgba(26,23,20,0.9);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(26,23,20,0.05), 0 2px 8px rgba(26,23,20,0.04);
  --shadow-md: 0 10px 30px -12px rgba(26,23,20,0.18);
  --shadow-lg: 0 30px 60px -22px rgba(26,23,20,0.28);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(201,162,75,0.28); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
.display { font-size: clamp(2.7rem, 7vw, 5.2rem); font-weight: 600; line-height: 1.02; }
.h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.9rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--accent); display: inline-block;
}
.eyebrow.center::before { display: none; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); line-height: 1.7; }
.muted { color: var(--muted); }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 9vw, 120px) 0; }
.section--alt { background: var(--surface-alt); }
.section--ink { background: var(--ink); color: #F4EFE7; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #FBF8F3; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 0.6rem; }
.grid { display: grid; gap: 22px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.92rem 1.5rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #322c26; box-shadow: var(--shadow-md); }
.btn--gold { background: var(--accent); color: #2a2008; }
.btn--gold:hover { background: #d6b25f; box-shadow: 0 10px 26px -10px rgba(201,162,75,0.7); }
.btn--wa { background: var(--wa); color: #06351a; }
.btn--wa:hover { background: #34dd72; box-shadow: 0 10px 26px -10px rgba(37,211,102,0.6); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(26,23,20,0.03); }
.btn--ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }
.btn--sm { padding: 0.6rem 1.05rem; min-height: 40px; font-size: 0.85rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; font-size: 0.92rem; color: var(--secondary);
  letter-spacing: 0.02em;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---- Navbar ---- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,243,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 1px 0 rgba(26,23,20,0.02), var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 82px; }
.nav__logo img { height: 50px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  padding: 0.55rem 0.85rem; border-radius: 999px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--secondary); }
.nav__link.active { color: var(--secondary); }
.nav__link.active::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.28rem; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface); align-items: center; justify-content: center;
}
.nav__burger svg { width: 22px; height: 22px; }

/* mobile menu sheet */
.sheet {
  position: fixed; inset: 0; z-index: 90; display: none;
}
.sheet.open { display: block; }
.sheet__scrim { position: absolute; inset: 0; background: rgba(26,23,20,0.45); backdrop-filter: blur(2px); }
.sheet__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: var(--bg); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 22px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.sheet.open .sheet__panel { transform: translateX(0); }
.sheet__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sheet__head img { height: 42px; }
.sheet__close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; justify-content: center; }
.sheet__link {
  padding: 1rem 0.6rem; font-family: var(--serif); font-size: 1.5rem; color: var(--ink);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between;
}
.sheet__link.active { color: var(--secondary); }
.sheet__cta { margin-top: auto; padding-top: 22px; display: grid; gap: 10px; }

/* ---- Hero ---- */
.hero { position: relative; }
.hero__media { position: relative; min-height: clamp(560px, 86vh, 880px); overflow: hidden; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16,13,10,0.86) 0%, rgba(16,13,10,0.6) 38%, rgba(16,13,10,0.12) 70%, rgba(16,13,10,0) 100%),
    linear-gradient(0deg, rgba(16,13,10,0.5) 0%, rgba(16,13,10,0) 40%);
}
.hero__inner { position: absolute; inset: 0; display: flex; align-items: center; }
.hero__content { max-width: 620px; color: #F6F0E6; }
.hero__content .eyebrow { color: var(--accent); }
.hero__content .eyebrow::before { background: var(--accent); }
.hero__title { color: #fff; font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.07; margin-bottom: 1.5rem; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(246,240,230,0.92); max-width: 30em; margin-bottom: 1.9rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0)); animation: scrollpulse 2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100%{ opacity: 0.3; transform: scaleY(0.6);} 50%{ opacity: 1; transform: scaleY(1);} }

/* ---- Trust strip ---- */
.trust { background: var(--ink); color: #EFE7D8; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.trust__item { background: var(--ink); padding: 26px 22px; display: flex; flex-direction: column; gap: 4px; }
.trust__item .k { font-family: var(--serif); font-size: 1.18rem; color: #fff; display: flex; align-items: center; gap: 0.5rem; }
.trust__item .k svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.trust__item .v { font-size: 0.86rem; color: rgba(239,231,216,0.62); line-height: 1.45; }
.trust__note { text-align: center; font-size: 0.74rem; color: rgba(239,231,216,0.45); padding: 12px 0 0; letter-spacing: 0.02em; }

/* ---- Section heading ---- */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 42px; flex-wrap: wrap; }
.shead__t { max-width: 40rem; }
.shead p { margin: 0.7rem 0 0; }

/* ---- Collection cards ---- */
.colgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.colcard {
  display: block;
  position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--ink);
  aspect-ratio: 3/3.7; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.colcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.colcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.colcard:hover img { transform: scale(1.06); }
.colcard__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,13,10,0.82) 4%, rgba(16,13,10,0.18) 48%, rgba(16,13,10,0) 78%); }
.colcard__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: #fff; }
.colcard__body .tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.colcard__body h3 { color: #fff; font-size: 1.7rem; margin: 0.3rem 0 0.1rem; }
.colcard__body .go { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.86rem; font-weight: 600; margin-top: 0.7rem; color: rgba(255,255,255,0.9); }
.colcard__body .go svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.colcard:hover .go svg { transform: translateX(4px); }

/* ---- Piece grid / product cards ---- */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pgrid--3 { grid-template-columns: repeat(3, 1fr); }
.pcard {
  background: var(--surface); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.pcard__media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--surface-alt); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard__name { font-family: var(--serif); font-size: 1.18rem; line-height: 1.15; }
.pcard__note { font-size: 0.84rem; color: var(--muted); line-height: 1.45; flex: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--secondary); background: var(--surface-alt); border: 1px solid var(--border); padding: 0.26rem 0.6rem; border-radius: 999px; font-weight: 600; }
.pcard__cta { margin-top: 4px; }

/* ---- Featured strip (asymmetric) ---- */
.fgrid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 16px; }
.ftile { display: block; position: relative; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.ftile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.ftile:hover img { transform: scale(1.07); }
.ftile__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; color: #fff; font-family: var(--serif); font-size: 1.15rem; background: linear-gradient(0deg, rgba(16,13,10,0.78), rgba(16,13,10,0)); opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.ftile:hover .ftile__cap { opacity: 1; transform: translateY(0); }
.ftile.t-a { grid-column: span 3; grid-row: span 2; }
.ftile.t-b { grid-column: span 3; }
.ftile.t-c { grid-column: span 2; }

/* ---- Split feature (bespoke / diamonds teasers) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3.4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .badge {
  position: absolute; top: 18px; left: 18px; background: rgba(255,255,255,0.92); color: var(--ink);
  backdrop-filter: blur(4px); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---- Steps (bespoke) ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { border-top: 2px solid var(--accent); padding-top: 20px; }
.step .n { font-family: var(--serif); font-size: 2.4rem; color: var(--accent); line-height: 1; }
.step h4 { font-size: 1.3rem; margin: 0.5rem 0 0.4rem; }
.step p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ---- GIA / 4C cards ---- */
.fourc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 26px 22px; transition: border-color 0.3s, transform 0.3s; }
.cc:hover { border-color: var(--accent); transform: translateY(-3px); }
.cc .icon { width: 42px; height: 42px; border-radius: 12px; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; color: var(--secondary); margin-bottom: 14px; }
.cc .icon svg { width: 22px; height: 22px; }
.cc h4 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.cc p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* ---- FAQ / accordion ---- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink); }
.faq__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.3s, color 0.3s; }
.faq__item.open .faq__q .ic { background: var(--accent); color: #2a2008; border-color: var(--accent); transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq__a p { margin: 0; padding: 0 4px 24px; color: var(--muted); max-width: 56rem; }

/* ---- Forms ---- */
.form { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); }
.field.err input, .field.err select, .field.err textarea { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }
.field .msg { font-size: 0.78rem; color: #c0392b; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.formcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.segmented { display: inline-flex; background: var(--surface-alt); border: 1px solid var(--border); border-radius: 999px; padding: 4px; gap: 4px; }
.segmented button { border: none; background: none; padding: 0.55rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: 0.88rem; color: var(--muted); transition: background 0.2s, color 0.2s; }
.segmented button.on { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.form__success { text-align: center; padding: 22px; }
.form__success .tick { width: 56px; height: 56px; border-radius: 50%; background: rgba(37,211,102,0.14); color: #1c9e52; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.form__success .tick svg { width: 28px; height: 28px; }

/* ---- Location / map ---- */
.locgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loccard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 26px; }
.loccard.flag { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(201,162,75,0.25), var(--shadow-sm); }
.loccard .pill { display: inline-block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.loccard h4 { font-size: 1.35rem; margin-bottom: 8px; }
.loccard address { font-style: normal; color: var(--muted); line-height: 1.6; }
.loccard .lnote { font-size: 0.84rem; color: var(--muted); margin-top: 8px; }
.loccard .lact { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.mapbox {
  border-radius: var(--r-md); overflow: hidden; border: 1px dashed var(--border);
  background:
    repeating-linear-gradient(45deg, var(--surface-alt) 0 14px, #efe7d9 14px 28px);
  min-height: 320px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 28px;
}
.mapbox__inner { background: rgba(255,255,255,0.86); border-radius: 14px; padding: 22px 26px; max-width: 360px; }
.mapbox__inner .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--surface-alt); color: var(--secondary); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.mapbox__inner code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.8rem; color: var(--secondary); }

/* ---- Contact rows ---- */
.contactrow { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contactrow .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-alt); color: var(--secondary); display: flex; align-items: center; justify-content: center; flex: none; }
.contactrow .ic svg { width: 20px; height: 20px; }
.contactrow .lbl { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contactrow .val { font-weight: 600; font-size: 1.02rem; }

/* ---- Footer ---- */
.footer { background: var(--ink); color: rgba(246,240,230,0.7); padding: 70px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__logo img { height: 64px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer__brandnote { font-size: 0.9rem; color: rgba(246,240,230,0.55); max-width: 30ch; line-height: 1.6; }
.footer h5 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.94rem; color: rgba(246,240,230,0.7); transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: rgba(246,240,230,0.45); }
.footer__disc { max-width: 80ch; line-height: 1.6; margin-top: 14px; font-size: 0.76rem; color: rgba(246,240,230,0.38); }

/* ---- Floating WhatsApp + mobile bar ---- */
.fab { position: fixed; right: 20px; bottom: 24px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6); border: none; transition: transform 0.3s var(--ease); }
.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 var(--wa); animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0%{ transform: scale(1); opacity: 0.7;} 100%{ transform: scale(1.7); opacity: 0;} }

.mbar { display: none; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .fab::after, .hero__scroll span { animation: none; }
}

/* ---- Page header (interior pages) ---- */
.phead { padding: clamp(40px, 7vw, 86px) 0 0; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: var(--secondary); }
.crumbs svg { width: 13px; height: 13px; opacity: 0.6; }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: flex; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .colgrid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .fourc { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .locgrid { grid-template-columns: 1fr; }
  .fgrid { grid-auto-rows: 170px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .pgrid, .pgrid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__media { min-height: 78vh; }
  .fgrid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .ftile.t-a { grid-column: span 2; grid-row: span 2; }
  .ftile.t-b, .ftile.t-c { grid-column: span 1; }
  /* mobile action bar */
  .mbar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
    background: rgba(251,248,243,0.96); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border); padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
  }
  .mbar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; border-radius: 12px; font-size: 0.7rem; font-weight: 600; color: var(--ink); min-height: 52px; justify-content: center; }
  .mbar a svg { width: 21px; height: 21px; }
  .mbar a.wa { color: #128c3e; }
  .mbar a:active { background: var(--surface-alt); }
  .fab { display: none; }
  body { padding-bottom: 70px; }
  .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .pgrid, .pgrid--3 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .colgrid { grid-template-columns: 1fr; }
  .pcard__name { font-size: 1.05rem; }
  .nav__logo img { height: 42px; }
  .hero__actions .btn { flex: 1 1 auto; }
}
