/* =====================================================================
   ALSUDAIS GROUP — yms.sa redesign
   Shared stylesheet. Source of truth: ../brand/DESIGN.md
   Direction-agnostic: works in both RTL (AR) and LTR (EN) via logical props.
===================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  /* Color tokens — see brand/DESIGN.md */
  --navy: #1A2240;
  --navy-deep: #0F1729;
  --navy-tint: #2A345A;
  --bronze: #B89478;
  --bronze-deep: #8E6E58;
  --surface: #FFFFFF;
  --cream: #F5F4F2;
  --cream-raised: #EFEEEA;
  --border: #E1E0DC;
  --ink: #1A2240;
  --ink-mid: #6A6D72;
  --ink-subtle: #A3A6AA;
  --success: #1F8A5B;
  --danger: #B5371E;

  /* Font stacks */
  --ar: "Tajawal", "IBM Plex Sans Arabic", "Cairo", "Tahoma", sans-serif;
  --en: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;
  --r-pill: 9999px;

  /* Spacing scale (4px base) */
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-2xl: 48px;
  --s-3xl: 64px;
  --s-4xl: 96px;
  --s-5xl: 128px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(15,23,41,.04), 0 4px 16px rgba(15,23,41,.06);
  --shadow-raised: 0 4px 8px rgba(15,23,41,.06), 0 16px 32px rgba(15,23,41,.08);
  --shadow-hero: 0 24px 64px rgba(15,23,41,.18);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ar);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "tnum" 1;
}
html[lang="en"] body { font-family: var(--en); line-height: 1.6; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }

/* ---------- typography ---------- */
h1, h2, h3, h4, h5 { color: var(--navy); font-weight: 700; }

html[lang="ar"] h1 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); line-height: 1.2; font-weight: 900; }
html[lang="ar"] h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.3; font-weight: 900; }
html[lang="ar"] h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.4; }
html[lang="ar"] h4 { font-size: 1.125rem; line-height: 1.45; }

html[lang="en"] h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
html[lang="en"] h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.15; font-weight: 700; letter-spacing: -0.015em; }
html[lang="en"] h3 { font-size: clamp(1.125rem, 1.8vw, 1.375rem); line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; }
html[lang="en"] h4 { font-size: 1.0625rem; line-height: 1.4; font-weight: 600; }

p { color: var(--ink); }
.lede { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); line-height: 1.7; color: var(--ink-mid); max-width: 64ch; }
.small { font-size: .875rem; color: var(--ink-mid); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  font-family: var(--en);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--bronze);
}

/* ---------- layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section { padding-block: clamp(64px, 10vw, 120px); }
.section--cream { background: var(--cream); }
.section--raised { background: var(--cream-raised); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--cream); }
.section--navy p { color: rgba(255,255,255,.78); }

.grid { display: grid; gap: var(--s-lg); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
}

.stack { display: flex; flex-direction: column; gap: var(--s-md); }
.row { display: flex; align-items: center; gap: var(--s-md); flex-wrap: wrap; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-block: var(--s-md);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-lg);
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.nav__brand img { height: 44px; width: auto; display: block; }
@media (max-width: 560px) { .nav__brand img { height: 36px; } }
.nav__brand .en-mark {
  font-family: var(--en);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: .08em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav__brand .en-mark small {
  font-size: .625rem;
  letter-spacing: .3em;
  margin-inline-start: 4px;
  font-weight: 600;
}
.nav__brand .arrow {
  display: inline-block;
  width: 10px; height: 16px;
  background: var(--navy);
  clip-path: polygon(50% 0, 100% 60%, 75% 60%, 75% 100%, 25% 100%, 25% 60%, 0 60%);
}
.nav__brand .ar-mark {
  font-family: var(--ar);
  font-weight: 700;
  font-size: .9375rem;
  line-height: 1.15;
  color: var(--navy);
  border-inline-start: 1px solid var(--border);
  padding-inline-start: 12px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-lg);
  justify-content: center;
}
.nav__links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a[aria-current="page"] { color: var(--navy); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--bronze);
}
.nav__cta { display: flex; align-items: center; gap: var(--s-md); }
.lang-toggle {
  font-family: var(--en);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-mid);
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.lang-toggle:hover { color: var(--navy); border-color: var(--navy); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto auto; justify-content: space-between; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .9375rem;
  transition: background .15s ease, transform .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: var(--surface); }
.btn--primary:hover { background: var(--navy-tint); }
.btn--secondary { background: var(--surface); color: var(--navy); border: 1px solid var(--navy); }
.btn--secondary:hover { background: var(--navy); color: var(--surface); }
.btn--ghost { color: var(--navy); }
.btn--ghost:hover { background: var(--cream-raised); }
.btn--on-dark { background: var(--surface); color: var(--navy); }
.btn--on-dark:hover { background: var(--cream); }
.btn--bronze { background: var(--bronze); color: var(--navy); }
.btn--bronze:hover { background: var(--bronze-deep); color: var(--cream); }
.btn .arrow-r::after {
  content: "→";
  display: inline-block;
  margin-inline-start: 4px;
  transition: transform .15s ease;
}
html[dir="rtl"] .btn .arrow-r::after { content: "←"; }
.btn:hover .arrow-r::after { transform: translateX(2px); }
html[dir="rtl"] .btn:hover .arrow-r::after { transform: translateX(-2px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(80px, 12vw, 160px);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 65%, #050a1a 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,148,120,.18), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(255,255,255,.05), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero h1 {
  color: var(--cream);
  margin-block: var(--s-md) var(--s-lg);
}
.hero h1 .accent { color: var(--bronze); }
.hero .lede {
  color: rgba(255,255,255,.84);
  max-width: 64ch;
}
.hero__actions { display: flex; gap: var(--s-md); margin-block-start: var(--s-2xl); flex-wrap: wrap; }
.hero__stamp {
  position: absolute;
  inset-block-end: 32px;
  inset-inline-end: 32px;
  z-index: 2;
  font-family: var(--en);
  font-size: .75rem;
  letter-spacing: .32em;
  color: rgba(255,255,255,.5);
}

/* hero variant — short for inner pages */
.hero--inner { padding-block: clamp(96px, 12vw, 160px) clamp(56px, 8vw, 96px); }
.hero--inner h1 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }

/* ---------- trust strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.trust-strip__item {
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  border-inline-start: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-strip__item:first-child { border-inline-start: 0; }
.trust-strip__num {
  font-family: var(--en);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-strip__label {
  font-size: .9375rem;
  color: var(--ink-mid);
}
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(2) { border-inline-start: 1px solid var(--border); }
  .trust-strip__item:nth-child(3) { border-top: 1px solid var(--border); border-inline-start: 0; }
  .trust-strip__item:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ---------- card systems ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  transition: border-color .15s ease, transform .15s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card--cream { background: var(--cream-raised); border-color: transparent; }
.card--cream:hover { background: var(--surface); border-color: var(--border); }

.card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--cream-raised);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-block-end: var(--s-md);
}
.card h3 { margin-block-end: var(--s-sm); }
.card p { color: var(--ink-mid); font-size: .9375rem; line-height: 1.65; }

/* ---------- service grid (full descriptions) ---------- */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  transition: border-color .15s ease, transform .15s ease;
}
.service-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  display: grid;
  place-items: center;
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--ink-mid); font-size: .9375rem; }

/* ---------- methodology timeline ---------- */
.method {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-2xl) var(--s-xl);
  position: relative;
}
.method__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.method__track::before {
  content: "";
  position: absolute;
  inset-block-start: 32px;
  inset-inline: 32px;
  height: 1px;
  background: var(--bronze);
  opacity: .35;
}
.method__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-md);
  padding-inline: var(--s-md);
  border-inline-start: 1px solid var(--border);
}
.method__step:first-child { border-inline-start: 0; }
.method__num {
  width: 64px; height: 64px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--en);
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
}
.method__step h4 { color: var(--navy); font-size: .9375rem; line-height: 1.5; }
@media (max-width: 900px) {
  .method__track { grid-template-columns: 1fr; }
  .method__track::before { display: none; }
  .method__step { border-inline-start: 0; padding-block: var(--s-md); border-top: 1px solid var(--border); }
  .method__step:first-child { border-top: 0; }
}

/* ---------- licenses block ---------- */
.licenses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-lg); }
@media (max-width: 720px) { .licenses-grid { grid-template-columns: 1fr; } }
.license {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  display: flex;
  align-items: center;
  gap: var(--s-lg);
}
.license__mark {
  width: 96px;
  flex: 0 0 96px;
  height: 64px;
  display: grid;
  place-items: center;
  font-family: var(--en);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: .04em;
  border-radius: var(--r-md);
  background: var(--cream-raised);
}
.license__mark.moj { color: #1F6B3A; }
.license__mark.rega { color: #1F8A5B; }

/* ---------- featured auction ---------- */
.auction-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 360px;
}
.auction-feature__visual {
  background: linear-gradient(135deg, rgba(184,148,120,.32), rgba(184,148,120,0) 70%), var(--navy-deep);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
  font-family: var(--en);
  font-size: .75rem;
  letter-spacing: .2em;
}
.auction-feature__body { padding: var(--s-2xl); display: flex; flex-direction: column; justify-content: center; gap: var(--s-md); }
.auction-feature h3 { color: var(--cream); font-size: clamp(1.5rem, 2.5vw, 2rem); }
.auction-feature h3 .accent { color: var(--bronze); }
.auction-feature .meta-row { display: flex; flex-wrap: wrap; gap: var(--s-md); color: rgba(255,255,255,.75); font-size: .9375rem; }
.auction-feature .meta-row .dot { color: var(--bronze); }
@media (max-width: 720px) {
  .auction-feature { grid-template-columns: 1fr; }
  .auction-feature__visual { min-height: 200px; }
}

/* ---------- past auction card ---------- */
.past-auction {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.past-auction__visual {
  aspect-ratio: 16 / 10;
  background: var(--cream-raised);
  display: grid;
  place-items: center;
  color: var(--ink-subtle);
  font-family: var(--en);
  font-size: .6875rem;
  letter-spacing: .2em;
}
.past-auction__visual.equipment {
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(26,34,64,.05) 12px 14px),
    var(--cream-raised);
}
.past-auction__visual.jewelry {
  background:
    radial-gradient(ellipse at center, rgba(184,148,120,.25), transparent 70%),
    var(--cream-raised);
}
.past-auction__visual.camel {
  background:
    linear-gradient(180deg, rgba(184,148,120,.2), rgba(184,148,120,.05) 80%),
    var(--cream-raised);
}
.past-auction__body { padding: var(--s-xl); display: flex; flex-direction: column; gap: var(--s-sm); }
.past-auction h3 { font-size: 1.125rem; line-height: 1.4; }
.past-auction .meta { display: flex; gap: var(--s-md); color: var(--ink-mid); font-size: .875rem; flex-wrap: wrap; }
.past-auction .meta .dot { color: var(--bronze); }

/* ---------- property card ---------- */
.property {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.property:hover { transform: translateY(-2px); border-color: var(--navy); }
.property__visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cream-raised), var(--border));
  position: relative;
  display: grid;
  place-items: center;
  color: var(--ink-subtle);
  font-family: var(--en);
  font-size: .75rem;
  letter-spacing: .15em;
}
.property__badge {
  position: absolute;
  inset-block-start: var(--s-md);
  inset-inline-start: var(--s-md);
  background: var(--navy);
  color: var(--cream);
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.property__body { padding: var(--s-lg); }
.property h3 { font-size: 1.125rem; margin-block-end: 4px; }
.property .loc { color: var(--ink-mid); font-size: .875rem; margin-block-end: var(--s-md); }
.property .price { font-family: var(--en); font-weight: 700; font-size: 1.25rem; color: var(--navy); }

/* ---------- value chip ---------- */
.values-row { display: flex; flex-wrap: wrap; gap: var(--s-sm); }
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream-raised);
  border-radius: var(--r-pill);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy);
}
.value-chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2xl); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-method {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: var(--s-md) 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: 0; }
.contact-method__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--cream-raised);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex: 0 0 48px;
}
.contact-method__label { color: var(--ink-mid); font-size: .8125rem; letter-spacing: .04em; }
.contact-method__value { color: var(--navy); font-weight: 600; font-size: 1.0625rem; }

.form { background: var(--cream-raised); border-radius: var(--r-lg); padding: var(--s-2xl); display: flex; flex-direction: column; gap: var(--s-md); }
.form label { font-size: .875rem; font-weight: 600; color: var(--navy); margin-block-end: 4px; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--r-md);
  font: inherit;
  color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  border-color: var(--navy);
}
.form textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-md); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- foreign ownership callout (real-estate page) ---------- */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--s-2xl);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-xl);
  align-items: center;
}
.callout__year {
  font-family: var(--en);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--bronze);
  letter-spacing: -0.04em;
  line-height: 1;
}
.callout h3 { color: var(--cream); }
.callout p { color: rgba(255,255,255,.78); }
@media (max-width: 720px) {
  .callout { grid-template-columns: 1fr; gap: var(--s-md); }
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding-block: var(--s-3xl) var(--s-xl);
  font-size: .9375rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-2xl);
  padding-block-end: var(--s-2xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer h4 { color: var(--cream); font-size: .9375rem; margin-block-end: var(--s-md); }
.footer ul { display: flex; flex-direction: column; gap: var(--s-sm); }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--cream); }
.footer__brand img.brand-logo { height: 56px; width: auto; display: block; margin-block-end: var(--s-md); }
.footer__brand .en-mark {
  font-family: var(--en);
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 2px;
}
.footer__brand .arrow {
  display: inline-block;
  width: 11px; height: 18px;
  background: var(--cream);
  clip-path: polygon(50% 0, 100% 60%, 75% 60%, 75% 100%, 25% 100%, 25% 60%, 0 60%);
}
.footer__brand .ar-mark { font-family: var(--ar); color: var(--cream); margin-block-start: var(--s-sm); }
.footer__brand p { margin-block-start: var(--s-md); max-width: 32ch; }

.footer__socials { display: flex; gap: var(--s-sm); margin-block-start: var(--s-md); }
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
}
.footer__socials a:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.footer__bottom {
  padding-block-start: var(--s-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: var(--s-md);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- utilities ---------- */
.center { text-align: center; }
.muted { color: var(--ink-mid); }
.section__head { text-align: center; max-width: 720px; margin-inline: auto; margin-block-end: var(--s-2xl); }
.section__head .eyebrow { margin-block-end: var(--s-md); }
.divider { width: 64px; height: 2px; background: var(--bronze); margin-block: var(--s-md); }
.center .divider { margin-inline: auto; }
