/* ==========================================================================
   Fonts — e-Ukraine (local)
   ========================================================================== */
@font-face {
  font-family: 'e-Ukraine';
  src: url('e-Ukraine/e-Ukraine-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'e-Ukraine';
  src: url('e-Ukraine/e-Ukraine-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'e-Ukraine';
  src: url('e-Ukraine/e-Ukraine-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'e-Ukraine';
  src: url('e-Ukraine/e-Ukraine-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'e-Ukraine';
  src: url('e-Ukraine/e-Ukraine-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'e-Ukraine';
  src: url('e-Ukraine/e-Ukraine-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Design tokens — Dr. Vyshnevskyi landing
   ========================================================================== */
:root {
  --bg: #f7f9fb;
  --ink: #061542;
  --ink-2: #04142b;
  --ink-3: #091845;
  --brand: #272f7c;
  --brand-soft: #dce1ff;
  --muted: #64748b;
  --body: #464651;
  --body-2: #45464f;
  --card: #ffffff;
  --card-soft: #f3f4f5;
  --orange: #964900;
  --equipment-bg: #1e2b58;
  --tag-on-dark: #8793c7;
  --radius-card: 32px;
  --radius-pill: 9999px;
  --shadow-card: 0 20px 40px 0 rgba(9, 24, 69, 0.06);
  --container: 1280px;

  --font-sans: 'e-Ukraine', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

/* ==========================================================================
   Layout
   ========================================================================== */
.page {
  min-height: 100vh;
  padding: 128px 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container {
  width: 100%;
  max-width: var(--container);
}

/* ==========================================================================
   Top nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 56px);
  max-width: 1224px;
  height: 64px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  padding: 0 32px;
  z-index: 100;
}
.nav__brand {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.2px;
}
.nav__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 32px;
}
.nav__link {
  font-size: 16px;
  color: var(--muted);
}
.nav__link--active {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.4px;
}
.nav__short { display: none; }
.nav__lang {
  margin-left: auto;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.lang-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: rgba(6, 21, 66, 0.06);
  border-radius: var(--radius-pill);
  gap: 2px;
}
.lang-toggle--footer { display: none; }
.lang-toggle button {
  border: none;
  background: transparent;
  font: inherit;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 10px rgba(6, 21, 66, 0.15);
}

/* ==========================================================================
   Bento grid container
   ========================================================================== */
.bento {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1152px;
}

/* ==========================================================================
   Hero block (Main page)
   ========================================================================== */
.hero {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  min-height: 424px;
  background:
    radial-gradient(120% 140% at 0% 100%, rgba(220, 225, 255, 0.18) 0%, rgba(6, 21, 66, 0) 55%),
    linear-gradient(135deg, #2a3470 0%, #111c4a 45%, #061542 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 15% 90%, rgba(255, 255, 255, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(6, 21, 66, 0) 40%, rgba(6, 21, 66, 0.35) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 632px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__portrait {
  position: relative;
  z-index: 1;
  width: 367px;
  height: 376px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(120, 140, 220, 0.28) 0%, rgba(6, 21, 66, 0) 60%),
    radial-gradient(80% 60% at 50% 0%, rgba(180, 195, 255, 0.18) 0%, rgba(6, 21, 66, 0) 65%),
    linear-gradient(160deg, #2a3470 0%, #111c4a 55%, #061542 100%);
}
.hero__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 92%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 92%, transparent 100%);
}
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 21, 66, 0) 70%, rgba(6, 21, 66, 0.25) 100%);
  pointer-events: none;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  background: var(--brand-soft);
  color: var(--ink-3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 16px;
  align-self: flex-start;
}
.hero__title {
  font-size: 60px;
  line-height: 1;
  letter-spacing: -3px;
  color: #fff;
  font-weight: 200;
  padding-top: 8px;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 576px;
}

/* ==========================================================================
   Feature cards row (Main page)
   ========================================================================== */
.features {
  display: flex;
  gap: 24px;
}
.feature {
  flex: 1;
  background: var(--card);
  border: 1px solid rgba(198, 197, 211, 0.1);
  border-radius: var(--radius-card);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.feature__top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.feature__big {
  font-size: 48px;
  font-weight: 200;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -1px;
}
.feature__caption {
  font-size: 16px;
  color: var(--body);
  line-height: 22px;
}
.feature__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature__h {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  line-height: 32px;
  letter-spacing: -0.4px;
}
.feature__p {
  font-size: 16px;
  color: var(--body);
  line-height: 22px;
}

/* ==========================================================================
   Map & hours row (Main page)
   ========================================================================== */
.map-row {
  display: flex;
  gap: 24px;
  height: 425px;
}
.map {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.map__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 66, 0.9) 16%, rgba(6, 21, 66, 0.2) 46%, rgba(6, 21, 66, 0) 76%);
}
.map__bar {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.map__addr-label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.map__addr {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  margin-top: 4px;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 16px;
  line-height: 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.hours {
  width: 368px;
  min-height: 320px;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(39, 47, 124, 0.10) 0%, rgba(39, 47, 124, 0) 58%),
    linear-gradient(180deg, rgba(220, 225, 255, 0.55) 0%, rgba(255, 255, 255, 0) 44%),
    var(--card);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.hours::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(39, 47, 124, 0.06);
  pointer-events: none;
}
.hours__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hours__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: transparent;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hours__icon svg { width: 22px; height: 22px; }
.hours__label {
  font-size: 16px;
  color: var(--body);
  line-height: 22px;
  font-weight: 400;
}
.hours__note {
  margin-top: 4px;
  font-size: 14px;
  line-height: 18px;
  color: var(--orange);
}
.hours__week {
  margin-top: auto;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.hours__chip {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  background: rgba(39, 47, 124, 0.05);
  color: #9aa0bd;
}
.hours__chip--on {
  background: var(--brand);
  color: #fff;
}
.hours__time {
  font-size: 44px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   CTA block (shared)
   ========================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  padding: 64px 48px 48px;
  background-image: linear-gradient(126deg, #b6c1e2 12.5%, #061542 53.4%);
  color: #fff;
}
.cta__food {
  position: absolute;
  left: -69px;
  top: 43px;
  width: 323px;
  height: 297px;
  object-fit: cover;
  opacity: 0.95;
  pointer-events: none;
}
.cta__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cta__title {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
  color: #fff;
  font-weight: 400;
}
.cta__desc {
  font-size: 18px;
  line-height: 28px;
  color: rgba(220, 225, 255, 0.8);
  max-width: 644px;
}
.cta__actions {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}
.cta .btn-phone {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 16px;
  line-height: 24px;
}
.cta .btn-phone img { width: 18px; height: 18px; }
.cta .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.btn-ghost svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  width: 100%;
  max-width: 1152px;
  padding: 124px 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  line-height: 20px;
}
.footer__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-2);
}
.footer__license {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  line-height: 20px;
  margin-top: 8px;
}
.footer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.footer__phone img { width: 18px; height: 18px; }
.footer__phone span {
  font-size: 14px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  line-height: 20px;
}

/* ==========================================================================
   Prices page
   ========================================================================== */
.prices-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 64px;
}
.prices-hero__title {
  font-size: 72px;
  font-weight: 200;
  color: var(--ink);
  line-height: 72px;
  letter-spacing: -3.6px;
}
.prices-hero__desc {
  font-size: 18px;
  color: var(--body-2);
  line-height: 29.25px;
  max-width: 672px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services-row {
  display: flex;
  gap: 16px;
}
.service-card {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card__media {
  position: relative;
  height: 224px;
  background: var(--card-soft);
  overflow: hidden;
}
.service-card__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__tag svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--brand);
}
.service-card__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 100px;
  font-size: 12px;
  line-height: 16px;
  color: var(--brand);
}
.service-card__body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.service-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  line-height: 32px;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--body);
  line-height: 22.75px;
}
.price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: var(--brand);
  white-space: nowrap;
  padding: 2px 0;
}
.price__from {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.price__num {
  font-size: 40px;
  font-weight: 200;
  line-height: 32px;
}
.price__cur {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

/* Prices page CTA card — fits in services row */
.prices-cta {
  flex: 1;
  min-width: 0;
  background: var(--ink);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.prices-cta::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: 108px;
  height: 116px;
  background: url('assets/decor-icon.svg') no-repeat center / contain;
  transform: rotate(12deg);
  opacity: 0.9;
  pointer-events: none;
}
.prices-cta__title {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
  color: #fff;
  max-width: 564px;
}
.prices-cta__desc {
  margin-top: 16px;
  font-size: 18px;
  line-height: 28px;
  color: rgba(220, 225, 255, 0.8);
  max-width: 576px;
}
.prices-cta__actions {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}
.prices-cta .btn-phone {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 16px 40px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 16px;
}
.prices-cta .btn-phone img { width: 18px; height: 18px; }
.prices-cta .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

/* Equipment module */
.equipment {
  position: relative;
  overflow: hidden;
  background: var(--equipment-bg);
  border-radius: var(--radius-card);
  padding: 32px;
  color: #fff;
  margin-top: 32px;
}
.equipment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/equipment-bg.png') center / cover;
  opacity: 0.2;
  pointer-events: none;
}
.equipment__kicker {
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--tag-on-dark);
  line-height: 24px;
}
.equipment__title {
  position: relative;
  margin-top: 8px;
  font-size: 24px;
  color: #fff;
  line-height: 32px;
}
.equipment__chips {
  position: relative;
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  padding: 9px 17px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

/* ==========================================================================
   Science page
   ========================================================================== */
.science-hero {
  margin-bottom: 64px;
}
.science-hero__title {
  font-size: 72px;
  font-weight: 200;
  color: var(--ink);
  line-height: 72px;
  letter-spacing: -3.6px;
}
.science-empty {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 72px 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
.science-empty__art {
  width: 220px;
  height: 220px;
  margin-bottom: 8px;
}
.science-empty__art svg { width: 100%; height: 100%; }
.science-empty .tag { align-self: center; }
.science-empty__title {
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.8px;
  line-height: 40px;
  max-width: 640px;
  margin-top: 4px;
}
.science-empty__desc {
  font-size: 16px;
  color: var(--body);
  line-height: 24px;
  max-width: 560px;
}

.articles-grid {
  display: flex;
  gap: 16px;
}
.article-card {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 24px;
  min-height: 243px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.article-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  line-height: 32px;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}
.article-card__desc {
  font-size: 14px;
  color: var(--body);
  line-height: 22.75px;
}
.article-card__link {
  font-size: 14px;
  color: var(--body);
  line-height: 22.75px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .page { padding: 104px 16px 24px; }

  /* Nav: brand hidden, 3 links centered, lang toggle hidden (moves to footer) */
  .nav {
    width: calc(100% - 24px);
    max-width: none;
    padding: 0 8px;
    height: 56px;
    top: 12px;
  }
  .nav__brand { display: none; }
  .nav__links {
    position: static;
    transform: none;
    width: 100%;
    justify-content: space-around;
    gap: 4px;
  }
  .nav__link { font-size: 14px; }
  .nav__full { display: none; }
  .nav__short { display: inline; }
  .nav .lang-toggle { display: none; }

  /* Hero */
  .hero {
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 20px;
    min-height: auto;
    gap: 20px;
  }
  .hero__portrait { width: 100%; height: 320px; }
  .hero__portrait img {
    object-fit: contain;
    object-position: center bottom;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
  }
  .hero__portrait::after { background: none; }
  .hero__title { font-size: 36px; letter-spacing: -1.2px; line-height: 40px; margin-bottom: 8px; }
  .hero__subtitle { font-size: 16px; line-height: 24px; }

  /* Bento & layouts */
  .bento { gap: 16px; }
  .features, .map-row, .services-row, .articles-grid { flex-direction: column; height: auto; gap: 16px; }
  .feature { padding: 24px; gap: 28px; }
  .feature__big { font-size: 40px; }
  .feature__h { font-size: 20px; line-height: 28px; }

  /* Map + hours */
  .map-row { gap: 16px; flex-direction: column-reverse; }
  .map { min-height: 340px; }
  .map__bar { left: 16px; right: 16px; bottom: 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .map__bar .btn-pill { width: 100%; text-align: center; }
  .hours { width: 100%; padding: 24px; }
  .hours__time { font-size: 38px; }

  /* CTA */
  .cta { padding: 40px 24px; border-radius: 32px; }
  .cta__food { display: none; }
  .cta__title { font-size: 26px; line-height: 32px; }
  .cta__desc { font-size: 15px; line-height: 22px; }
  .cta__desc br { display: none; }
  .cta__actions, .prices-cta__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .cta .btn-phone, .cta .btn-ghost,
  .prices-cta .btn-phone, .prices-cta .btn-ghost {
    width: 100%;
    padding: 14px 24px;
    justify-content: center;
  }

  /* Prices / Science heros */
  .prices-hero, .science-hero { margin-bottom: 32px; }
  .prices-hero__title, .science-hero__title {
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -1.8px;
  }
  .prices-hero__desc { font-size: 16px; line-height: 24px; }
  .services-grid { gap: 16px; }
  .service-card { max-width: none !important; }
  .service-card__media { height: 200px; }
  .service-card__body { padding: 24px; }
  .service-card__title { font-size: 20px; line-height: 28px; }

  /* Prices CTA card */
  .prices-cta { padding: 28px 24px; }
  .prices-cta__title { font-size: 24px; line-height: 30px; }
  .prices-cta__desc { font-size: 15px; line-height: 22px; margin-top: 12px; }

  /* Equipment */
  .equipment { padding: 24px; margin-top: 16px; }
  .equipment__chips { flex-wrap: wrap; }

  /* Science empty state */
  .science-empty { padding: 48px 24px 56px; }
  .science-empty__art { width: 160px; height: 160px; }
  .science-empty__title { font-size: 24px; line-height: 32px; }
  .science-empty__desc { font-size: 15px; line-height: 22px; }

  /* Footer — stack, show lang toggle here */
  .footer {
    padding: 72px 16px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  .footer__info { width: 100%; }
  .footer__brand {
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 18px;
  }
  .footer__brand span:nth-of-type(3) { width: auto; }
  .footer__license { font-size: 12px; }
  .footer__phone { order: 2; }
  .lang-toggle--footer {
    display: inline-flex;
    order: 3;
    margin-left: 0;
  }
}
