/* ─── CLÉO · Design system ──────────────────────────────────────── */
:root {
  /* Warm coral palette — original, evokes the rosy-travel register */
  --coral:        oklch(0.68 0.16 25);
  --coral-deep:   oklch(0.55 0.18 25);
  --coral-soft:   oklch(0.92 0.05 30);

  --ink:          oklch(0.17 0.012 60);
  --ink-soft:     oklch(0.36 0.012 60);
  --ink-mute:     oklch(0.55 0.010 60);

  --cream:        oklch(0.975 0.012 75);
  --cream-deep:   oklch(0.94 0.018 75);
  --sand:         oklch(0.86 0.022 70);
  --line:         oklch(0.85 0.012 70);

  --display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --body:    "Manrope", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;

  --pad: clamp(20px, 4vw, 56px);
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ─── Type utilities ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--coral);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--coral-deep); }
.muted { color: var(--ink-soft); }

/* ─── Layout ────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section { position: relative; }
.section-pad { padding: clamp(72px, 10vh, 140px) 0; }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-1px); }
.btn-coral {
  background: var(--coral);
  color: var(--cream);
}
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn .arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ─── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, color .35s ease;
}
.nav.scrolled {
  background: rgba(248, 244, 237, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: -0.015em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo-key {
  display: inline-flex;
  align-items: center;
  height: 0.88em;
  margin-left: 0.04em;
  margin-right: 0.04em;
  position: relative;
  top: 0.01em;
}
.logo-keysvg {
  height: 100%;
  width: auto;
  display: block;
  overflow: visible;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 2px;
  color: inherit;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 0;
  background: var(--coral);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
@media (max-width: 800px) {
  .nav-links { display: none; }
}

/* Nav inversed when over hero */
.nav.over-dark { color: var(--cream); }
.nav.over-dark .btn-primary { background: var(--cream); color: var(--ink); }
.nav.over-dark .btn-primary:hover { background: var(--coral); color: var(--cream); }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 10vh, 130px);
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.0) brightness(0.72) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15,12,10,0.55) 0%,
    rgba(15,12,10,0.18) 20%,
    rgba(15,12,10,0.25) 45%,
    rgba(15,12,10,0.78) 80%,
    rgba(15,12,10,0.92) 100%);
}
/* Extra gradient behind the text column for legibility */
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(15,12,10,0.45) 0%,
    rgba(15,12,10,0.12) 55%,
    rgba(15,12,10,0) 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-meta-left { max-width: 760px; }
.hero-eyebrow { color: rgba(255,255,255,0.8); }
.hero-eyebrow .dot { background: var(--coral); }
.hero h1 {
  font-size: clamp(52px, 7.8vw, 120px);
  margin: 22px 0 0;
  color: #fff;
  text-shadow:
    0 2px 40px rgba(15,12,10,0.85),
    0 1px 6px rgba(15,12,10,0.6),
    0 0 80px rgba(15,12,10,0.4);
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 560px;
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
  text-shadow: 0 1px 30px rgba(15,12,10,0.5), 0 1px 4px rgba(15,12,10,0.35);
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ─── Section header ────────────────────────────────────────────── */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-size: clamp(36px, 5vw, 68px);
  margin: 14px 0 0;
  max-width: 720px;
}
.sec-head .sec-desc {
  max-width: 360px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Chiffres ──────────────────────────────────────────────────── */
.stats {
  background: var(--ink);
  color: var(--cream);
}
.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stats .stat {
  padding: 56px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stats .stat:last-child { border-right: none; }
.stats .stat .num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1;
  font-weight: 400;
}
.stats .stat .num .plus { color: var(--coral); font-style: italic; }
.stats .stat .lbl {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  max-width: 220px;
}
.stats-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding: 56px 0 40px;
  flex-wrap: wrap;
}
.stats-top h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  max-width: 540px;
  color: var(--cream);
  margin: 0;
}
.stats-top .eyebrow { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) {
  .stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stats .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
}

/* ─── Properties gallery ────────────────────────────────────────── */
.gallery {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.prop {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--sand);
  cursor: pointer;
}
.prop image-slot {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}
.prop img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.prop:hover img { transform: scale(1.05); }
.prop::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.62) 100%);
}
.prop .meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}
.prop .meta .name {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.1;
}
.prop .meta .loc {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
}
/* Asymmetric layout */
.prop.p1 { grid-column: span 7; aspect-ratio: 16/10; }
.prop.p2 { grid-column: span 5; aspect-ratio: 4/5; }
.prop.p3 { grid-column: span 4; aspect-ratio: 4/5; }
.prop.p4 { grid-column: span 4; aspect-ratio: 4/5; }
.prop.p5 { grid-column: span 4; aspect-ratio: 4/5; }
.prop.p6 { grid-column: span 5; aspect-ratio: 4/5; }
.prop.p7 { grid-column: span 7; aspect-ratio: 16/10; }
.prop.p8 { grid-column: span 4; aspect-ratio: 4/5; }
.prop.p9 { grid-column: span 4; aspect-ratio: 4/5; }
.prop.p10 { grid-column: span 4; aspect-ratio: 4/5; }
@media (max-width: 900px) {
  .prop { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }
}

/* ─── Globe / Map ───────────────────────────────────────────────── */
.map-sec {
  background: var(--cream-deep);
  overflow: hidden;
}
.map-wrap {
  position: relative;
  margin-top: 30px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 50% 38%, oklch(0.985 0.012 240) 0%, oklch(0.92 0.022 240) 70%, oklch(0.86 0.035 240) 100%);
  border: 1px solid var(--line);
  padding: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .map-wrap { grid-template-columns: 1fr; padding: 24px; gap: 28px; }
}
.map-globe-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}
.globe-svg {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.globe-svg:active { cursor: grabbing; }
.globe-pin .pulse {
  fill: var(--coral);
  opacity: 0.45;
  transform-origin: center;
  animation: pinPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
.globe-pin .core {
  fill: var(--coral);
  stroke: var(--cream);
  stroke-width: 1.4;
  cursor: pointer;
  transition: r 0.2s ease;
}
.globe-pin.active .core { fill: var(--ink); }
@keyframes pinPulse {
  0%, 100% { transform: scale(0.55); opacity: 0.5; }
  50%      { transform: scale(2.2); opacity: 0; }
}

.map-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.map-info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.map-info-city {
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: -4px 0 0;
  text-wrap: balance;
}
.map-info-country {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.map-info-stats {
  display: flex;
  gap: 28px;
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.map-info-stat .v {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.map-info-stat .v em { color: var(--coral-deep); font-style: italic; }
.map-info-stat .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.map-hint {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.map-hint .icn {
  display: inline-flex;
  width: 24px; height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.map-hint svg { width: 12px; height: 12px; stroke: var(--ink-soft); fill: none; stroke-width: 1.5; }

.dest-groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}
.dest-group-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.dest-group-title { color: var(--ink); }
.dest-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.dest-chip {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dest-chip:hover { border-color: var(--coral); transform: translateY(-2px); box-shadow: 0 4px 16px -6px rgba(0,0,0,0.12); }
.dest-chip:focus { outline: none; }
.dest-chip.active {
  background: var(--cream);
  border-color: var(--coral);
  border-left: 3px solid var(--coral);
  padding-left: 11px;
}
.dest-chip.active .city { color: var(--coral-deep); }
.dest-chip .city { font-family: var(--display); font-size: 19px; line-height: 1.15; }
.dest-chip .ctry {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 1000px) {
  .dest-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .dest-list { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Testimonials carousel ─────────────────────────────────────── */
.testi {
  background: var(--cream-deep);
}
.testi-stage {
  position: relative;
  margin-top: 30px;
  padding: clamp(36px, 6vw, 70px) clamp(28px, 5vw, 70px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 320px;
}
.testi-quote {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  margin: 0 0 32px;
  max-width: 880px;
  text-wrap: balance;
}
.testi-quote::before {
  content: "\201C";
  font-family: var(--display);
  color: var(--coral);
  font-size: 1.4em;
  line-height: 0;
  margin-right: 6px;
  vertical-align: -0.15em;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Initials avatar */
.avatar-initials {
  width: 56px; height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.testi-author .name {
  font-weight: 600;
  font-size: 15px;
}
.testi-author .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

.testi-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
.testi-dots {
  display: flex; gap: 8px;
}
.testi-dots span {
  width: 28px; height: 3px;
  background: var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s ease;
}
.testi-dots span.active { background: var(--ink); }
.testi-arrows {
  display: flex; gap: 10px;
}
.testi-arrows button {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.testi-arrows button:hover { background: var(--ink); color: var(--cream); }

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 48px 0 30px;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-grid a { display: block; padding: 4px 0; }
.footer-grid a:hover { color: var(--coral-deep); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── Scroll reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Modal ─────────────────────────────────────────────────────── */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(15,12,10,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-bg.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  border-radius: var(--r-lg);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-bg.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.modal-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.modal h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 36px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.modal .modal-sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 24px;
}
.modal .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.modal label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.modal input, .modal select, .modal textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
}
.modal input:focus, .modal select:focus, .modal textarea:focus { border-color: var(--coral); }
.modal .btn { width: 100%; justify-content: center; margin-top: 10px; }

/* ─── Floating CTA ──────────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 18px 40px -14px rgba(195, 75, 60, 0.5);
  display: flex;
  gap: 10px;
  align-items: center;
  transition: transform .3s ease, background .25s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.float-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover { background: var(--coral-deep); transform: translateY(-2px); }
@media (max-width: 600px) {
  .float-cta { bottom: 14px; right: 14px; padding: 12px 18px; font-size: 13px; }
}

/* ─── Misc ──────────────────────────────────────────────────────── */
.icon-arrow {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
