﻿:root {
  --navy: #061A2B;
  --navy-2: #0B2D46;
  --blue: #173D56;
  --gold: #C99A45;
  --gold-light: #D9B66F;
  --paper: #F8F5EF;
  --sand: #F4F1EA;
  --line: #E6E0D6;
  --ink: #18212A;
  --muted: #5E6872;
  --white: #FFFFFF;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: 82px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--white);
  background: rgba(6, 26, 43, 0.84);
  border-bottom: 1px solid rgba(217, 182, 111, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  order: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 0 1 360px;
  min-width: 0;
  text-decoration: none;
}

.brand__logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand__text strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand__text span {
  color: rgba(248, 245, 239, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-nav {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(248, 245, 239, 0.84);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--gold-light);
}

.site-nav .site-nav__cta {
  min-height: 42px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: var(--white);
}

.header-actions {
  order: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  min-height: 38px;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(217, 182, 111, 0.4);
  border-radius: 4px;
  background: rgba(6, 26, 43, 0.28);
}

.language-switch a {
  min-width: 36px;
  min-height: 30px;
  padding: 7px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: rgba(248, 245, 239, 0.74);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.language-switch a.is-active {
  background: var(--gold);
  color: var(--white);
}

.menu-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 182, 111, 0.48);
  border-radius: 4px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-light);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy) url("../images/sea-sunset-bow.webp") center / cover no-repeat;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 26, 43, 0.94), rgba(6, 26, 43, 0.58) 52%, rgba(6, 26, 43, 0.24)),
    linear-gradient(0deg, rgba(6, 26, 43, 0.9), rgba(6, 26, 43, 0.08) 52%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 860px;
  padding: 168px 32px 132px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: 86px;
  line-height: 1.03;
}

h2 {
  color: var(--navy);
  font-size: 60px;
  line-height: 1.08;
  margin-bottom: 20px;
}

h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin-bottom: 14px;
}

.hero__lead {
  max-width: 650px;
  color: rgba(248, 245, 239, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button--primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
}

.button--primary:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.button--secondary {
  border: 1px solid rgba(217, 182, 111, 0.72);
  color: var(--white);
  background: rgba(6, 26, 43, 0.2);
}

.button--wide {
  width: 100%;
}

.hero__status {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 0 32px 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 182, 111, 0.28);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  color: rgba(248, 245, 239, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(217, 182, 111, 0.22);
}

.trust-strip div {
  padding: 34px 32px;
  border-right: 1px solid rgba(217, 182, 111, 0.18);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.trust-strip span {
  color: rgba(248, 245, 239, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.section {
  padding: 100px 32px;
}

.section--light {
  background: var(--sand);
}

.section__heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section__heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.service-card img {
  display: block;
  width: 100% !important;
  height: 260px !important;
  min-height: 260px;
  max-height: none;
  flex: 0 0 260px;
  object-fit: cover !important;
  object-position: center;
  aspect-ratio: auto;
}

.service-card div {
  flex: 1;
  padding: 30px;
}

.service-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-card p,
.split-section__content p,
.credential-grid p,
.experience-grid p,
.process-grid p,
.check-grid p,
.contact-section__content p,
.site-footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: var(--white);
}

.split-section__image img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.split-section__content {
  padding: 110px 92px;
  align-self: center;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 7px;
}

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

.section--navy h2 {
  color: var(--white);
}

.section--navy .section__heading p:not(.eyebrow) {
  color: rgba(248, 245, 239, 0.74);
}

.check-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(217, 182, 111, 0.22);
  border: 1px solid rgba(217, 182, 111, 0.22);
}

.check-grid div {
  padding: 34px 28px;
  background: var(--navy);
}

.check-grid span {
  width: 34px;
  height: 2px;
  margin-bottom: 24px;
  display: block;
  background: var(--gold-light);
}

.check-grid h3 {
  color: var(--white);
  font-size: 27px;
}

.check-grid p {
  color: rgba(248, 245, 239, 0.72);
}

.credentials-section {
  border-top: 1px solid var(--line);
}

.experience-section {
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(217, 182, 111, 0.1), transparent 34%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%);
  background-size: auto, 100% 46px;
  pointer-events: none;
}

.experience-section > * {
  position: relative;
}

.experience-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(217, 182, 111, 0.24);
  background: rgba(217, 182, 111, 0.24);
}

.experience-grid article {
  padding: 34px 28px;
  background: rgba(6, 26, 43, 0.86);
}

.experience-grid span,
.process-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-grid h3 {
  color: var(--white);
  font-size: 27px;
  line-height: 1.14;
}

.experience-grid p {
  color: rgba(248, 245, 239, 0.72);
}

.route-section {
  border-top: 1px solid var(--line);
}

.route-map {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.route-map svg {
  width: 100%;
  height: auto;
  border: 1px solid rgba(217, 182, 111, 0.28);
  background: var(--navy);
}

.route-map__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 182, 111, 0.28);
  background: var(--navy);
}

.route-map__image img {
  display: block;
  width: 100%;
  height: auto;
}

.route-map__sea {
  fill: #061A2B;
}

.route-map__grid {
  fill: none;
  stroke: rgba(248, 245, 239, 0.08);
  stroke-width: 1;
}

.route-map__land {
  fill: #E7DDC7;
  stroke: rgba(6, 26, 43, 0.32);
  stroke-width: 2;
}

.route-map__island {
  fill: #E7DDC7;
  stroke: rgba(6, 26, 43, 0.34);
  stroke-width: 1.5;
}

.route-map__route {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.96;
}

.route-map__route--adriatic {
  stroke: #F0B84B;
}

.route-map__route--med {
  stroke: #52C7EA;
}

.route-map__route--strait {
  stroke: #EF6A5B;
}

.route-map__route--canary {
  stroke: #70C987;
}

.route-map__route--atlantic {
  stroke: #A98BFF;
}

.route-map__point circle {
  fill: var(--navy);
  stroke: var(--paper);
  stroke-width: 2;
}

.route-map__point text,
.route-map__label,
.route-map__land-label {
  fill: rgba(248, 245, 239, 0.82);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.route-map__point text {
  stroke: rgba(6, 26, 43, 0.76);
  stroke-width: 4px;
  paint-order: stroke;
}

.route-map__label {
  fill: rgba(248, 245, 239, 0.26);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.route-map__land-label {
  fill: rgba(6, 26, 43, 0.66);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.route-notes article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.route-notes span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-key {
  width: 24px;
  height: 4px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 999px;
}

.route-key--adriatic {
  background: #F0B84B;
}

.route-key--med {
  background: #52C7EA;
}

.route-key--strait {
  background: #EF6A5B;
}

.route-key--canary {
  background: #70C987;
}

.route-key--atlantic {
  background: #A98BFF;
}

.route-notes strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.16;
}

.credential-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.credential-grid article {
  min-height: 100%;
  padding: 30px 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.credential-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credential-grid h3 {
  min-height: 60px;
  color: var(--navy);
}

.cv-download {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.cv-download p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 30px 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.process-grid span {
  color: var(--gold);
}

.process-grid h3 {
  color: var(--navy);
}

.legal-main {
  padding-top: 82px;
  background: var(--sand);
}

.legal-hero {
  padding: 78px 32px 48px;
  background: var(--navy);
  color: var(--white);
}

.legal-hero__inner,
.legal-content {
  max-width: 920px;
  margin: 0 auto;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: 58px;
}

.legal-hero p {
  margin: 0;
  color: rgba(248, 245, 239, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.legal-content {
  padding: 64px 32px 88px;
}

.legal-content section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 38px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--navy);
  font-weight: 800;
}

.contact-section {
  padding: 100px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 60px;
  align-items: center;
  background:
    linear-gradient(rgba(248, 245, 239, 0.9), rgba(248, 245, 239, 0.9)),
    url("../images/sea-sunset-bow.webp") center / cover;
}

.photo-section {
  overflow: hidden;
}

.photo-grid {
  display: flex;
  gap: 22px;
  max-width: 1280px;
  margin: 48px auto 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  padding: 0 1px 10px;
}

.photo-grid::-webkit-scrollbar {
  display: none;
}

.photo-card {
  flex: 0 0 calc((100% - 44px) / 3);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  scroll-snap-align: start;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.photo-card--portrait img {
  object-position: center top;
}

.photo-card figcaption {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.photo-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto 0;
}

.photo-carousel__button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217, 182, 111, 0.7);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 24px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.photo-carousel__button:hover,
.photo-carousel__button:focus-visible {
  background: var(--gold);
  color: var(--navy);
  outline: none;
  transform: translateY(-2px);
}

.photo-carousel__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.contact-section__content {
  max-width: 720px;
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-line {
  display: grid;
  gap: 5px;
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-line span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line strong {
  color: var(--navy);
  font-size: 20px;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  padding: 44px 32px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy);
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(248, 245, 239, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-content: flex-start;
}

.site-footer nav a {
  color: rgba(248, 245, 239, 0.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

  .split-section__content {
    padding: 88px 52px;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 14px;
  }

  .brand {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .brand__logo {
    width: 48px;
    height: 48px;
  }

  .brand__text {
    overflow: hidden;
  }

  .brand__text strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 19px;
  }

  .brand__text span {
    max-width: 150px;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    min-width: max-content;
    justify-self: end;
    flex: 0 0 auto;
    gap: 10px;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    z-index: 31;
    width: 100vw;
    height: calc(100dvh - 72px);
    max-height: calc(100dvh - 72px);
    margin: 0;
    padding: 22px 20px max(28px, env(safe-area-inset-bottom));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 26, 43, 0.98);
    border-top: 1px solid rgba(217, 182, 111, 0.22);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    font-size: 14px;
  }

  .site-nav .site-nav__cta {
    justify-content: center;
    margin-top: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__video {
    display: none;
  }

  .hero__content {
    padding: 132px 20px 96px;
  }

  h1 {
    font-size: 58px;
    line-height: 1.06;
  }

  h2 {
    font-size: 44px;
    line-height: 1.1;
  }

  .hero__status {
    margin: 0 20px 24px;
  }

  .trust-strip,
  .service-grid,
  .split-section,
  .experience-grid,
  .route-notes,
  .credential-grid,
  .process-grid,
  .check-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px !important;
    min-height: 220px;
    flex-basis: 220px;
  }

  .split-section__image img {
    min-height: 460px;
  }

  .section,
  .contact-section {
    padding: 72px 20px;
  }

  .check-grid {
    max-width: 620px;
  }

  .credential-grid {
    max-width: 620px;
  }

  .experience-grid,
  .process-grid {
    max-width: 620px;
  }

  .photo-grid {
    max-width: 620px;
  }

  .photo-card {
    flex-basis: min(82vw, 520px);
  }

  .photo-card img {
    height: 520px;
  }

  .credential-grid h3 {
    min-height: 0;
  }

  .cv-download {
    max-width: 620px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .photo-grid {
    margin-top: 32px;
    gap: 0;
    width: 100%;
    padding: 0;
  }

  .photo-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .photo-card img {
    height: clamp(270px, 48svh, 370px);
    max-height: none;
  }

  .photo-card figcaption {
    display: flex;
    min-height: 68px;
    align-items: center;
    padding: 14px 16px;
  }

  .photo-carousel__controls {
    width: 100%;
    margin-top: 16px;
    justify-content: space-between;
  }

  .photo-carousel__hint {
    max-width: 120px;
    text-align: center;
    font-variant-numeric: tabular-nums;
  }

  .site-header {
    padding: 0 10px;
    column-gap: 8px;
  }

  .brand {
    gap: 8px;
  }

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

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    min-height: 36px;
    padding: 2px;
  }

  .language-switch a {
    min-width: 30px;
    min-height: 30px;
    padding: 7px 6px;
    font-size: 11px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 720px;
  }

  .route-map svg {
    min-height: 360px;
  }

  .route-map__point text {
    display: none;
  }

  .route-map__label {
    font-size: 30px;
  }

  .route-map__land-label {
    font-size: 22px;
  }

  .route-map__route {
    stroke-width: 8;
  }

  .route-map__point circle {
    r: 9px;
  }

  .legal-main {
    padding-top: 72px;
  }

  .legal-hero {
    padding: 58px 20px 38px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-content {
    padding: 44px 20px 66px;
  }

  .hero__content {
    padding: 122px 18px 78px;
  }

  .hero__content,
  .hero__status {
    max-width: 100%;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 46px;
    line-height: 1.08;
  }

  h2 {
    font-size: 37px;
    line-height: 1.12;
  }

  h3 {
    font-size: 27px;
    line-height: 1.14;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__status {
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .trust-strip div {
    padding: 28px 20px;
  }

  .service-card div,
  .contact-card {
    padding: 26px 22px;
  }

  .service-card img {
    height: 200px !important;
    min-height: 200px;
    flex-basis: 200px;
  }

  .split-section__content {
    padding: 66px 20px;
  }

  .contact-section {
    gap: 30px;
  }

  .site-footer {
    display: grid;
    padding: 38px 20px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding: 0 8px;
    column-gap: 7px;
  }

  .brand {
    gap: 7px;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand__text strong {
    font-size: 14px;
  }

  .language-switch a {
    min-width: 28px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 34px;
  }
}

