:root {
  --ink:          #0E1B33;
  --ink-700:      #1A2B4E;
  --ink-500:      #2F4676;
  --paper:        #F1F3F6;
  --paper-line:   #DDE2E9;
  --white:        #FFFFFF;
  --stamp:        #1F5FD0;
  --stamp-dark:   #17499F;
  --stamp-soft:   #8FBAFF;
  --muted:        #56658A;
  --on-ink:       #E7ECF7;
  --on-ink-muted: #94A3C4;

  --wa:      #25D366;
  --wa-dark: #1FB855;
  --star:    #F5A623;

  --line-dark:  rgba(14, 27, 51, 0.14);
  --line-light: rgba(231, 236, 247, 0.18);
  --hatch:      rgba(143, 186, 255, 0.07);
  --wash:       rgba(31, 95, 208, 0.16);
  --glow:       rgba(31, 95, 208, 0.45);

  --display: "Playfair Display", "Times New Roman", serif;
  --body:    "Source Serif 4", Georgia, serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  --bar-h:  76px;
  --wrap:   1200px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.16;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

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

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--stamp);
  color: var(--white);
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stamp-soft);
  margin-bottom: 22px;
}
.eyebrow--dark { color: var(--stamp); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease,
              color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 13px; }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg .btn__icon { width: 20px; height: 20px; }

.btn--stamp {
  background: var(--stamp);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .22);
}
.btn--stamp:hover {
  background: var(--stamp-dark);
  transform: translateY(-2px);
}

.btn--wa {
  background: var(--wa);
  color: var(--ink);
}
.btn--wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--on-ink);
  border-color: var(--line-light);
}
.btn--ghost:hover {
  border-color: var(--stamp-soft);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-dark);
}
.btn--outline:hover {
  border-color: var(--stamp);
  color: var(--stamp);
  transform: translateY(-2px);
}

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--ink   { background: var(--ink); color: var(--on-ink); }

.section__head { max-width: 720px; margin-bottom: clamp(44px, 5vw, 68px); }

.section__title { font-size: clamp(30px, 3.6vw, 46px); }
.section__title--light { color: var(--white); }

.section__lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--bar-h);
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
  color: var(--on-ink);
}
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
  .topbar { background: var(--ink); }
}

.topbar__inner {
  height: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  flex-shrink: 0;
}
.logo__mark { width: 34px; height: 34px; color: var(--stamp-soft); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.01em;
}
.logo__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
  margin-top: 5px;
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 28px; }

.nav__link {
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
  padding: 6px 0;
  transition: color .18s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--stamp-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

.topbar__cta { flex-shrink: 0; }

.nav-check { position: absolute; opacity: 0; width: 0; height: 0; }
.burger { display: none; }

.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-ink);
  padding: calc(var(--bar-h) + clamp(64px, 8vw, 108px)) 24px clamp(72px, 8vw, 112px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    var(--hatch) 0 1px,
    transparent 1px 9px
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--wash));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: 56px;
}

.hero__title {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  position: relative;
  color: var(--stamp-soft);
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.02em;
  height: 3px;
  background: var(--stamp);
}

.hero__lede {
  margin-top: 26px;
  max-width: 54ch;
  font-size: 18.5px;
  color: var(--on-ink-muted);
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.facts {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
}
.facts__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
}
.facts__value {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-top: 6px;
}
.facts__star { color: var(--star); font-size: 19px; }

.hero__seal { display: flex; justify-content: center; }
.seal {
  width: min(100%, 380px);
  height: auto;
  color: var(--stamp-soft);
  filter: drop-shadow(0 0 24px var(--glow));
  opacity: .95;
}
.seal__spin {
  transform-box: view-box;
  transform-origin: 120px 120px;
  animation: seal-turn 44s linear infinite;
}
.seal__line { fill: none; stroke: currentColor; stroke-width: 1.6; }
.seal__line--thin { stroke-width: 0.8; opacity: .55; }
.seal__text {
  fill: currentColor;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
}
.seal__monogram {
  fill: var(--white);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  text-anchor: middle;
}
.seal__caption {
  fill: currentColor;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-anchor: middle;
}
@keyframes seal-turn { to { transform: rotate(360deg); } }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
}
.card {
  background: var(--paper);
  padding: 34px 30px 30px;
  transition: background-color .2s ease;
}
.card:hover { background: var(--white); }

.card__title {
  font-size: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.card__text { margin-top: 16px; color: var(--muted); font-size: 16.5px; }
.card__meta {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stamp);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.step { padding-top: 22px; border-top: 2px solid var(--ink); }
.step__no {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--stamp);
  margin-bottom: 14px;
}
.step__title { font-size: 24px; }
.step__text { margin-top: 14px; color: var(--muted); font-size: 16.5px; }

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 64px;
  align-items: start;
}
.about__text {
  margin-top: 22px;
  color: var(--on-ink-muted);
  font-size: 17.5px;
  max-width: 62ch;
}
.stats {
  display: grid;
  gap: 28px;
  padding-left: 28px;
  border-left: 1px solid var(--line-light);
}
.stats__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
}
.stats__value {
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-top: 10px;
}

.langs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}
.lang {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  padding: 11px 13px;
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  transition: border-color .18s ease, color .18s ease;
}
.lang::before {
  content: "TR ↔ ";
  color: var(--stamp);
  font-weight: 600;
}
.lang:hover { border-color: var(--stamp); color: var(--stamp); }

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: stretch;
}

.visit__map {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.visit__info { display: flex; flex-direction: column; }

.score {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 4px 14px;
  padding: 18px 22px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .18s ease, transform .18s ease;
}
.score:hover { border-color: var(--stamp); transform: translateY(-2px); }
.score__value {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  grid-row: span 2;
}
.score__stars { display: flex; gap: 3px; align-self: end; }
.score__stars svg { width: 17px; height: 16px; fill: var(--star); }
.score__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  align-self: start;
}

.visit__rows { margin-top: 26px; display: grid; gap: 20px; }
.visit__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--paper-line);
}
.visit__row:last-child { border-bottom: 0; padding-bottom: 0; }
.visit__row dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stamp);
  padding-top: 5px;
}
.visit__row dd { font-size: 16.5px; line-height: 1.55; }

.visit__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.review {
  padding: 26px 24px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: var(--paper);
}
.review__stars { color: var(--star); letter-spacing: 0.12em; font-size: 15px; }
.review__text { margin-top: 12px; font-size: 16.5px; line-height: 1.6; }
.review__by {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta {
  background: var(--ink-700);
  color: var(--on-ink);
  padding: clamp(64px, 7vw, 96px) 0;
  border-top: 1px solid var(--line-light);
}
.cta__inner { text-align: center; }
.cta__title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--white);
  max-width: 24ch;
  margin-inline: auto;
}
.cta__text {
  margin-top: 20px;
  color: var(--on-ink-muted);
  font-size: 17.5px;
  max-width: 58ch;
  margin-inline: auto;
}
.cta__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.channels {
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}
.channels__hint {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
  margin-bottom: 20px;
}
.channels__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}
.channel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 46px 20px 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.channel:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--stamp-soft);
  transform: translateY(-2px);
}
.channel:active { transform: translateY(0); }
.channel__label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stamp-soft);
}
.channel__value {
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--white);
  overflow-wrap: anywhere;
}
.channel__icon {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 18px;
  height: 18px;
  color: var(--on-ink-muted);
}
.channel__glyph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .18s ease, transform .18s ease;
}
.channel__glyph--tick { opacity: 0; transform: scale(.6); color: var(--wa); }
.channel:hover .channel__icon { color: var(--white); }
.channel.is-copied .channel__glyph--copy { opacity: 0; transform: scale(.6); }
.channel.is-copied .channel__glyph--tick { opacity: 1; transform: scale(1); }
.channel.is-copied {
  border-color: var(--wa);
  background: rgba(37, 211, 102, 0.12);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(14, 27, 51, .34);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translate(-50%, 14px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast svg { width: 16px; height: 16px; color: var(--wa-dark); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.footer {
  background: var(--ink);
  color: var(--on-ink-muted);
  padding-top: clamp(56px, 6vw, 84px);
  font-size: 15.5px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}
.logo--footer { margin-bottom: 20px; }
.footer__blurb { max-width: 34ch; }
.footer__badge {
  margin-top: 18px;
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--star);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 6px 14px;
}

.footer__heading {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stamp-soft);
  margin-bottom: 18px;
}
.footer__list { display: grid; gap: 11px; }
.footer__list a,
.footer__address a { transition: color .18s ease; }
.footer__list a:hover,
.footer__address a:hover { color: var(--white); }

.footer__address { font-style: normal; line-height: 1.7; }
.footer__hours {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 2;
}
.footer__hours span {
  display: inline-block;
  min-width: 90px;
  color: var(--on-ink-muted);
  opacity: .7;
}

.footer__bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 24px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--wa);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(14, 27, 51, .3);
  transition: transform .18s ease, background-color .18s ease;
}
.fab svg { width: 24px; height: 24px; flex-shrink: 0; }
.fab__text {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.fab:hover { background: var(--wa-dark); transform: translateY(-2px); }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__seal { order: -1; justify-content: flex-start; }
  .seal { width: 220px; }

  .about { grid-template-columns: 1fr; gap: 40px; }
  .stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding-left: 0;
    padding-top: 28px;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .visit { grid-template-columns: 1fr; gap: 32px; }
  .visit__map { min-height: 340px; }

  .channels__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 880px) {
  :root { --bar-h: 68px; }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    cursor: pointer;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    padding: 0 9px;
  }
  .burger__bar {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--on-ink);
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav-check:focus-visible + .burger {
    outline: 2px solid var(--stamp-soft);
    outline-offset: 3px;
  }
  .nav-check:checked + .burger .burger__bar:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .nav-check:checked + .burger .burger__bar:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: var(--bar-h);
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-light);
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
  }
  .nav-check:checked ~ .nav { max-height: 340px; }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .nav__link {
    display: block;
    padding: 15px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--line-light);
    color: var(--on-ink);
  }
  .nav__link::after { display: none; }
  .nav__list li:last-child .nav__link { border-bottom: 0; }

  .topbar__cta { order: 3; padding: 10px 16px; font-size: 11.5px; }
  .logo__sub { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }
  .hero { padding-inline: 20px; }

  .seal { width: 170px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .facts { gap: 20px 32px; }

  .cards { grid-template-columns: 1fr; }
  .card { padding: 28px 22px; }

  .langs { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

  .visit__map { min-height: 280px; }
  .visit__row { grid-template-columns: 1fr; gap: 6px; }
  .visit__row dt { padding-top: 0; }
  .visit__actions .btn { flex: 1 1 100%; }

  .score { grid-template-columns: auto 1fr; padding: 16px 18px; }
  .score__value { font-size: 34px; }

  .channels__list { grid-template-columns: 1fr; }
  .cta__actions .btn { flex: 1 1 100%; }

  .toast { bottom: 90px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .fab { right: 16px; bottom: 16px; padding: 15px; }
  .fab__text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.lang-selector__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-ink-muted);
  transition: color .18s ease, transform .18s ease, background-color .18s ease;
  padding: 6px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(231, 236, 247, 0.1);
}

.lang-selector__item:hover {
  color: var(--white);
  border-color: var(--stamp-soft);
  transform: translateY(-1px);
}

.lang-selector__item--active {
  color: var(--white);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.flag-icon {
  width: 16px;
  height: 11px;
  display: block;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for the language selector */
@media (max-width: 880px) {
  .lang-selector {
    order: 2;
    margin-left: auto;
  }
  .burger {
    order: 4;
    margin-left: 12px;
  }
  .topbar__cta {
    order: 3;
  }
}

@media (max-width: 620px) {
  .lang-selector {
    gap: 4px;
    margin-left: 8px;
  }
  .lang-selector__item {
    padding: 4px 6px;
  }
  .lang-selector__item span {
    display: none;
  }
}