:root {
  --sea-950: #062b2f;
  --sea-900: #073b40;
  --sea-700: #0a555a;
  --sea-500: #147b7f;
  --sea-100: #d9f0ec;
  --lemon: #f2c84b;
  --coral: #ec6f5a;
  --cream: #fbf8ef;
  --sand: #eee6d2;
  --ink: #122024;
  --muted: #647276;
  --line: rgba(6, 43, 47, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(6, 43, 47, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--sea-950);
  background: var(--lemon);
  font-weight: 850;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 239, 0.94);
  box-shadow: 0 10px 30px rgba(6, 43, 47, 0.1);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 950;
}

.site-header.is-scrolled .brand {
  color: var(--sea-950);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: var(--sea-950);
  background: var(--lemon);
  font-size: 0.78rem;
  font-weight: 950;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.site-header.is-scrolled .nav-menu {
  color: var(--sea-900);
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lemon);
  transition: transform 160ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.site-header.is-scrolled .nav-toggle span:not(.sr-only) {
  background: var(--sea-950);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--sea-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 43, 47, 0.9) 0%, rgba(6, 43, 47, 0.62) 42%, rgba(6, 43, 47, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 43, 47, 0.86) 0%, rgba(6, 43, 47, 0.06) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 150px 0 56px;
  color: var(--white);
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 12px;
  color: var(--lemon);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 6.7rem);
  line-height: 0.96;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
}

.hero-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--sea-950);
  background: var(--lemon);
  box-shadow: 0 12px 28px rgba(242, 200, 75, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffd95e;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--sea-700);
  font-weight: 900;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(780px, 100%);
  margin: 42px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  padding: 18px 22px 4px 0;
}

.hero-stats dt {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 950;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.intro-band {
  padding: 34px 0;
  background: var(--sea-900);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.55fr 1fr;
  gap: 28px;
  align-items: start;
}

.intro-grid h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading h2,
.booking-copy h2 {
  margin: 0;
  color: var(--sea-950);
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.section-heading p:not(.section-kicker),
.booking-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-section {
  background: var(--sand);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 100px;
}

.booking-mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.booking-mini-cards span {
  padding: 9px 12px;
  border: 1px solid rgba(6, 43, 47, 0.12);
  border-radius: 999px;
  color: var(--sea-950);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 850;
}

.booking-form,
.partner-card,
.place-card,
.itinerary-card {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--sea-950);
  font-size: 0.9rem;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(6, 43, 47, 0.16);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--sea-500);
  box-shadow: 0 0 0 4px rgba(20, 123, 127, 0.14);
}

.privacy-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 750 !important;
}

.privacy-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--sea-700);
  font-weight: 850;
}

.partner-section {
  background: var(--cream);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.partner-card {
  overflow: hidden;
}

.partner-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.partner-content {
  padding: 26px;
}

.partner-logo {
  width: 180px;
  height: auto;
  margin-bottom: 14px;
}

.partner-content h3 {
  margin: 0;
  color: var(--sea-950);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.partner-content p:not(.tag) {
  margin: 16px 0 0;
  color: var(--muted);
}

.places-section {
  background: var(--white);
}

.iconic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.place-card {
  overflow: hidden;
  display: flex;
  min-height: 470px;
  flex-direction: column;
}

.place-card.featured {
  grid-column: span 2;
}

.place-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.place-card.featured img {
  height: 300px;
}

.place-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.place-card h3 {
  margin: 0;
  color: var(--sea-950);
  font-size: 1.45rem;
  line-height: 1.08;
}

.place-card p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.tag {
  color: var(--sea-500);
  font-size: 0.72rem;
}

.itinerary-section {
  background: var(--sea-950);
}

.itinerary-section .section-heading h2,
.itinerary-section .section-heading p:not(.section-kicker) {
  color: var(--white);
}

.itinerary-section .section-heading p:not(.section-kicker) {
  opacity: 0.76;
}

.itinerary-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.segment {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.segment.is-active {
  color: var(--sea-950);
  background: var(--lemon);
}

.itinerary-list {
  display: grid;
  gap: 14px;
}

.itinerary-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  transition: transform 170ms ease;
}

.itinerary-card.is-hidden {
  display: none;
}

.itinerary-card:hover {
  transform: translateY(-3px);
}

.number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 6px;
  color: var(--sea-950);
  background: var(--lemon);
  font-weight: 950;
}

.itinerary-card h3 {
  margin: 0;
  color: var(--sea-950);
}

.itinerary-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.itinerary-card strong {
  color: var(--sea-700);
  white-space: nowrap;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--sea-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 560px;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--white);
  font-weight: 850;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--sea-950);
  background: var(--lemon);
  box-shadow: 0 12px 28px rgba(6, 43, 47, 0.22);
  font-weight: 950;
}

@media (max-width: 1080px) {
  .intro-grid,
  .booking-layout,
  .itinerary-layout {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .iconic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-card.featured {
    grid-column: span 1;
  }

  .section-heading,
  .section-heading.align-left {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .partner-grid,
  .iconic-grid,
  .form-grid.two,
  .form-grid.three {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    color: var(--sea-950);
    background: rgba(251, 248, 239, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(14px);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 12px;
    border-radius: 6px;
  }

  .site-header.is-scrolled .nav-menu,
  .nav-menu {
    color: var(--sea-950);
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-bottom: 92px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .place-card,
  .partner-card {
    min-height: auto;
  }

  .place-card img,
  .place-card.featured img,
  .partner-card > img {
    height: 236px;
  }

  .itinerary-card {
    grid-template-columns: 1fr;
  }

  .itinerary-card strong {
    white-space: normal;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-wa {
    left: 16px;
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Multipage additions */
.page-hero { position: relative; min-height: 620px; display: grid; align-items: end; overflow: hidden; background: var(--sea-950); }
.page-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 1; padding: 150px 0 70px; color: var(--white); }
.page-hero h1 { max-width: 920px; margin: 0; font-size: clamp(2.8rem, 5.8vw, 5.8rem); line-height: 0.98; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; color: rgba(255,255,255,0.76); font-weight: 850; }
.breadcrumbs a { color: var(--lemon); }
.page-content-section { background: var(--cream); }
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 5vw, 72px); align-items: start; }
.page-main { max-width: 760px; }
.page-main h2 { margin: 34px 0 14px; color: var(--sea-950); font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.02; }
.page-main h2:first-of-type { margin-top: 0; }
.page-main p { color: var(--muted); font-size: 1.05rem; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 16px 0 0; list-style: none; }
.check-list li { padding: 13px 14px; border-left: 4px solid var(--lemon); border-radius: 6px; background: var(--white); color: var(--sea-950); font-weight: 850; }
.page-aside { position: sticky; top: 100px; display: grid; gap: 16px; }
.aside-card { padding: 22px; border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.aside-card h3 { margin: 0; color: var(--sea-950); }
.aside-card p { color: var(--muted); }
.related-list { display: grid; gap: 10px; }
.related-list a { display: grid; gap: 3px; padding: 12px; border: 1px solid var(--line); border-radius: 6px; background: #fffdf8; }
.related-list span { color: var(--sea-500); font-size: 0.76rem; font-weight: 900; text-transform: uppercase; }
.related-list strong { color: var(--sea-950); }
.faq-list { display: grid; gap: 10px; margin-top: 16px; }
.faq-list details { border-radius: 8px; padding: 15px 16px; background: var(--white); box-shadow: 0 10px 26px rgba(6,43,47,0.08); }
.faq-list summary { cursor: pointer; color: var(--sea-950); font-weight: 900; }
.faq-list p { margin-bottom: 0; }
.services-section { background: var(--sand); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card { overflow: hidden; display: flex; min-height: 420px; flex-direction: column; border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 190px; object-fit: cover; }
.service-card div { padding: 20px; }
.service-card span { color: var(--sea-500); font-size: 0.74rem; font-weight: 900; text-transform: uppercase; }
.service-card strong { display: block; margin-top: 8px; color: var(--sea-950); font-size: 1.2rem; line-height: 1.1; }
.service-card p { color: var(--muted); }
a.place-card { color: inherit; }
@media (max-width: 1080px) { .page-layout { grid-template-columns: 1fr; } .page-aside { position: static; } .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 820px) { .page-hero { min-height: 700px; } .page-hero-content { padding-bottom: 92px; } .service-grid { grid-template-columns: 1fr; } }


/* B2B additions */
.b2b-section { background: var(--cream); }
.b2b-panel { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr); gap: clamp(22px, 4vw, 44px); align-items: center; padding: clamp(28px, 5vw, 54px); border-radius: 8px; background: var(--sea-950); color: var(--white); box-shadow: var(--shadow); }
.b2b-panel h2 { margin: 0; color: var(--white); font-size: clamp(2rem, 4vw, 4rem); line-height: 1; }
.b2b-panel p:not(.section-kicker) { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.b2b-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.b2b-points span { padding: 12px; border: 1px solid rgba(255,255,255,0.16); border-radius: 6px; color: var(--white); background: rgba(255,255,255,0.08); font-weight: 850; }
.b2b-actions { display: flex; flex-wrap: wrap; gap: 12px; grid-column: 1 / -1; }
.b2b-panel .text-link { color: var(--lemon); }
@media (max-width: 820px) { .b2b-panel { grid-template-columns: 1fr; } .b2b-points { grid-template-columns: 1fr; } }

/* Mobile, touch and PWA refinements */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  padding-bottom: env(safe-area-inset-bottom);
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(242, 200, 75, 0.28);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--lemon);
  outline-offset: 3px;
}

input,
select,
textarea {
  font-size: 16px;
}

.nav-menu.is-open {
  transition: transform 180ms ease, opacity 180ms ease;
}

@media (max-width: 700px) {
  .container,
  .nav,
  .hero-content {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav {
    min-height: calc(64px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .brand {
    max-width: calc(100vw - 92px);
  }

  .brand span {
    overflow-wrap: anywhere;
  }

  .nav-menu {
    max-height: calc(100svh - 88px);
    overflow-y: auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 43, 47, 0.9) 0%, rgba(6, 43, 47, 0.6) 56%, rgba(6, 43, 47, 0.22) 100%);
  }

  .hero-content {
    padding: 116px 0 calc(96px + env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
    line-height: 1;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .partner-actions,
  .b2b-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .text-link {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    margin-top: 30px;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .booking-copy h2,
  .b2b-panel h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .booking-form {
    padding: 18px;
  }

  .booking-mini-cards span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .partner-content,
  .place-card div,
  .service-card div,
  .aside-card {
    padding: 18px;
  }

  .partner-card > img,
  .place-card img,
  .place-card.featured img,
  .service-card img {
    height: 220px;
  }

  .page-hero {
    min-height: 100svh;
  }

  .page-hero-content {
    padding: 116px 0 calc(92px + env(safe-area-inset-bottom));
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1;
  }

  .page-main {
    max-width: none;
  }

  .footer-links {
    display: grid;
    gap: 12px;
  }

  .floating-wa {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
  }
}

@media (max-width: 430px) {
  .hero-content,
  .page-hero-content {
    padding-top: 104px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 11.5vw, 3rem);
  }

  .intro-band {
    padding: 26px 0;
  }

  .booking-mini-cards span {
    flex-basis: 100%;
  }

  .number {
    width: 42px;
    height: 42px;
  }
}

