:root {
  --navy-950: #081c29;
  --navy-900: #102f43;
  --navy-800: #173f58;
  --blue-500: #45b4da;
  --blue-400: #62c5e7;
  --blue-100: #dff5fc;
  --ink: #14232d;
  --muted: #586873;
  --line: #d9e2e7;
  --surface: #ffffff;
  --surface-soft: #f3f7f9;
  --shadow: 0 20px 55px rgba(8, 28, 41, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 84px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #f5b942;
  outline-offset: 4px;
}

.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 {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--navy-950);
  background: #fff;
  border-radius: 8px;
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #267fa0;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 6vw, 5.2rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
}

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

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--blue-400);
}

.button-primary:hover {
  background: #89d7ef;
}

.button-secondary {
  color: var(--navy-950);
  background: transparent;
  border-color: #9db0bb;
}

.button-secondary:hover {
  background: var(--blue-100);
  border-color: var(--blue-500);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(8, 28, 41, 0.97);
  box-shadow: 0 8px 30px rgba(5, 20, 30, 0.18);
}

.header-inner {
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  flex: 0 1 260px;
}

.brand img {
  width: 260px;
  height: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: #f6fbfd;
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--blue-400);
}

.site-nav .nav-cta {
  display: inline-flex;
  padding: 9px 18px;
  color: var(--navy-950);
  background: var(--blue-400);
  border-radius: 999px;
}

.menu-toggle,
.menu-close {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(69, 180, 218, 0.17), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(98, 197, 231, 0.25);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding-block: clamp(58px, 6vw, 78px);
}

.hero h1 {
  color: #fff;
}

.hero .eyebrow {
  color: var(--blue-400);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: #d5e3ea;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero .button-secondary {
  color: #fff;
  border-color: #678091;
}

.hero .button-secondary:hover {
  color: var(--navy-950);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: #c9dce5;
}

.hero-note strong {
  color: #fff;
  font-size: 1.15rem;
}

.hero-note span {
  padding-left: 15px;
  border-left: 1px solid #557386;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0;
  justify-self: end;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(98, 197, 231, 0.5);
  border-radius: var(--radius-lg);
}

.hero-media img {
  width: 100%;
  height: clamp(260px, 27vw, 360px);
  object-fit: cover;
  object-position: 52% 45%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.services {
  background: var(--surface-soft);
}

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

.service-card {
  min-height: 170px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #97d7eb;
  box-shadow: var(--shadow);
}

.service-number {
  display: block;
  margin-bottom: 36px;
  color: #2782a3;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card h3 {
  max-width: 250px;
  margin: 0;
}

.about-grid,
.references-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 70px;
  width: 1px;
  background: var(--line);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline strong {
  position: relative;
  color: #267fa0;
  font-size: 1.35rem;
}

.timeline strong::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -3px;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  background: var(--blue-500);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--blue-500);
}

.timeline span {
  font-weight: 700;
}

.references {
  color: #d6e3e9;
  background: var(--navy-950);
}

.references-grid {
  grid-template-columns: minmax(360px, 480px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 90px);
}

.references-media {
  width: 100%;
  max-width: 480px;
  margin: 0;
}

.references-media img {
  width: 100%;
  height: clamp(250px, 25vw, 340px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.references h2 {
  color: #fff;
}

.references .eyebrow {
  color: var(--blue-400);
}

.reference-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.reference-list li {
  position: relative;
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid #284553;
}

.reference-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue-400);
}

.gallery-section {
  background: var(--navy-900);
}

.section-heading-light h2,
.section-heading-light > p:last-child {
  color: #fff;
}

.section-heading-light .eyebrow {
  color: var(--blue-400);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #0b2534;
  border: 0;
  border-radius: 13px;
  cursor: zoom-in;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 1.4rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  transform: scale(1.08);
  background: var(--blue-400);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 350ms ease, opacity 350ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.88;
}

.gallery-item-portrait img {
  object-position: center 45%;
}

.lightbox {
  width: min(94vw, 1280px);
  max-width: none;
  height: min(92vh, 900px);
  max-height: none;
  padding: 54px 72px 40px;
  overflow: visible;
  color: #fff;
  background: #071722;
  border: 1px solid #284553;
  border-radius: 20px;
}

.lightbox::backdrop {
  background: rgba(2, 10, 15, 0.93);
  backdrop-filter: blur(5px);
}

.lightbox figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 26px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: #173f58;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close {
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  font-size: 2.2rem;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: var(--navy-950);
  background: var(--blue-400);
}

.contact {
  background: var(--surface-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
}

.contact-primary {
  display: grid;
  gap: 14px;
}

.contact-card,
.company-details {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card > a:not(.text-link),
.contact-card address {
  display: block;
  width: fit-content;
  color: var(--navy-950);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
}

.contact-card > a:not(.text-link):hover {
  color: #196f8f;
  text-decoration: underline;
}

.opening-hours dl {
  margin: 0;
}

.opening-hours dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
}

.opening-hours dd {
  color: var(--navy-950);
  font-weight: 800;
  white-space: nowrap;
}

.opening-hours p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-block;
  margin-top: 15px;
  color: #196f8f;
  font-weight: 800;
  text-underline-offset: 3px;
}

.company-details h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.company-details dl {
  margin: 0;
}

.company-details dl > div {
  display: grid;
  grid-template-columns: minmax(140px, 0.75fr) 1.25fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.company-details dl > div:last-child {
  border-bottom: 0;
}

.company-details dt {
  color: var(--muted);
}

.company-details dd {
  margin: 0;
  font-weight: 750;
}

.site-footer {
  padding: 42px 0;
  color: #b8cbd5;
  background: #061722;
}

.location-map {
  width: 100%;
  overflow: hidden;
  background: #dce6eb;
  line-height: 0;
}

.location-map-frame {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 40px;
  align-items: center;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 26px;
}

.footer-links a {
  color: #e8f1f5;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-link-button {
  padding: 0;
  color: #e8f1f5;
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #203845;
  font-size: 0.88rem;
}

.legal-page {
  background: var(--surface-soft);
}

.legal-page .site-header .button-secondary {
  color: #fff;
  border-color: #66808f;
}

.legal-page .site-header .button-secondary:hover {
  color: var(--navy-950);
}

.legal-content {
  max-width: 900px;
  padding-top: clamp(64px, 9vw, 110px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.legal-content h1 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.legal-updated {
  margin-bottom: 40px;
  color: var(--muted);
}

.legal-notice,
.legal-content section {
  margin-top: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legal-notice {
  border-left: 5px solid var(--blue-500);
}

.legal-notice > p:last-child,
.legal-content section > p:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.legal-content a {
  color: #146c8d;
  font-weight: 750;
  text-underline-offset: 3px;
}

.legal-content ul {
  margin-bottom: 0;
}

.legal-content code {
  padding: 0.08em 0.28em;
  background: #e9f0f3;
  border-radius: 4px;
  font-size: 0.92em;
}

.legal-consent-button {
  margin-top: 8px;
}

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

.cookie-banner {
  position: fixed;
  z-index: 4000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: #dceaf0;
  background: #071d2a;
  border: 1px solid #456575;
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.cookie-banner-inner {
  width: min(100%, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
}

.cookie-banner h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.cookie-banner p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--blue-400);
  font-weight: 750;
  text-underline-offset: 3px;
}

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

.cookie-actions .button {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.cookie-actions .button-secondary {
  color: #fff;
  border-color: #77909d;
}

.cookie-actions .button-secondary:hover {
  color: var(--navy-950);
}

.legal-disclaimer {
  margin: 34px 0 0;
  padding: 20px;
  color: var(--muted);
  background: #e9f0f3;
  border-radius: 12px;
  font-size: 0.93rem;
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .brand,
  .brand img {
    width: 218px;
    flex-basis: 218px;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid #496473;
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .menu-toggle-lines {
    position: relative;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle-lines::before {
    top: -6px;
  }

  .menu-toggle-lines::after {
    top: 6px;
  }

  .site-nav {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    align-items: center;
    padding: max(80px, env(safe-area-inset-top)) 28px max(40px, env(safe-area-inset-bottom));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--navy-950);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav ul {
    width: min(100%, 420px);
    margin: auto;
    flex-direction: column;
    gap: 4px;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a,
  .site-nav .nav-cta {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    color: #fff;
    background: transparent;
    border-bottom: 1px solid #294453;
    border-radius: 0;
    font-size: clamp(1.3rem, 6vw, 1.75rem);
    text-align: center;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    color: var(--navy-950);
    background: var(--blue-400);
    border: 0;
    border-radius: 999px;
  }

  .menu-close {
    position: fixed;
    z-index: 2001;
    top: max(14px, env(safe-area-inset-top));
    right: 20px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    color: #fff;
    background: #173f58;
    border: 1px solid #547080;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .references-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-media {
    width: min(100%, 560px);
    margin-inline: auto;
    justify-self: center;
  }

  .hero-media img {
    height: clamp(250px, 52vw, 360px);
  }

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

  .about-grid,
  .references-grid {
    gap: 54px;
  }

  .references-media {
    order: 2;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .references-copy {
    order: 1;
  }

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

  .contact-grid {
    gap: 18px;
  }

  .location-map-frame {
    height: 380px;
  }

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

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .brand,
  .brand img {
    width: 188px;
    flex-basis: 188px;
  }

  .section-heading,
  .about-copy,
  .references-copy,
  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading > p:last-child,
  .about-copy > p,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-grid {
    padding-block: 58px 72px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-note {
    width: 100%;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .hero-note span {
    padding-left: 0;
    border-left: 0;
  }

  .hero-media::before {
    inset: -10px 10px 10px -10px;
  }

  .hero-media img {
    height: 230px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 145px;
    text-align: center;
  }

  .service-number {
    margin-bottom: 24px;
  }

  .service-card h3 {
    margin-inline: auto;
  }

  .timeline::before {
    left: 50%;
    top: 68px;
    bottom: 68px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 138px;
    padding: 24px 12px;
    text-align: center;
  }

  .timeline strong {
    width: fit-content;
    margin-inline: auto;
    padding-bottom: 16px;
    background: #fff;
  }

  .timeline strong::after {
    top: auto;
    right: 50%;
    bottom: 1px;
    transform: translateX(50%);
  }

  .references-media img {
    height: 240px;
  }

  .reference-list {
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .gallery-item::after {
    right: 8px;
    bottom: 8px;
    width: 32px;
    height: 32px;
  }

  .lightbox {
    width: 100vw;
    height: 100dvh;
    padding: 64px 12px 86px;
    border: 0;
    border-radius: 0;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }

  .contact-card,
  .company-details {
    padding: 24px 20px;
    text-align: center;
  }

  .contact-card > a:not(.text-link),
  .contact-card address {
    margin-inline: auto;
  }

  .opening-hours dl > div {
    flex-direction: column;
    gap: 0;
  }

  .company-details dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .company-details dd {
    margin-bottom: 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .site-footer p {
    width: 100%;
  }

  .location-map-frame {
    height: 330px;
  }

  .legal-page .header-inner {
    gap: 12px;
  }

  .legal-page .brand,
  .legal-page .brand img {
    width: 155px;
    flex-basis: 155px;
  }

  .legal-page .button-small {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .legal-content {
    text-align: left;
  }

  .legal-content h1,
  .legal-content > .eyebrow {
    text-align: center;
  }

  .legal-updated {
    text-align: center;
  }

  .legal-notice,
  .legal-content section {
    padding: 22px 18px;
  }

  .cookie-banner {
    right: 0;
    bottom: 0;
    left: 0;
    max-height: 100dvh;
    overflow-y: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px max(22px, env(safe-area-inset-bottom));
    text-align: center;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .button {
    width: 100%;
  }
}

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

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