:root {
  --blue-950: #082f49;
  --blue-850: #0f4c81;
  --blue-700: #2f80ed;
  --blue-100: #eaf3ff;
  --green-700: #15803d;
  --green-600: #22c55e;
  --green-100: #ecfdf3;
  --gold: #c6a969;
  --whats: #22c55e;
  --ink: #0f172a;
  --muted: #334155;
  --soft-muted: #64748b;
  --line: #dbe7f3;
  --surface: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.05);
  --deep-shadow: 0 24px 70px rgba(15, 76, 129, 0.16);
  --glass: rgba(255, 255, 255, 0.92);
  --panel: rgba(255, 255, 255, 0.86);
  --hero-wash: linear-gradient(180deg, var(--soft), var(--surface) 42%);
  --radius: 16px;
  --small-radius: 16px;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--hero-wash);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--surface);
  background: var(--blue-850);
  border-radius: var(--small-radius);
}

.mobile-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: var(--glass);
  border-bottom: 1px solid rgba(220, 234, 243, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 18px, 1160px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--blue-950);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.05;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: 14px;
  color: var(--surface);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 76, 129, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-action {
  min-height: 38px;
  padding: 9px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--surface);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.mini-action.call {
  background: var(--blue-850);
}

.mini-action.whats {
  background: var(--green-600);
}

.menu-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--surface);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--surface);
  background: var(--blue-850);
  outline: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: var(--blue-950);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-2px) rotate(-90deg);
}

.menu {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  left: 12px;
  right: 12px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu a {
  min-height: 48px;
  padding: 13px 14px;
  border-radius: var(--small-radius);
  color: var(--blue-950);
  font-weight: 900;
}

.menu a:hover,
.menu a:focus-visible,
.menu a.is-active,
.menu a.is-current {
  background: var(--blue-100);
  outline: none;
}

.menu .lang-link {
  color: var(--blue-850);
  background: rgba(198, 169, 105, 0.13);
}

.hero {
  width: min(100% - 24px, 1160px);
  margin: 0 auto;
  padding: calc(var(--header-height) + 28px) 0 34px;
  display: grid;
  gap: 22px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  min-width: 0;
}

.availability,
.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-850);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.availability span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 0 rgba(31, 157, 112, 0.34);
  animation: pulse 1.9s infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", "Inter", sans-serif;
}

h1 {
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: 1.98rem;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-title-line {
  display: block;
}

.hero-subtitle {
  width: min(100%, 620px);
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.hero-buttons,
.inline-actions,
.urgent-actions {
  width: 100%;
  display: grid;
  gap: 10px;
}

.hero-shortcuts {
  display: grid;
  gap: 8px;
}

.hero-shortcuts a {
  min-height: 44px;
  padding: 10px 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: var(--small-radius);
  color: var(--blue-950);
  background: var(--panel);
  box-shadow: var(--shadow);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-shortcuts a:hover,
.hero-shortcuts a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(198, 169, 105, 0.72);
  box-shadow: var(--deep-shadow);
  outline: none;
}

.primary-action,
.whatsapp-action {
  min-height: 58px;
  padding: 15px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--small-radius);
  border: 0;
  color: var(--surface);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 14px 28px rgba(15, 76, 129, 0.15);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action {
  background: var(--blue-850);
}

.whatsapp-action {
  background: var(--green-600);
}

.primary-action:hover,
.primary-action:focus-visible,
.whatsapp-action:hover,
.whatsapp-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 59, 99, 0.2);
  outline: none;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--blue-700);
}

.whatsapp-action:hover,
.whatsapp-action:focus-visible {
  background: var(--green-700);
}

.fine-print {
  margin: 12px 0 0;
  color: var(--soft-muted);
  font-size: 0.92rem;
}

.hero-prompt {
  position: relative;
  isolation: isolate;
  width: min(100%, 640px);
  margin-top: 18px;
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.hero-prompt::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -110px;
  right: 22px;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(47, 128, 237, 0.2), rgba(198, 169, 105, 0.14)),
    radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 62%);
  filter: blur(34px);
  opacity: 0.78;
}

.hero-prompt-pill {
  width: fit-content;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(15, 76, 129, 0.16);
  border-radius: 999px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.hero-prompt-pill span {
  color: var(--gold);
}

.hero-prompt-box {
  min-height: 54px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.hero-prompt-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--surface);
  background: linear-gradient(135deg, var(--blue-850), var(--blue-700));
  font-weight: 900;
}

.hero-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-suggestions a {
  min-height: 38px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--panel);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-suggestions a:hover,
.hero-suggestions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(198, 169, 105, 0.72);
  box-shadow: var(--shadow);
  outline: none;
}

[dir="rtl"] .hero-prompt::before {
  right: auto;
  left: 22px;
}

.media-stage {
  --media-scale: 1;
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-100);
  box-shadow: var(--deep-shadow);
  transform: scale(var(--media-scale));
  transform-origin: center top;
  transition: transform 180ms ease;
}

.media-stage img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.media-stage.hero-photo img {
  object-position: center;
  filter: saturate(0.96) contrast(1.05) brightness(0.96);
}

.media-stage.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(15, 76, 129, 0.14), rgba(198, 169, 105, 0.08));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 36, 60, 0.06), rgba(6, 36, 60, 0.46));
}

.media-caption,
.media-zone {
  position: absolute;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--small-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  z-index: 3;
}

.media-caption {
  left: 14px;
  bottom: 14px;
  padding: 14px;
}

.media-zone {
  top: 14px;
  right: 14px;
  padding: 12px 14px;
}

.media-caption strong,
.media-zone strong {
  color: var(--blue-950);
  font-size: 1.35rem;
  line-height: 1;
}

.media-caption span,
.media-zone span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.picker-option {
  min-height: 44px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.picker-option:hover,
.picker-option:focus-visible,
.picker-option.is-active {
  color: var(--blue-950);
  background: var(--surface);
  box-shadow: var(--shadow);
  outline: none;
}

.section {
  width: min(100% - 24px, 1160px);
  margin: 0 auto;
  padding: 42px 0;
}

.page-main {
  padding-top: calc(var(--header-height) + 10px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 20px;
}

.ambient-page-hero {
  min-height: 250px;
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.72)),
    var(--soft);
}

.ambient-page-hero > :not(.ambient-canvas) {
  position: relative;
  z-index: 1;
}

.ambient-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  pointer-events: none;
  filter: saturate(1.05);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .ambient-page-hero {
    border-color: rgba(148, 181, 213, 0.2);
    background:
      linear-gradient(180deg, rgba(8, 28, 45, 0.72), rgba(7, 24, 39, 0.82)),
      var(--soft);
  }

  :root:not([data-theme="light"]) .ambient-canvas {
    opacity: 0.32;
    filter: saturate(0.96);
  }
}

[data-theme="dark"] .ambient-page-hero {
  border-color: rgba(148, 181, 213, 0.2);
  background:
    linear-gradient(180deg, rgba(8, 28, 45, 0.72), rgba(7, 24, 39, 0.82)),
    var(--soft);
}

[data-theme="dark"] .ambient-canvas {
  opacity: 0.32;
  filter: saturate(0.96);
}

.page-hero h1 {
  width: min(100%, 720px);
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 7vw, 3.05rem);
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading h2,
.urgent-panel h2,
.contact h2 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.9rem;
  line-height: 1.05;
}

.section-heading p,
.urgent-panel p {
  color: var(--soft-muted);
}

.service-grid {
  display: grid;
  gap: 10px;
}

.service-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.82)),
    var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card.is-selected,
.service-card[open],
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 169, 105, 0.7);
  box-shadow: var(--deep-shadow);
}

.service-card summary {
  min-height: 72px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: linear-gradient(135deg, var(--blue-850), var(--blue-700));
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.02rem;
  line-height: 1.12;
}

.service-more {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  color: var(--blue-850);
  background: var(--blue-100);
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.service-card[open] .service-more {
  color: #ffffff;
  background: var(--blue-850);
  transform: rotate(45deg);
}

.service-content {
  padding: 0 16px 18px 64px;
  display: grid;
  gap: 12px;
  animation: detailDrop 220ms ease both;
}

.service-content p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-content ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-content li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.service-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
}

.service-phone {
  width: max-content;
  max-width: 100%;
  padding-bottom: 2px;
  color: var(--blue-850);
  border-bottom: 1px solid rgba(15, 76, 129, 0.28);
  font-weight: 900;
}

.service-phone:hover,
.service-phone:focus-visible {
  color: var(--blue-700);
  outline: none;
  border-bottom-color: currentColor;
}

[dir="rtl"] .service-content {
  padding-right: 64px;
  padding-left: 16px;
}

[dir="rtl"] .service-content li {
  padding-right: 26px;
  padding-left: 0;
}

[dir="rtl"] .service-content li::before {
  right: 0;
  left: auto;
}

@keyframes detailDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vitamin {
  padding-top: 20px;
}

.vitamin-panel {
  padding: 22px 18px;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94)),
    linear-gradient(135deg, rgba(47, 128, 237, 0.08), rgba(34, 197, 94, 0.08));
  box-shadow: var(--shadow);
}

.vitamin-panel .section-heading {
  margin-bottom: 18px;
}

.vitamin-panel .section-heading p:last-child {
  margin-bottom: 0;
  color: var(--soft-muted);
}

.cocktail-grid {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.cocktail-grid span {
  min-height: 48px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--small-radius);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  line-height: 1.16;
}

.gallery {
  padding-top: 22px;
}

.gallery .section-heading p:last-child {
  color: var(--soft-muted);
}

.gallery-shell {
  display: grid;
  gap: 14px;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.gallery-filter {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible,
.gallery-filter.is-active {
  color: var(--surface);
  background: var(--blue-850);
  border-color: var(--blue-850);
  outline: none;
}

.gallery-viewer {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-100);
  box-shadow: var(--deep-shadow);
}

.gallery-main {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-main.is-changing {
  opacity: 0.18;
  transform: scale(1.015);
}

.gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--small-radius);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.gallery-caption strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.gallery-caption span {
  color: var(--soft-muted);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.gallery-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}

.gallery-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(6, 36, 60, 0.12);
}

.gallery-controls button:hover,
.gallery-controls button:focus-visible {
  color: var(--surface);
  background: var(--blue-850);
  outline: none;
}

.gallery-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  flex: 0 0 82px;
  min-height: 64px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--soft);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.gallery-thumb img {
  width: 100%;
  height: 64px;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: var(--gold);
  outline: none;
}

.gallery-thumb.is-hidden {
  display: none;
}

.pharmacy-panel {
  padding: 18px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.pharmacy-copy {
  display: grid;
  gap: 10px;
}

.pharmacy-copy h3 {
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: 1.28rem;
  line-height: 1.15;
}

.pharmacy-copy p {
  margin-bottom: 0;
  color: var(--soft-muted);
}

.pharmacy-image {
  margin: 0;
  display: grid;
  gap: 8px;
}

.pharmacy-image img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--small-radius);
  background: var(--surface);
}

.pharmacy-image figcaption {
  color: var(--soft-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.pharmacy-meta {
  display: grid;
  gap: 4px;
}

.pharmacy-meta strong {
  color: var(--blue-950);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1.14;
}

.pharmacy-meta span,
.pharmacy-foot {
  color: var(--soft-muted);
  font-size: 0.92rem;
}

.pharmacy-list {
  display: grid;
  gap: 10px;
}

.pharmacy-card {
  padding: 15px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--small-radius);
  background: var(--surface);
}

.pharmacy-card h3 {
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: 1.08rem;
}

.pharmacy-card p {
  margin-bottom: 0;
  color: var(--soft-muted);
}

.pharmacy-date {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue-850);
  background: var(--blue-100);
  font-size: 0.78rem;
  font-weight: 900;
}

.pharmacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pharmacy-actions a,
.text-link {
  min-height: 42px;
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--blue-850);
  background: var(--blue-100);
  font-weight: 900;
}

.pharmacy-actions a:hover,
.pharmacy-actions a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--surface);
  background: var(--blue-850);
  outline: none;
}

.pharmacy-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.facility-note {
  max-width: 880px;
  margin: -14px auto 18px;
  padding: 14px 16px;
  border: 1px solid rgba(198, 169, 105, 0.28);
  border-radius: var(--small-radius);
  color: var(--blue-950);
  background: rgba(198, 169, 105, 0.1);
  font-weight: 850;
}

.facility-grid {
  display: grid;
  gap: 12px;
}

.facility-card {
  padding: 16px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--small-radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.facility-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.facility-type,
.facility-head strong,
.facility-hours {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.facility-type {
  color: var(--blue-850);
  background: var(--blue-100);
}

.facility-head strong {
  color: #6b4f12;
  background: rgba(198, 169, 105, 0.2);
}

.facility-card h3 {
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: 1.04rem;
  line-height: 1.18;
}

.facility-card p {
  margin-bottom: 0;
  color: var(--soft-muted);
}

.facility-hours {
  color: #0f6b3f;
  background: rgba(34, 197, 94, 0.14);
}

.facility-muted {
  color: var(--soft-muted);
  font-weight: 850;
}

.facility-card a {
  min-height: 42px;
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  border-radius: 999px;
  color: var(--surface);
  background: var(--blue-850);
  font-weight: 900;
}

.facility-card a:hover,
.facility-card a:focus-visible {
  color: var(--blue-950);
  background: var(--gold);
  outline: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.why-item {
  min-height: 88px;
  padding: 14px;
  display: flex;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--small-radius);
  color: var(--blue-950);
  background: var(--soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.18;
}

.testimonials {
  display: none;
}

.home-card-grid,
.review-list {
  display: grid;
  gap: 12px;
}

.home-card {
  min-height: 168px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-950);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-card:hover,
.home-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(198, 169, 105, 0.7);
  box-shadow: var(--deep-shadow);
  outline: none;
}

.home-card span {
  color: var(--gold);
  font-weight: 900;
}

.home-card strong {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.24rem;
  line-height: 1.1;
}

.home-card small {
  color: var(--soft-muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.article-grid {
  display: grid;
  gap: 14px;
}

.article-card {
  padding: 18px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover,
.article-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(198, 169, 105, 0.56);
  box-shadow: var(--deep-shadow);
}

.article-tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-850);
  background: rgba(47, 128, 237, 0.1);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h2 {
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: 1.28rem;
  line-height: 1.16;
}

.article-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.article-card summary {
  width: fit-content;
  color: var(--blue-850);
  cursor: pointer;
  font-weight: 900;
}

.article-card summary:focus-visible {
  outline: 3px solid rgba(47, 128, 237, 0.32);
  outline-offset: 4px;
}

.article-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.68;
}

[dir="rtl"] .article-card ul {
  padding-right: 20px;
  padding-left: 0;
}

[lang="en"] .service-card h3,
[lang="en"] .home-card strong,
[lang="en"] .article-card h2 {
  line-height: 1.22;
}

[lang="en"] .service-content,
[lang="en"] .home-card small,
[lang="en"] .hero-subtitle {
  line-height: 1.58;
}

.article-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(198, 169, 105, 0.42);
  border-radius: var(--radius);
  color: var(--muted);
  background: linear-gradient(135deg, rgba(198, 169, 105, 0.12), rgba(47, 128, 237, 0.08));
  font-weight: 800;
  line-height: 1.55;
}

.review-panel {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 18px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--soft);
  font: inherit;
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--blue-700);
  outline: 3px solid rgba(47, 128, 237, 0.16);
}

.review-card,
.review-empty {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.review-card p,
.review-empty {
  margin: 0;
  color: var(--muted);
}

.review-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-950);
  font-family: "Manrope", "Inter", sans-serif;
}

.urgent-panel {
  padding: 24px 18px;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(234, 243, 255, 0.94), rgba(236, 253, 243, 0.74));
  box-shadow: var(--shadow);
}

.urgent-panel p {
  margin-bottom: 16px;
}

.safety-note {
  margin: 16px 0 0;
  padding: 12px;
  border-radius: var(--small-radius);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact {
  text-align: center;
}

.contact .eyebrow {
  justify-content: center;
}

.contact-panel {
  padding: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.phone-link {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--blue-850);
  font-size: 2rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.phone-link.fixed-phone {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.24rem;
}

.footer {
  width: min(100% - 24px, 1160px);
  margin: 0 auto;
  padding: 18px 0 104px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer strong {
  color: var(--blue-950);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Manrope", "Inter", sans-serif;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.footer a {
  color: var(--blue-850);
  font-weight: 900;
}

.footer-languages {
  margin-top: 10px;
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.footer-languages span {
  color: var(--soft-muted);
  font-weight: 900;
}

.footer-languages a {
  min-height: 38px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-850);
  background: var(--surface);
  box-shadow: var(--shadow);
  line-height: 1;
}

.footer-languages a:hover,
.footer-languages a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 128, 237, 0.34);
}

.footer-languages a.is-active {
  color: #ffffff;
  border-color: var(--blue-850);
  background: var(--blue-850);
}

.floating-call {
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 99;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue-850);
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.28);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-call:hover,
.floating-call:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-700);
  box-shadow: 0 22px 48px rgba(15, 76, 129, 0.34);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(31, 157, 112, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(31, 157, 112, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ambient-canvas {
    display: none;
  }
}

@media (max-width: 370px) {
  .brand span:last-child {
    max-width: 76px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mini-action {
    padding-inline: 7px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  .service-picker {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
  }
}

@media (max-width: 520px) {
  .nav {
    gap: 7px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 12px;
  }

  .header-actions {
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --blue-950: #e8f3ff;
    --blue-850: #5aa5ff;
    --blue-700: #7db8ff;
    --blue-100: rgba(47, 128, 237, 0.16);
    --green-700: #4ade80;
    --green-600: #22c55e;
    --green-100: rgba(34, 197, 94, 0.14);
    --ink: #f4f9ff;
    --muted: #c7d5e7;
    --soft-muted: #9fb0c6;
    --line: rgba(148, 181, 213, 0.28);
    --surface: #071827;
    --soft: #04111d;
    --glass: rgba(5, 20, 34, 0.9);
    --panel: rgba(8, 28, 45, 0.9);
    --hero-wash:
      radial-gradient(circle at 16% 0%, rgba(47, 128, 237, 0.18), transparent 34%),
      linear-gradient(180deg, #04111d, #071827 48%);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.26);
    --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.22);
    --deep-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  }
}

[data-theme="dark"] {
  --blue-950: #e8f3ff;
  --blue-850: #5aa5ff;
  --blue-700: #7db8ff;
  --blue-100: rgba(47, 128, 237, 0.16);
  --green-700: #4ade80;
  --green-600: #22c55e;
  --green-100: rgba(34, 197, 94, 0.14);
  --ink: #f4f9ff;
  --muted: #c7d5e7;
  --soft-muted: #9fb0c6;
  --line: rgba(148, 181, 213, 0.28);
  --surface: #071827;
  --soft: #04111d;
  --glass: rgba(5, 20, 34, 0.9);
  --panel: rgba(8, 28, 45, 0.9);
  --hero-wash:
    radial-gradient(circle at 16% 0%, rgba(47, 128, 237, 0.18), transparent 34%),
    linear-gradient(180deg, #04111d, #071827 48%);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.22);
  --deep-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

[data-theme="light"] {
  --blue-950: #082f49;
  --blue-850: #0f4c81;
  --blue-700: #2f80ed;
  --blue-100: #eaf3ff;
  --green-700: #15803d;
  --green-600: #22c55e;
  --green-100: #ecfdf3;
  --ink: #0f172a;
  --muted: #334155;
  --soft-muted: #64748b;
  --line: #dbe7f3;
  --surface: #ffffff;
  --soft: #f8fafc;
  --glass: rgba(255, 255, 255, 0.92);
  --panel: rgba(255, 255, 255, 0.86);
  --hero-wash: linear-gradient(180deg, var(--soft), var(--surface) 42%);
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.05);
  --deep-shadow: 0 24px 70px rgba(15, 76, 129, 0.16);
}

@media (prefers-color-scheme: dark) {
  body,
  [data-theme="dark"] body {
    background: var(--hero-wash);
  }

  .mobile-header,
  [data-theme="dark"] .mobile-header {
    background: var(--glass);
    border-bottom-color: var(--line);
  }

  .media-caption,
  .media-zone,
  .gallery-caption,
  [data-theme="dark"] .media-caption,
  [data-theme="dark"] .media-zone,
  [data-theme="dark"] .gallery-caption {
    background: rgba(248, 250, 252, 0.94);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .brand-mark,
  .menu,
  .menu-toggle,
  .theme-toggle,
  .hero-prompt-pill,
  .hero-prompt-box,
  .hero-suggestions a,
  .service-card,
  .home-card,
  .article-card,
  .review-panel,
  .review-card,
  .gallery-filter,
  .pharmacy-card,
  .facility-card,
  .vitamin-panel,
  .contact-panel,
  [data-theme="dark"] .brand-mark,
  [data-theme="dark"] .menu,
  [data-theme="dark"] .menu-toggle,
  [data-theme="dark"] .theme-toggle,
  [data-theme="dark"] .hero-prompt-pill,
  [data-theme="dark"] .hero-prompt-box,
  [data-theme="dark"] .hero-suggestions a,
  [data-theme="dark"] .service-card,
  [data-theme="dark"] .home-card,
  [data-theme="dark"] .article-card,
  [data-theme="dark"] .review-panel,
  [data-theme="dark"] .review-card,
  [data-theme="dark"] .gallery-filter,
  [data-theme="dark"] .pharmacy-card,
  [data-theme="dark"] .facility-card,
  [data-theme="dark"] .vitamin-panel,
  [data-theme="dark"] .contact-panel {
    background: var(--panel);
  }

  .cocktail-grid span,
  [data-theme="dark"] .cocktail-grid span {
    color: #e8f3ff;
    background: rgba(8, 28, 45, 0.92);
    border-color: rgba(148, 181, 213, 0.28);
  }

  .media-caption,
  .media-zone,
  .gallery-caption,
  [data-theme="dark"] .media-caption,
  [data-theme="dark"] .media-zone,
  [data-theme="dark"] .gallery-caption {
    color: #082f49;
  }

  .media-caption strong,
  .media-zone strong,
  .gallery-caption strong,
  [data-theme="dark"] .media-caption strong,
  [data-theme="dark"] .media-zone strong,
  [data-theme="dark"] .gallery-caption strong {
    color: #082f49;
  }

  .media-caption span,
  .media-zone span,
  .gallery-caption span,
  [data-theme="dark"] .media-caption span,
  [data-theme="dark"] .media-zone span,
  [data-theme="dark"] .gallery-caption span {
    color: #475569;
  }

  .pharmacy-image img,
  [data-theme="dark"] .pharmacy-image img {
    background: #f8fafc;
  }

  .gallery-viewer,
  .media-stage {
    background: #0a2033;
  }
}

[data-theme="dark"] body {
  background: var(--hero-wash);
}

[data-theme="dark"] .mobile-header {
  background: var(--glass);
  border-bottom-color: var(--line);
}

[data-theme="dark"] .media-caption,
[data-theme="dark"] .media-zone,
[data-theme="dark"] .gallery-caption {
  background: rgba(248, 250, 252, 0.94);
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .brand-mark,
[data-theme="dark"] .menu,
[data-theme="dark"] .menu-toggle,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .hero-prompt-pill,
[data-theme="dark"] .hero-prompt-box,
[data-theme="dark"] .hero-suggestions a,
[data-theme="dark"] .service-card,
[data-theme="dark"] .home-card,
[data-theme="dark"] .article-card,
[data-theme="dark"] .review-panel,
[data-theme="dark"] .review-card,
[data-theme="dark"] .gallery-filter,
[data-theme="dark"] .pharmacy-card,
[data-theme="dark"] .facility-card,
[data-theme="dark"] .vitamin-panel,
[data-theme="dark"] .contact-panel {
  background: var(--panel);
}

[data-theme="dark"] .cocktail-grid span {
  color: #e8f3ff;
  background: rgba(8, 28, 45, 0.92);
  border-color: rgba(148, 181, 213, 0.28);
}

[data-theme="dark"] .media-caption,
[data-theme="dark"] .media-zone,
[data-theme="dark"] .gallery-caption,
[data-theme="dark"] .media-caption strong,
[data-theme="dark"] .media-zone strong,
[data-theme="dark"] .gallery-caption strong {
  color: #082f49;
}

[data-theme="dark"] .media-caption span,
[data-theme="dark"] .media-zone span,
[data-theme="dark"] .gallery-caption span {
  color: #475569;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .urgent-panel {
    border-color: rgba(148, 181, 213, 0.3);
    background: linear-gradient(155deg, rgba(15, 76, 129, 0.34), rgba(8, 28, 45, 0.97));
  }

  :root:not([data-theme="light"]) .safety-note {
    border: 1px solid rgba(148, 181, 213, 0.28);
    color: #e8f3ff;
    background: rgba(4, 17, 29, 0.72);
  }

  :root:not([data-theme="light"]) .facility-head strong {
    color: #f4d889;
    background: rgba(198, 169, 105, 0.18);
  }

  :root:not([data-theme="light"]) .facility-hours {
    color: #86efac;
    background: rgba(34, 197, 94, 0.14);
  }

  :root:not([data-theme="light"]) .facility-card a:hover,
  :root:not([data-theme="light"]) .facility-card a:focus-visible {
    color: #082f49;
  }

  :root:not([data-theme="light"]) .article-note {
    color: #d7e4f3;
    background: linear-gradient(135deg, rgba(198, 169, 105, 0.16), rgba(47, 128, 237, 0.13));
  }

  :root:not([data-theme="light"]) .review-form input::placeholder,
  :root:not([data-theme="light"]) .review-form textarea::placeholder {
    color: #9fb0c6;
    opacity: 1;
  }

  :root:not([data-theme="light"]) .why-item,
  :root:not([data-theme="light"]) .review-empty {
    color: #c7d5e7;
    background: rgba(8, 28, 45, 0.92);
    box-shadow: inset 0 1px 0 rgba(148, 181, 213, 0.14);
  }

  :root:not([data-theme="light"]) .gallery-controls button {
    border-color: rgba(148, 181, 213, 0.3);
    color: #e8f3ff;
    background: rgba(8, 28, 45, 0.92);
  }
}

[data-theme="dark"] .urgent-panel {
  border-color: rgba(148, 181, 213, 0.3);
  background: linear-gradient(155deg, rgba(15, 76, 129, 0.34), rgba(8, 28, 45, 0.97));
}

[data-theme="dark"] .safety-note {
  border: 1px solid rgba(148, 181, 213, 0.28);
  color: #e8f3ff;
  background: rgba(4, 17, 29, 0.72);
}

[data-theme="dark"] .facility-head strong {
  color: #f4d889;
  background: rgba(198, 169, 105, 0.18);
}

[data-theme="dark"] .facility-hours {
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
}

[data-theme="dark"] .facility-card a:hover,
[data-theme="dark"] .facility-card a:focus-visible {
  color: #082f49;
}

[data-theme="dark"] .article-note {
  color: #d7e4f3;
  background: linear-gradient(135deg, rgba(198, 169, 105, 0.16), rgba(47, 128, 237, 0.13));
}

[data-theme="dark"] .review-form input::placeholder,
[data-theme="dark"] .review-form textarea::placeholder {
  color: #9fb0c6;
  opacity: 1;
}

[data-theme="dark"] .why-item,
[data-theme="dark"] .review-empty {
  color: #c7d5e7;
  background: rgba(8, 28, 45, 0.92);
  box-shadow: inset 0 1px 0 rgba(148, 181, 213, 0.14);
}

[data-theme="dark"] .gallery-controls button {
  border-color: rgba(148, 181, 213, 0.3);
  color: #e8f3ff;
  background: rgba(8, 28, 45, 0.92);
}

[data-theme="light"] .mobile-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(220, 234, 243, 0.82);
}

[data-theme="light"] .media-caption,
[data-theme="light"] .media-zone,
[data-theme="light"] .gallery-caption {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.72);
}

[data-theme="light"] .brand-mark,
[data-theme="light"] .menu,
[data-theme="light"] .menu-toggle,
[data-theme="light"] .theme-toggle,
[data-theme="light"] .hero-prompt-pill,
[data-theme="light"] .hero-prompt-box,
[data-theme="light"] .hero-suggestions a,
[data-theme="light"] .service-card,
[data-theme="light"] .home-card,
[data-theme="light"] .article-card,
[data-theme="light"] .review-panel,
[data-theme="light"] .review-card,
[data-theme="light"] .gallery-filter,
[data-theme="light"] .pharmacy-card,
[data-theme="light"] .facility-card,
[data-theme="light"] .contact-panel {
  background: var(--surface);
}

@media (min-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .brand {
    order: 1;
    font-size: 1.08rem;
    white-space: nowrap;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .mini-action {
    min-width: 106px;
    font-size: 0.9rem;
  }

  .header-actions {
    order: 3;
    margin-left: 0;
  }

  .menu-toggle {
    display: none;
  }

  .theme-toggle {
    order: 4;
  }

  .menu {
    order: 2;
    position: static;
    width: auto;
    min-width: 0;
    margin-left: 6px;
    padding: 0;
    display: flex;
    gap: 1px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .menu::-webkit-scrollbar {
    display: none;
  }

  .menu a {
    min-height: 42px;
    padding: 11px 9px;
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .hero {
    min-height: 100dvh;
    padding-top: calc(var(--header-height) + 34px);
    align-items: center;
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
    gap: clamp(28px, 5vw, 70px);
  }

  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-copy {
    justify-items: start;
    text-align: left;
  }

  h1 {
    font-size: 4.1rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-buttons,
  .inline-actions,
  .urgent-actions {
    width: auto;
    grid-template-columns: auto auto;
  }

  .media-stage {
    min-height: 520px;
  }

  .media-stage img {
    height: 520px;
  }

  .service-picker {
    grid-column: 1 / -1;
    width: min(980px, 100%);
    justify-self: center;
    grid-template-columns: repeat(8, 1fr);
    border-radius: 999px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .urgent-panel h2,
  .contact h2 {
    font-size: 3rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-panel {
    padding: 28px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card summary {
    min-height: 92px;
    padding: 18px 20px;
    grid-template-columns: 46px minmax(0, 1fr) 32px;
    gap: 16px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-card h3 {
    font-size: 1.18rem;
  }

  .service-content {
    padding: 0 24px 24px 82px;
  }

  [dir="rtl"] .service-content {
    padding-right: 82px;
    padding-left: 24px;
  }

  .gallery-shell {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: stretch;
  }

  .gallery-filters {
    grid-column: 1 / -1;
  }

  .gallery-viewer {
    min-height: 540px;
  }

  .gallery-main {
    height: 540px;
  }

  .gallery-strip {
    max-height: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: visible;
    overflow-y: auto;
    align-content: start;
    scroll-snap-type: none;
  }

  .gallery-thumb,
  .gallery-thumb img {
    height: 82px;
  }

  .gallery-thumb {
    flex-basis: auto;
  }

  .vitamin-panel {
    padding: 42px;
  }

  .cocktail-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pharmacy-panel {
    padding: 28px;
  }

  .pharmacy-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pharmacy-copy {
    max-width: 880px;
  }

  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-item {
    min-height: 116px;
    padding: 20px;
    font-size: 1.06rem;
  }

  .urgent-panel {
    padding: 48px;
  }

  .contact-panel {
    width: min(720px, 100%);
    margin: 0 auto;
    padding: 34px;
  }

  .phone-link {
    font-size: 3.6rem;
  }

  .floating-call {
    right: 24px;
    bottom: 24px;
  }

  .footer {
    padding-bottom: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  .footer-languages {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (min-width: 1080px) and (max-width: 1240px) {
  .menu a[href="#urgence"] {
    display: none;
  }
}

[dir="rtl"] body {
  direction: rtl;
}

[dir="rtl"] .header-actions {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .hero-copy {
  text-align: center;
}

[dir="rtl"] .menu {
  text-align: right;
}

[dir="rtl"] .gallery-controls {
  left: 12px;
  right: auto;
}

[dir="rtl"] .media-zone {
  left: 14px;
  right: auto;
}

[dir="rtl"] .media-caption {
  left: auto;
  right: 14px;
}

[dir="rtl"] .facility-card a {
  justify-self: end;
}

@media (min-width: 1080px) {
  [dir="rtl"] .hero-copy {
    justify-items: start;
    text-align: right;
  }

  [dir="rtl"] .menu {
    margin-right: 6px;
    margin-left: 0;
  }
}
