/* ─────────────────────────────────────────────────────────────
   Groshi · Marketing site
   Vanilla HTML + CSS + JS · matches Groshi Design System brand
   ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color-scheme: light only; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--groshi-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }

::selection { background: var(--groshi-emerald); color: #fff; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ─── Helpers ─── */
.tnum { font-variant-numeric: tabular-nums; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
}
.eyebrow--emerald { color: var(--groshi-emerald-700); }
.eyebrow--seafoam { color: var(--groshi-emerald-300); }

.section-title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.section-title .light { font-weight: 300; display: block; color: var(--fg-muted); }
.section-title .heavy { font-weight: 700; display: block; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  line-height: 1;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--groshi-emerald); color: #fff; }
.btn--primary:hover { background: var(--groshi-emerald-700); }

.btn--secondary { background: var(--groshi-onyx); color: #fff; }
.btn--secondary:hover { background: var(--groshi-onyx-700); }

.btn--ghost { background: transparent; color: var(--groshi-onyx); border-color: var(--groshi-onyx); }
.btn--ghost:hover { background: var(--groshi-onyx); color: #fff; }

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

.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { display: flex; width: 100%; }
.btn .arrow { font-weight: 700; font-size: 18px; line-height: 1; }

/* ─── Chips ─── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.chip--success { background: var(--groshi-emerald-50); color: var(--groshi-emerald-700); }
.chip--dark    { background: var(--groshi-onyx-700); color: #fff; }
.chip--neutral { background: var(--bg-soft); color: var(--fg); }
.chip .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--groshi-emerald);
  box-shadow: 0 0 0 0 rgba(43,181,103,0.6);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(43,181,103,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(43,181,103,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,181,103,0); }
}

/* ─── Brand logo / arrow ─── */
.brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex: none;
}
.brand-logo img,
.brand-logo svg {
  display: block;
  height: 100%;
  width: auto;
}

/* ─── Storefront sign motif ─── */
.storefront-sign { display: flex; max-width: 420px; }
.storefront-sign__black {
  flex: 1;
  background: var(--groshi-onyx);
  color: #fff;
  padding: 18px 28px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  display: flex; flex-direction: column; justify-content: center;
}
.storefront-sign__black .ss-title { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }
.storefront-sign__black .ss-hours { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.storefront-sign__green {
  background: var(--groshi-emerald);
  color: #fff;
  padding: 14px 22px 14px 28px;
  margin-left: -18px;
  font-weight: 700;
  line-height: 1.2;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex; flex-direction: column; justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.site-header .brand-logo { height: 28px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-base) var(--ease-out);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--groshi-emerald);
  transition: right var(--dur-base) var(--ease-out);
}
.site-nav a:hover { color: var(--groshi-emerald-700); }
.site-nav a:hover::after { right: 0; }

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

.site-header__menu {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
}
.site-header__menu span,
.site-header__menu span::before,
.site-header__menu span::after {
  display: block;
  width: 18px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  position: relative;
}
.site-header__menu span::before,
.site-header__menu span::after {
  content: ""; position: absolute; left: 0;
}
.site-header__menu span::before { top: -6px; }
.site-header__menu span::after  { top: 6px; }

/* Mobile sheet */
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 49;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  display: block;
  padding: 14px 12px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
}
.mobile-menu a:hover { background: var(--bg-soft); }
.mobile-menu.open { display: flex; }

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--groshi-onyx);
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-organic.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: lighten;
  filter: saturate(1.1);
}
.hero::after {
  /* gentle gradient so left-column text stays legible over the image */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
              var(--groshi-onyx) 0%,
              rgba(13,21,19,0.85) 38%,
              rgba(13,21,19,0.30) 70%,
              rgba(13,21,19,0.10) 100%);
  pointer-events: none;
}
.hero__watermark {
  position: absolute;
  right: -120px; bottom: -180px;
  width: 620px; height: 620px;
  pointer-events: none;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  padding: 96px 0 112px;
  align-items: center;
}
.hero__title {
  margin: 0;
  font-size: 104px;
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.hero__title .l1 { display: block; font-weight: 300; }
.hero__title .l2 { display: block; font-weight: 700; }
.hero__title .l3 { display: block; font-weight: 900; color: var(--groshi-emerald); }

.hero__lede {
  margin: 32px 0 0;
  font-size: 19px;
  line-height: 1.55;
  max-width: 480px;
  color: rgba(255,255,255,0.78);
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__sign {
  margin-top: 36px;
}

/* ─── Exchanger card (right column) ─── */
.exchanger {
  background: #fff;
  color: var(--fg);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.exchanger__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.seg {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: var(--bg-soft);
}
.seg button {
  padding: 9px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--fg-muted);
  border: none;
  font-weight: 600;
  font-size: 13px;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.seg button.is-active { background: var(--groshi-onyx); color: #fff; }

.field {
  border: 1px solid var(--border-strong);
  background: #fff;
  border-radius: 14px;
  padding: 12px 4px;
  display: flex;
  align-items: center;
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.field:focus-within { border-color: var(--groshi-emerald); }
.field--highlight { background: var(--groshi-emerald-50); border-color: var(--groshi-emerald-300); }
.field__inner {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  padding: 0 4px;
  min-width: 0;
}
.field__label {
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500;
  color: var(--fg-muted); padding-left: 12px;
}
.field__row { display: flex; align-items: center; gap: 8px; min-width: 0; }
.field__amount {
  flex: 1;
  border: none; outline: none; background: transparent;
  font-size: 32px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  width: 100%; padding: 0 16px;
  color: inherit;
  min-width: 0;
}
.field__amount--readonly { color: var(--groshi-emerald-700); padding: 0 16px; }

.cur-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: #fff; color: var(--fg);
  font-size: 14px; font-weight: 600;
  margin-right: 8px;
  white-space: nowrap;
}
.cur-tag--btn { cursor: pointer; transition: border-color var(--dur-base) var(--ease-out); }
.cur-tag--btn:hover { border-color: var(--groshi-onyx); }
.cur-tag .caret { opacity: 0.5; }

.cur-picker { position: relative; }
.cur-picker__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-3);
  padding: 6px;
  width: 230px;
  z-index: 5;
  display: none;
}
.cur-picker.is-open .cur-picker__menu { display: block; }
.cur-picker__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  color: var(--fg);
}
.cur-picker__item:hover { background: var(--bg-soft); }
.cur-picker__item.is-active { background: var(--groshi-emerald-50); }
.cur-picker__item .code { font-weight: 600; }
.cur-picker__item .name { color: var(--fg-muted); font-size: 12px; }

.exchanger__rate {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--fg-muted);
}
.exchanger__rate b { color: var(--fg); font-weight: 600; }

.swap {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--groshi-onyx);
  color: #fff;
  border: none;
  font-size: 16px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.swap:hover { background: var(--groshi-onyx-700); transform: rotate(180deg); }

.exchanger__note { font-size: 12px; color: var(--fg-subtle); text-align: center; }

/* ─────────────────────────────────────────────────────────────
   RATE BOARD
   ───────────────────────────────────────────────────────────── */
.rates { padding: 112px 0 96px; background: #fff; }
.rates__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.rates__lede {
  margin-top: 24px; max-width: 420px;
  font-size: 17px; line-height: 1.55; color: var(--fg-muted);
}
.rates__chips { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

.rates__board {
  background: var(--groshi-onyx);
  color: #fff;
  border-radius: 24px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.rates__board-watermark {
  position: absolute;
  right: -80px; bottom: -100px;
  width: 320px; height: 320px;
  pointer-events: none;
}
.rates__table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.rates__table th {
  text-align: left;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
}
.rates__table th.right { text-align: right; }
.rates__table td {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.rates__table td.code  { font-weight: 700; font-size: 22px; }
.rates__table td.name  { font-size: 14px; color: rgba(255,255,255,0.65); }
.rates__table td.buy   { text-align: right; font-size: 22px; font-weight: 600; color: var(--groshi-emerald); font-variant-numeric: tabular-nums; }
.rates__table td.sell  { text-align: right; font-size: 22px; font-weight: 600; font-variant-numeric: tabular-nums; }
.rates__table td.delta { text-align: right; font-size: 13px; color: rgba(255,255,255,0.55); font-variant-numeric: tabular-nums; }
.rates__table td.delta.up   { color: var(--groshi-emerald); }
.rates__table td.delta.down { color: var(--groshi-ruby); }

/* ─────────────────────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────────────────────── */
.services {
  padding: 112px 0;
  background: var(--groshi-seafoam);
  position: relative;
  overflow: hidden;
}
.services__watermark {
  position: absolute;
  right: -140px; top: -140px;
  width: 580px; height: 580px;
  pointer-events: none;
}
.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
  position: relative;
}
.services__intro {
  max-width: 380px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.services__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-inline: auto;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  box-shadow: 0 1px 2px rgba(14,20,18,0.04);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1.5px solid var(--groshi-emerald);
  color: var(--groshi-emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.service-card__tag {
  margin-top: 4px;
  font-size: 13px;
  color: var(--groshi-emerald-700);
  font-weight: 600;
}
.service-card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.service-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--groshi-onyx);
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
  position: relative;
  transition: color var(--dur-base) var(--ease-out);
}
.service-card__more:hover { color: var(--groshi-emerald-700); }
.service-card__more span { transition: transform var(--dur-base) var(--ease-out); }
.service-card__more:hover span { transform: translateX(4px); }

/* ─────────────────────────────────────────────────────────────
   LOCATIONS
   ───────────────────────────────────────────────────────────── */
.locations { padding: 112px 0; background: #fff; }
.locations__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 24px;
}
.locations__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  height: 540px;
}
.locations__list {
  display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto;
  padding-right: 8px;
}
.locations__list::-webkit-scrollbar { width: 6px; }
.locations__list::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }
.locations__search {
  position: relative;
  margin-bottom: 6px;
}
.locations__search input {
  width: 100%;
  font-size: 15px;
  padding: 14px 16px 14px 44px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out);
}
.locations__search input:focus { border-color: var(--groshi-emerald); }
.locations__search svg {
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--fg-muted);
  width: 18px; height: 18px;
}

.branch {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  border: none;
  background: var(--bg-soft);
  cursor: pointer;
  text-align: left;
  border-left: 3px solid transparent;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.branch:hover { background: #ECEEEB; }
.branch.is-active {
  background: var(--groshi-emerald-50);
  border-left-color: var(--groshi-emerald);
}
.branch__pin {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #fff;
  color: var(--groshi-emerald);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.branch.is-active .branch__pin {
  background: var(--groshi-emerald); color: #fff;
}
.branch__body { flex: 1; min-width: 0; }
.branch__name { font-size: 15px; font-weight: 600; color: var(--fg); }
.branch__meta { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.branch__status {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: var(--groshi-emerald-50);
  color: var(--groshi-emerald-700);
}
.branch__status.closing {
  background: var(--groshi-sunstone);
  color: var(--groshi-ruby-700);
}
.branch__status.closed {
  background: var(--bg-soft);
  color: var(--fg-muted);
}

/* Single-branch info card (shown under the branch button) */
.branch-card {
  margin-top: 12px;
  padding: 22px;
  border-radius: 16px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.branch-card__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
}
.branch-card__label {
  color: var(--fg-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.branch-card__value {
  color: var(--fg);
  font-weight: 500;
}
.branch-card__value a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.branch-card__value a:hover {
  color: var(--groshi-emerald-700);
  border-color: var(--groshi-emerald);
}

.locations__intro {
  max-width: 320px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
}

.map {
  position: relative;
  border-radius: 24px;
  background: var(--groshi-onyx);
  color: #fff;
  overflow: hidden;
}
.map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__chips {
  position: absolute;
  top: 24px; right: 24px;
  display: flex; gap: 8px;
}
.map__popover {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  background: #fff;
  color: var(--fg);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: var(--shadow-3);
}
.map__popover-eyebrow {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--groshi-emerald-700);
  font-weight: 600;
}
.map__popover-name { font-size: 22px; font-weight: 700; margin-top: 4px; }
.map__popover-meta { font-size: 14px; color: var(--fg-muted); margin-top: 6px; }

/* ─────────────────────────────────────────────────────────────
   WHY US
   ───────────────────────────────────────────────────────────── */
.whyus {
  padding: 112px 0;
  background: var(--groshi-onyx);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.whyus__watermark {
  position: absolute;
  left: -100px; top: -100px;
  width: 520px; height: 520px;
  pointer-events: none;
}
.whyus__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
}
.whyus__title {
  margin: 12px 0 32px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.whyus__title .light { font-weight: 300; color: rgba(255,255,255,0.55); }
.whyus__title .heavy { font-weight: 700; }
.whyus__lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: 540px;
}
.pillar { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 16px; }
.pillar__big { font-size: 18px; font-weight: 900; letter-spacing: 0.02em; }
.pillar__small { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; line-height: 1.4; }

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}
.stat {
  background: var(--groshi-onyx-700);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,0.10);
}
.stat--accent {
  background: var(--groshi-emerald);
  color: var(--groshi-onyx);
  border: none;
}
.stat__num {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.stat--small .stat__num { font-size: 40px; }
.stat--accent .stat__num { color: var(--groshi-onyx); }
.stat__label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: right;
  max-width: 200px;
  line-height: 1.4;
}
.stat--accent .stat__label { color: var(--groshi-onyx); }

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__about p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 300px;
}
.footer__chips { display: flex; gap: 8px; margin-top: 20px; }
.footer-col__title { margin-bottom: 16px; }
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg);
  transition: color var(--dur-base) var(--ease-out);
}
.footer-col a:hover { color: var(--groshi-emerald-700); }

.footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--fg-subtle);
}
.footer__bottom .links { display: flex; gap: 24px; }
.footer__bottom a:hover { color: var(--fg); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; padding: 72px 0 80px; }
  .hero__title { font-size: 84px; }
  .rates__grid { grid-template-columns: 1fr; gap: 48px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .locations__grid { grid-template-columns: 1fr; height: auto; }
  .locations__list { max-height: 380px; }
  .map { height: 420px; }
  .whyus__inner { grid-template-columns: 1fr; gap: 56px; }
  .whyus__title { font-size: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-title { font-size: 44px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .site-nav, .site-header__cta .btn, .site-header__cta .chip { display: none; }
  .site-header__menu { display: inline-flex; }

  .hero__title { font-size: 64px; }
  .hero__lede { font-size: 17px; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { width: 100%; }

  .exchanger { padding: 22px; }
  .field__amount { font-size: 26px; }
  .exchanger__head { flex-direction: column; align-items: flex-start; gap: 12px; }

  .rates { padding: 80px 0 64px; }
  .rates__board { padding: 22px 18px; border-radius: 20px; }
  .rates__table td.name, .rates__table th:nth-child(2) { display: none; }
  .rates__table td.code { font-size: 18px; }
  .rates__table td.buy, .rates__table td.sell { font-size: 18px; }
  .rates__table td.delta, .rates__table th:nth-child(5) { display: none; }

  .services { padding: 80px 0; }
  .services__head { flex-direction: column; align-items: flex-start; }
  .services__grid { grid-template-columns: 1fr; }

  .locations { padding: 80px 0; }
  .locations__head { flex-direction: column; align-items: flex-start; }
  .map__popover { flex-direction: column; align-items: flex-start; gap: 12px; }

  .whyus { padding: 80px 0; }
  .whyus__title { font-size: 36px; }
  .pillars { grid-template-columns: 1fr; max-width: none; }
  .stat__num { font-size: 56px; }
  .stat--small .stat__num { font-size: 32px; }
  .stat__label { font-size: 13px; max-width: 140px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__bottom .links { flex-wrap: wrap; gap: 16px; }

  .section-title { font-size: 36px; }
  .hero__sign { transform: scale(0.92); transform-origin: left; }
}
