:root {
  --ink: #0c203c;
  --muted: #5f6f86;
  --line: #d9e3ee;
  --paper: #fbfcfd;
  --soft: #eef5fb;
  --teal: #033d7c;
  --teal-dark: #022a55;
  --coral: #567fb3;
  --gold: #d8b44b;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(3, 61, 124, 0.14);
  --font-body: Arial, Helvetica, sans-serif;
  --base-font-size: 16px;
  --body-weight: 400;
  --heading-weight: 800;
  --card-radius: 8px;
  --button-radius: 8px;
  --control-radius: 8px;
  --section-spacing: 1;
}

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

html {
  zoom: 0.8;
  scroll-behavior: smooth;
  scroll-padding-top: 138px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: var(--base-font-size);
  font-weight: var(--body-weight);
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.16s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px clamp(14px, 1.7vw, 24px);
  min-height: 76px;
  padding: 8px clamp(18px, 2.4vw, 34px);
  border-bottom: 1px solid rgba(221, 229, 234, 0.86);
  background: rgba(251, 252, 253, 0.95);
  backdrop-filter: blur(18px);
  transition: min-height 0.18s ease, padding 0.18s ease, box-shadow 0.18s ease;
}

.header-address {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(3, 61, 124, 0.14);
  border-radius: 8px;
  color: var(--teal-dark);
  background: linear-gradient(180deg, rgba(238, 245, 251, 0.92), rgba(255, 255, 255, 0.96));
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 5px 14px rgba(3, 61, 124, 0.05);
}

.header-address:hover,
.header-address:focus {
  border-color: rgba(3, 61, 124, 0.32);
  color: var(--teal);
}

.header-address-label {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header.at-top {
  min-height: 132px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 10px 28px rgba(3, 61, 124, 0.05);
}

.brand {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  min-width: 72px;
}

.logo-tile,
.vision-laser-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 61, 124, 0.08);
  transition: width 0.18s ease, height 0.18s ease, box-shadow 0.18s ease;
}

.site-header.at-top .logo-tile,
.site-header.at-top .vision-laser-link {
  width: 112px;
  height: 112px;
  padding: 6px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-dark);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.45vw, 22px);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
}

.nav a:hover {
  color: var(--teal);
}

.nav a[aria-current="page"] {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  margin: -10px 0;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 285px;
  padding: 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: normal;
}

.nav-submenu a:hover,
.nav-submenu a:focus {
  color: var(--teal-dark);
  background: var(--soft);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-actions {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.vision-laser-link {
  position: relative;
  overflow: visible;
}

.vision-laser-link:hover,
.vision-laser-link:focus {
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(3, 61, 124, 0.1), inset 0 0 0 2px rgba(3, 61, 124, 0.1);
}

.vision-laser-link img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.vision-laser-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 100;
  width: min(280px, 72vw);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.vision-laser-tooltip::before {
  position: absolute;
  top: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  content: "";
  transform: rotate(45deg);
}

.vision-laser-link:hover .vision-laser-tooltip,
.vision-laser-link:focus .vision-laser-tooltip,
.vision-laser-link:focus-visible .vision-laser-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.flag-button,
.button {
  min-height: 40px;
  border-radius: var(--button-radius);
  border: 1px solid var(--line);
  font: inherit;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--white);
}

.flag-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 42px;
  padding: 6px 9px;
  cursor: pointer;
  background: var(--white);
}

.flag-icon {
  display: inline-block;
  width: 20px;
  height: 14px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
}

.flag-icon.flag-nl {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%230073b7'/%3E%3Crect y='0.66' width='3' height='0.66' fill='%23fff'/%3E%3Crect y='1.33' width='3' height='0.67' fill='%23ae1c28'/%3E%3C/svg%3E");
}

.flag-icon.flag-fr {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' fill='%230072bf'/%3E%3Crect x='1' width='1' height='2' fill='%23fff'/%3E%3Crect x='2' width='1' height='2' fill='%23ed2939'/%3E%3C/svg%3E");
}

.flag-icon.flag-gb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23006'/%3E%3Cpath d='M0 0 L60 30 M60 0 L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0 L60 30 M60 0 L0 30' stroke='%23c00' stroke-width='4'/%3E%3Cpath d='M30 0 V30 M0 15 H60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0 V30 M0 15 H60' stroke='%23c00' stroke-width='6'/%3E%3C/svg%3E");
}

.flag-button .language-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.flag-button:hover,
.flag-button.active {
  border-color: var(--teal);
  background: var(--soft);
}

.flag-button.active {
  box-shadow: inset 0 0 0 2px rgba(23, 111, 117, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.08s ease;
}

.button.primary {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--teal-dark);
  background: var(--white);
}

.button.danger {
  border-color: #b42318;
  color: var(--white);
  background: #b42318;
}

.button.danger:hover {
  border-color: #8f1c13;
  background: #8f1c13;
}

.button:active,
.style-preset:active,
.admin-message-card select:active {
  transform: translateY(1px);
}

.button:disabled,
.button[aria-busy="true"],
.style-preset:disabled,
.style-preset[aria-busy="true"],
.admin-message-card select:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.button[aria-busy="true"]::after,
.style-preset[aria-busy="true"]::after {
  width: 0.7em;
  height: 0.7em;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  content: "";
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(30px, 4.6vw, 68px);
  align-items: center;
  width: min(100%, 1580px);
  margin: 0 auto;
  padding: clamp(34px, 5.3vw, 70px) clamp(18px, 4vw, 64px) clamp(32px, 5vw, 64px);
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 12.8ch;
  font-size: clamp(2.75rem, 4.85vw, 4.95rem);
  font-weight: var(--heading-weight);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.8vw, 3.35rem);
  font-weight: var(--heading-weight);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: var(--heading-weight);
}

.hero p {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 62vh;
  padding-top: clamp(46px, 7vw, 90px);
  padding-bottom: clamp(46px, 7vw, 90px);
  background:
    linear-gradient(180deg, rgba(238, 245, 251, 0.78), rgba(251, 252, 253, 0) 340px),
    var(--paper);
}

.error-panel {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.error-panel h1 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.error-panel p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-media {
  position: relative;
  min-height: clamp(390px, 38vw, 580px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  object-position: center 46%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(20, 33, 43, 0) 52%, rgba(20, 33, 43, 0.36));
}

.quickscan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  width: min(1120px, calc(100% - clamp(36px, 8vw, 128px)));
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 56px) 0 clamp(18px, 3vw, 34px);
}

.quickscan-hero-copy {
  max-width: 620px;
}

.quickscan-hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
  line-height: 1.04;
}

.quickscan-hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
}

.quickscan-hero-media {
  position: relative;
  align-self: center;
  height: clamp(180px, 23vw, 280px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(3, 61, 124, 0.1);
}

.quickscan-hero-media img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #f7fafc;
}

.quickscan-hero-note {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: min(165px, calc(100% - 20px));
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(3, 61, 124, 0.12);
}

.quickscan-hero-note strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.1rem;
  line-height: 1;
}

.quickscan-hero-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.hours-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  min-width: 190px;
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.hours-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.hours-badge strong {
  font-size: 1.16rem;
}

.notice,
.section,
.split-section,
.contact-section {
  margin: 0 clamp(18px, 4vw, 64px);
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 33, 43, 0.07);
}

.notice p {
  margin: 5px 0 0;
  color: var(--muted);
}

.news-section {
  padding-top: clamp(46px, 6vw, 78px);
}

.news-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 18px;
  margin-inline: -4px;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(3, 61, 124, 0.32) transparent;
  touch-action: pan-x pan-y;
  user-select: none;
}

.news-grid::-webkit-scrollbar {
  height: 8px;
}

.news-grid::-webkit-scrollbar-track {
  background: transparent;
}

.news-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(3, 61, 124, 0.24);
}

.news-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.news-card {
  flex: 0 0 min(360px, calc(100vw - 48px));
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 61, 124, 0.08);
  scroll-snap-align: start;
  user-select: text;
}

@media (min-width: 760px) {
  .news-card {
    flex-basis: min(360px, calc((100% - 18px) / 2));
  }
}

@media (min-width: 1120px) {
  .news-card {
    flex-basis: min(380px, calc((100% - 36px) / 3));
  }
}

.news-card time {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 0;
  color: var(--ink);
}

.news-card p,
.news-card-body {
  color: var(--muted);
}

.news-card-excerpt {
  margin-bottom: 0;
}

.news-card-body {
  display: grid;
  gap: 8px;
}

.news-card-details {
  display: grid;
  gap: 10px;
}

.news-card-details summary {
  width: fit-content;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.news-card:has(.news-card-details[open]) .news-card-excerpt {
  display: none;
}

.news-card-body p,
.news-card-body ul,
.news-card-body ol {
  margin: 0;
}

.section,
.split-section {
  padding: calc(clamp(62px, 8vw, 110px) * var(--section-spacing)) 0;
}

.section[id],
.split-section[id] {
  scroll-margin-top: 138px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p,
.two-columns p,
.split-copy p,
.contact-section p {
  color: var(--muted);
}

.service-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.person-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card img {
  height: 230px;
  object-fit: contain;
  padding: 14px;
  background: var(--white);
}

.service-card img.image-contain {
  object-fit: contain;
  padding: 18px;
  background: var(--white);
}

.service-card h3,
.service-card p,
.person-card h3,
.person-card p,
.person-card span {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card p,
.person-card p {
  color: var(--muted);
}

.service-card p {
  margin-bottom: 22px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
}

.shuttle-visual {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(3, 61, 124, 0.1);
}

.shuttle-photo {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.shuttle-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 32, 60, 0.02), rgba(12, 32, 60, 0.22));
  content: "";
}

.shuttle-photo > img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  object-position: center;
}

.shuttle-destination {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 12px;
  width: min(330px, calc(100% - 32px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 36px rgba(12, 32, 60, 0.18);
  backdrop-filter: blur(12px);
}

.shuttle-destination img {
  width: 78px;
  height: 54px;
  padding: 5px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8f1e5;
}

.shuttle-destination span {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.shuttle-route-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98)),
    var(--white);
  box-shadow: 0 8px 22px rgba(3, 61, 124, 0.08);
}

.shuttle-route-line {
  display: grid;
  grid-template-columns: 14px 1fr 14px;
  align-items: center;
  gap: 8px;
}

.shuttle-route-line span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--teal);
  border-radius: 999px;
  background: var(--white);
}

.shuttle-route-line i {
  position: relative;
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.shuttle-car {
  position: absolute;
  left: 38%;
  top: 50%;
  display: block;
  width: 74px;
  height: 32px;
  border: 3px solid var(--ink);
  border-radius: 16px 18px 10px 10px;
  background: var(--white);
  box-shadow: 0 7px 16px rgba(12, 32, 60, 0.16);
  transform: translate(-50%, -68%);
}

.shuttle-car::before {
  position: absolute;
  left: 12px;
  top: -16px;
  width: 34px;
  height: 18px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--white);
  content: "";
}

.shuttle-car::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 9px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.shuttle-car-window {
  position: absolute;
  left: 21px;
  top: -10px;
  z-index: 1;
  width: 21px;
  height: 10px;
  border-radius: 9px 9px 2px 2px;
  background: rgba(3, 61, 124, 0.16);
}

.shuttle-car-wheel {
  position: absolute;
  bottom: -8px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
}

.shuttle-car-wheel-front {
  right: 10px;
}

.shuttle-car-wheel-back {
  left: 10px;
}

.shuttle-route-places {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}

.shuttle-route-card small {
  color: var(--muted);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--teal);
  font-weight: 800;
}

.muted {
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(18px, 4vw, 64px);
  padding-right: clamp(18px, 4vw, 64px);
  background: var(--soft);
}

.person-card {
  padding: 0 0 24px;
}

.person-card img {
  height: 340px;
  object-fit: contain;
  object-position: center center;
  padding: 16px;
  margin-bottom: 22px;
  background: var(--white);
}

.person-card img.image-contain {
  object-fit: contain;
  padding: 24px;
  background: var(--white);
}

.person-card span {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.hours-list {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.hours-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.appointment-page {
  padding-top: clamp(50px, 7vw, 86px);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(460px, 1.3fr);
  gap: 22px;
  align-items: start;
}

.appointment-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.appointment-panel h2,
.appointment-panel h3 {
  margin-top: 0;
}

.appointment-panel h3 {
  margin-top: 28px;
}

.appointment-panel p,
.appointment-panel li {
  color: var(--muted);
}

.appointment-panel a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.appointment-panel ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.info-page {
  padding-top: clamp(50px, 7vw, 86px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
}

.info-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-card-wide {
  grid-column: 1 / -1;
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--teal-dark);
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.info-card details {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.info-card details:last-child {
  padding-bottom: 0;
}

.info-card summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.info-card a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-card a:hover,
.info-card a:focus {
  color: var(--teal);
}

.info-card details p {
  margin: 12px 0 0;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.info-actions.inline {
  margin-top: 18px;
}

.practices-page {
  padding-top: clamp(50px, 7vw, 86px);
}

.practice-hero-note {
  max-width: 920px;
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 33, 43, 0.07);
}

.practice-hero-note p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.practice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.practice-card-wide {
  grid-column: 1 / -1;
}

.practice-card h2 {
  margin-bottom: 2px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.practice-card p,
.practice-card span,
.practice-card li,
.social-band p {
  color: var(--muted);
}

.practice-card strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.practice-logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 118px;
  max-height: 180px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f1e5;
}

.practice-logo img {
  width: min(170px, 100%);
  height: auto;
  object-fit: contain;
}

.practice-card .button {
  margin-top: 6px;
}

.practice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.practice-actions .button {
  margin-top: 0;
}

.tariff-page {
  display: grid;
  gap: 28px;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tariff-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(3, 61, 124, 0.08);
}

.tariff-card-wide {
  grid-column: 1 / -1;
}

.tariff-card-head {
  display: grid;
  gap: 8px;
}

.tariff-card-head h2,
.tariff-card-head p {
  margin: 0;
}

.tariff-card-head p:not(.eyebrow),
.tariff-note,
.tariff-list {
  color: var(--muted);
}

.tariff-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tariff-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--white);
}

.tariff-table th,
.tariff-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.tariff-table th {
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.tariff-table tr:last-child td {
  border-bottom: 0;
}

.tariff-table td:last-child {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.tariff-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tariff-help-grid h3 {
  margin-bottom: 10px;
}

.tariff-help-grid .tariff-table {
  min-width: 460px;
}

.tariff-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.tariff-form-section {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(7, 129, 140, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(234, 248, 249, 0.72), rgba(255, 255, 255, 0.94));
}

.tariff-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.tariff-provider {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tariff-provider img {
  width: 52px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.tariff-form-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 245px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.tariff-form-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 54px;
  padding: 8px 10px;
  border: 1px solid rgba(3, 61, 124, 0.08);
  border-radius: 8px;
  background: #fff;
}

.tariff-form-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.tariff-form-card-dkv .tariff-form-logo img {
  max-width: 56%;
  max-height: 30px;
}

.tariff-form-card h4,
.tariff-form-card p {
  margin: 0;
}

.tariff-form-card h4 {
  color: var(--ink);
  font-size: 1rem;
}

.tariff-form-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.tariff-form-card .button {
  align-self: center;
  margin-top: auto;
}

.tariff-quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(3, 61, 124, 0.16);
  border-radius: 8px;
  background: var(--paper);
}

.refractive-quote {
  padding-top: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form [hidden],
.admin-pdf-test-form [hidden] {
  display: none !important;
}

.quote-form input,
.quote-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(3, 61, 124, 0.12);
}

.quote-form .button,
.quote-form .contact-form-status {
  justify-self: start;
  grid-column: 1 / -1;
}

.tariff-next-step {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.tariff-next-step div {
  display: grid;
  gap: 6px;
  max-width: 720px;
}

.tariff-next-step h3,
.tariff-next-step p {
  margin: 0;
}

.tariff-next-step p:not(.eyebrow) {
  color: var(--muted);
}

.practice-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.practice-location-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.practice-location-list li {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.practice-location-list strong {
  color: var(--teal-dark);
}

.practice-location-list span {
  color: var(--muted);
}

.practice-meta-row {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
}

.practice-meta-row > span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.practice-website-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background: var(--soft);
}

.social-band h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.6rem);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-icon-link {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--white);
}

.social-icon-link:hover,
.social-icon-link:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(20, 33, 43, 0.16);
}

.social-icon-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-embed {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.map-embed iframe[hidden],
iframe[data-cookie-src][hidden],
.map-embed iframe[data-cookie-src]:not([src]) {
  display: none !important;
}

.map-embed:not(:has(> .cookie-embed-placeholder)):has(> iframe[data-cookie-src]:not([src]))::before {
  content: "🗺️  Accepteer cookies om deze Google Maps-kaart te bekijken.";
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  color: var(--teal-dark);
  background: var(--soft);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

html[lang="fr"] .map-embed:not(:has(> .cookie-embed-placeholder)):has(> iframe[data-cookie-src]:not([src]))::before {
  content: "🗺️  Acceptez les cookies pour afficher cette carte Google Maps.";
}

html[lang="en"] .map-embed:not(:has(> .cookie-embed-placeholder)):has(> iframe[data-cookie-src]:not([src]))::before {
  content: "🗺️  Accept cookies to view this Google Maps map.";
}

.map-embed-large iframe {
  min-height: clamp(320px, 42vw, 460px);
}

.contact-map-section {
  padding-top: 24px;
}

.contact-map-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
  gap: 22px;
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 61, 124, 0.08);
}

.contact-form .section-heading {
  margin-bottom: 4px;
}

.contact-form .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(3, 61, 124, 0.12);
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.practice-map {
  margin-top: 6px;
}

.practice-map iframe {
  min-height: 220px;
}

.map-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.small-map iframe {
  min-height: 190px;
}

.appointment-calendar {
  min-height: 1320px;
}

.doctena-calendar {
  min-height: 1240px;
}

.doctena-calendar iframe,
.appointment-calendar iframe {
  width: 100%;
  min-height: 1240px;
}

.doctena-calendar > * {
  min-height: 1240px;
}

.admin-page {
  padding-top: clamp(32px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(238, 245, 251, 0.78), rgba(251, 252, 253, 0) 360px),
    var(--paper);
}

.admin-hero {
  padding-bottom: clamp(24px, 4vw, 42px);
}

.admin-hero .section-heading {
  margin-bottom: 0;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 0;
  padding-bottom: 18px;
}

.admin-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-tabs button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(3, 61, 124, 0.06);
}

.admin-tabs button.active {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-top: 0;
}

.admin-translations-panel {
  min-width: 0;
  overflow: hidden;
}

.admin-sidebar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
}

[data-admin-tab-panel][hidden] {
  display: none !important;
}

.admin-panel-card {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(3, 61, 124, 0.08);
}

.admin-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
}

.admin-panel-head .eyebrow {
  margin-bottom: 6px;
  font-weight: 600;
}

.admin-message-list {
  display: grid;
  gap: 14px;
}

.admin-message-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(3, 61, 124, 0.05);
}

.admin-message-card.expanded {
  border-color: rgba(3, 61, 124, 0.32);
  box-shadow: 0 12px 28px rgba(3, 61, 124, 0.1);
}

.admin-message-toggle {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(180px, 1.5fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 15px 16px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.admin-message-toggle:hover,
.admin-message-toggle:focus-visible {
  background: var(--soft);
}

.admin-message-summary-person,
.admin-message-summary-side {
  display: flex;
  gap: 4px;
}

.admin-message-summary-person {
  min-width: 0;
  flex-direction: column;
}

.admin-message-summary-person strong,
.admin-message-summary-person span,
.admin-message-summary-preview {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-message-summary-person span,
.admin-message-summary-preview,
.admin-message-summary-side time {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-message-summary-side {
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.admin-message-status-badge {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-message-chevron {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.admin-message-toggle[aria-expanded="true"] .admin-message-chevron {
  transform: rotate(180deg);
}

.admin-message-details {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.admin-message-details[hidden] {
  display: none;
}

.admin-message-head,
.admin-message-actions,
.admin-message-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-message-head strong {
  display: block;
  color: var(--ink);
}

.admin-message-head span,
.admin-message-meta,
.admin-empty {
  color: var(--muted);
}

.admin-message-card p {
  margin: 0;
  color: var(--ink);
  white-space: pre-wrap;
}

.admin-message-card select {
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.admin-message-meta a {
  color: var(--teal-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-empty.error,
.contact-form-status.error {
  color: #b42318;
}

.admin-contact-settings,
.admin-reply-form,
.admin-news-form,
.admin-news-language-panel,
.admin-faq-form,
.admin-faq-language-panel,
.admin-translations-form,
.admin-pdf-copy-form,
.admin-pdf-test-form,
.admin-pdf-language-panel,
.style-preset-grid,
.style-field-grid {
  display: grid;
  gap: 16px;
}

.admin-news-form,
.admin-faq-form {
  max-width: none;
}

.admin-news-form > label:first-of-type {
  max-width: 280px;
}

.admin-news-language-panel[hidden],
.admin-faq-language-panel[hidden],
.admin-pdf-language-panel[hidden] {
  display: none;
}

.admin-language-tabs {
  display: inline-flex;
  width: fit-content;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(3, 61, 124, 0.06);
}

.admin-language-tabs button {
  min-width: 48px;
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--teal-dark);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}

.admin-language-tabs button.active {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 6px 16px rgba(3, 61, 124, 0.22);
}

.admin-translate-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr)) auto auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fafd);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.admin-translate-tools label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 500;
}

.admin-translate-tools select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.admin-contact-settings label,
.admin-reply-form label,
.admin-news-form label,
.admin-faq-form label,
.admin-translations-form label,
.admin-pdf-copy-form label,
.admin-pdf-test-form label,
.admin-editor-wrap {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
}

.admin-news-form label > span,
.admin-faq-form label > span,
.admin-pdf-copy-form label > span,
.admin-pdf-test-form label > span,
.admin-translate-tools label > span,
.admin-editor-wrap > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.admin-contact-settings label {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.14s ease, background 0.14s ease;
}

.admin-contact-settings label:has(input:checked) {
  border-color: var(--teal);
  background: var(--soft);
}

.admin-contact-settings input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.admin-settings-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.admin-settings-note.error {
  color: #b42318;
}

.admin-smtp-settings {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--paper);
}

.admin-smtp-settings h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 600;
}

.admin-smtp-settings .style-field-grid label {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.admin-smtp-settings .style-field-grid label:has(input:checked) {
  border-color: transparent;
  background: transparent;
}

.admin-smtp-settings small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
}

.admin-smtp-secure {
  align-self: end;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--white);
}

.admin-smtp-settings .admin-smtp-secure {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.admin-smtp-settings .admin-smtp-secure input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--teal);
}

.admin-reply-form {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-reply-form input,
.admin-reply-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.admin-reply-form textarea {
  resize: vertical;
}

.admin-news-form input[type="date"],
.admin-news-form input[type="text"],
.admin-faq-form input[type="text"],
.admin-faq-form select,
.admin-translations-form input[type="search"],
.admin-translations-form input[type="text"],
.admin-pdf-copy-form input[type="text"],
.admin-pdf-test-form input,
.admin-pdf-test-form select,
.admin-news-form textarea,
.admin-faq-form textarea,
.admin-translations-form textarea,
.admin-pdf-copy-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f9fbfd);
  font: inherit;
  font-weight: 400;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.admin-news-form input[type="date"]:focus,
.admin-news-form input[type="text"]:focus,
.admin-faq-form input[type="text"]:focus,
.admin-faq-form select:focus,
.admin-translations-form input[type="search"]:focus,
.admin-translations-form input[type="text"]:focus,
.admin-pdf-copy-form input[type="text"]:focus,
.admin-pdf-test-form input:focus,
.admin-pdf-test-form select:focus,
.admin-news-form textarea:focus,
.admin-faq-form textarea:focus,
.admin-translations-form textarea:focus,
.admin-pdf-copy-form textarea:focus,
.admin-translate-tools select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 61, 124, 0.11);
  outline: none;
}

.admin-news-form textarea,
.admin-faq-form textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-translation-fields {
  display: grid;
  gap: 10px;
  max-height: min(70vh, 780px);
  overflow: auto;
  padding-right: 4px;
}

.admin-translations-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.admin-translation-row {
  min-width: 0;
  min-inline-size: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 245, 251, 0.48);
}

.admin-translation-row[hidden] {
  display: none;
}

.admin-translation-row legend {
  max-width: 100%;
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-translation-language-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 10px;
}

.admin-translation-language-grid label span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
}

.admin-translations-form input[type="search"],
.admin-translation-language-grid input,
.admin-translation-language-grid textarea {
  font-weight: 500;
}

.admin-translation-language-grid textarea {
  min-height: 118px;
  resize: vertical;
  white-space: normal;
}

.admin-pdf-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.admin-panel-subhead {
  display: grid;
  gap: 6px;
}

.admin-panel-subhead h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 600;
}

.admin-pdf-copy-form,
.admin-pdf-test-form {
  min-width: 0;
}

.admin-pdf-test-form {
  position: sticky;
  top: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--paper);
}

.admin-pdf-create-panel .admin-pdf-test-form {
  position: static;
  max-width: 760px;
}

.admin-pdf-language-panel {
  max-height: min(70vh, 760px);
  overflow: auto;
  padding-right: 4px;
}

.admin-pdf-language-panel label {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 245, 251, 0.48);
}

.admin-pdf-language-panel textarea {
  min-height: 96px;
  resize: vertical;
}

.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.analytics-metrics article,
.analytics-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.analytics-metrics article {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.analytics-metrics span,
.analytics-card li span,
.analytics-table small,
.analytics-table time {
  color: var(--muted);
}

.analytics-metrics strong {
  color: var(--teal-dark);
  font-size: 1.7rem;
  line-height: 1;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 12px;
}

.analytics-card {
  padding: 14px;
}

.analytics-card-wide {
  display: grid;
  gap: 12px;
}

.analytics-card h3 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 1rem;
}

.analytics-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.analytics-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.analytics-card li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.analytics-list-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.analytics-list-label i {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--teal-dark);
  font-style: normal;
}

.analytics-table {
  display: grid;
  gap: 8px;
}

.analytics-table > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr) minmax(160px, 0.5fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.analytics-table span {
  overflow-wrap: anywhere;
  font-weight: 600;
}

.analytics-session-table {
  display: grid;
  gap: 10px;
}

.analytics-session-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(260px, 1.5fr) minmax(180px, 0.8fr) minmax(120px, 0.45fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.analytics-session-time,
.analytics-tech-badges,
.analytics-locale {
  display: grid;
  gap: 6px;
}

.analytics-session-time small,
.analytics-session-time code {
  color: var(--muted);
  font-size: 0.78rem;
}

.analytics-session-pages {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.analytics-session-pages li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 58px;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(217, 227, 238, 0.7);
}

.analytics-session-pages small {
  color: var(--muted);
  text-align: right;
}

.analytics-session-source {
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.analytics-session-pages time {
  color: var(--muted);
  font-size: 0.78rem;
}

.analytics-session-pages span {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.analytics-icon-badge,
.analytics-language {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.analytics-browser i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--white);
  background: conic-gradient(#e94235, #fabb05, #34a853, #4285f4, #e94235);
  font-style: normal;
  font-size: 0.7rem;
}

.analytics-locale {
  justify-items: start;
}

.analytics-flag {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 3px rgba(12, 32, 60, 0.16));
}

@media (max-width: 1100px) {
  .analytics-session-row {
    grid-template-columns: minmax(150px, 0.6fr) minmax(240px, 1.4fr) minmax(150px, 0.7fr);
  }

  .analytics-locale {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .analytics-session-row {
    grid-template-columns: 1fr;
  }

  .analytics-locale {
    grid-column: auto;
  }

  .admin-message-toggle {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .admin-message-summary-person {
    grid-column: 1;
    grid-row: 1;
  }

  .admin-message-summary-side {
    grid-column: 2;
    grid-row: 1;
  }

  .admin-message-summary-side time {
    display: none;
  }

  .admin-message-summary-preview {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

.admin-translations-advanced {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.admin-translations-advanced summary {
  padding: 12px 14px;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 500;
}

.admin-translations-advanced textarea {
  min-height: 460px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre;
  overflow: auto;
  border-top: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
}

.admin-checkbox {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.admin-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: var(--soft);
}

.admin-editor-toolbar button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-dark);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}

.admin-editor-toolbar button:hover,
.admin-editor-toolbar button:focus {
  border-color: var(--teal);
  background: var(--white);
}

.admin-rich-editor {
  min-height: 180px;
  padding: 14px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  outline: none;
}

.admin-rich-editor:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(3, 61, 124, 0.1);
}

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

.admin-news-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

.admin-news-card:hover {
  border-color: rgba(3, 61, 124, 0.28);
  box-shadow: 0 8px 22px rgba(3, 61, 124, 0.07);
}

.admin-news-card strong,
.admin-news-card span {
  display: block;
}

.admin-news-card strong {
  font-weight: 600;
}

.admin-news-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.style-preset-grid {
  grid-template-columns: 1fr;
}

.style-preset {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  box-shadow: 0 2px 0 rgba(3, 61, 124, 0.18);
  transition: background 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, color 0.14s ease, transform 0.08s ease;
}

.style-preset.active,
.style-preset:hover,
.style-preset:focus {
  border-color: var(--teal);
  background: var(--soft);
}

.style-preset.active {
  color: var(--white);
  background: var(--teal);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.admin-panel-card .button.secondary:hover,
.admin-panel-card .button.secondary:focus {
  border-color: var(--teal);
  background: var(--soft);
  box-shadow: 0 8px 18px rgba(3, 61, 124, 0.08);
}

.admin-panel-card .button {
  min-height: 46px;
  padding: 10px 18px;
  font-weight: 500;
  box-shadow: none;
  transition: background 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.08s ease;
}

.admin-panel-card .button.primary {
  box-shadow: 0 10px 22px rgba(3, 61, 124, 0.16);
}

.admin-panel-card .button.secondary {
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
}

.admin-panel-card .button.primary:hover,
.admin-panel-card .button.primary:focus {
  box-shadow: 0 12px 26px rgba(3, 61, 124, 0.2);
}

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

.admin-style-panel {
  max-width: none;
}

.admin-style-workbench {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.admin-style-controls {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.admin-style-section {
  display: grid;
  gap: 14px;
}

.admin-style-section h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 600;
}

.style-field-grid label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 500;
}

.style-field-grid select,
.style-field-grid input[type="range"] {
  width: 100%;
  min-height: 44px;
}

.style-field-grid select {
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.style-field-grid input[type="range"] {
  accent-color: var(--teal);
}

.style-field-grid input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  padding: 4px;
  background: var(--white);
}

.admin-style-preview-section {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 118px);
  overflow: auto;
  padding: 4px 4px 8px;
  overscroll-behavior: contain;
}

.style-preview {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--soft) 72%, var(--white)), var(--white) 55%),
    var(--white);
  box-shadow: var(--shadow);
}

.style-preview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.style-preview-hero h2 {
  max-width: 14ch;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.style-preview-hero p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
}

.style-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.style-preview-image {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background:
    linear-gradient(150deg, rgba(3, 61, 124, 0.08), rgba(216, 180, 75, 0.14)),
    url("assets/orthoptist-attal.jpeg") center / cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.style-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.style-preview .info-card,
.style-preview .news-card {
  margin: 0;
  box-shadow: none;
}

.style-preview-news {
  flex: initial;
}

.info-card,
.news-card,
.care-card,
.step-card,
.practice-card,
.tariff-card,
.tariff-quote-section,
.tariff-form-card,
.admin-panel-card,
.admin-message-card,
.admin-news-card,
.article-link-card,
.article-media-frame,
.equipment-card,
.legal-card,
.contact-card {
  border-radius: var(--card-radius);
}

.contact-form input,
.contact-form textarea,
.quote-form input,
.quote-form select,
.admin-news-form input[type="date"],
.admin-news-form input[type="text"],
.admin-news-form textarea,
.admin-translations-form input,
.admin-translations-form textarea,
.admin-reply-form input,
.admin-reply-form textarea,
.admin-translate-tools select,
.admin-message-card select {
  border-radius: var(--control-radius);
}

.info-card,
.news-card,
.practice-card,
.tariff-form-card,
.admin-panel-card,
.article-media-frame,
.equipment-card {
  box-shadow: var(--shadow);
}

.admin-style-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.quote-mailto-link {
  color: #033d7c;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.quote-mailto-link:hover,
.quote-mailto-link:focus {
  color: #07818c;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 34px) clamp(18px, 4vw, 64px);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
}

.footer-contact-card h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.footer-contact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-card .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-contact-actions .button.primary {
  border-color: rgba(255, 255, 255, 0.08);
  background: #0b4d91;
}

.footer-contact-actions .button.secondary {
  color: var(--teal-dark);
  background: var(--white);
}

.footer-lower {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 320px);
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
  display: grid;
  align-self: end;
  gap: 4px;
}

.footer-info span:first-child {
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-info span:nth-child(2) {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-info span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-copyright-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px 16px;
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.3;
}

.footer-copyright-legal a {
  color: var(--teal-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.footer-cookie-button {
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0;
  color: var(--teal-light);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
}

.footer-copyright-legal a:hover,
.footer-copyright-legal a:focus,
.footer-cookie-button:hover,
.footer-cookie-button:focus {
  border-bottom-color: var(--teal-light);
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(3, 61, 124, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-embed-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

.cookie-embed-placeholder strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.cookie-embed-placeholder p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-map iframe {
  min-height: 130px;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 32px rgba(20, 33, 43, 0.18);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.legal-page {
  padding: 48px clamp(16px, 4vw, 40px);
}

.page-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content {
  line-height: 1.7;
  color: var(--ink);
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 12px 0 14px 24px;
  padding-left: 0;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--ink);
}

.legal-content a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 123, 147, 0.3);
  transition: all 0.2s ease;
}

.legal-content a:hover,
.legal-content a:focus {
  color: var(--teal-dark);
  border-bottom-color: var(--teal-dark);
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--teal-dark);
}

.article-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.article-library {
  scroll-margin-top: 110px;
  padding-top: 10px;
}

.article-category {
  scroll-margin-top: 110px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.article-category:first-child {
  border-top: 0;
  padding-top: 0;
}

.article-category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.article-category-heading h2 {
  margin-bottom: 0;
}

.article-category-heading span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.article-link-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-link-card:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 28px rgba(20, 33, 43, 0.08);
}

.article-link-card span {
  color: var(--ink);
  font-weight: 800;
}

.article-link-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.article-link-card strong {
  color: var(--teal-dark);
  font-size: 0.9rem;
}

.article-posts {
  display: grid;
  gap: 24px;
}

.article-load-error {
  max-width: 760px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-load-error p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-post {
  scroll-margin-top: 100px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-post:last-of-type {
  border-bottom: 1px solid var(--line);
}

.article-post-header {
  display: block;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.article-post-header .eyebrow {
  margin-bottom: 6px;
}

.article-post-header h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.article-post-header h1 {
  max-width: none;
  margin-top: 0;
  margin-bottom: 12px;
}

.article-post-header p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.article-body {
  max-width: 860px;
}

.article-body-intro {
  max-width: 760px;
  margin-bottom: 22px;
}

.article-body-intro h2,
.article-body-intro h3,
.article-body-intro h4 {
  margin: 0;
  max-width: none;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.45;
}

.article-body-intro p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.article-post-detail {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 800;
}

.article-back-link:hover,
.article-back-link:focus {
  border-color: var(--teal);
  background: var(--soft);
}

.article-media-section {
  max-width: 820px;
  margin: 24px auto 0;
}

.article-media-heading {
  max-width: none;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.22;
  text-align: center;
}

.article-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: center;
  gap: 22px;
  max-width: 100%;
  margin: 0;
}

.article-media-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.article-media-image {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin: 0;
}

.article-media-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.article-media-video,
.article-media-social {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  background: var(--white);
}

.article-media-video {
  width: min(100%, 760px);
  max-width: 760px;
  justify-self: center;
}

.article-media-tiktok,
.article-media-instagram {
  width: min(100%, 460px);
  max-width: 460px;
  justify-self: center;
}

.article-media-item iframe {
  display: block;
  width: 100%;
  border: 0;
  background: var(--white);
}

.article-media-video iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

.article-media-tiktok iframe {
  height: 720px;
  min-height: 0;
  overflow: hidden;
}

.article-media-instagram iframe {
  height: 680px;
  min-height: 0;
}

.article-media-label {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.article-media-label span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-media-label strong {
  overflow: hidden;
  color: var(--teal-dark);
  font-size: 0.9rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.equipment-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.equipment-feature,
.equipment-card figure {
  margin: 0;
}

.equipment-feature {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.equipment-feature-collage figure {
  display: grid;
  grid-template-rows: 150px auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f9fa;
}

.equipment-feature img {
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 12px;
  object-fit: contain;
}

.equipment-feature figcaption {
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.35;
}

.equipment-section {
  padding-top: 20px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.equipment-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.equipment-card-wide {
  grid-column: auto;
}

.equipment-card figure {
  display: grid;
  min-height: 100%;
  grid-template-rows: 260px auto;
}

.equipment-card img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  background: #f6f9fa;
}

.equipment-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.equipment-card figcaption strong {
  color: var(--teal-dark);
  font-size: 1.04rem;
  line-height: 1.25;
}

.equipment-card figcaption span {
  color: var(--muted);
  line-height: 1.45;
}

.equipment-docs {
  padding-top: 20px;
}

.equipment-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.equipment-doc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.equipment-doc-link:hover,
.equipment-doc-link:focus {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(20, 33, 43, 0.1);
}

.pdf-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 48px;
  border-radius: 6px;
  color: var(--white);
  background: #c8332c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.08);
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 1.7rem 0 0.7rem;
  max-width: 760px;
  line-height: 1.22;
}

.article-body h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

.article-body h3 {
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
}

.article-body h4 {
  font-size: clamp(1.06rem, 1.3vw, 1.25rem);
}

.article-body h2:first-child,
.article-body h3:first-child,
.article-body h4:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body p {
  margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 8px;
  margin: 0 0 1.2rem;
  padding-left: 22px;
}

.article-body a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-header.at-top {
    min-height: 120px;
  }

  .site-header.at-top .logo-tile,
  .site-header.at-top .vision-laser-link {
    width: 94px;
    height: 94px;
  }

  .nav {
    grid-column: 2 / -1;
    grid-row: 1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    grid-column: 2 / -1;
    grid-row: 3;
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  }

  h1 {
    font-size: clamp(2.55rem, 5vw, 4.2rem);
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    grid-template-columns: auto 1fr auto;
  }

  .site-header.at-top {
    min-height: 124px;
  }

  .header-address {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    min-height: 26px;
    padding: 4px 9px;
    font-size: 0.82rem;
  }

  .header-address-label {
    display: none;
  }

  .site-header.at-top .logo-tile,
  .site-header.at-top .vision-laser-link {
    width: 86px;
    height: 86px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: visible;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a,
  .nav-menu > a {
    display: block;
    padding: 12px;
    border-radius: 6px;
  }

  .nav a:hover,
  .nav a:focus,
  .nav-menu > a:hover,
  .nav-menu > a:focus {
    background: var(--soft);
  }

  .nav-menu {
    display: grid;
    padding: 0;
    margin: 0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    max-width: none;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu:hover .nav-submenu,
  .nav-menu:focus-within .nav-submenu {
    transform: none;
  }

  .header-actions {
    grid-column: 1 / -1;
    grid-row: 4;
    justify-content: flex-start;
  }

  .hero,
  .quickscan-hero,
  .split-section,
  .two-columns,
  .appointment-layout,
  .equipment-hero,
  .contact-map-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-areas:
      "news"
      "messages"
      "sidebar"
      "translations"
      "pdf";
  }

  .admin-sidebar {
    position: static;
  }

  .admin-style-workbench {
    grid-template-columns: 1fr;
  }

  .admin-pdf-workbench {
    grid-template-columns: 1fr;
  }

  .admin-style-preview-section {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .admin-pdf-test-form {
    position: static;
  }

  .admin-translate-tools {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .button {
    flex: 1 1 150px;
  }

  .analytics-table > div {
    grid-template-columns: 1fr;
  }

  .admin-language-tabs {
    width: 100%;
  }

  .admin-language-tabs button {
    width: 100%;
  }

  .admin-translations-tools,
  .admin-translation-language-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  h1 {
    max-width: none;
  }

  .split-section .split-copy {
    order: 1;
  }

  .split-section .split-media {
    order: 2;
  }

  .hero-media,
  .split-media {
    min-height: 360px;
  }

  .shuttle-visual {
    align-content: space-between;
    min-height: 430px;
  }

  .service-grid,
  .team-grid,
  .tariff-grid,
  .tariff-help-grid,
  .tariff-form-grid,
  .tariff-quote-section,
  .practice-grid,
  .map-grid,
  .practice-location-list,
  .article-index,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .equipment-card-wide {
    grid-column: auto;
  }

  .article-category-heading {
    display: grid;
  }
}

@media (max-width: 640px) {
  .notice,
  .contact-section,
  .footer-contact-card,
  .social-band {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .site-header.at-top {
    min-height: 96px;
  }

  .site-header.at-top .logo-tile,
  .site-header.at-top .vision-laser-link {
    width: 78px;
    height: 78px;
    padding: 4px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .site-footer {
    display: grid;
  }

  .footer-lower {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-contact-actions {
    justify-content: flex-start;
  }

  .button,
  .language-switcher {
    width: 100%;
  }

  .vision-laser-link {
    width: 74px;
  }

  .language-switcher {
    justify-content: space-between;
  }

  .flag-button {
    width: 100%;
  }

  .flag-button .language-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .tariff-form-section {
    padding: 16px;
  }

  .tariff-form-card {
    min-height: auto;
  }

  .tariff-form-logo {
    justify-content: center;
  }

  .tariff-form-card-dkv .tariff-form-logo img {
    max-width: 46%;
    max-height: 28px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .tariff-next-step {
    align-items: stretch;
    flex-direction: column;
  }

  .tariff-next-step .button {
    align-self: flex-start;
  }

  .tariff-page {
    gap: 20px;
    margin-right: 14px;
    margin-left: 14px;
    padding-top: 26px;
  }

  .tariff-page .section-heading {
    max-width: none;
    margin-bottom: 18px;
  }

  .tariff-page .section-heading h1 {
    max-width: none;
    margin-bottom: 14px;
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .tariff-page .section-heading p:not(.eyebrow) {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.5;
    overflow-wrap: normal;
    word-break: normal;
  }

  .tariff-card {
    gap: 14px;
    min-width: 0;
    padding: 18px;
  }

  .tariff-card-head h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.12;
  }

  .tariff-table-wrap {
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: visible;
  }

  .tariff-table {
    min-width: 0;
  }

  .tariff-help-grid .tariff-table {
    min-width: 0;
  }

  .tariff-table thead {
    display: none;
  }

  .tariff-table,
  .tariff-table tbody,
  .tariff-table tr,
  .tariff-table td {
    display: block;
    width: 100%;
  }

  .tariff-table tr {
    display: grid;
    gap: 4px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .tariff-table tr:last-child {
    border-bottom: 0;
  }

  .tariff-table td {
    padding: 0;
    border-bottom: 0;
  }

  .tariff-table td:first-child {
    color: var(--ink);
    font-weight: 800;
  }

  .tariff-table td:not(:first-child):not(:last-child) {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .tariff-table td:last-child {
    margin-top: 4px;
    color: var(--teal-dark);
    font-size: 1.05rem;
    line-height: 1.25;
    white-space: normal;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.75rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .section-heading p,
  .hero p {
    overflow-wrap: break-word;
  }

  .quickscan-hero {
    width: auto;
    margin: 0 clamp(18px, 4vw, 64px);
    padding-top: 34px;
  }

  .quickscan-hero-media {
    height: 210px;
    min-height: 0;
  }

  .quickscan-hero-media img {
    min-height: 0;
    padding: 8px;
  }

  .quickscan-hero-note {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .hours-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .equipment-card img {
    max-height: 300px;
  }

  .shuttle-visual {
    min-height: 430px;
    padding: 18px;
  }

  .shuttle-photo,
  .shuttle-photo > img {
    min-height: 250px;
  }

  .shuttle-destination {
    right: 8px;
    bottom: 8px;
    grid-template-columns: 62px 1fr;
    width: calc(100% - 16px);
    padding: 12px;
  }

  .shuttle-destination img {
    width: 62px;
    height: 44px;
  }

  .shuttle-route-places {
    display: grid;
    gap: 6px;
  }

  .shuttle-car {
    left: 50%;
    width: 58px;
    height: 26px;
    border-width: 2px;
  }

  .shuttle-car::before {
    left: 10px;
    top: -13px;
    width: 27px;
    height: 15px;
    border-width: 2px;
  }

  .shuttle-car-window {
    left: 17px;
    top: -8px;
    width: 17px;
    height: 8px;
  }

  .shuttle-car-wheel {
    bottom: -7px;
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .article-media-grid {
    grid-template-columns: 1fr;
  }

  .article-media-video,
  .article-media-tiktok,
  .article-media-instagram {
    max-width: none;
    justify-self: stretch;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
