/* ==========================================================================
   Bridge Global Trading (Pvt.) Ltd.
   Design system + page styles
   Palette: black #111111 / white #FFFFFF / gold #C9A227 (accent only)
   ========================================================================== */

/* ---------------------------------------------------------------- 1. Tokens */
:root {
  /* Brand */
  --black: #111111;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-deep: #a8871c;
  --gold-pale: #efe3bd;

  /* Neutrals */
  --ink: #111111;
  --ink-2: #333333;
  --ink-3: #5c5c5c;
  --ink-4: #8a8a8a;
  --line: #e4e4e4;
  --line-2: #d2d2d2;
  --surface: #ffffff;
  --surface-2: #f5f5f5;
  --surface-3: #ededed;

  /* On dark */
  --d-surface: #111111;
  --d-surface-2: #191919;
  --d-line: rgba(255, 255, 255, 0.12);
  --d-line-strong: rgba(255, 255, 255, 0.22);
  --d-text: rgba(255, 255, 255, 0.72);
  --d-text-dim: rgba(255, 255, 255, 0.55);

  /* Type */
  --font-display: "Playfair Display", "Iowan Old Style", "Palatino Linotype",
    Palatino, Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --container: 1240px;
  --section-y: clamp(4.5rem, 8.5vw, 8rem);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 82px;
}

/* ------------------------------------------------------------ 2. Base reset */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.001em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img,
svg,
picture,
video { display: block; max-width: 100%; }

img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

strong { font-weight: 600; color: var(--ink); }

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 300;
  padding: 0.75rem 1.25rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.875rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------- 3. Structure */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 900px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3.25rem, 6vw, 5.5rem); }
.section--flush-top { padding-top: 0; }

.section--muted { background: var(--surface-2); }
.section--dark {
  background: var(--d-surface);
  color: var(--d-text);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }
.hairline--gold {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* ------------------------------------------------------------ 4. Typography */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.section--dark .eyebrow { color: var(--gold); }
.eyebrow--center { justify-content: center; }

.h-hero {
  font-size: clamp(2.5rem, 5.9vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.h-section {
  font-size: clamp(1.95rem, 3.6vw, 3.05rem);
  letter-spacing: -0.022em;
}

.h-sub {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.018em;
}

.h-card {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.lead {
  max-width: 62ch;
  color: var(--ink-3);
  font-size: clamp(1.03rem, 1.15vw, 1.16rem);
  line-height: 1.8;
}
.section--dark .lead { color: var(--d-text); }

.body-copy { max-width: 66ch; }
.body-copy p + p { margin-top: 0; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Section header block */
.section-head { margin-bottom: clamp(2.5rem, 4.5vw, 4rem); }
.section-head--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.section-head--center .lead { margin-inline: auto; }
.section-head .lead { margin-top: 1.35rem; }

.section-head--split {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: end;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .section-head--split .lead { margin-top: 0; padding-bottom: 0.4rem; }
}

/* -------------------------------------------------------------- 5. Buttons */
.btn {
  --btn-bg: var(--black);
  --btn-fg: var(--white);
  --btn-bd: var(--black);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.05rem 1.85rem;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease),
    background-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
}
.btn:hover::after,
.btn:focus-visible::after { transform: translateY(0); }
.btn:hover,
.btn:focus-visible { color: var(--black); border-color: var(--gold); }
.btn:active { transform: translateY(1px); }

.btn .btn-arrow {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 0.35s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--black); --btn-bd: var(--gold); }
.btn--gold::after { background: var(--black); }
.btn--gold:hover,
.btn--gold:focus-visible { color: var(--white); border-color: var(--black); }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn--outline:hover { border-color: var(--gold); }

.btn--on-dark { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: rgba(255,255,255,0.4); }
.btn--on-dark:hover,
.btn--on-dark:focus-visible { color: var(--black); border-color: var(--gold); }

.btn--light { --btn-bg: var(--white); --btn-fg: var(--black); --btn-bd: var(--white); }
.btn--light::after { background: var(--gold); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(1.9rem, 3vw, 2.6rem);
}
.btn-row--center { justify-content: center; }

/* Text link with animated gold underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.3rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: color 0.3s var(--ease), background-size 0.4s var(--ease-out);
}
.link-arrow:hover { color: var(--gold-deep); background-size: 40% 1px; }
.link-arrow svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--white); }
.section--dark .link-arrow:hover { color: var(--gold); }

/* --------------------------------------------------------------- 6. Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  transition: min-height 0.35s var(--ease);
}

/* Transparent over a dark hero */
.site-header[data-state="top"] { background: transparent; }
.site-header[data-state="top"] .nav__link {
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.88);
}
.site-header[data-state="top"] .nav__link:hover {
  background: rgba(255, 255, 255, 0.26);
  color: var(--white);
}
.site-header[data-state="top"] .nav__link[aria-current="page"] {
  background: var(--white);
  color: var(--black);
}
.site-header[data-state="top"] .nav-toggle__bar { background: var(--white); }
.site-header[data-state="top"] .btn--header {
  --btn-fg: var(--black);
  --btn-bd: var(--white);
}
.site-header[data-state="top"] .brand { background: var(--white); }

/* Solid once scrolled */
.site-header[data-state="scrolled"] {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px -28px rgba(17, 17, 17, 0.5);
}
.site-header[data-state="scrolled"] .nav__link {
  background: rgba(17, 17, 17, 0.055);
  color: var(--ink-2);
}
.site-header[data-state="scrolled"] .nav__link:hover {
  background: rgba(17, 17, 17, 0.1);
  color: var(--ink);
}
.site-header[data-state="scrolled"] .nav__link[aria-current="page"] {
  background: var(--black);
  color: var(--white);
}
.site-header[data-state="scrolled"] { --header-h: 68px; }
.site-header[data-state="scrolled"] .site-header__inner { min-height: 68px; }

/* Brand */
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 7px 11px;
  margin-left: -11px;
  border-radius: var(--radius);
  background: transparent;
  transition: background-color 0.4s var(--ease), padding 0.35s var(--ease);
}
.brand__mark {
  width: auto;
  height: 44px;
  transition: height 0.35s var(--ease);
}
.site-header[data-state="scrolled"] .brand { background: transparent; padding-block: 0; }
.site-header[data-state="scrolled"] .brand__mark { height: 38px; }

/* Desktop nav */
.nav { display: none; }
@media (min-width: 1260px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
}
.nav__link {
  position: relative;
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background-color 0.32s var(--ease), color 0.32s var(--ease);
}
/* gold marker on the current page, matching the pill treatment */
.nav__link[aria-current="page"]::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: 0.12em;
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn--header {
  gap: 0.55rem;
  padding: 0.42rem 0.42rem 0.42rem 1.15rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  --btn-bg: var(--white);
  --btn-fg: var(--black);
  --btn-bd: var(--white);
}

/* Shared pill CTA: white pill, black label, arrow in a filled disc.
   Used by the desktop header and the mobile drawer so both match. */
.btn--pill {
  gap: 0.55rem;
  padding: 0.42rem 0.42rem 0.42rem 1.15rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  --btn-bg: var(--white);
  --btn-fg: var(--black);
  --btn-bd: var(--white);
}
.btn--pill::after { border-radius: 999px; }
.btn--pill .btn-arrow {
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  padding: 7px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.btn--pill:hover .btn-arrow,
.btn--pill:focus-visible .btn-arrow {
  background: var(--black);
  color: var(--white);
  transform: translateX(2px);
}
/* the pill is white in every header state, so never inherit white text */
.site-header[data-state="top"] .btn--pill,
.site-header[data-state="scrolled"] .btn--pill {
  --btn-fg: var(--black);
  --btn-bd: var(--white);
}

.btn--header::after { border-radius: 999px; }
/* arrow sits in its own filled disc, as on the pill nav */
.btn--header .btn-arrow {
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  padding: 7px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn--header:hover .btn-arrow { background: var(--white); color: var(--black); transform: none; }
.btn--header { display: none; }
@media (min-width: 1260px) { .btn--header { display: inline-flex; } }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
}
@media (min-width: 1260px) { .nav-toggle { display: none; } }
.nav-toggle__bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.2s var(--ease),
    background-color 0.3s var(--ease), width 0.3s var(--ease);
}
.nav-toggle__bar:nth-child(2) { width: 72%; align-self: flex-end; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: var(--white); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
  background: var(--black);
  color: var(--white);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
.mobile-nav[data-open="true"] { visibility: visible; opacity: 1; }
@media (min-width: 1260px) { .mobile-nav { display: none; } }

.mobile-nav__list { margin-top: auto; margin-bottom: auto; }
.mobile-nav__item { border-bottom: 1px solid var(--d-line); }
.mobile-nav__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6.5vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
    color 0.3s var(--ease);
}
.mobile-nav[data-open="true"] .mobile-nav__link { opacity: 1; transform: none; }
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__link[aria-current="page"] { color: var(--gold); }
.mobile-nav__link[aria-current="page"] .mobile-nav__num::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: 0.1em;
}
.mobile-nav__num {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.mobile-nav__foot {
  padding-top: 1.75rem;
  border-top: 1px solid var(--d-line);
  font-size: 0.9rem;
  color: var(--d-text);
}
.mobile-nav__foot a { display: block; }
.mobile-nav__foot a:hover { color: var(--gold); }
.mobile-nav__foot .btn { margin-top: 1.25rem; width: 100%; }
.mobile-nav__foot .btn--pill {
  justify-content: space-between;
  padding: 0.5rem 0.5rem 0.5rem 1.4rem;
  font-size: 0.76rem;
}

/* ----------------------------------------------------------------- 7. Hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(92vh, 900px);
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero--page {
  min-height: min(62vh, 620px);
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(2rem, 4vw, 3.25rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroPan 18s var(--ease-out) forwards;
}
@keyframes heroPan { to { transform: scale(1); } }

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.62) 42%, rgba(10, 10, 10, 0.42) 100%),
    linear-gradient(to right, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.12) 68%);
}

.hero__inner { width: 100%; }
.hero__content { max-width: 60rem; }
.hero h1 { color: var(--white); }
.hero .eyebrow { color: var(--gold); }
.hero__lead {
  max-width: 46rem;
  margin-top: clamp(1.4rem, 2.4vw, 2rem);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.8;
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}

/* Hero for interior pages: solid black + subtle photo */
.hero--page .hero__scrim {
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7)),
    linear-gradient(to right, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.35));
}

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.crumbs a { transition: color 0.3s var(--ease); }
.crumbs a:hover { color: var(--gold); }
.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.6rem;
  color: rgba(255, 255, 255, 0.28);
}
.crumbs li { display: inline-flex; align-items: center; }
.crumbs [aria-current="page"] { color: var(--gold); }

/* ------------------------------------------------------- 8. Category strip */
.strip {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 720px) { .strip__list { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.strip__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem clamp(1rem, 2vw, 1.75rem);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
@media (min-width: 720px) { .strip__item { border-bottom: 0; } }
.strip__item:last-child { border-right: 0; }
.strip__item:nth-child(2n) { border-right: 0; }
@media (min-width: 720px) {
  .strip__item:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.09); }
  .strip__item:last-child { border-right: 0; }
}
.strip__item:hover { background: rgba(255, 255, 255, 0.035); color: var(--white); }
.strip__item svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--gold); }

/* ------------------------------------------------- 9. Split / feature block */
.split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--wide-text { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); }
  .split--wide-media { grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); }
  .split--flip .split__media { order: -1; }
}

.split__media { position: relative; }

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-3);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.media-frame--tall { aspect-ratio: 4 / 5; }
.media-frame--wide { aspect-ratio: 3 / 2; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame:hover img { transform: scale(1.04); }

/* thin gold outline offset behind the image */
.media-frame--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
.split__media--offset::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 46%;
  height: 46%;
  border: 0;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  pointer-events: none;
}
@media (min-width: 940px) {
  .split__media--offset::after { right: -22px; bottom: -22px; }
}

/* Facts list under split copy */
.fact-list {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(2rem, 3vw, 2.75rem);
  padding-top: clamp(2rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 620px) { .fact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem 2.25rem; } }
.fact-list__item { display: flex; gap: 0.9rem; }
.fact-list__item svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 0.32rem; color: var(--gold-deep); }
.fact-list__title {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.fact-list__text { font-size: 0.9rem; line-height: 1.65; color: var(--ink-3); }
.section--dark .fact-list { border-top-color: var(--d-line); }
.section--dark .fact-list__title { color: var(--white); }
.section--dark .fact-list__text { color: var(--d-text-dim); }
.section--dark .fact-list__item svg { color: var(--gold); }

/* ------------------------------------------------------------- 10. Products */
.product-grid {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.6rem);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 27rem;
  padding: 1.75rem;
  border: 1px solid var(--d-line);
  border-radius: var(--radius);
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease);
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.55); }

.product-card__media { position: absolute; inset: 0; z-index: -2; }
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.09); }
.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 6%, rgba(8, 8, 8, 0.62) 48%, rgba(8, 8, 8, 0.3) 100%);
}

.product-card__index {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.product-card__body { margin-top: auto; }
.product-card h3 { margin-bottom: 0.75rem; color: var(--white); }
.product-card p { font-size: 0.92rem; line-height: 1.68; color: rgba(255, 255, 255, 0.7); }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.15rem;
}
.tag {
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}
.tag--light { border-color: var(--line-2); color: var(--ink-3); }

/* Product detail rows (products page) */
.product-detail { display: grid; gap: clamp(2.25rem, 4.5vw, 4.5rem); align-items: center; }
@media (min-width: 940px) {
  .product-detail { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .product-detail--flip .product-detail__media { order: -1; }
}
.product-detail + .product-detail {
  margin-top: clamp(3.25rem, 6vw, 5.5rem);
  padding-top: clamp(3.25rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line);
}
.product-detail__media {
  display: grid;
  gap: clamp(0.7rem, 1.2vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-detail__media .media-frame:first-child { grid-column: span 2; }
.product-detail__media--single { grid-template-columns: 1fr; }
.product-detail__media--single .media-frame:first-child { grid-column: auto; }

.spec-list { margin-top: 1.75rem; display: grid; gap: 0.85rem; }
.spec-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-3);
}
.spec-list svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 0.3rem; color: var(--gold-deep); }

/* ---------------------------------------------------------------- 11. Cards */
.card-grid { display: grid; gap: clamp(1rem, 1.8vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 700px) { .card-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 640px) { .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 700px) { .card-grid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .card-grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 2.4vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: 0 26px 60px -40px rgba(17, 17, 17, 0.45);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-deep);
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease),
    color 0.4s var(--ease);
}
.card__icon svg { width: 22px; height: 22px; }
.card:hover .card__icon { border-color: var(--gold); background: rgba(201, 162, 39, 0.08); }

.card h3 { margin-bottom: 0.7rem; }
.card p { font-size: 0.94rem; line-height: 1.7; color: var(--ink-3); }
.card__foot { margin-top: auto; padding-top: 1.4rem; }

/* Dark card variant */
.card--dark {
  background: var(--d-surface-2);
  border-color: var(--d-line);
}
.card--dark h3 { color: var(--white); }
.card--dark p { color: var(--d-text-dim); }
.card--dark .card__icon { border-color: var(--d-line-strong); color: var(--gold); }
.card--dark:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: none;
  background: #1d1d1d;
}
.card--dark:hover .card__icon { background: rgba(201, 162, 39, 0.12); border-color: var(--gold); }

/* Why-us asymmetric grid */
.why-grid { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
@media (min-width: 700px) {
  .why-grid > :nth-child(1),
  .why-grid > :nth-child(2),
  .why-grid > :nth-child(3) { grid-column: span 2; }
  .why-grid > :nth-child(4),
  .why-grid > :nth-child(5) { grid-column: span 3; }
}

.why-card__num {
  position: absolute;
  right: 1.3rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s var(--ease);
}
.card--dark:hover .why-card__num { color: rgba(201, 162, 39, 0.18); }

/* Values grid (about page) */
.value-card { padding: clamp(1.5rem, 2.2vw, 2rem); }
.value-card__mark {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
}

/* ------------------------------------------------------------- 12. Numbered */
.step-grid { display: grid; gap: clamp(1rem, 1.8vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 760px) { .step-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.step {
  position: relative;
  padding: clamp(1.9rem, 3vw, 2.6rem) clamp(1.6rem, 2.4vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.step:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: 0 26px 60px -40px rgba(17, 17, 17, 0.4);
}
.step__num {
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.step h3 { margin-bottom: 0.75rem; }
.step p { font-size: 0.94rem; line-height: 1.7; color: var(--ink-3); }

/* ------------------------------------------------------------ 13. Timeline */
.timeline { position: relative; }

.timeline__track {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .timeline__track { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2.25rem); }
}

/* the connecting rule */
.timeline__step { position: relative; padding-left: 3.5rem; }
@media (min-width: 900px) { .timeline__step { padding-left: 0; padding-top: 3.75rem; } }

/* vertical line (mobile) */
.timeline__step::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: -2.25rem;
  width: 1px;
  background: var(--line);
}
.timeline__step:last-child::before { display: none; }
@media (min-width: 900px) {
  .timeline__step::before {
    left: 36px;
    right: -2.25rem;
    top: 17px;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .timeline__step:last-child::before {
    display: block;
    right: 0;
    background: linear-gradient(90deg, var(--line), rgba(228, 228, 228, 0));
  }
}

.timeline__dot {
  position: absolute;
  left: 0;
  top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease),
    color 0.4s var(--ease);
}
.timeline__step:hover .timeline__dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.timeline__label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.timeline__step h3 { margin-bottom: 0.6rem; font-size: 1.22rem; }
.timeline__step p { font-size: 0.93rem; line-height: 1.7; color: var(--ink-3); max-width: 34ch; }

.section--muted .timeline__dot { background: var(--surface-2); }

/* ------------------------------------------------------------- 14. Globe */
.globe-block { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .globe-block { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); } }

.globe {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.globe svg { width: 100%; height: 100%; overflow: visible; }

.globe__sphere { fill: rgba(255, 255, 255, 0.018); stroke: rgba(255, 255, 255, 0.2); stroke-width: 1; }
.globe__grid { fill: none; stroke: rgba(255, 255, 255, 0.11); stroke-width: 1; }
.globe__arc-base { fill: none; stroke: rgba(201, 162, 39, 0.3); stroke-width: 1; }
.globe__arc-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 16 460;
  stroke-dashoffset: 476;
  animation: arcTravel 5.2s linear infinite;
}
@keyframes arcTravel { to { stroke-dashoffset: -16; } }
.globe__arc-pulse:nth-of-type(1) { animation-delay: 0s; }
.globe__arc-pulse:nth-of-type(2) { animation-delay: 1.05s; }
.globe__arc-pulse:nth-of-type(3) { animation-delay: 2.1s; }
.globe__arc-pulse:nth-of-type(4) { animation-delay: 3.15s; }
.globe__arc-pulse:nth-of-type(5) { animation-delay: 4.2s; }

.globe__node { fill: var(--gold); }
.globe__node-ring { fill: none; stroke: rgba(201, 162, 39, 0.55); stroke-width: 1; }
.globe__origin { fill: var(--gold); }
.globe__origin-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  transform-origin: 362px 252px;
  animation: originPulse 3.4s var(--ease-out) infinite;
}
.globe__origin-pulse:nth-of-type(2) { animation-delay: 1.7s; }
@keyframes originPulse {
  0%   { transform: scale(0.35); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.globe__label {
  fill: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.globe__label-sub {
  fill: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.4px;
}

.globe-stats {
  display: grid;
  gap: 1.35rem;
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  padding-top: clamp(2rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--d-line);
}
@media (min-width: 620px) { .globe-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.globe-stats__item { }
.globe-stats__label {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.globe-stats__text { font-size: 0.9rem; line-height: 1.65; color: var(--d-text-dim); }

/* ------------------------------------------------------------- 15. CTA band */
.cta {
  position: relative;
  background: var(--black);
  color: var(--d-text);
  overflow: hidden;
  isolation: isolate;
}
.cta__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}
@media (min-width: 940px) { .cta__inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); } }
.cta h2 { color: var(--white); }
.cta .eyebrow { color: var(--gold); }
.cta .lead { color: var(--d-text); }
.cta__deco {
  position: absolute;
  right: -6%;
  top: -30%;
  z-index: -1;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(201, 162, 39, 0.16);
  border-radius: 50%;
  pointer-events: none;
}
.cta__deco::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 50%;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
@media (min-width: 940px) { .cta__actions { justify-content: flex-end; } }

/* ---------------------------------------------------------- 16. Contact bits */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }

.detail-list { display: grid; gap: 0; }
.detail {
  display: flex;
  gap: 1.15rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.detail:first-child { padding-top: 0; }
.detail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-deep);
}
.detail__icon svg { width: 19px; height: 19px; }
.detail__label {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--ink-4);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.detail__value { color: var(--ink); font-size: 1rem; font-weight: 500; line-height: 1.6; }
.detail__value a { transition: color 0.3s var(--ease); }
.detail__value a:hover { color: var(--gold-deep); }

.section--dark .detail { border-bottom-color: var(--d-line); }
.section--dark .detail__icon { border-color: var(--d-line-strong); color: var(--gold); }
.section--dark .detail__label { color: var(--d-text-dim); }
.section--dark .detail__value { color: var(--white); }
.section--dark .detail__value a:hover { color: var(--gold); }

/* Contact cards on the homepage */
.contact-cards { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ------------------------------------------------------------- 17. The form */
.form {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.form__grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.form__field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  color: var(--ink-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.field label .req { color: var(--gold-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  appearance: none;
}
.field textarea { min-height: 148px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
  padding-right: 2.6rem;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14);
}

.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: #b3261e; }

.field__error {
  display: none;
  color: #b3261e;
  font-size: 0.8rem;
  line-height: 1.4;
}
.field[data-invalid="true"] .field__error { display: block; }

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.85rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.form__note { font-size: 0.82rem; line-height: 1.6; color: var(--ink-4); max-width: 34ch; }

.form__status {
  display: none;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: var(--radius);
  background: rgba(201, 162, 39, 0.08);
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.65;
}
.form__status[data-visible="true"] { display: block; }

/* --------------------------------------------------------------- 18. Footer */
.site-footer {
  background: var(--black);
  color: var(--d-text);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__top {
  display: grid;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  padding-block: clamp(3.25rem, 6vw, 5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .site-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) {
  .site-footer__top { grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.85fr) minmax(0, 1.1fr); }
}

.footer-brand__mark {
  height: clamp(72px, 8vw, 96px);
  width: auto;
  margin-bottom: 1.6rem;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--white);
}
.footer-brand p { max-width: 34ch; font-size: 0.92rem; line-height: 1.75; color: var(--d-text-dim); }

.footer-heading {
  margin-bottom: 1.35rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-nav li + li { margin-top: 0.7rem; }
.footer-nav a {
  display: inline-block;
  font-size: 0.92rem;
  color: var(--d-text-dim);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--gold); transform: translateX(3px); }

.footer-contact li { display: flex; gap: 0.75rem; font-size: 0.92rem; line-height: 1.7; color: var(--d-text-dim); }
.footer-contact li + li { margin-top: 1rem; }
.footer-contact svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 0.33rem; color: var(--gold); }
.footer-contact a { transition: color 0.3s var(--ease); }
.footer-contact a:hover { color: var(--gold); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer__bottom p { margin: 0; }
.site-footer__tagline { color: var(--gold); letter-spacing: 0.06em; }

/* -------------------------------------------------------- 19. Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal="mask"] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="mask"].is-visible { clip-path: inset(0 0 0 0); }

/* If JS never runs, nothing may stay hidden. */
.no-js [data-reveal] { opacity: 1; transform: none; clip-path: none; }

/* --------------------------------------------------------- 20. Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero__media img { animation: none; transform: none; }
  .globe__arc-pulse { display: none; }
  .globe__origin-pulse { display: none; }
}

/* ----------------------------------------------------------------- 21. Print */
@media print {
  .site-header, .mobile-nav, .cta, .form { display: none !important; }
  body { color: #000; }
  .section--dark, .site-footer { background: #fff !important; color: #000 !important; }
}

/* ------------------------------------------------------- 22. WhatsApp FAB */
.wa-float {
  position: fixed;
  right: clamp(0.9rem, 3vw, 1.75rem);
  bottom: clamp(0.9rem, 3vw, 1.75rem);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  height: 56px;
  border: 1px solid #25d366;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 44px -20px rgba(37, 211, 102, 0.75);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
    transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wa-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}
.wa-float__icon svg { width: 25px; height: 25px; }
.wa-float__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: max-width 0.5s var(--ease-out), opacity 0.3s var(--ease),
    padding-right 0.5s var(--ease-out);
}
.wa-float:hover,
.wa-float:focus-visible {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 22px 54px -18px rgba(37, 211, 102, 0.85);
}
.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
  max-width: 10rem;
  opacity: 1;
  padding-right: 1.35rem;
}
@media (hover: none) {
  .wa-float__label { display: none; }
}
@media print { .wa-float { display: none !important; } }

/* ----------------------------------------------------- 23. Image blocks */
/* Wide photographic band used to break up long text sections. */
.image-band {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-3);
}
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-out);
}
.image-band:hover img { transform: scale(1.035); }
.image-band--wide { aspect-ratio: 21 / 9; }
.image-band--cinema { aspect-ratio: 24 / 8; }
@media (max-width: 760px) {
  .image-band--wide,
  .image-band--cinema { aspect-ratio: 4 / 3; }
}
.image-band__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0));
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
}
.image-band__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.image-band__cap strong { color: var(--white); font-weight: 500; }

/* Asymmetric photo mosaic: one large tile plus four squares. */
.mosaic {
  display: grid;
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mosaic__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-3);
  aspect-ratio: 1 / 1;
}
.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.mosaic__item:hover img { transform: scale(1.06); }
@media (min-width: 820px) {
  .mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    aspect-ratio: 2.2 / 1;
  }
  .mosaic__item { aspect-ratio: auto; height: 100%; }
  .mosaic__item--lg { grid-column: span 2; grid-row: span 2; }
}
.mosaic__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0));
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Card with a photograph above the copy. */
.card--media { padding: 0; overflow: hidden; }
.card--media .card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-3);
}
.card--media .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.card--media:hover .card__media img { transform: scale(1.06); }
.card--media .card__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.5rem, 2.2vw, 1.95rem);
}
.card--media .card__icon { margin-bottom: 1.15rem; }

/* Numbered step with a photograph above the number. */
.step--media { padding: 0; overflow: hidden; }
.step--media .step__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface-3);
}
.step--media .step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.step--media:hover .step__media img { transform: scale(1.05); }
.step--media .step__inner { padding: clamp(1.6rem, 2.4vw, 2.15rem); }
.step--media .step__num {
  margin-bottom: 1.15rem;
  padding-bottom: 0.95rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
}

/* ------------------------------------------------------- 24. FAQ / facts */
.faq { display: grid; gap: 0; max-width: 900px; margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.faq__q:hover { color: var(--gold-deep); }
.faq__sign {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.3rem;
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold);
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease);
}
.faq__sign::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__sign::after  { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq__item[data-open="true"] .faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.faq__item[data-open="true"] .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  max-width: 74ch;
  padding-bottom: 1.6rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-3);
}
.faq__a a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

/* No JS: every answer is simply left open and readable. */
.no-js .faq__a { grid-template-rows: 1fr; }
.no-js .faq__sign { display: none; }

/* Quick-facts table — deliberately plain so answer engines can lift it. */
.facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--d-line);
}
.facts__row {
  display: grid;
  gap: 0.35rem 2rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--d-line);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) {
  .facts__row { grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr); align-items: baseline; }
}
.facts__row dt {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.facts__row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.97rem;
  line-height: 1.65;
}
.facts__row dd a { transition: color 0.3s var(--ease); }
.facts__row dd a:hover { color: var(--gold); }
