:root {
  --ink: #17212b;
  --muted: #5b6673;
  --line: #dbe1e7;
  --surface: #ffffff;
  --soft: #f5f7f9;
  --brand: #f6c343;
  --brand-ink: #201705;
  --accent: #116466;
  --accent-dark: #0c4244;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(23, 33, 43, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--surface);
}

a {
  color: inherit;
}

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

.narrow {
  width: min(760px, calc(100% - 32px));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
}

.skip-link:focus {
  left: 12px;
  z-index: 10;
  background: var(--brand);
  padding: 8px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(16, 24, 32, .96);
  border-bottom: 4px solid var(--brand);
  box-shadow: 0 16px 38px rgba(16, 24, 32, .18);
  backdrop-filter: blur(14px);
}

.header-grid {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 178px;
  height: auto;
  padding: 7px;
  border-radius: var(--radius);
  background: var(--brand);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: none;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #fff;
}

.main-nav a,
.lang-link {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #d8dee4;
  font-size: .94rem;
  text-decoration: none;
}

.lang-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 38px;
  padding: 0;
}

.lang-link img {
  display: block;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .26);
}

.main-nav a[aria-current="page"],
.main-nav a:hover,
.lang-link.is-active {
  color: var(--brand-ink);
  background: var(--brand);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

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

.button-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 850;
}

.button-small:hover {
  background: #ffd565;
  color: var(--brand-ink);
}

.social-icon-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 33%, transparent 48%),
    radial-gradient(circle at 28% 20%, #fff 0 6%, transparent 7%),
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 24, 32, .18);
}

.social-icon-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(16, 24, 32, .24);
}

.social-icon-link img {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 23, 32, .88), rgba(15, 23, 32, .58) 48%, rgba(15, 23, 32, .18)),
    var(--page-hero-image);
  background-color: #17212b;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) 320px;
  gap: 48px;
  align-items: end;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text,
.page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.06rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.metric:last-child {
  border-bottom: 0;
}

.metric strong {
  color: var(--brand);
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: var(--soft);
}

.intro-grid,
.contact-grid,
.booking-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
}

.booking-layout {
  grid-template-columns: minmax(0, 1fr);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.22rem, 1.7vw, 1.65rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.prose {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

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

.visual-intro {
  grid-template-columns: .72fr .78fr;
}

.visual-intro .intro-photo {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.visual-intro .intro-photo img,
.media-grid img,
.service-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-intro .intro-photo img {
  aspect-ratio: 16 / 6.5;
}

.media-section {
  padding-top: 0;
  background: linear-gradient(#fff 0, #fff 42%, var(--soft) 42%, var(--soft) 100%);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

.media-grid figure {
  margin: 0;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card,
.contact-card,
.note-box,
.booking-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  overflow: hidden;
  padding: 0 22px 24px;
  min-height: 0;
}

.service-card > img {
  height: 172px;
  margin: 0 -22px 20px;
  width: calc(100% + 44px);
}

.service-card h2 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-card p,
.routes-band p,
.contact-card,
.note-box {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 800;
}

.routes-band {
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
  padding-block: 10px;
}

.routes-copy {
  position: relative;
  padding-left: 20px;
}

.routes-copy::before {
  content: "";
  position: absolute;
  inset: 6px auto 6px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--brand);
}

.routes-map {
  position: relative;
  padding: 18px 0 6px 26px;
}

.route-line {
  position: absolute;
  top: 36px;
  bottom: 22px;
  left: 6px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--brand), rgba(23, 33, 43, .22));
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(246, 195, 67, .18);
}

.route-line::before {
  top: -3px;
}

.route-line::after {
  bottom: -3px;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(23, 33, 43, .10);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #46515d;
  font-size: .94rem;
  font-weight: 720;
}

.tag-list li:nth-child(4n),
.tag-list li:hover {
  border-color: rgba(246, 195, 67, .60);
  background: rgba(246, 195, 67, .14);
  color: var(--ink);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 32, .88), rgba(15, 23, 32, .60) 48%, rgba(15, 23, 32, .28)),
    var(--ink);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero--booking {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 32, .88), rgba(15, 23, 32, .58) 50%, rgba(15, 23, 32, .22)),
    var(--page-hero-image);
}

.page-hero--pricing {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 32, .88), rgba(15, 23, 32, .56) 50%, rgba(15, 23, 32, .18)),
    var(--page-hero-image);
}

.page-hero--services {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 32, .88), rgba(15, 23, 32, .52) 50%, rgba(15, 23, 32, .18)),
    var(--page-hero-image);
}

.page-hero--contact,
.page-hero--legal {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 32, .90), rgba(15, 23, 32, .58) 50%, rgba(15, 23, 32, .20)),
    var(--page-hero-image);
}

.page-hero .eyebrow {
  color: var(--brand);
}

.pricing-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.pricing-table th,
.pricing-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table thead th {
  position: sticky;
  top: 0;
  background: var(--ink);
  color: #fff;
  font-size: .88rem;
  vertical-align: bottom;
}

.pricing-table tbody th {
  font-weight: 800;
}

.pricing-table tbody td {
  color: var(--accent-dark);
  font-size: 1.08rem;
  font-weight: 850;
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--soft);
}

.pricing-table tbody tr:hover {
  background: #fff8df;
}

.pricing-sections {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.pricing-block {
  min-width: 0;
}

.pricing-block-heading {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.pricing-block-heading span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 900;
  font-size: .8rem;
}

.pricing-block-heading h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
}

.pricing-block + .pricing-block {
  padding-top: 10px;
}

.pricing-summary p {
  margin: 0;
  color: var(--muted);
}

.note-box {
  margin-top: 18px;
  padding: 18px 22px;
}

.booking-frame {
  min-height: 520px;
  overflow: hidden;
}

.booking-main {
  min-width: 0;
}

.booking-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff 0%, #f7f9fb 100%);
  overflow: hidden;
}

.booking-intro-copy {
  max-width: 620px;
}

.booking-intro-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.booking-intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-intro-panel > img {
  justify-self: center;
  width: min(280px, 100%);
  height: auto;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(23, 33, 43, .16));
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-kicker span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 900;
  font-size: .78rem;
}

.section-kicker p {
  margin: 0;
  color: var(--muted);
}

.booking-frame iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
}

.empty-embed {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 30px;
  text-align: center;
}

.contact-card {
  padding: 26px;
}

.booking-aside {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 174px;
  align-items: stretch;
  gap: 22px;
  align-self: start;
  overflow: hidden;
  padding: 0;
}

.booking-aside > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
}

.booking-aside-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 0;
}

.booking-aside-copy p {
  margin: 0;
}

.contact-visual > img {
  display: block;
  width: calc(100% + 48px);
  height: 220px;
  margin: 0 -24px 22px;
  object-fit: cover;
}

.booking-aside h2 {
  font-size: 1.22rem;
  margin: 0;
}

.booking-aside .action-list {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
  padding: 22px 24px 22px 0;
}

.booking-aside .button {
  min-height: 42px;
  padding-inline: 14px;
  white-space: nowrap;
}

.whatsapp-button {
  background: #1f8f5f;
  gap: 8px;
}

.whatsapp-button:hover {
  background: #176f49;
}

.whatsapp-button img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.contact-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-visual .contact-card {
  border: 0;
}

.contact-visual > .contact-promo-art {
  display: block;
  width: min(320px, calc(100% - 48px));
  height: auto;
  margin: 0 auto 26px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(23, 33, 43, .16));
}

.contact-panel {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(23, 33, 43, .08);
}

.contact-panel h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.map-section {
  padding: 0 0 64px;
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

address {
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(17, 100, 102, .12);
}

.contact-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.check-row,
.captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.check-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.check-row a {
  color: var(--accent-dark);
  font-weight: 800;
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.captcha-row input {
  text-align: center;
  font-weight: 800;
}

.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
  font-weight: 600;
}

.form-alert-success {
  border: 1px solid rgba(31, 143, 95, .25);
  background: rgba(31, 143, 95, .1);
  color: #176f49;
}

.form-alert-error {
  border: 1px solid rgba(180, 70, 58, .26);
  background: rgba(180, 70, 58, .09);
  color: #7c2f27;
}

.site-footer {
  padding: 54px 0 24px;
  background: #101820;
  color: #d8dee4;
}

.site-footer .brand-logo {
  width: 190px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--brand);
}

.license-text {
  display: grid;
  gap: 7px;
  max-width: 560px;
  margin-top: 18px;
  color: #fff;
  font-size: .92rem;
}

.license-text strong {
  font-size: 1rem;
  line-height: 1.2;
}

.license-text span {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(246, 195, 67, .25);
  border-radius: var(--radius);
  background: rgba(246, 195, 67, .08);
  color: #f4f7fa;
  font-size: .84rem;
  line-height: 1.35;
}

.secure-payment {
  display: inline-flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.secure-payment span {
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.secure-payment img {
  display: block;
  width: min(322px, 100%);
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 42px;
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer a {
  color: #fff;
}

.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.plain-list li + li {
  margin-top: 8px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 9px;
  width: auto;
  height: auto;
  margin-top: 18px;
  padding: 6px 10px 6px 6px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #d8dee4;
  font-size: .92rem;
  font-weight: 750;
  background:
    linear-gradient(#101820, #101820) padding-box,
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045) border-box;
}

.footer-social-link:hover {
  color: #fff;
  background:
    linear-gradient(rgba(16, 24, 32, .88), rgba(16, 24, 32, .88)) padding-box,
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045) border-box;
}

.footer-social-link img {
  width: 16px;
  height: 16px;
  padding: 7px;
  box-sizing: content-box;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 33%, transparent 48%),
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #9ea8b3;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: #1f8f5f;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(31, 143, 95, .28);
}

.floating-whatsapp:hover {
  background: #176f49;
}

.floating-whatsapp img {
  display: block;
  width: 30px;
  height: 30px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 25;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(920px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

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

.cookie-banner h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent-dark);
  font-weight: 750;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: #fff;
  color: var(--accent-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: var(--soft);
}

@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .routes-band,
  .contact-grid,
  .booking-intro-panel,
  .booking-layout,
  .booking-aside,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .routes-band {
    gap: 24px;
  }

  .routes-map {
    padding-top: 4px;
  }

  .header-grid {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    min-height: 66px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 16px 16px;
    border-bottom: 4px solid var(--brand);
    background: rgba(16, 24, 32, .98);
    box-shadow: 0 20px 40px rgba(23, 33, 43, .12);
  }

  .nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    color: #fff;
  }

  .header-actions {
    justify-content: end;
    grid-column: 3;
  }

  .header-social-link {
    display: none;
  }

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

  .visual-intro,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .pricing-block-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-kicker {
    align-items: start;
    flex-direction: column;
  }

  .booking-intro-panel {
    padding: 24px;
  }

  .booking-intro-panel > img {
    width: min(240px, 76vw);
    max-height: 250px;
  }

  .booking-aside {
    padding: 0 22px 22px;
  }

  .booking-aside > img {
    width: calc(100% + 44px);
    height: 220px;
    margin: 0 -22px;
  }

  .booking-aside-copy,
  .booking-aside .action-list {
    padding: 0;
  }

  .hero {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .header-grid {
    gap: 12px;
    padding: 12px 0;
  }

  .brand small,
  .brand strong,
  .button-small {
    display: none;
  }

  .brand-logo {
    width: 142px;
  }

  .form-grid,
  .captcha-row {
    grid-template-columns: 1fr;
  }

  .check-row {
    align-items: start;
  }

  .hero,
  .page-hero,
  .section {
    padding: 42px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.72rem;
    line-height: 1.14;
  }

  h2 {
    font-size: 1.22rem;
  }

  .hero-text,
  .page-hero p {
    font-size: .98rem;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

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

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