/* ==========================================================================
   GBGOLD — Homepage Stylesheet
   Fonts: Cinzel (display) / Open Sauce One (body) — loaded via <link> in <head>
   ========================================================================== */

:root {
  --crimson: #6F1026;
  --crimson-deep: color-mix(in srgb, var(--crimson) 78%, black);
  --cream: #FEF6ED;
  --gold: #D4AF37;
  --gold-soft: color-mix(in srgb, var(--gold) 53%, var(--cream));
  --charcoal: #2A2A2A;
  --container-pad: 56px;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: 'Open Sauce One', system-ui, sans-serif;
  background: var(--charcoal);
  color: var(--charcoal);
}

a { text-decoration: none; color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

svg { display: block; }

::selection { background: var(--gold); color: var(--charcoal); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.page {
  width: 100%;
  background: var(--charcoal);
  overflow-x: hidden;
  position: relative;
}

.tabular-nums { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  box-shadow: none;
  transition-property: background, box-shadow;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.nav.is-scrolled {
  position: fixed;
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
}

/* -- utility bar (always charcoal, independent of scroll state) -- */
.nav__utility { background: var(--charcoal); }

.nav__utility-inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 8px var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: .07em;
  font-weight: 500;
  color: var(--cream);
}

.nav__utility-text { text-transform: uppercase; opacity: .9; }

.nav__price {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  opacity: .9;
  white-space: nowrap;
}

.nav__price-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  flex: none;
}

.nav__price-value { color: var(--gold); font-weight: 700; }

/* -- main row -- */
.nav__main {
  max-width: 1640px;
  margin: 0 auto;
  padding: 24px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  transition-property: color;
  transition-duration: .3s;
  transition-timing-function: ease;
  min-height: 40px;
}

.nav.is-scrolled .nav__toggle { color: var(--charcoal); }
.nav__toggle:hover { color: var(--gold); }

.nav__toggle span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav__logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.nav__logo-img {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  height: 60px;
  width: auto;
  transition-property: opacity;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.nav__logo-img--cream { opacity: 1; pointer-events: auto; }
.nav__logo-img--crimson { opacity: 0; pointer-events: none; }

.nav.is-scrolled .nav__logo-img--cream { opacity: 0; pointer-events: none; }
.nav.is-scrolled .nav__logo-img--crimson { opacity: 1; pointer-events: auto; }

.nav__actions { display: flex; align-items: center; gap: 20px; }

.nav__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  transition-property: color;
  transition-duration: .3s;
  transition-timing-function: ease;
  width: 40px; height: 40px;
  margin: -11px;
}

.nav.is-scrolled .nav__icon-btn { color: var(--charcoal); }
.nav__icon-btn:hover { color: var(--gold); }

.lang-toggle {
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
  transition-property: border-color, background-color;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.nav.is-scrolled .lang-toggle {
  border-color: rgba(42, 42, 42, .25);
  background: rgba(42, 42, 42, .04);
}

.lang-toggle__btn {
  padding: 6px 11px;
  background: transparent;
  color: var(--cream);
  letter-spacing: .05em;
  min-height: 32px;
  transition-property: color, background-color;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.nav.is-scrolled .lang-toggle__btn { color: var(--charcoal); }

.nav .lang-toggle__btn.is-active {
  background: var(--gold);
  color: var(--charcoal);
}

.nav__cta {
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Cinzel', serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition-property: background-color, scale;
  transition-duration: .2s;
  transition-timing-function: ease-out;
}

.nav__cta:hover { background: color-mix(in srgb, var(--gold) 85%, white); }
.nav__cta:active { scale: .96; }

.nav__divider-wrap {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.nav__divider {
  height: 1px;
  background: rgba(255, 255, 255, .22);
  transition-property: background-color;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.nav.is-scrolled .nav__divider { background: rgba(42, 42, 42, .14); }

/* -- mega menu -- */
.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 5, .45);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: .4s;
  transition-timing-function: ease;
}

.mega-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mega-panel {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 460px;
  max-width: 90vw;
  z-index: 2;
  background: var(--cream);
  box-shadow: 30px 0 70px rgba(0, 0, 0, .32);
  transform: translateX(-100%);
  transition-property: transform;
  transition-duration: .45s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mega-panel::-webkit-scrollbar { display: none; width: 0; height: 0; }

.mega-panel.is-open { transform: translateX(0); }

.mega-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  border-bottom: 1px solid color-mix(in srgb, var(--cream) 85%, var(--charcoal));
  flex: none;
}

.mega-panel__brand { display: flex; align-items: center; gap: 10px; }

.mega-panel__brand-img {
  height: 36px;
  width: auto;
}

.mega-panel__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(42, 42, 42, .15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition-property: border-color, color, scale;
  transition-duration: .2s;
  transition-timing-function: ease-out;
}

.mega-panel__close:hover { border-color: var(--crimson); color: var(--crimson); }
.mega-panel__close:active { scale: .96; }

.mega-panel__body {
  padding: 30px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mega-group__title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--crimson);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--cream) 85%, var(--charcoal));
}

.mega-group__title--link {
  transition-property: color;
  transition-duration: .15s;
  transition-timing-function: ease-out;
}

.mega-group__title--link:hover { color: var(--crimson-deep); }

.mega-group__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14.5px;
  color: var(--charcoal);
}

.mega-group__links a { transition: color .15s ease-out; }
.mega-group__links a:hover { color: var(--crimson); }

.mega-featured {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background: var(--charcoal);
  flex: none;
}

.mega-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .82) 100%);
}

.mega-featured__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  gap: 8px;
}

.mega-featured__tag {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.mega-featured__title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--cream);
  font-weight: 700;
}

.mega-featured__cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  display: inline-flex;
  width: fit-content;
  gap: 6px;
  align-items: center;
  padding-bottom: 2px;
}

/* ==========================================================================
   1. HERO — 3 IMAGE PANELS
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100vh;
  height: 100dvh;
  min-height: 740px;
}

.hero__panel {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero__panel--1 { background: var(--charcoal); }
.hero__panel--2 { background: var(--crimson-deep); }
.hero__panel--3 { background: color-mix(in srgb, var(--gold) 62%, black); }

/* -- our-brand page: goldsmith engraving a gold bar, hands+bar upper two-thirds — keep top anchored on tall crop -- */
.hero__panel--about .img-slot--fill { background-position: center top; }

/* -- our-brand page: ambassador portrait, head upper-middle — keep top anchored on tall crop -- */
.hero__panel--ambassador .img-slot--fill { background-position: center top; }

/* -- our-brand page: contact correspondence card + seal, subject upper two-thirds — keep top anchored on tall crop -- */
.hero__panel--contact .img-slot--fill { background-position: center top; }

/* -- strategic-partners page: shariah advisory portrait, subject upper two-thirds — keep top anchored on tall crop -- */
.hero__panel--shariah .img-slot--fill { background-position: center top; }

/* -- strategic-partners page: TTT partnership portrait, subject upper two-thirds — keep top anchored on tall crop -- */
.hero__panel--ttt .img-slot--fill { background-position: center top; }

/* -- strategic-partners page: authenticity & certification portrait, subject upper two-thirds — keep top anchored on tall crop -- */
.hero__panel--cert .img-slot--fill { background-position: center top; }

.hero__panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .32) 0%, rgba(0, 0, 0, .48) 45%, rgba(0, 0, 0, .8) 100%);
  pointer-events: none;
}

.hero__panel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 50px 64px;
  gap: 12px;
  pointer-events: none;
}

.hero__panel-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: var(--cream);
  text-transform: uppercase;
}

.hero__panel-sub {
  font-size: 13.5px;
  color: color-mix(in srgb, var(--cream) 86%, var(--charcoal));
  letter-spacing: .03em;
}

.hero__panel-cta {
  pointer-events: auto;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition-property: border-color;
  transition-duration: .2s;
  transition-timing-function: ease-out;
}

.hero__panel-cta:hover { border-bottom-color: var(--cream); }

@media (prefers-reduced-motion: no-preference) {
  .hero__panel:hover .img-slot--fill { transform: scale(1.045); }
}

/* ==========================================================================
   2. GB × ALIF
   ========================================================================== */

.alif {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.alif .img-slot--fill {
  background-position: right top;
}

.alif__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 15, 13, .35) 0%, rgba(18, 15, 13, .6) 55%, rgba(18, 15, 13, .87) 100%);
}

.alif__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 40px 40px;
  gap: 20px;
}

.alif__kicker {
  font-size: 12.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 92%, var(--charcoal));
  font-weight: 600;
}

.alif__title {
  font-weight: 800;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: .03em;
  color: var(--cream);
}

.alif__body {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--cream) 83%, var(--charcoal));
  max-width: 600px;
}

.alif__cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 6px;
  transition-property: color;
  transition-duration: .2s;
  transition-timing-function: ease-out;
}

.alif__cta:hover { color: var(--gold); }

/* ==========================================================================
   3. GBS — DARI RM10
   ========================================================================== */

.gbs { background: var(--cream); }

.gbs__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px var(--container-pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.gbs__kicker {
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.gbs__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  color: var(--crimson);
  margin: 16px 0 22px;
}

.gbs__body {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--cream) 17%, var(--charcoal));
  margin-bottom: 34px;
  max-width: 460px;
}

.gbs__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 17px 32px;
  transition-property: background-color, scale;
  transition-duration: .2s;
  transition-timing-function: ease-out;
}

.gbs__cta:hover { background: var(--crimson-deep); }
.gbs__cta:active { scale: .96; }

.gbs__card {
  background: var(--crimson);
  padding: 48px 44px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.gbs__card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(212, 175, 55, .12) 0%, transparent 60%);
}

.gbs__card-inner { position: relative; }

.gbs__card-label {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}

.gbs__card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 30px;
}

.gbs__card-price-currency {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: color-mix(in srgb, var(--cream) 86%, var(--charcoal));
  font-weight: 600;
}

.gbs__card-price-value {
  font-family: 'Cinzel', serif;
  font-size: 92px;
  font-weight: 800;
  color: var(--cream);
  line-height: .9;
}

.gbs__bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gbs__bullet { display: flex; align-items: center; gap: 14px; }

.gbs__bullet-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.gbs__bullet-text { font-size: 14px; color: color-mix(in srgb, var(--cream) 86%, var(--charcoal)); }

/* ==========================================================================
   4. TRUST BADGES
   ========================================================================== */

.trust {
  background: var(--crimson-deep);
  padding: 70px 0;
}

.trust__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.trust__header { text-align: center; margin-bottom: 46px; }

.trust__kicker {
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.trust__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.trust__title-row-line { width: 40px; height: 1px; background: var(--gold); }

.trust__title { font-weight: 700; font-size: 32px; color: var(--cream); }

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust__badge {
  text-align: center;
  padding: 28px 14px;
  border: 1px solid rgba(212, 175, 55, .25);
}

.trust__badge-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--gold);
}

.trust__badge-label {
  font-size: 12.5px;
  font-weight: 600;
  color: color-mix(in srgb, var(--cream) 92%, var(--charcoal));
  letter-spacing: .02em;
}

/* ==========================================================================
   5. NEWS
   ========================================================================== */

.news { background: var(--cream); }

.news__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px var(--container-pad) 96px;
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.news__kicker {
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.news__title {
  font-weight: 700;
  font-size: 34px;
  color: var(--crimson);
  margin-top: 12px;
}

.news__viewall {
  font-family: 'Cinzel', serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--crimson);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.news__card-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 10px;
}

.news__card-excerpt {
  font-size: 13.5px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--cream) 25%, var(--charcoal));
  margin-bottom: 14px;
}

.news__card-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--crimson);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--charcoal);
  color: color-mix(in srgb, var(--cream) 73%, var(--charcoal));
  padding-top: 64px;
}

.footer__brand {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 50px;
}

.footer__brand-img {
  height: 56px;
  width: auto;
}

.footer__brand-tagline {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 12.5px;
  color: color-mix(in srgb, var(--cream) 50%, var(--charcoal));
  letter-spacing: .02em;
}

.footer__columns {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--container-pad) 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer__col-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer__col:first-child .footer__col-title { letter-spacing: .1em; margin-bottom: 14px; }

.footer__col-address {
  font-size: 12.5px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--cream) 50%, var(--charcoal));
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
}

.footer__col-links a { transition: color .15s ease-out; }
.footer__col-links a:hover { color: var(--cream); }

.footer__hr {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.footer__hr-line { border-top: 1px solid rgba(255, 255, 255, .12); }

.footer__marketplace-row {
  max-width: 1560px;
  margin: 0 auto;
  padding: 24px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__marketplace {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  flex-wrap: wrap;
}

.footer__marketplace-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: color-mix(in srgb, var(--cream) 35%, var(--charcoal));
}

.footer__marketplace-link {
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 6px 14px;
  color: color-mix(in srgb, var(--cream) 73%, var(--charcoal));
  transition-property: border-color, color;
  transition-duration: .15s;
  transition-timing-function: ease-out;
}

.footer__marketplace-link:hover { border-color: var(--gold); color: var(--gold); }

.footer__social { display: flex; align-items: center; gap: 16px; }

.footer__social-label {
  font-size: 11.5px;
  letter-spacing: .1em;
  color: color-mix(in srgb, var(--cream) 35%, var(--charcoal));
  text-transform: uppercase;
}

.footer__social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--cream) 73%, var(--charcoal));
  transition-property: border-color, color, scale;
  transition-duration: .15s;
  transition-timing-function: ease-out;
}

.footer__social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer__social-icon:active { scale: .96; }

.footer__social-icon--text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
}

.footer__values-row {
  max-width: 1560px;
  margin: 0 auto;
  padding: 24px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__values {
  font-size: 12px;
  letter-spacing: .06em;
  color: color-mix(in srgb, var(--cream) 50%, var(--charcoal));
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__values-sep { color: color-mix(in srgb, var(--cream) 20%, var(--charcoal)); }

.footer__values-tagline {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--gold);
}

.footer__bottom-row {
  max-width: 1560px;
  margin: 0 auto;
  padding: 26px var(--container-pad) 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__seal {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer__seal-ring {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: none;
}

.footer__seal-ring-num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--gold);
  line-height: 1;
}

.footer__seal-ring-label {
  font-size: 6px;
  letter-spacing: .08em;
  color: color-mix(in srgb, var(--cream) 73%, var(--charcoal));
}

.footer__seal-divider {
  width: 1px; height: 32px;
  background: rgba(255, 255, 255, .15);
}

.footer__trusted { display: flex; align-items: center; gap: 9px; }

.footer__trusted-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: color-mix(in srgb, var(--cream) 73%, var(--charcoal));
  line-height: 1.3;
}

.footer__copyright { font-size: 12px; color: color-mix(in srgb, var(--cream) 43%, var(--charcoal)); text-align: right; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

.back-to-top {
  position: fixed;
  right: 34px;
  bottom: 34px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  transition-property: background-color, scale;
  transition-duration: .2s;
  transition-timing-function: ease-out;
}

.back-to-top:hover { background: var(--crimson-deep); }
.back-to-top:active { scale: .96; }

/* ==========================================================================
   IMAGE SLOTS — premium placeholder until assets/img/<slot-id>.* is dropped in
   ========================================================================== */

.img-slot {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(140% 120% at 20% 10%, rgba(212, 175, 55, .16), transparent 60%),
    linear-gradient(160deg, var(--crimson-deep) 0%, var(--charcoal) 100%);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .18);
}

.img-slot--fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-duration: .6s;
  transition-timing-function: ease;
  background-size: cover;
  background-position: center;
}

.img-slot--block {
  display: block;
  width: 100%;
  height: 190px;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
}

.img-slot__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--gold-soft) 55%, transparent);
  transition: opacity .3s ease;
}

.img-slot__caption::before {
  content: '';
  width: 26px;
  height: 1px;
  background: color-mix(in srgb, var(--gold) 55%, transparent);
  flex: none;
}

.img-slot.is-loaded { background-image: none; }
.img-slot.is-loaded .img-slot__caption { opacity: 0; pointer-events: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  :root { --container-pad: 28px; }

  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .hero__panel { height: 520px; }

  .gbs__inner { grid-template-columns: 1fr; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); }

  .news__grid { grid-template-columns: 1fr; }

  .footer__columns { grid-template-columns: repeat(3, 1fr); }

  /* -- nav: shrink centered logo + drop CTA so it never collides with the icon cluster -- */
  .nav__logo-img { height: 46px; }
  .nav__cta { display: none; }
}

@media (max-width: 640px) {
  .footer__columns { grid-template-columns: repeat(2, 1fr); }

  .nav__utility-text { display: none; }

  /* -- nav: further shrink logo + drop lang pill + tighten icon cluster for narrow phones -- */
  .lang-toggle { display: none; }
  .nav__logo-img { height: 36px; }
  .nav__actions { gap: 14px; }

  .hero__panel-title { font-size: 26px; }

  .alif { height: 640px; }
  .alif__title { font-size: 40px; }
  .alif__body { font-size: 14.5px; }

  .gbs__title { font-size: 28px; }
  .gbs__card-price-value { font-size: 56px; }

  .trust__title { font-size: 24px; }

  .news__title { font-size: 26px; }
}
