:root {
  --navy: #06245c;
  --navy-deep: #031941;
  --turquoise: #00a5ac;
  --turquoise-dark: #007e84;
  --yellow: #f7d84b;
  --cream: #fffaf0;
  --sand: #f3ead7;
  --white: #ffffff;
  --ink: #16243c;
  --muted: #617086;
  --line: #dce2e5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.shell {
  width: min(100% - 48px, 1260px);
  margin-inline: auto;
}

.topline {
  background: var(--turquoise);
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topline-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topline-inner > div {
  display: flex;
  gap: 28px;
}

.topline a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(6, 36, 92, 0.08);
}

.nav-row {
  display: grid;
  min-height: 128px;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 42px;
}

.logo-link {
  display: block;
  width: 185px;
  height: 112px;
  overflow: hidden;
}

.logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--turquoise);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--yellow);
  padding-left: 17px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.header-phone span {
  margin-bottom: 6px;
  color: var(--turquoise-dark);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 46% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 25, 65, 0.68) 0%, rgba(3, 25, 65, 0.18) 52%, rgba(3, 25, 65, 0) 75%),
    linear-gradient(0deg, rgba(0, 126, 132, 0.14), transparent 55%);
}

.hero-content {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 70px;
}

.hero-card {
  width: min(630px, 62%);
  border-top: 7px solid var(--yellow);
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 30px 70px rgba(3, 25, 65, 0.28);
  padding: 52px 54px 55px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5.3vw, 78px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-card > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 32px;
  color: #52627a;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 2px solid transparent;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: 0 13px 30px rgba(6, 36, 92, 0.18);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--turquoise);
  color: var(--white);
}

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

.button-light {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

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

.hero-note {
  align-self: flex-end;
  margin-bottom: 20px;
  border-left: 5px solid var(--yellow);
  background: var(--navy);
  color: var(--white);
  padding: 22px 28px;
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.journey-intro {
  padding: 110px 0 125px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.7fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 48px;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.3vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.section-heading > p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 17px;
}

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

.travel-card {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.travel-card > img,
.travel-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.travel-card > img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.travel-overlay {
  background: linear-gradient(0deg, rgba(3, 25, 65, 0.96) 0%, rgba(3, 25, 65, 0.36) 66%, transparent 100%);
}

.travel-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 34px;
}

.travel-card small {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.travel-card h3 {
  margin: 9px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.05;
}

.travel-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.travel-link {
  display: inline-block;
  border-bottom: 2px solid var(--turquoise);
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel-card:hover > img {
  transform: scale(1.045);
}

.booking-section {
  position: relative;
  background:
    radial-gradient(circle at 88% 5%, rgba(247, 216, 75, 0.35) 0 120px, transparent 122px),
    var(--white);
  padding: 115px 0 130px;
}

.booking-heading {
  max-width: 770px;
  margin-bottom: 48px;
}

.booking-heading h2 {
  margin-bottom: 22px;
}

.booking-heading > p:last-child {
  max-width: 670px;
  color: var(--muted);
  font-size: 17px;
}

.booking-shell {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(6, 36, 92, 0.12);
}

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #edf7f6;
}

.booking-tabs button {
  min-height: 74px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 800;
  transition: background 170ms ease, color 170ms ease;
}

.booking-tabs button:last-child {
  border-right: 0;
}

.booking-tabs button:hover {
  background: rgba(0, 165, 172, 0.1);
}

.booking-tabs button.is-active {
  background: var(--turquoise);
  color: var(--white);
}

.booking-panel {
  padding: 32px;
}

.booking-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.booking-panel-head span {
  color: var(--turquoise-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-panel-head h3 {
  margin: 5px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.booking-panel-head > a {
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.iframe-wrap {
  width: 100%;
  min-height: 700px;
  overflow: auto;
  border: 1px solid #cfd8dc;
  background: #f5f7f8;
  -webkit-overflow-scrolling: touch;
}

.iframe-wrap iframe {
  display: block;
  width: 100%;
  min-width: 320px;
  border: 0;
  background: var(--white);
}

.advice-section {
  background: var(--sand);
  padding: 125px 0;
}

.advice-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 95px;
}

.advice-image {
  position: relative;
  min-height: 570px;
}

.advice-image > img {
  width: calc(100% - 50px);
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.sun-badge {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.advice-copy h2 {
  margin-bottom: 30px;
}

.advice-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.advice-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  color: var(--navy);
  font-weight: 700;
  list-style: none;
}

.advice-copy li {
  position: relative;
  padding-left: 30px;
}

.advice-copy li::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--turquoise);
  border-radius: 50%;
  content: "";
}

.contact-section {
  background: var(--navy);
  color: var(--white);
  padding: 105px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 0.72fr;
  gap: 62px;
}

.contact-title .eyebrow {
  color: var(--yellow);
}

.contact-title h2 {
  max-width: 530px;
  margin-bottom: 28px;
  color: var(--white);
}

.contact-title address {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.contact-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 3px solid var(--turquoise);
  padding-top: 22px;
}

.contact-column > span {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-phone {
  margin-bottom: 5px;
  font-size: 21px;
  font-weight: 800;
}

.contact-column > a:not(.contact-phone) {
  color: #7ce0e4;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-column p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

footer {
  background: var(--white);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 135px 1fr auto;
  align-items: center;
  gap: 44px;
}

.footer-grid > img {
  width: 125px;
  height: 90px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.cookie-settings-link {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
  font-weight: inherit;
  text-align: left;
}

.cookie-settings-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.iframe-consent {
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #cfd8dc;
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 216, 75, 0.3), transparent 150px),
    #edf7f6;
  padding: 48px 24px;
  text-align: center;
}

.iframe-consent > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 20px;
  border: 3px solid var(--turquoise);
  border-radius: 50%;
  color: var(--turquoise-dark);
  font-size: 32px;
}

.iframe-consent h4 {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.iframe-consent p {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--muted);
}

.iframe-consent button,
.consent-actions button,
.consent-dialog-actions button {
  min-height: 48px;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  padding: 0 19px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.iframe-consent button:hover,
.consent-actions button:hover,
.consent-dialog-actions button:hover {
  background: var(--navy);
  color: var(--white);
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: grid;
  width: min(100% - 48px, 1180px);
  grid-template-columns: 1fr auto;
  gap: 38px;
  margin-inline: auto;
  border-top: 6px solid var(--yellow);
  background: var(--navy-deep);
  box-shadow: 0 24px 80px rgba(3, 25, 65, 0.38);
  color: var(--white);
  padding: 28px 30px;
}

.consent-copy > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.consent-copy h2 {
  margin: 5px 0 9px;
  color: var(--white);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.consent-copy p {
  max-width: 770px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.consent-copy a {
  color: #85e3e6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: grid;
  width: 210px;
  align-content: center;
  gap: 8px;
}

.consent-actions .consent-primary,
.consent-dialog-actions .consent-primary {
  border-color: var(--turquoise);
  background: var(--turquoise);
  color: var(--white);
}

.consent-actions .consent-primary:hover,
.consent-dialog-actions .consent-primary:hover {
  border-color: var(--turquoise-dark);
  background: var(--turquoise-dark);
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(3, 25, 65, 0.72);
  padding: 24px;
}

.consent-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(3, 25, 65, 0.4);
  padding: 42px;
}

.consent-dialog > h2 {
  margin-bottom: 30px;
  font-size: 38px;
}

.consent-close {
  position: absolute;
  top: 16px;
  right: 17px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 30px;
}

.consent-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.consent-option strong {
  color: var(--navy);
}

.consent-option p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.consent-option > span {
  color: var(--turquoise-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.consent-toggle {
  cursor: pointer;
}

.consent-toggle input {
  width: 25px;
  height: 25px;
  accent-color: var(--turquoise);
}

.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.legal-page {
  min-height: 100vh;
  background: var(--white);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header-inner {
  display: flex;
  min-height: 125px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.legal-header-inner > a:first-child {
  display: block;
  width: 155px;
  height: 105px;
}

.legal-header-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.legal-header-inner > a:last-child {
  color: var(--turquoise-dark);
  font-size: 13px;
  font-weight: 750;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: 85px;
  align-items: start;
  padding-block: 90px 120px;
}

.legal-layout aside {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-top: 5px solid var(--yellow);
  background: var(--cream);
  padding: 25px;
}

.legal-layout aside > span {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-layout aside a,
.legal-layout aside button {
  color: var(--turquoise-dark);
  font-size: 13px;
  font-weight: 700;
}

.legal-content > h1 {
  margin-bottom: 48px;
  font-size: clamp(48px, 6vw, 76px);
}

.legal-content h2,
.agb-document h2 {
  margin: 52px 0 18px;
  font-size: 31px;
}

.legal-content h3,
.agb-document h3 {
  margin: 36px 0 13px;
  color: var(--navy);
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #45536a;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--turquoise-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 25px;
}

.legal-content li + li {
  margin-top: 10px;
}

.agb-document > ol {
  counter-reset: agb;
}

.agb-document > ol > li {
  margin: 38px 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
}

.agb-document > ol > li > ol {
  margin-top: 15px;
}

.agb-document > ol > li > ol > li {
  color: #45536a;
  font-size: 14px;
  font-weight: 400;
}

.agb-document hr {
  height: 1px;
  margin: 46px 0;
  border: 0;
  background: var(--line);
}

.legal-footer {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 30px 0;
}

@media (max-width: 1020px) {
  .nav-row {
    grid-template-columns: 190px 1fr auto;
    gap: 24px;
  }

  .logo-link {
    width: 165px;
  }

  nav {
    gap: 22px;
    font-size: 13px;
  }

  .hero-card {
    width: min(660px, 75%);
  }

  .travel-card {
    min-height: 370px;
  }

  .advice-grid {
    gap: 55px;
  }

  .contact-grid {
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .topline-inner {
    justify-content: center;
  }

  .topline-inner > span,
  .topline-inner a:first-child {
    display: none;
  }

  .nav-row {
    min-height: 112px;
    grid-template-columns: 155px 1fr;
  }

  .logo-link {
    width: 145px;
    height: 96px;
  }

  nav {
    display: none;
  }

  .header-phone {
    justify-self: end;
  }

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

  .hero-card {
    width: min(660px, 88%);
    padding: 45px;
  }

  .hero-note {
    display: none;
  }

  .section-heading,
  .advice-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .advice-grid {
    gap: 45px;
  }

  .travel-cards {
    grid-template-columns: 1fr;
  }

  .travel-card {
    min-height: 390px;
  }

  .advice-image {
    max-width: 620px;
  }

  .contact-grid {
    gap: 44px;
  }

  .contact-column {
    max-width: 420px;
  }

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

  footer p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .consent-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-y: auto;
    padding: 24px 20px;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-dialog {
    padding: 36px 24px 26px;
  }

  .consent-dialog > h2 {
    font-size: 32px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 55px 80px;
  }

  .legal-layout aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .legal-layout aside > span {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 30px, 1260px);
  }

  .topline {
    font-size: 11px;
  }

  .header-phone {
    border-left-width: 3px;
    padding-left: 12px;
    font-size: 14px;
  }

  .header-phone span {
    font-size: 8px;
  }

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

  .hero-image {
    object-position: 72% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(3, 25, 65, 0.72), rgba(3, 25, 65, 0.05));
  }

  .hero-content {
    align-items: end;
    padding-block: 30px;
  }

  .hero-card {
    width: 100%;
    padding: 34px 27px 36px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-card > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .journey-intro,
  .booking-section,
  .advice-section,
  .contact-section {
    padding: 80px 0;
  }

  h2 {
    font-size: 42px;
  }

  .booking-tabs {
    grid-template-columns: 1fr;
  }

  .booking-tabs button {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-tabs button:last-child {
    border-bottom: 0;
  }

  .booking-panel {
    padding: 20px 12px 12px;
  }

  .booking-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .booking-panel-head h3 {
    font-size: 27px;
  }

  .iframe-wrap {
    min-height: 600px;
  }

  .iframe-consent {
    min-height: 430px;
  }

  .iframe-wrap iframe {
    min-width: 100%;
  }

  .advice-image,
  .advice-image > img {
    min-height: 430px;
  }

  .advice-image > img {
    width: calc(100% - 24px);
  }

  .sun-badge {
    width: 126px;
    height: 126px;
    font-size: 11px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  footer p {
    grid-column: auto;
  }

  .legal-header-inner {
    min-height: 100px;
  }

  .legal-header-inner > a:first-child {
    width: 120px;
    height: 82px;
  }

  .legal-header-inner > a:last-child {
    font-size: 11px;
  }

  .legal-content > h1 {
    margin-bottom: 38px;
    font-size: 46px;
  }

  .legal-content h2,
  .agb-document h2 {
    font-size: 27px;
  }

  .legal-layout aside {
    gap: 10px 18px;
    padding: 20px;
  }
}

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

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