:root {
  --navy-950: #071522;
  --navy-900: #0a2033;
  --navy-800: #10314d;
  --blue-600: #0879d9;
  --blue-500: #1494ef;
  --blue-100: #dceffc;
  --ink: #142232;
  --muted: #5e6b78;
  --line: #dce3e9;
  --surface: #f3f6f8;
  --white: #ffffff;
  --success: #0d7a56;
  --shadow: 0 22px 60px rgba(7, 21, 34, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #86ccff;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 3.7vw, 3.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: #006dc5;
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.dark {
  background: var(--navy-950);
}

.button.dark:hover {
  background: var(--navy-800);
}

.button.outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy-950);
}

.button.outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.arrow {
  font-size: 1.2em;
  line-height: 1;
}

.topbar {
  background: var(--navy-950);
  color: #cbd6df;
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(10, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--navy-950);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a:not(.button) {
  position: relative;
  color: #344456;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links > a:not(.button):hover::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.language-switch a {
  padding: 6px 9px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.language-switch a[aria-current="page"] {
  background: var(--navy-950);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy-950);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 34, 0.98) 0%, rgba(7, 21, 34, 0.92) 44%, rgba(7, 21, 34, 0.3) 72%, rgba(7, 21, 34, 0.08) 100%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0 0 0 42%;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 710px;
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 78px 0 105px;
}

.hero h1 {
  color: var(--white);
}

.hero .lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #d9e2ea;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 34px;
  color: #dbe6ee;
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points span::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 148, 239, 0.2);
  color: #7bcbff;
  content: "✓";
  font-size: 0.72rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -46px;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(10, 32, 51, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 27px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-number {
  color: var(--blue-600);
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}

.trust-label {
  color: #455567;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  padding: 112px 0;
}

.section.surface {
  background: var(--surface);
}

.section.dark {
  background: var(--navy-950);
  color: var(--white);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.dark .lead {
  color: #c9d5de;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading h2,
.section-heading .lead {
  margin-bottom: 0;
}

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

.service-feature {
  position: relative;
  min-height: 360px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--white);
}

.service-feature::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 34, 0.02) 8%, rgba(7, 21, 34, 0.93) 86%);
  content: "";
}

.service-feature img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-feature:hover img {
  transform: scale(1.035);
}

.service-feature-content {
  position: relative;
  z-index: 2;
}

.service-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: #8ed2ff;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-feature h3 {
  color: var(--white);
  font-size: 1.65rem;
}

.service-feature p {
  margin-bottom: 0;
  color: #d6e0e8;
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-list {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.service-list article {
  min-height: 185px;
  padding: 30px;
  background: var(--white);
}

.service-list .marker {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 850;
}

.service-list h3 {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 95px);
  grid-template-columns: 1.02fr 0.98fr;
}

.split.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

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

.split-media {
  position: relative;
}

.split-media > img {
  aspect-ratio: 1.1 / 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  right: -22px;
  bottom: 28px;
  max-width: 270px;
  padding: 22px;
  border-left: 4px solid var(--blue-500);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 21, 34, 0.16);
}

.image-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.image-note span {
  color: var(--muted);
  font-size: 0.84rem;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #38495a;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #dff4ec;
  color: var(--success);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.inspection-note {
  margin-top: 24px;
  padding: 17px 19px;
  border: 1px solid #bfdff5;
  border-radius: 10px;
  background: #edf8ff;
  color: #2d536d;
  font-size: 0.88rem;
}

.process-grid {
  display: grid;
  gap: 0;
  margin-top: 52px;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  padding: 0 38px 0 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 20px;
  left: 67px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.process-number {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(142, 210, 255, 0.6);
  border-radius: 50%;
  color: #8ed2ff;
  font-size: 0.82rem;
  font-weight: 850;
}

.process-step h3 {
  font-size: 1.18rem;
}

.process-step p {
  margin: 0;
  color: #aebdca;
  font-size: 0.9rem;
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 250px);
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
  background: var(--surface);
}

.gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.arrival-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: 1.12fr 0.88fr;
}

.arrival-photo {
  min-height: 570px;
}

.arrival-photo img {
  height: 100%;
  object-fit: cover;
}

.arrival-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

.arrival-steps {
  display: grid;
  gap: 18px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.arrival-steps li {
  display: grid;
  gap: 14px;
  grid-template-columns: 31px 1fr;
}

.arrival-steps span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 7px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.arrival-steps p {
  margin: 2px 0 0;
  color: #455567;
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-section {
  background: linear-gradient(125deg, #09243a 0%, #071522 66%, #0a2d48 100%);
  color: var(--white);
}

.contact-grid {
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-grid h2 {
  max-width: 720px;
  color: var(--white);
}

.contact-grid .lead {
  color: #c7d5df;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.contact-row {
  display: block;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row small {
  display: block;
  margin-bottom: 3px;
  color: #91a7b8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

a.contact-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  padding: 55px 0 90px;
  background: #050f18;
  color: #9cacb9;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
}

.footer-brand {
  display: flex;
  max-width: 430px;
  align-items: flex-start;
  gap: 15px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
}

.footer-brand p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
}

.footer-column h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.83rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  font-size: 0.88rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.legal-page {
  padding: 78px 0 110px;
  background: var(--surface);
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.legal-card h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-card h2 {
  margin-top: 48px;
  font-size: 1.7rem;
}

.legal-card h3 {
  margin-top: 30px;
  font-size: 1.15rem;
}

.legal-card p,
.legal-card li {
  color: #455567;
}

.legal-card a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 17px;
  }

  .nav-links > a:not(.button) {
    font-size: 0.84rem;
  }

  .brand {
    min-width: auto;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    gap: 36px 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  body {
    padding-bottom: 66px;
  }

  .topbar {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-text span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 49;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 30px 24px 90px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .nav-links > a:not(.button) {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-links > a:not(.button)::after {
    display: none;
  }

  .nav-links .button {
    margin-top: 12px;
  }

  .language-switch {
    width: fit-content;
    margin-top: 14px;
  }

  .language-switch a {
    padding: 10px 15px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero-media {
    inset: 0;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 21, 34, 0.6) 0%, rgba(7, 21, 34, 0.96) 58%, #071522 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding: 100px 0 100px;
  }

  .service-feature-grid,
  .split,
  .split.reverse,
  .arrival-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .service-feature {
    min-height: 330px;
  }

  .image-note {
    right: 20px;
  }

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

  .gallery-grid figure:first-child {
    grid-row: auto;
  }

  .arrival-photo {
    min-height: 420px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 66px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--navy-950);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .mobile-contact-bar a:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-contact-bar a:last-child {
    background: var(--blue-600);
  }
}

@media (max-width: 590px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .brand-text strong {
    max-width: 175px;
    font-size: 0.88rem;
  }

  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero-content {
    padding-bottom: 82px;
  }

  .hero-actions,
  .hero-actions .button,
  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .trust-strip {
    margin-top: -30px;
  }

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

  .trust-item {
    min-height: 105px;
    display: block;
    padding: 20px;
  }

  .trust-number {
    display: block;
    margin-bottom: 8px;
    font-size: 1.7rem;
  }

  .trust-label {
    font-size: 0.73rem;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading .button {
    margin-top: 22px;
  }

  .service-feature {
    min-height: 360px;
    padding: 26px;
  }

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

  .service-list article {
    min-height: auto;
    padding: 25px;
  }

  .service-list .marker {
    margin-bottom: 15px;
  }

  .split {
    gap: 40px;
  }

  .split-media > img {
    aspect-ratio: 0.95 / 1;
  }

  .image-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -30px 18px 0;
  }

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

  .process-step {
    display: grid;
    padding: 0;
    gap: 0 18px;
    grid-template-columns: 45px 1fr;
  }

  .process-number {
    grid-row: 1 / 3;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }

  .arrival-photo {
    min-height: 320px;
  }

  .arrival-copy {
    padding: 34px 25px;
  }

  .contact-panel {
    margin-top: 8px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
