@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Anton";
  src: url("fonts/anton-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Anton";
  src: url("fonts/anton-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #06233b;
  --navy-2: #0a3655;
  --ink: #152733;
  --muted: #536875;
  --red: #d71920;
  --red-dark: #a81017;
  --aqua: #12aab6;
  --aqua-soft: #e1f6f7;
  --sand: #f4ead8;
  --sand-light: #fbf7ef;
  --line: #dce4e8;
  --white: #fff;
  --shadow: 0 20px 55px rgba(6, 35, 59, .13);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: var(--navy); text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: var(--red); }

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus { top: 16px; }

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

.section { padding: 88px 0; }
.section--sand { background: var(--sand-light); }
.section--navy { color: var(--white); background: var(--navy); }
.section--tight { padding: 56px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.section--navy .eyebrow { color: #7ee2e8; }

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

h1, h2, .display {
  color: var(--navy);
  font-family: "Anton", "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 { margin-bottom: 22px; font-size: clamp(2.75rem, 6.4vw, 5.35rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 3.35rem); }
h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.24rem; line-height: 1.28; }

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy .lead, .section--navy p { color: #b8cad4; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button[aria-disabled="true"] { opacity: .48; cursor: not-allowed; pointer-events: none; }
.button--red { color: var(--white); background: var(--red); }
.button--red:hover { color: var(--white); background: var(--red-dark); }
.button--navy { color: var(--white); background: var(--navy); }
.button--navy:hover { color: var(--white); background: var(--navy-2); }
.button--aqua { color: var(--navy); background: #7ee2e8; }
.button--aqua:hover { color: var(--navy); background: #a7eef2; }
.button--outline { color: var(--navy); border-color: var(--navy); background: transparent; }
.button--outline:hover { color: var(--white); background: var(--navy); }
.button--white { color: var(--navy); background: var(--white); }
.button--white:hover { color: var(--navy); background: var(--sand); }

.announcement { color: var(--white); background: var(--navy); font-size: .88rem; }
.announcement__inner { display: flex; min-height: 38px; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.announcement strong { color: #7ee2e8; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(6, 35, 59, .1);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}

.header-inner { display: flex; min-height: 86px; align-items: center; gap: 22px; }

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { color: var(--navy); }
.brand img { width: 68px; height: 68px; border-radius: 50%; object-fit: contain; }
.brand__text { display: grid; color: var(--navy); line-height: 1.05; }
.brand__text strong { font-size: .98rem; letter-spacing: .03em; text-transform: uppercase; }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: .72rem; }

.site-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 5px; }
.site-nav a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: .83rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red); background: #fff0ef; }

.language-select {
  max-width: 128px;
  min-height: 42px;
  padding: 8px 30px 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  font-size: .82rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 21px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform .2s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -7px; }
.menu-toggle span::after { position: absolute; top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.hero__media, .page-hero__media { position: absolute; inset: 0; }
.hero__media img, .page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after, .page-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 28, 48, .97) 0%, rgba(4, 28, 48, .82) 42%, rgba(4, 28, 48, .28) 74%, rgba(4, 28, 48, .12) 100%);
}

.hero__content { position: relative; z-index: 1; max-width: 720px; padding: 96px 0; }
.hero h1, .page-hero h1 { color: var(--white); }
.hero .lead, .page-hero .lead { color: #d3e1e9; }
.hero .eyebrow, .page-hero .eyebrow { color: #7ee2e8; }

.hero-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 13px;
  border: 1px solid rgba(126, 226, 232, .45);
  border-radius: 999px;
  color: #b9f3f5;
  background: rgba(18, 170, 182, .16);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trustbar { border-bottom: 1px solid #e5d7bd; background: var(--sand); }
.trustbar__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { padding: 19px 16px; border-right: 1px solid #e5d7bd; color: var(--navy); font-size: .83rem; font-weight: 800; text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item::before { display: block; margin-bottom: 3px; color: var(--red); content: "✓"; font-size: 1.05rem; }

.page-hero {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  align-items: end;
  color: var(--white);
  background: var(--navy);
}

.page-hero__content { position: relative; z-index: 1; max-width: 820px; padding: 104px 0 72px; }
.page-hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.7rem); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.section-head > div { max-width: 760px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { margin-bottom: 0; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.tour-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 35, 59, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tour-card__image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand); }
.tour-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.tour-card:hover .tour-card__image img { transform: scale(1.035); }
.tour-card__badge { position: absolute; top: 14px; left: 14px; padding: 6px 10px; border-radius: 999px; color: var(--white); background: rgba(6, 35, 59, .9); font-size: .72rem; font-weight: 800; }
.tour-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.tour-card__body h3 { font-size: 1.35rem; }
.tour-card__body p { color: var(--muted); font-size: .94rem; }
.tour-card__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 2px 0 20px; padding: 0; list-style: none; }
.tour-card__facts li { color: var(--muted); font-size: .79rem; }
.tour-card__facts strong { display: block; color: var(--navy); font-size: .72rem; text-transform: uppercase; }
.tour-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { color: var(--navy); font-size: .9rem; }
.price strong { display: block; color: var(--red); font-size: 1.2rem; }
.text-link { color: var(--navy); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--red); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 62px; }
.split--wide { grid-template-columns: 1.18fr .82fr; }
.split__media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; }

.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { position: absolute; top: 1px; left: 0; display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--aqua-soft); content: "✓"; font-size: .75rem; font-weight: 900; }
.section--navy .check-list li::before { color: var(--navy); background: #7ee2e8; }

.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 240px 240px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: 18px; cursor: zoom-in; background: var(--navy); }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, opacity .35s ease; }
.gallery-item:hover img { transform: scale(1.035); opacity: .88; }

.info-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; margin-top: -36px; border-radius: 18px; background: rgba(255,255,255,.24); box-shadow: var(--shadow); }
.info-strip__item { padding: 22px; background: var(--white); }
.info-strip__item small { display: block; margin-bottom: 4px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.info-strip__item strong { color: var(--navy); font-size: .95rem; }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: start; gap: 56px; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 52px; font-size: clamp(1.9rem, 3vw, 2.55rem); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 8px; }

.booking-card { position: sticky; top: 112px; padding: 28px; border-radius: var(--radius); color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.booking-card h2 { margin-bottom: 12px; color: var(--white); font-family: inherit; font-size: 1.35rem; font-weight: 800; line-height: 1.3; }
.booking-card p { color: #b8cad4; font-size: .92rem; }
.booking-card .button { width: 100%; margin-top: 9px; }
.booking-card__price { display: block; margin-bottom: 15px; color: #7ee2e8; font-size: 1.45rem; font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}
.feature__number { display: grid; width: 36px; height: 36px; margin-bottom: 16px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-weight: 900; }
.feature p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }

.fleet-card { display: grid; overflow: hidden; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 32px rgba(6,35,59,.06); }
.fleet-card img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.fleet-card__body { padding: 32px; }
.fleet-card__body p { color: var(--muted); }
.fleet-card + .fleet-card { margin-top: 26px; }

.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.faq-item summary { position: relative; padding: 20px 56px 20px 22px; color: var(--navy); cursor: pointer; font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 18px; right: 22px; content: "+"; color: var(--red); font-size: 1.55rem; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 56px; }
.contact-panel { padding: 30px; border-radius: var(--radius); color: var(--white); background: var(--navy); }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel p { color: #b8cad4; }
.contact-list { display: grid; gap: 16px; margin: 26px 0 0; padding: 0; list-style: none; }
.contact-list a { color: var(--white); font-weight: 800; }
.contact-list small { display: block; color: #8facbc; }

.form-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--navy); font-size: .84rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd7dd;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}
.form-field textarea { min-height: 118px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--aqua); outline: 3px solid rgba(18,170,182,.16); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .84rem; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.form-note { margin-top: 16px; color: var(--muted); font-size: .82rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.cta-panel { position: relative; overflow: hidden; padding: 64px; border-radius: 28px; color: var(--white); background: var(--navy); }
.cta-panel::after { position: absolute; right: -90px; bottom: -120px; width: 330px; height: 330px; border: 56px solid rgba(18,170,182,.14); border-radius: 50%; content: ""; }
.cta-panel__content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 44px; }
.cta-panel h2 { color: var(--white); }
.cta-panel p { margin-bottom: 0; color: #b8cad4; }

.site-footer { color: #c2d0d8; background: #031726; }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 44px; padding: 64px 0 46px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--white); text-decoration: none; }
.footer-brand img { width: 70px; height: 70px; border-radius: 50%; }
.footer-brand strong { display: block; font-size: 1.03rem; }
.footer-main h2 { margin-bottom: 15px; color: var(--white); font-family: inherit; font-size: .86rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-main p { color: #91a8b6; font-size: .88rem; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #c2d0d8; font-size: .88rem; text-decoration: none; }
.footer-links a:hover { color: #7ee2e8; }
.footer-bottom { display: flex; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.1); justify-content: space-between; gap: 20px; color: #7893a2; font-size: .78rem; }

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: #138f62;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
}
.floating-whatsapp:hover { color: var(--white); background: #0d744e; }

.floating-email {
  position: fixed;
  z-index: 90;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
}
.floating-email:hover { color: var(--white); background: var(--navy-2); }

.lightbox { width: min(92vw, 1100px); max-height: 90vh; padding: 0; border: 0; border-radius: 18px; background: #071827; box-shadow: 0 24px 80px rgba(0,0,0,.45); }
.lightbox::backdrop { background: rgba(0, 12, 22, .86); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 12px; right: 12px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 50%; color: var(--navy); background: var(--white); cursor: pointer; font-size: 1.5rem; }

.legal { max-width: 820px; }
.legal h2 { margin-top: 45px; font-size: 2rem; }
.legal p, .legal li { color: var(--muted); }

.notice { padding: 18px 20px; border-left: 4px solid var(--aqua); border-radius: 0 12px 12px 0; background: var(--aqua-soft); color: var(--navy); }

@media (max-width: 1100px) {
  .brand__text, .header-cta { display: none; }
  .site-nav a { padding-inline: 7px; font-size: .78rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: 0; }
  .trust-item:nth-child(n+4) { border-top: 1px solid #e5d7bd; }
  .detail-layout { grid-template-columns: minmax(0, 1fr) 310px; gap: 38px; }
}

@media (max-width: 860px) {
  .section { padding: 66px 0; }
  .announcement__inner { min-height: 44px; }
  .header-inner { min-height: 74px; }
  .brand img { width: 56px; height: 56px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .site-nav {
    position: fixed;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    align-content: start;
    align-items: stretch;
    justify-content: start;
    gap: 6px;
    padding: 24px 20px 110px;
    background: var(--white);
  }
  .site-nav[data-open="true"] { display: grid; }
  .site-nav a { padding: 13px 14px; font-size: 1rem; }
  .site-nav .language-select { max-width: none; width: 100%; margin-top: 8px; }
  .hero { min-height: 640px; }
  .hero__media::after, .page-hero__media::after { background: linear-gradient(90deg, rgba(4,28,48,.96), rgba(4,28,48,.68)); }
  .split, .split--wide, .contact-grid, .detail-layout, .cta-panel__content { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 190px 190px; }
  .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 54px 0; }
  .hero { min-height: 690px; }
  .hero__content { padding: 80px 0; }
  .page-hero { min-height: 430px; }
  .page-hero__content { padding: 80px 0 52px; }
  .button-row, .form-actions { display: grid; grid-template-columns: 1fr; }
  .button-row .button, .form-actions .button { width: 100%; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; }
  .trust-item, .trust-item:nth-child(3) { border-right: 1px solid #e5d7bd; border-top: 1px solid #e5d7bd; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-top: 0; }
  .trust-item:nth-child(even) { border-right: 0; }
  .trust-item:last-child { grid-column: 1 / -1; border-right: 0; }
  .section-head { display: block; }
  .section-head .button { margin-top: 18px; }
  .card-grid, .card-grid--2, .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 250px 150px 150px; }
  .gallery-item:first-child { grid-column: 1 / 3; }
  .split__media img { min-height: 330px; }
  .info-strip { margin-top: -22px; }
  .info-strip__item { padding: 16px; }
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-card img { min-height: 240px; }
  .form-card { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .cta-panel { padding: 38px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding-top: 52px; }
  .footer-bottom { display: block; padding-bottom: 92px; }
  .floating-whatsapp, .floating-email { bottom: 12px; width: calc(50% - 19px); min-height: 50px; justify-content: center; padding-inline: 10px; font-size: .78rem; }
  .floating-whatsapp { right: 12px; left: auto; }
  .floating-email { right: auto; left: 12px; }
}

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

@media print {
  .announcement, .site-header, .floating-whatsapp, .button-row, .booking-card, .site-footer { display: none !important; }
  .hero, .page-hero { min-height: auto; color: #000; background: #fff; }
  .hero__media, .page-hero__media { display: none; }
  .hero h1, .page-hero h1, .hero .lead, .page-hero .lead { color: #000; }
  .section { padding: 30px 0; }
}
