:root {
  --ink: #0b3450;
  --ink-soft: #47677d;
  --blue: #0a4b73;
  --blue-dark: #07314d;
  --aqua: #dff3f4;
  --aqua-strong: #9cd6dc;
  --sand: #f5ead9;
  --sand-light: #fbf7ef;
  --white: #fffdf8;
  --coral: #ef765c;
  --coral-dark: #c95c46;
  --green: #46b981;
  --blocked: #d9dde1;
  --line: rgba(10, 75, 115, 0.16);
  --shadow: 0 24px 70px rgba(7, 49, 77, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(223, 243, 244, 0.9), transparent 36rem),
    linear-gradient(180deg, #f6fbfb 0%, var(--sand-light) 42%, #ffffff 100%);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(10, 75, 115, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 75, 115, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

section[id] {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(1180px, calc(100% - 48px));
  min-height: 82px;
  margin: 18px auto -100px;
  padding: 0.8rem 1rem 0.8rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 60px rgba(7, 49, 77, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: 142px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.main-nav a {
  position: relative;
  padding: 0.62rem 0.86rem;
  border-radius: 999px;
  color: rgba(11, 52, 80, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.34rem;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue-dark);
  background: rgba(223, 243, 244, 0.8);
}

.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.button-coral {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #f69867);
  box-shadow: 0 18px 38px rgba(239, 118, 92, 0.28);
}

.button-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 18px 38px rgba(7, 49, 77, 0.2);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--blue-dark);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 820px;
  padding: 150px max(42px, calc((100vw - 1180px) / 2)) 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(252, 250, 243, 0.96) 0%, rgba(252, 250, 243, 0.82) 34%, rgba(252, 250, 243, 0.32) 62%, rgba(252, 250, 243, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 75, 115, 0.08), rgba(10, 75, 115, 0.16));
}

.hero-content {
  width: min(560px, 100%);
  padding: 6.5rem 0 12rem;
}

.kicker {
  margin: 0 0 0.9rem;
  color: #1684a2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 620px;
  font-size: clamp(4rem, 8vw, 7.6rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  letter-spacing: -0.052em;
}

h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.038em;
}

.hero-content p:not(.kicker) {
  max-width: 520px;
  margin: 1.35rem 0 0;
  color: var(--ink);
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-search {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr auto;
  align-items: center;
  gap: 0;
  width: min(960px, 100%);
  margin: 0 0 -42px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.hero-search label {
  display: grid;
  gap: 0.22rem;
  min-height: 72px;
  padding: 0.6rem 1.2rem;
  border-right: 1px solid var(--line);
}

.hero-search span,
.field span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-search input,
.hero-search select {
  width: 100%;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  outline: none;
}

.hero-search button {
  min-height: 58px;
  padding: 0 1.7rem;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--blue-dark);
  font-weight: 800;
  cursor: pointer;
}

.hero-trust {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem 0 0.1rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-trust span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #2fa682;
}

.section,
.feature-band,
.booking-section,
.wide-story,
.reviews,
.contact-band,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 8rem 0 2rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 5rem;
  align-items: start;
}

.intro-text {
  padding-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.feature-band article {
  min-height: 230px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 50px rgba(7, 49, 77, 0.06);
}

.feature-band h3 {
  margin-top: 1.2rem;
  font-size: 2.2rem;
}

.feature-band p {
  color: var(--ink-soft);
}

.icon-line {
  display: block;
  width: 58px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua-strong), var(--coral));
}

.offers {
  padding-top: 7rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.offer-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.offer-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.offer-card div {
  padding: 1.45rem;
}

.offer-card span {
  color: #1684a2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-top: 0.35rem;
  font-size: 2.15rem;
}

.offer-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.booking-section {
  padding: 8rem 0 3rem;
}

.booking-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.booking-intro p:last-child {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.booking-tool-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 75, 115, 0.18);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.booking-topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #effbfc, #fff9ec);
}

.booking-tool-progress,
.booking-flow {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.booking-tool-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.6rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  cursor: pointer;
}

.booking-tool-progress-step span,
.booking-flow-step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #e6f4f6;
}

.booking-tool-progress-step.is-active {
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(7, 49, 77, 0.22);
}

.booking-tool-progress-step.is-active span {
  color: var(--blue-dark);
  background: #fff;
}

.booking-tool-progress-step:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.live-pill span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #43bd83;
  box-shadow: 0 0 0 0 rgba(67, 189, 131, 0.55);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 13px rgba(67, 189, 131, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(67, 189, 131, 0);
  }
}

.booking-flow {
  padding: 1.2rem 1.5rem 0;
}

.booking-flow-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.booking-flow-step.is-active,
.booking-flow-step.is-complete {
  color: var(--blue-dark);
}

.booking-flow-step.is-active span,
.booking-flow-step.is-complete span {
  color: #fff;
  background: var(--blue);
}

.booking-tool-panel {
  padding: 1.5rem;
}

.booking-tool-panel[hidden] {
  display: none;
}

.date-strip {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) auto minmax(190px, 0.6fr) auto;
  gap: 0.9rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 58px;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--aqua-strong);
  box-shadow: 0 0 0 4px rgba(156, 214, 220, 0.28);
}

.check-field,
.legal-check {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
}

.check-field input,
.legal-check input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.is-hidden {
  display: none;
}

.booking-map-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #e9f9fb 0 118px, #fff9ef 118px);
}

.map-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding: 1.55rem 1.55rem 1rem;
}

.map-heading h3 {
  font-size: 3rem;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
  padding-top: 0.4rem;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.35rem;
  border-radius: 50%;
}

.dot.free {
  background: var(--green);
}

.dot.selected {
  background: var(--blue-dark);
}

.dot.blocked {
  background: var(--blocked);
}

.booking-tool-status {
  padding: 0 1.55rem 1rem;
}

.booking-tool-status-card,
.booking-tool-setup-card {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

.booking-tool-map {
  overflow-x: auto;
  padding: 1.2rem 1.55rem 1.8rem;
  scrollbar-color: rgba(10, 75, 115, 0.32) transparent;
}

.booking-tool-row {
  min-width: 1060px;
  margin-bottom: 1.1rem;
}

.booking-tool-row:last-child {
  margin-bottom: 0;
}

.booking-tool-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.58rem;
  color: var(--ink-soft);
  font-weight: 900;
}

.booking-tool-row-grid {
  display: grid;
  gap: 8px;
  align-items: center;
}

.booking-tool-chair,
.booking-tool-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 33px;
  min-width: 33px;
  height: 39px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #132f3f;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12), 0 10px 20px rgba(7, 49, 77, 0.12);
}

.booking-tool-chair {
  cursor: pointer;
}

.booking-tool-chair-number {
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.booking-tool-chair-model {
  margin-top: 0.1rem;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.booking-tool-chair[data-model="3_SEAT_CHAIR"] {
  background: #2ead73;
}

.booking-tool-chair[data-model="2_SEAT_RECLINER"] {
  background: #e0a13a;
}

.booking-tool-chair[data-model="PREMIUM"] {
  background: #c9783d;
}

.booking-tool-chair.is-unavailable {
  color: #a8b2ba;
  background: #e4e8eb;
  box-shadow: none;
  cursor: not-allowed;
}

.booking-tool-chair.is-selected {
  color: #fff;
  outline: 3px solid #fff8ed;
  outline-offset: -5px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.42) 0 7px, transparent 8px),
    linear-gradient(180deg, #ff7e6d 0%, #e64e42 100%) !important;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 7px rgba(229, 78, 66, 0.72),
    0 18px 34px rgba(229, 78, 66, 0.35);
}

.booking-tool-chair.is-selected::after {
  content: "✓";
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #e64e42;
  box-shadow: 0 8px 18px rgba(229, 78, 66, 0.36);
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-tool-marker {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  font-size: 0.62rem;
  font-weight: 900;
}

.booking-tool-marker.is-aisle {
  background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 5px, #e4eff4 5px, #e4eff4 11px);
}

.booking-tool-marker.is-lounge {
  color: #7a4d13;
  background: #f3cf87;
}

.booking-tool-marker.is-placeholder {
  opacity: 0;
}

.booking-selection-dock {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(290px, 1fr) minmax(260px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}

.booking-price-overview,
.booking-tool-live-costs,
.next-card {
  min-height: 140px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.booking-tool-price-pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  height: 100%;
}

.booking-tool-price-pill {
  display: grid;
  align-content: center;
  gap: 0.12rem;
  min-height: 96px;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #eef8fa);
  text-align: left;
}

.booking-tool-price-pill-label {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-tool-price-pill-main {
  font-weight: 900;
}

.booking-tool-price-pill-main em,
.booking-tool-price-pill-sub {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
}

.booking-tool-live-costs-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.booking-tool-map-label {
  margin: 0 0 0.25rem;
  color: #1684a2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.booking-tool-live-costs h4 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.booking-tool-live-costs-head strong {
  color: var(--coral-dark);
  font-size: 1.35rem;
}

.booking-tool-live-costs-note {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
}

.booking-tool-live-costs-list {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.booking-tool-live-cost-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  background: #f3f8f8;
  font-size: 0.9rem;
}

.booking-tool-live-cost-item strong {
  min-width: 0;
}

.booking-tool-remove-chair {
  border: 1px solid rgba(192, 66, 52, 0.22);
  background: #fff7f3;
  color: var(--coral-dark);
  cursor: pointer;
  font: 800 0.72rem / 1 var(--body);
  letter-spacing: 0.04em;
  padding: 0.44rem 0.6rem;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.booking-tool-remove-chair:hover,
.booking-tool-remove-chair:focus-visible {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: translateY(-1px);
}

.booking-tool-price-pill {
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  column-gap: 0.65rem;
}

.booking-tool-price-pill-icon {
  grid-row: 1 / span 3;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(9, 44, 61, 0.1);
}

/* Generated AI icon system. */
.ai-icon {
  --sprite-x: 0%;
  --sprite-y: 0%;
  display: inline-block;
  flex: 0 0 auto;
  background-image: url("../img/strand28-ai-icons-v2.png");
  background-position: var(--sprite-x) var(--sprite-y);
  background-repeat: no-repeat;
  background-size: 400% 400%;
}

[data-ai-icon="home"] { --sprite-x: 0%; --sprite-y: 0%; }
[data-ai-icon="chair"] { --sprite-x: 33.333%; --sprite-y: 0%; }
[data-ai-icon="price"] { --sprite-x: 66.666%; --sprite-y: 0%; }
[data-ai-icon="map"] { --sprite-x: 100%; --sprite-y: 0%; }
[data-ai-icon="service"] { --sprite-x: 0%; --sprite-y: 33.333%; }
[data-ai-icon="contact"] { --sprite-x: 33.333%; --sprite-y: 33.333%; }
[data-ai-icon="two-chair"] { --sprite-x: 66.666%; --sprite-y: 33.333%; }
[data-ai-icon="three-chair"] { --sprite-x: 100%; --sprite-y: 33.333%; }
[data-ai-icon="recliner"] { --sprite-x: 0%; --sprite-y: 66.666%; }
[data-ai-icon="drink"] { --sprite-x: 33.333%; --sprite-y: 66.666%; }
[data-ai-icon="ice"] {
  --sprite-x: 66.666%;
  --sprite-y: 66.666%;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='160' height='160' rx='32' fill='%23FFFDF7'/%3E%3Cellipse cx='80' cy='132' rx='38' ry='10' fill='%23F0DCC4' opacity='.42'/%3E%3Crect x='68' y='98' width='24' height='42' rx='10' fill='%23D59A57'/%3E%3Crect x='73' y='100' width='14' height='39' rx='7' fill='%23E7B777'/%3E%3Cpath d='M50 74c0-26.5 13.7-47 30.5-47S111 47.5 111 74v28.5c0 10.2-8.3 18.5-18.5 18.5h-24C58.3 121 50 112.7 50 102.5V74Z' fill='%23FFCE55'/%3E%3Cpath d='M50 74c0-26.5 13.7-47 30.5-47S111 47.5 111 74v6H50v-6Z' fill='%23FF7769'/%3E%3Cpath d='M50 80h61v23c0 9.9-8.1 18-18 18H68c-9.9 0-18-8.1-18-18V80Z' fill='%23FFD861'/%3E%3Cpath d='M80.5 27C97.3 27 111 47.5 111 74v28.5c0 10.2-8.3 18.5-18.5 18.5H80.5V27Z' fill='%23F4A83B' opacity='.5'/%3E%3Cpath d='M62 48c4.7-8.8 11.1-13.7 18.5-13.7' stroke='%23FFF9E9' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M50 80h61' stroke='%23FFF6DA' stroke-width='5'/%3E%3Cpath d='M50 103.5c0 9.7 7.8 17.5 17.5 17.5h25c9.7 0 17.5-7.8 17.5-17.5V74c0-26.5-13.4-47-30-47S50 47.5 50 74v29.5Z' stroke='%230D3147' stroke-width='6' stroke-linejoin='round'/%3E%3Crect x='68' y='98' width='24' height='42' rx='10' stroke='%230D3147' stroke-width='6'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
}
[data-ai-icon="change"] { --sprite-x: 100%; --sprite-y: 66.666%; }
[data-ai-icon="shower"] { --sprite-x: 0%; --sprite-y: 100%; }
[data-ai-icon="toy"] { --sprite-x: 33.333%; --sprite-y: 100%; }
[data-ai-icon="payment"] { --sprite-x: 66.666%; --sprite-y: 100%; }
[data-ai-icon="key"] { --sprite-x: 100%; --sprite-y: 100%; }

.main-nav .ai-nav-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.05rem;
  border-radius: 8px;
  box-shadow: 0 7px 16px rgba(9, 44, 61, 0.1);
}

.main-nav a svg {
  display: none;
}

.feature-icon.ai-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 1rem;
  border: 0;
  background-color: transparent;
  box-shadow: 0 18px 34px rgba(9, 44, 61, 0.12);
}

.offer-card .price-icon.ai-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: transparent;
  background-color: transparent;
  box-shadow: 0 16px 30px rgba(231, 96, 77, 0.18);
}

.service-icons article::before {
  content: none !important;
}

.service-card-icon {
  grid-row: span 2;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(9, 44, 61, 0.12);
}

.trust-section article::before {
  background-image: url("../img/strand28-ai-icons-v2.png");
  background-repeat: no-repeat;
  background-size: 400% 400%;
  box-shadow: 0 18px 34px rgba(9, 44, 61, 0.12);
}

.trust-section article:nth-of-type(1)::before {
  background-position: 66.666% 100%;
}

.trust-section article:nth-of-type(2)::before {
  background-position: 66.666% 0%;
}

.trust-section article:nth-of-type(3)::before {
  background-position: 0% 33.333%;
}

@media (max-width: 760px) {
  .main-nav .ai-nav-icon {
    width: 30px;
    height: 30px;
  }

  .feature-icon.ai-icon {
    width: 72px;
    height: 72px;
  }

  .service-card-icon {
    width: 74px;
    height: 74px;
  }

  .offer-card .price-icon.ai-icon {
    width: 48px;
    height: 48px;
  }
}

/* Final booking start fix: keep this last so old duplicated booking styles cannot win. */
.booking-section {
  padding-top: clamp(5.25rem, 8vw, 7.5rem) !important;
}

.booking-intro {
  width: min(1180px, 100%) !important;
  max-width: none !important;
  margin-inline: auto !important;
  margin-bottom: clamp(2rem, 4vw, 3.5rem) !important;
}

.booking-intro h2 {
  max-width: 9.5ch !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(3.1rem, 6.6vw, 5.8rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.065em !important;
}

.booking-intro p:last-child {
  max-width: 620px !important;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem) !important;
  line-height: 1.65 !important;
}

.booking-tool-shell.is-guide-start {
  width: min(1280px, 100%) !important;
  max-width: 1280px !important;
  margin-inline: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.booking-tool-shell.is-guide-start .booking-start-experience {
  display: grid !important;
}

.booking-tool-shell:not(.is-guide-start) .booking-start-experience,
.booking-tool-shell.is-guide-loading .booking-start-experience,
.booking-tool-shell.is-guide-date .booking-start-experience,
.booking-tool-shell.is-guide-map .booking-start-experience,
.booking-tool-shell.is-guide-checkout .booking-start-experience {
  display: none !important;
}

.booking-start-experience {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.78fr) !important;
  min-height: clamp(390px, 43vw, 520px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(9, 44, 61, 0.16) !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow:
    22px 22px 0 rgba(9, 44, 61, 0.08),
    0 30px 90px rgba(9, 44, 61, 0.1) !important;
}

.booking-start-map {
  position: relative !important;
  inset: auto !important;
  min-height: inherit !important;
  padding: clamp(2rem, 4vw, 4.2rem) !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.58) 58%, rgba(255, 253, 248, 0.88)),
    url("../img/strand28-beach-dunes.jpeg") center / cover !important;
  isolation: isolate !important;
}

.booking-start-map::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(1.4rem, 3vw, 3rem) !important;
  z-index: 1 !important;
  border: 1px solid rgba(9, 44, 61, 0.1) !important;
  background:
    linear-gradient(180deg, rgba(224, 244, 248, 0.72), rgba(255, 253, 248, 0.78)),
    repeating-linear-gradient(90deg, rgba(9, 44, 61, 0.08) 0 1px, transparent 1px 54px) !important;
  filter: blur(5px) !important;
}

.booking-start-map::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 213, 111, 0.2), transparent 15rem),
    linear-gradient(90deg, rgba(255, 253, 248, 0.03), rgba(255, 253, 248, 0.56) 70%, rgba(255, 253, 248, 0.88)) !important;
  backdrop-filter: blur(2px) !important;
}

.booking-start-water {
  left: clamp(1.4rem, 3vw, 3rem) !important;
  right: clamp(1.4rem, 3vw, 3rem) !important;
  bottom: clamp(1.4rem, 3vw, 3rem) !important;
  z-index: 4 !important;
  height: 70px !important;
  opacity: 0.78 !important;
}

.booking-start-plan {
  z-index: 3 !important;
  grid-template-columns: repeat(9, clamp(28px, 3vw, 42px)) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  width: max-content !important;
  margin: clamp(3rem, 7vw, 6rem) 0 0 clamp(2rem, 7vw, 7rem) !important;
  opacity: 0.46 !important;
  filter: blur(4px) !important;
  transform: rotate(-2deg) !important;
}

.booking-start-plan span {
  width: clamp(28px, 3vw, 42px) !important;
  height: clamp(28px, 3vw, 42px) !important;
  border-radius: 6px !important;
  box-shadow: 8px 8px 0 rgba(9, 44, 61, 0.06) !important;
}

.booking-start-copy {
  position: relative !important;
  z-index: 5 !important;
  align-self: stretch !important;
  display: grid !important;
  align-content: center !important;
  width: auto !important;
  min-height: auto !important;
  margin: 0 !important;
  padding: clamp(2rem, 4.6vw, 4.8rem) !important;
  border: 0 !important;
  border-left: 1px solid rgba(9, 44, 61, 0.12) !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
}

.booking-start-copy::before,
.booking-start-copy::after {
  content: none !important;
  display: none !important;
}

.booking-start-copy h3 {
  max-width: 9.2ch !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(2.1rem, 4.1vw, 4rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.055em !important;
}

.booking-start-copy p:not(.kicker) {
  max-width: 430px !important;
  font-size: clamp(1rem, 1.25vw, 1.16rem) !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

.booking-start-copy .button {
  width: min(100%, 420px) !important;
  min-height: 62px !important;
  margin-top: 0.6rem !important;
  border-radius: 0 !important;
}

@media (max-width: 900px) {
  .booking-section {
    padding-top: 4.25rem !important;
  }

  .booking-intro {
    margin-bottom: 1.5rem !important;
  }

  .booking-intro h2 {
    max-width: 10ch !important;
    font-size: clamp(2.75rem, 14vw, 4.6rem) !important;
    letter-spacing: -0.058em !important;
  }

  .booking-start-experience {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    box-shadow:
      10px 10px 0 rgba(9, 44, 61, 0.08),
      0 22px 60px rgba(9, 44, 61, 0.1) !important;
  }

  .booking-start-map {
    min-height: 260px !important;
  }

  .booking-start-plan {
    margin: 4rem auto 0 !important;
  }

  .booking-start-copy {
    border-left: 0 !important;
    border-top: 1px solid rgba(9, 44, 61, 0.12) !important;
  }
}

@media (max-width: 560px) {
  .booking-intro h2 {
    max-width: 8.5ch !important;
    font-size: clamp(2.45rem, 15vw, 3.7rem) !important;
  }

  .booking-start-map {
    min-height: 210px !important;
  }

  .booking-start-plan {
    grid-template-columns: repeat(6, 28px) !important;
    gap: 8px !important;
    opacity: 0.38 !important;
  }

  .booking-start-copy {
    padding: 1.5rem !important;
  }

  .booking-start-copy h3 {
    max-width: 10ch !important;
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
}

.hero-logo-mark {
  width: clamp(130px, 14vw, 205px);
  height: auto;
  margin-bottom: clamp(0.2rem, 1vw, 0.9rem);
  filter: drop-shadow(0 14px 28px rgba(6, 43, 63, 0.12));
}

/* Final visual direction for the first booking touchpoint: blurred map, one clear action. */
.booking-tool-shell.is-guide-start .booking-start-experience {
  display: grid !important;
  grid-template-columns: 1fr !important;
  place-items: center !important;
  min-height: clamp(420px, 48vw, 560px) !important;
}

.booking-tool-shell.is-guide-start .booking-start-map {
  position: absolute !important;
  inset: 0 !important;
  min-height: 100% !important;
  padding: 0 !important;
  transform: none !important;
  background:
    linear-gradient(180deg, rgba(221, 244, 248, 0.1), rgba(255, 250, 240, 0.7)),
    url("../img/strand28-beach-dunes.jpeg") center / cover !important;
}

.booking-tool-shell.is-guide-start .booking-start-map::before {
  inset: clamp(2rem, 5vw, 5rem) !important;
  background:
    linear-gradient(180deg, rgba(221, 244, 248, 0.78), rgba(255, 253, 248, 0.84)),
    repeating-linear-gradient(90deg, rgba(9, 44, 61, 0.09) 0 1px, transparent 1px 58px) !important;
  filter: blur(7px) !important;
}

.booking-tool-shell.is-guide-start .booking-start-map::after {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 250, 240, 0.78), rgba(255, 250, 240, 0.34) 22rem, transparent 38rem),
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.62)) !important;
  backdrop-filter: blur(3px) !important;
}

.booking-tool-shell.is-guide-start .booking-start-plan {
  margin: 0 !important;
  grid-template-columns: repeat(9, clamp(30px, 3vw, 44px)) !important;
  opacity: 0.5 !important;
  transform: translateY(-1rem) rotate(-1.5deg) !important;
}

.booking-tool-shell.is-guide-start .booking-start-water {
  height: 78px !important;
}

.booking-tool-shell.is-guide-start .booking-start-copy {
  width: min(560px, calc(100% - 2rem)) !important;
  margin: 0 !important;
  padding: clamp(1.75rem, 3.4vw, 3.2rem) !important;
  border: 1px solid rgba(9, 44, 61, 0.15) !important;
  background: rgba(255, 253, 248, 0.94) !important;
  box-shadow:
    18px 18px 0 rgba(9, 44, 61, 0.08),
    0 26px 78px rgba(9, 44, 61, 0.18) !important;
  text-align: center !important;
  justify-items: center !important;
}

.booking-tool-shell.is-guide-start .booking-start-copy h3 {
  max-width: 11ch !important;
  font-size: clamp(2.15rem, 4vw, 3.9rem) !important;
}

.booking-tool-shell.is-guide-start .booking-start-copy p:not(.kicker) {
  max-width: 430px !important;
  font-weight: 650 !important;
}

.booking-tool-shell.is-guide-start .booking-start-copy .button {
  width: min(100%, 360px) !important;
}

@media (max-width: 640px) {
  .booking-tool-shell.is-guide-start .booking-start-experience {
    min-height: 470px !important;
  }

  .booking-tool-shell.is-guide-start .booking-start-plan {
    grid-template-columns: repeat(6, 30px) !important;
    opacity: 0.38 !important;
  }

  .booking-tool-shell.is-guide-start .booking-start-copy {
    width: min(100% - 1.2rem, 420px) !important;
  }
}

/* Booking start repair: one clear stage instead of layered legacy overlays. */
.booking-section {
  padding-top: clamp(5.25rem, 8vw, 7.5rem);
}

.booking-intro {
  width: min(1180px, 100%);
  max-width: none;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.booking-intro h2 {
  max-width: 9.5ch;
  font-family: var(--font-sans);
  font-size: clamp(3.1rem, 6.6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.booking-intro p:last-child {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.65;
}

.booking-tool-shell.is-guide-start {
  width: min(1280px, 100%);
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-tool-shell.is-guide-start .booking-start-experience {
  display: grid;
}

.booking-tool-shell:not(.is-guide-start) .booking-start-experience,
.booking-tool-shell.is-guide-loading .booking-start-experience,
.booking-tool-shell.is-guide-date .booking-start-experience,
.booking-tool-shell.is-guide-map .booking-start-experience,
.booking-tool-shell.is-guide-checkout .booking-start-experience {
  display: none !important;
}

.booking-start-experience {
  position: relative;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.78fr);
  min-height: clamp(390px, 43vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(9, 44, 61, 0.16);
  border-radius: 0;
  background: #fffdf8;
  box-shadow:
    22px 22px 0 rgba(9, 44, 61, 0.08),
    0 30px 90px rgba(9, 44, 61, 0.1);
}

.booking-start-map {
  position: relative;
  inset: auto;
  min-height: inherit;
  padding: clamp(2rem, 4vw, 4.2rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.58) 58%, rgba(255, 253, 248, 0.88)),
    url("../img/strand28-beach-dunes.jpeg") center / cover;
  isolation: isolate;
}

.booking-start-map::before {
  content: "";
  position: absolute;
  inset: clamp(1.4rem, 3vw, 3rem);
  z-index: 1;
  border: 1px solid rgba(9, 44, 61, 0.1);
  background:
    linear-gradient(180deg, rgba(224, 244, 248, 0.72), rgba(255, 253, 248, 0.78)),
    repeating-linear-gradient(90deg, rgba(9, 44, 61, 0.08) 0 1px, transparent 1px 54px);
  filter: blur(5px);
}

.booking-start-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 213, 111, 0.2), transparent 15rem),
    linear-gradient(90deg, rgba(255, 253, 248, 0.03), rgba(255, 253, 248, 0.56) 70%, rgba(255, 253, 248, 0.88));
  backdrop-filter: blur(2px);
}

.booking-start-water {
  left: clamp(1.4rem, 3vw, 3rem);
  right: clamp(1.4rem, 3vw, 3rem);
  bottom: clamp(1.4rem, 3vw, 3rem);
  z-index: 4;
  height: 70px;
  opacity: 0.78;
}

.booking-start-plan {
  z-index: 3;
  grid-template-columns: repeat(9, clamp(28px, 3vw, 42px));
  gap: clamp(8px, 1vw, 14px);
  width: max-content;
  margin: clamp(3rem, 7vw, 6rem) 0 0 clamp(2rem, 7vw, 7rem);
  opacity: 0.46;
  filter: blur(4px);
  transform: rotate(-2deg);
}

.booking-start-plan span {
  width: clamp(28px, 3vw, 42px);
  height: clamp(28px, 3vw, 42px);
  border-radius: 6px;
  box-shadow: 8px 8px 0 rgba(9, 44, 61, 0.06);
}

.booking-start-copy {
  position: relative;
  z-index: 5;
  align-self: stretch;
  display: grid;
  align-content: center;
  width: auto;
  min-height: auto;
  margin: 0;
  padding: clamp(2rem, 4.6vw, 4.8rem);
  border: 0;
  border-left: 1px solid rgba(9, 44, 61, 0.12);
  border-radius: 0;
  background: #fffdf8;
  box-shadow: none;
}

.booking-start-copy::before,
.booking-start-copy::after {
  content: none !important;
  display: none !important;
}

.booking-start-copy h3 {
  max-width: 9.2ch;
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 4.1vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.booking-start-copy p:not(.kicker) {
  max-width: 430px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 700;
  line-height: 1.55;
}

.booking-start-copy .button {
  width: min(100%, 420px);
  min-height: 62px;
  margin-top: 0.6rem;
  border-radius: 0;
}

@media (max-width: 900px) {
  .booking-section {
    padding-top: 4.25rem;
  }

  .booking-intro {
    margin-bottom: 1.5rem;
  }

  .booking-intro h2 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 14vw, 4.6rem);
    letter-spacing: -0.058em;
  }

  .booking-start-experience {
    grid-template-columns: 1fr;
    min-height: 0;
    box-shadow:
      10px 10px 0 rgba(9, 44, 61, 0.08),
      0 22px 60px rgba(9, 44, 61, 0.1);
  }

  .booking-start-map {
    min-height: 260px;
  }

  .booking-start-plan {
    margin: 4rem auto 0;
  }

  .booking-start-copy {
    border-left: 0;
    border-top: 1px solid rgba(9, 44, 61, 0.12);
  }
}

@media (max-width: 560px) {
  .booking-intro h2 {
    max-width: 8.5ch;
    font-size: clamp(2.45rem, 15vw, 3.7rem);
  }

  .booking-start-map {
    min-height: 210px;
  }

  .booking-start-plan {
    grid-template-columns: repeat(6, 28px);
    gap: 8px;
    opacity: 0.38;
  }

  .booking-start-copy {
    padding: 1.5rem;
  }

  .booking-start-copy h3 {
    max-width: 10ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

.next-card {
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.next-card p {
  margin: 0;
  color: var(--ink-soft);
}

.checkout-panel {
  padding-top: 1rem;
}

.plain-back {
  margin-bottom: 1rem;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.2rem;
}

.checkout-fields,
.checkout-summary {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.checkout-summary dl {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0;
}

.checkout-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(10, 75, 115, 0.1);
}

.checkout-summary dt {
  color: var(--ink-soft);
  font-weight: 800;
}

.checkout-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.checkout-summary .total {
  color: var(--blue-dark);
  font-size: 1.25rem;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  margin: 1.2rem 0;
  padding: 0.9rem;
  border: 1px solid rgba(10, 75, 115, 0.18);
  border-radius: 16px;
  background: #f7fbfb;
}

.payment-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.payment-option small,
.summary-note {
  color: var(--ink-soft);
}

.payment-option b {
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  color: #063087;
  background: #ffc439;
  font-size: 0.8rem;
}

.legal-check {
  align-items: flex-start;
  margin-top: 0.7rem;
  font-size: 0.94rem;
}

.submit-button {
  width: 100%;
  margin-top: 1.1rem;
}

.booking-loading {
  display: grid;
  place-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: #fff1ea;
  color: var(--coral-dark);
}

.booking-loading[hidden] {
  display: none;
}

.booking-loading span {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(239, 118, 92, 0.25);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.booking-tool-message {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  color: var(--ink);
  background: #eef8fa;
}

.booking-tool-message.is-visible {
  display: block;
}

.booking-tool-message.is-error {
  color: #8a2c24;
  background: #ffe2dc;
}

.booking-tool-message.is-success,
.success-card {
  color: #176340;
  background: #e0f4e9;
}

.payment-stage,
.success-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
}

.wide-story {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  margin-top: 5rem;
  padding: 4rem;
  border-radius: 34px;
  color: #fff;
  background: var(--blue-dark);
  overflow: hidden;
}

.wide-story h2,
.wide-story .kicker {
  color: #fff;
}

.wide-story p {
  color: rgba(255, 255, 255, 0.78);
}

.wide-story :is(img, video) {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.wide-story-video {
  background: #dceff4;
}

.gallery-section {
  padding-top: 7rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  box-shadow: var(--shadow);
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 49, 77, 0.72));
}

.gallery-card span,
.gallery-card h3 {
  position: absolute;
  z-index: 1;
  left: 1.5rem;
}

.gallery-card span {
  bottom: 5.1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.gallery-card h3 {
  bottom: 1.35rem;
  color: #fff;
  font-size: 2.8rem;
}

.reviews {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1rem;
  padding: 6rem 0 4rem;
}

.reviews article {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 49, 77, 0.07);
}

.reviews strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.15rem;
}

.reviews p {
  color: var(--ink-soft);
}

.reviews span {
  color: #1684a2;
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.72)),
    url("../img/strand28-beach-dunes.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-top: 1px solid rgba(10, 75, 115, 0.18);
}

.site-footer img {
  width: 150px;
  margin-bottom: 1rem;
}

.site-footer p {
  max-width: 320px;
  color: var(--ink-soft);
}

.site-footer nav {
  display: grid;
  gap: 0.55rem;
}

.site-footer a {
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .site-header {
    width: calc(100% - 28px);
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    min-height: 46px;
    padding-inline: 1rem;
  }

  .hero-search,
  .intro,
  .booking-intro,
  .wide-story,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .offer-grid,
  .reviews {
    grid-template-columns: 1fr;
  }

  .booking-selection-dock,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  section[id] {
    scroll-margin-top: 92px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    margin-top: 10px;
    gap: 0.8rem;
    padding: 0.55rem;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 98px;
  }

  .header-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    min-height: 52px;
    max-width: calc(100vw - 28px);
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(239, 118, 92, 0.32);
  }

  .site-header .header-cta {
    width: 56px;
    padding: 0;
    font-size: 0;
  }

  .site-header .header-cta::before {
    content: "Buchen";
    font-size: 0.72rem;
  }

  .hero {
    min-height: 760px;
    padding: 104px 18px 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(252, 250, 243, 0.94) 0%, rgba(252, 250, 243, 0.78) 48%, rgba(252, 250, 243, 0.22) 100%),
      linear-gradient(180deg, rgba(10, 75, 115, 0.05), rgba(10, 75, 115, 0.2));
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    padding: 3.5rem 0 8rem;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(3rem, 14.8vw, 4.15rem);
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.05rem);
    letter-spacing: -0.042em;
    overflow-wrap: break-word;
  }

  .intro h2,
  .offers h2,
  .booking-intro h2,
  .gallery-section h2,
  .review-intro h2 {
    max-width: 320px;
  }

  .hero-content p:not(.kicker) {
    max-width: 330px;
    font-size: 1.05rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-search {
    grid-template-columns: 1fr;
    margin-bottom: -70px;
    width: 100%;
  }

  .hero-search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-trust {
    display: grid;
    gap: 0.4rem;
    justify-content: start;
    padding-left: 1rem;
  }

  .section,
  .feature-band,
  .booking-section,
  .wide-story,
  .reviews,
  .contact-band,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding-top: 6rem;
  }

  .intro {
    gap: 1.5rem;
  }

  .intro-text {
    padding-top: 0;
  }

  .feature-band {
    margin-top: 2rem;
  }

  .feature-band article {
    min-height: 190px;
    padding: 1.35rem;
  }

  .feature-band h3 {
    font-size: 1.85rem;
  }

  .feature-band p,
  .offer-card p,
  .intro-text,
  .booking-intro p:last-child {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .offer-card img {
    height: 210px;
  }

  .booking-section {
    padding-top: 6rem;
  }

  .booking-topbar,
  .booking-flow {
    display: grid;
  }

  .booking-tool-progress {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .booking-tool-progress-step {
    justify-content: center;
    padding-inline: 0.6rem;
    font-size: 0.9rem;
  }

  .live-pill {
    justify-content: center;
    min-height: 38px;
    font-size: 0.86rem;
  }

  .date-strip {
    grid-template-columns: 1fr;
  }

  .booking-tool-panel {
    padding: 1rem;
  }

  .map-heading {
    display: grid;
    padding: 1.15rem;
  }

  .map-heading h3 {
    font-size: 2.55rem;
  }

  .booking-tool-status {
    padding-inline: 1.15rem;
  }

  .booking-tool-status-card {
    border-radius: 16px;
  }

  .booking-tool-map {
    padding-inline: 1.15rem;
  }

  .booking-tool-row {
    min-width: 920px;
  }

  .booking-tool-row-grid {
    grid-template-columns: repeat(21, 30px) !important;
    gap: 7px;
  }

  .booking-tool-chair,
  .booking-tool-marker {
    width: 30px;
    min-width: 30px;
    height: 36px;
  }

  .booking-tool-price-pill-row,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .wide-story {
    padding: 1.2rem;
  }

  .wide-story :is(img, video) {
    min-height: 260px;
  }

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

  .gallery-card,
  .gallery-card-large {
    min-height: 300px;
  }

  .gallery-card h3 {
    font-size: 2.2rem;
  }

  .reviews h2 {
    max-width: 330px;
  }

  .reviews {
    padding-top: 4rem;
  }

  .contact-band {
    padding: 1.4rem;
  }

  .contact-band h2 {
    font-size: 2.55rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 16px);
  }

  .hero {
    padding-inline: 10px;
  }

  h1 {
    max-width: 310px;
    font-size: 3.42rem;
  }

  h2 {
    max-width: 310px;
    font-size: 2.42rem;
  }

  .booking-topbar {
    gap: 0.55rem;
  }

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

  .booking-tool-progress-step {
    min-height: 42px;
  }

  .booking-flow {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding-inline: 0.95rem;
  }

  .section,
  .feature-band,
  .booking-section,
  .wide-story,
  .reviews,
  .contact-band,
  .site-footer {
    width: calc(100% - 20px);
  }

  .booking-tool-shell {
    border-radius: 22px;
  }

  .booking-topbar,
  .booking-tool-panel {
    padding-inline: 0.8rem;
  }

  .booking-selection-dock {
    gap: 0.75rem;
  }
}

/* Radical resort reset: bewusst andere Formsprache als die alte runde Strand28-Version. */
:root {
  --ink: #102f42;
  --ink-soft: #526a78;
  --blue: #0d526f;
  --blue-dark: #092c3d;
  --aqua: #d7eef2;
  --aqua-strong: #6fb7c5;
  --sand: #eee4d4;
  --sand-light: #f6f0e6;
  --white: #fffaf0;
  --coral: #e7604d;
  --coral-dark: #b83d31;
  --green: #2baf75;
  --blocked: #d8dde0;
  --line: rgba(9, 44, 61, 0.18);
  --shadow: 0 28px 70px rgba(9, 44, 61, 0.1);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Nunito Sans", "Segoe UI", sans-serif;
  --script: "Pacifico", cursive;
}

body {
  background:
    linear-gradient(90deg, rgba(10, 82, 111, 0.06) 0 1px, transparent 1px),
    linear-gradient(180deg, #f3eee5 0%, #fbf7ef 54%, #f1e7d6 100%);
  background-size: 72px 100%, auto;
  color: var(--ink);
  font-family: var(--body);
}

body::before {
  display: none;
}

.site-header {
  width: 100%;
  max-width: none;
  min-height: 86px;
  margin: 0;
  padding: 0 7vw;
  border: 0;
  border-bottom: 1px solid rgba(9, 44, 61, 0.1);
  border-radius: 0;
  background: rgba(246, 240, 230, 0.94);
  box-shadow: none;
}

.brand img {
  width: 126px;
}

.main-nav {
  justify-content: flex-end;
  gap: 1.2rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.2rem 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: square;
  stroke-linejoin: miter;
  opacity: 0.72;
}

.main-nav a::after {
  left: 0;
  right: 0;
  bottom: -0.48rem;
  height: 3px;
  background: var(--coral);
}

.header-cta,
.button {
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-cta,
.button-coral {
  background: var(--coral);
  box-shadow: 8px 8px 0 rgba(9, 44, 61, 0.14);
}

.button-dark {
  background: var(--blue-dark);
  box-shadow: 8px 8px 0 rgba(9, 44, 61, 0.16);
}

.button-light {
  background: transparent;
  border: 2px solid var(--blue-dark);
  border-radius: 2px;
}

.hero {
  min-height: 900px;
  padding: 140px 7vw 0;
  background: #d7eef2;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(246, 240, 230, 0.97) 0%, rgba(246, 240, 230, 0.88) 31%, rgba(246, 240, 230, 0.22) 56%, rgba(246, 240, 230, 0) 100%),
    linear-gradient(180deg, rgba(9, 44, 61, 0) 58%, rgba(246, 240, 230, 0.96) 100%);
}

.hero-media img {
  object-position: right center;
}

.hero-content {
  padding: 6rem 0 13rem;
}

.kicker {
  color: var(--coral-dark);
  font-family: var(--body);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.86;
}

h1 {
  max-width: 720px;
  font-size: clamp(4.6rem, 7.7vw, 8.2rem);
}

h2 {
  font-size: clamp(3.1rem, 5.2vw, 5.9rem);
}

h3 {
  font-size: clamp(2.15rem, 3vw, 3.25rem);
}

.accent-script {
  display: inline-block;
  color: var(--coral-dark);
  font-family: var(--script);
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: none;
  transform: rotate(-2deg) translateY(-0.04em);
}

h2 .accent-script {
  font-size: 0.72em;
}

.hero-content p:not(.kicker) {
  max-width: 440px;
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-search {
  width: min(1040px, 100%);
  margin-bottom: -58px;
  padding: 0;
  border: 1px solid rgba(9, 44, 61, 0.16);
  border-radius: 0;
  background: #fffaf0;
  box-shadow: 16px 16px 0 rgba(9, 44, 61, 0.08);
}

.hero-search label {
  min-height: 86px;
  padding: 1rem 1.6rem;
}

.hero-search button {
  min-height: 86px;
  border-radius: 0;
  background: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-trust {
  justify-content: flex-start;
  padding: 1rem 1.6rem;
  border-top: 1px solid var(--line);
}

.section,
.feature-band,
.booking-section,
.wide-story,
.reviews,
.contact-band,
.site-footer {
  width: min(1280px, calc(100% - 64px));
}

.intro {
  grid-template-columns: 0.9fr 0.7fr;
  padding-top: 10rem;
  border-bottom: 1px solid rgba(9, 44, 61, 0.14);
}

.intro-text {
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-band {
  gap: 0;
  border: 1px solid rgba(9, 44, 61, 0.14);
  background: #fffaf0;
}

.feature-band article {
  min-height: 250px;
  border: 0;
  border-right: 1px solid rgba(9, 44, 61, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.1rem;
  border: 2px solid var(--blue-dark);
  color: var(--blue-dark);
  background: rgba(215, 238, 242, 0.42);
}

.feature-icon svg,
.service-icons svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.feature-band article:last-child {
  border-right: 0;
}

.feature-band h3 {
  font-size: 3.6rem;
}

.icon-line {
  width: 92px;
  height: 4px;
  border-radius: 0;
  background: var(--coral);
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto 5rem;
  border: 1px solid rgba(9, 44, 61, 0.14);
  border-top: 0;
  background: #fffaf0;
}

.service-icons article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 132px;
  padding: 1.4rem;
  border-right: 1px solid rgba(9, 44, 61, 0.14);
}

.service-icons article:last-child {
  border-right: 0;
}

.service-icons svg {
  width: 46px;
  height: 46px;
  color: var(--coral-dark);
}

.service-icons strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-icons span {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.offer-grid {
  gap: 0;
  border: 1px solid rgba(9, 44, 61, 0.14);
}

.offer-card {
  border-right: 1px solid rgba(9, 44, 61, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.offer-card:last-child {
  border-right: 0;
}

.offer-card img {
  height: 320px;
  filter: saturate(0.9) contrast(1.03);
}

.offer-card h3 {
  font-size: 3.5rem;
}

.booking-section {
  width: 100%;
  padding: 9rem max(32px, calc((100vw - 1280px) / 2)) 5rem;
  background: linear-gradient(180deg, transparent 0, rgba(215, 238, 242, 0.72) 22%, rgba(215, 238, 242, 0.72) 100%);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.booking-intro {
  max-width: 980px;
}

.booking-tool-shell {
  position: relative;
  border: 1px solid rgba(9, 44, 61, 0.18);
  border-radius: 0;
  background: #fffaf0;
  box-shadow: 18px 18px 0 rgba(9, 44, 61, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.booking-focus-hint {
  position: absolute;
  top: -58px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  color: #fffaf0;
  background: var(--blue-dark);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.booking-focus-hint span {
  color: var(--aqua-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-focus-hint strong {
  font-family: var(--script);
  font-size: 1.35rem;
  font-weight: 400;
}

.booking-focus-close {
  margin-left: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 250, 240, 0.4);
  color: #fffaf0;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
}

body.booking-focus-mode {
  overflow: hidden;
}

body.booking-focus-mode::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 15;
  background:
    radial-gradient(circle at 72% 18%, rgba(215, 238, 242, 0.52), transparent 26rem),
    rgba(9, 44, 61, 0.72);
  backdrop-filter: blur(4px);
}

body.booking-focus-mode .booking-section {
  position: fixed;
  inset: 24px 28px 28px;
  z-index: 20;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 2.8rem;
  overflow: auto;
  background:
    linear-gradient(90deg, rgba(10, 82, 111, 0.06) 0 1px, transparent 1px),
    linear-gradient(180deg, #f6f0e6, #d7eef2);
  background-size: 72px 100%, auto;
  animation: bookingFullscreenIn 0.36s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.booking-focus-mode .site-header {
  z-index: 10;
  opacity: 0.18;
  filter: grayscale(0.8) blur(1px);
}

body.booking-focus-mode .booking-tool-shell {
  transform: none;
  overflow: visible;
  box-shadow: 24px 24px 0 rgba(9, 44, 61, 0.14);
}

body.booking-focus-mode .booking-focus-hint {
  z-index: 45;
  opacity: 1;
  transform: translateY(0);
}

@keyframes bookingFullscreenIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-topbar {
  border-bottom: 1px solid rgba(9, 44, 61, 0.16);
  background: #f0e5d4;
}

.booking-tool-progress-step,
.live-pill,
.booking-flow-step span,
.booking-tool-progress-step span {
  border-radius: 0;
}

.booking-tool-progress-step {
  background: transparent;
  border: 1px solid rgba(9, 44, 61, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.booking-tool-progress-step.is-active {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.booking-map-shell {
  position: relative;
  border-radius: 0;
  background: linear-gradient(180deg, #d7eef2 0 126px, #fffaf0 126px);
  overflow: hidden;
}

.booking-map-shell::before {
  content: "";
  position: absolute;
  top: 110px;
  left: -12%;
  width: 124%;
  height: 22px;
  background:
    radial-gradient(18px 14px at 18px 0, transparent 17px, #fffaf0 18px) 0 0 / 36px 22px repeat-x;
  opacity: 0.9;
  animation: beachWave 5.8s linear infinite;
  pointer-events: none;
}

@keyframes beachWave {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(36px);
  }
}

.booking-tool-status-card,
.booking-tool-setup-card {
  border-radius: 0;
}

.booking-tool-chair,
.booking-tool-marker {
  border-radius: 3px;
}

.booking-tool-chair {
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.booking-tool-chair:not(:disabled):hover {
  transform: translateY(-4px) scale(1.06);
  filter: brightness(1.05);
}

.booking-tool-chair.is-selected {
  animation: chairPop 0.24s ease;
}

@keyframes chairPop {
  0% {
    transform: scale(0.82);
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

.booking-selection-dock {
  grid-template-columns: 0.7fr 1fr 0.78fr;
}

.booking-price-overview,
.booking-tool-live-costs,
.next-card,
.checkout-fields,
.checkout-summary,
.field input,
.field textarea,
.field select,
.payment-option,
.booking-tool-price-pill,
.booking-tool-live-cost-item,
.booking-loading,
.booking-tool-message,
.payment-stage,
.success-card {
  border-radius: 0;
}

.booking-tool-panel.is-active {
  animation: panelIn 0.28s ease both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-tool-shell.is-submitting::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 30;
  background: rgba(9, 44, 61, 0.5);
  backdrop-filter: blur(5px);
}

.booking-tool-shell.is-submitting::after {
  content: "Einen Moment, dein Strandkorb wird gesichert ...";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 31;
  width: min(420px, calc(100% - 36px));
  padding: 2.2rem 1.6rem;
  color: var(--blue-dark);
  background: #fffaf0;
  box-shadow: 12px 12px 0 rgba(231, 96, 77, 0.34);
  font-family: var(--script);
  font-size: 1.75rem;
  text-align: center;
  transform: translate(-50%, -50%);
}

.wide-story {
  width: 100%;
  max-width: none;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 7rem max(32px, calc((100vw - 1280px) / 2));
  border-radius: 0;
  background: var(--blue-dark);
}

.wide-story :is(img, video) {
  border-radius: 0;
  box-shadow: 18px 18px 0 rgba(255, 250, 240, 0.12);
}

.gallery-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(9, 44, 61, 0.14);
}

.gallery-card,
.gallery-card-large {
  min-height: 430px;
  border-radius: 0;
  box-shadow: none;
}

.gallery-card-large {
  grid-row: auto;
}

.gallery-card:not(:last-child) {
  border-right: 1px solid rgba(255, 250, 240, 0.42);
}

.gallery-card span {
  border-radius: 0;
}

.reviews {
  grid-template-columns: 0.95fr repeat(3, 1fr);
  gap: 1px;
  padding: 6rem max(32px, calc((100vw - 1280px) / 2));
  width: 100%;
  max-width: none;
  background: var(--blue-dark);
  border: 0;
}

.reviews article {
  position: relative;
  min-height: 270px;
  padding: 2rem;
  border: 0;
  border-radius: 0;
  background: #fffaf0;
  box-shadow: none;
}

.review-intro {
  padding: 2rem;
  color: #fffaf0;
}

.review-intro h2,
.review-intro .kicker {
  color: #fffaf0;
}

.reviews article::before {
  content: "\201E";
  position: absolute;
  right: 1.4rem;
  top: 0.4rem;
  color: rgba(231, 96, 77, 0.34);
  font-family: var(--script);
  font-size: 5rem;
  line-height: 1;
}

.reviews article strong {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-band {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding: 6rem max(32px, calc((100vw - 1280px) / 2));
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(90deg, rgba(246, 240, 230, 0.96), rgba(246, 240, 230, 0.78) 46%, rgba(246, 240, 230, 0.18)),
    url("../img/strand28-hero-boardwalk.jpeg") center / cover;
}

.contact-band::after {
  content: "28";
  position: absolute;
  right: max(28px, calc((100vw - 1280px) / 2));
  bottom: -3.2rem;
  color: rgba(9, 44, 61, 0.08);
  font-family: var(--display);
  font-size: 16rem;
  font-weight: 800;
  line-height: 1;
}

.contact-band > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  width: 100%;
  max-width: none;
  padding: 4rem max(32px, calc((100vw - 1280px) / 2));
  background: var(--blue-dark);
  color: #fffaf0;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 250, 240, 0.74);
}

@media (max-width: 1100px) {
  .site-header {
    width: 100%;
    grid-template-columns: auto 1fr auto;
    padding-inline: 24px;
  }

  .main-nav {
    border-radius: 0;
  }

  .feature-band,
  .offer-grid,
  .reviews {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-band article,
  .offer-card,
  .gallery-card:not(:last-child),
  .reviews article {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(9, 44, 61, 0.14);
  }

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

@media (max-width: 760px) {
  .site-header {
    width: 100%;
    padding-inline: 12px;
  }

  .hero {
    min-height: 780px;
    padding: 96px 18px 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(246, 240, 230, 0.96) 0%, rgba(246, 240, 230, 0.82) 46%, rgba(246, 240, 230, 0.24) 100%),
      linear-gradient(180deg, rgba(9, 44, 61, 0) 58%, rgba(246, 240, 230, 0.96) 100%);
  }

  h1 {
    max-width: 350px;
    font-size: clamp(4rem, 16vw, 5.2rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(3rem, 11vw, 3.9rem);
  }

  .intro,
  .booking-intro,
  .wide-story,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 1.5rem;
    padding-top: 7rem;
  }

  .intro-text,
  .feature-band p,
  .offer-card p {
    font-size: 0.96rem;
  }

  .hero-search {
    box-shadow: 8px 8px 0 rgba(9, 44, 61, 0.08);
  }

  .section,
  .feature-band,
  .wide-story,
  .reviews,
  .site-footer {
    width: calc(100% - 24px);
  }

  .booking-section,
  .wide-story,
  .contact-band,
  .site-footer {
    padding-inline: 12px;
  }

  .offer-card h3,
  .feature-band h3 {
    font-size: 2.7rem;
  }

  .booking-selection-dock,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .booking-tool-shell {
    box-shadow: 8px 8px 0 rgba(9, 44, 61, 0.08);
  }
}

@media (max-width: 1100px) {
  .service-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-icons article:nth-child(2n) {
    border-right: 0;
  }

  .service-icons article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(9, 44, 61, 0.14);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 58px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 86px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 2px solid var(--blue-dark);
    border-radius: 0;
    background: transparent;
  }

  .menu-toggle span {
    background: var(--blue-dark);
  }

  .site-header .header-cta {
    display: none;
  }

  .hero {
    min-height: 730px;
    padding: 84px 18px 0;
  }

  .hero-content {
    padding: 2.8rem 0 8.4rem;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(2.9rem, 12vw, 3.75rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(2.2rem, 8.8vw, 2.85rem);
  }

  .accent-script {
    font-size: 0.82em;
  }

  .hero-content p:not(.kicker) {
    max-width: 330px;
    font-size: 0.95rem;
  }

  .hero-search {
    margin-bottom: -34px;
  }

  .hero-search label,
  .hero-search button {
    min-height: 66px;
  }

  .hero-trust {
    display: none;
  }

  .service-icons {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-bottom: 3.8rem;
  }

  .service-icons article,
  .service-icons article:nth-child(2n),
  .service-icons article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(9, 44, 61, 0.14);
  }

  .service-icons article:last-child {
    border-bottom: 0;
  }

  .service-icons strong {
    font-size: 1.35rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .booking-section {
    padding-top: 5.5rem;
  }

  body.booking-focus-mode .site-header,
  body.booking-focus-mode main > section:not(.booking-section),
  body.booking-focus-mode .site-footer {
    opacity: 0.12;
    filter: grayscale(0.85) blur(1.8px);
  }

  body.booking-focus-mode .booking-tool-shell {
    transform: none;
    box-shadow: 10px 10px 0 rgba(9, 44, 61, 0.16);
  }

  .booking-focus-hint {
    position: static;
    display: grid;
    padding: 0.9rem;
    opacity: 1;
    transform: none;
    background: var(--blue-dark);
  }

  body:not(.booking-focus-mode) .booking-focus-hint {
    display: none;
  }

  .booking-focus-hint strong {
    font-size: 1.15rem;
  }

  .booking-intro p:last-child {
    font-size: 0.95rem;
  }

  .booking-tool-map {
    padding: 0.9rem;
  }

  .booking-tool-row {
    min-width: 790px;
  }

  .booking-tool-row-grid {
    grid-template-columns: repeat(21, 25px) !important;
    gap: 6px;
  }

  .booking-tool-chair,
  .booking-tool-marker {
    width: 25px;
    min-width: 25px;
    height: 32px;
  }

  .booking-tool-chair-number {
    font-size: 0.66rem;
  }

  .booking-tool-chair-model {
    font-size: 0.4rem;
  }

  .booking-tool-shell.is-submitting::after {
    font-size: 1.3rem;
  }
}

@media (max-width: 760px) {
  body.booking-focus-mode .booking-section {
    inset: 0;
    padding: 1rem;
  }

  body.booking-focus-mode .booking-tool-shell {
    min-height: calc(100vh - 2rem);
    box-shadow: none;
  }

  body.booking-focus-mode .booking-focus-hint {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  body.booking-focus-mode .site-header,
  body.booking-focus-mode main > section:not(.booking-section),
  body.booking-focus-mode .site-footer {
    opacity: 1;
    filter: none;
  }
}

/* Guided booking: weniger gleichzeitig, mehr Urlaubsgefuehl. */
.booking-start-experience,
.booking-guide-loading {
  display: none;
}

.booking-tool-shell.is-guide-start .booking-start-experience {
  display: grid;
}

.booking-tool-shell.is-guide-start .booking-topbar,
.booking-tool-shell.is-guide-start .booking-flow,
.booking-tool-shell.is-guide-start .booking-tool-panel,
.booking-tool-shell.is-guide-loading .booking-topbar,
.booking-tool-shell.is-guide-loading .booking-flow,
.booking-tool-shell.is-guide-loading .booking-tool-panel {
  display: none !important;
}

.booking-tool-shell.is-guide-loading .booking-guide-loading {
  display: grid;
}

.booking-tool-shell.is-guide-date .booking-map-shell,
.booking-tool-shell.is-guide-date .booking-selection-dock {
  display: none;
}

.booking-tool-shell.is-guide-date .booking-tool-panel[data-stage="1"] {
  display: grid;
  min-height: 420px;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(10, 82, 111, 0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 88% 12%, rgba(231, 96, 77, 0.11), transparent 18rem),
    #fffaf0;
  background-size: 70px 100%, auto, auto;
}

.booking-tool-shell.is-guide-date .date-strip {
  width: min(760px, 100%);
  grid-template-columns: 1fr auto;
  padding: 2rem;
  border: 1px solid rgba(9, 44, 61, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.8)),
    url("../img/strand28-palm-close.jpeg") right center / auto 100% no-repeat;
  box-shadow: 12px 12px 0 rgba(9, 44, 61, 0.09);
}

.booking-tool-shell.is-guide-date .date-strip::before {
  content: "Wann geht es an den Strand?";
  grid-column: 1 / -1;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.booking-tool-shell.is-guide-date .date-strip .field {
  min-width: min(420px, 100%);
}

.booking-tool-shell.is-guide-date .date-strip .field input {
  min-height: 70px;
  font-size: 1.25rem;
}

.booking-tool-shell.is-guide-date .date-strip .button {
  min-height: 70px;
}

.booking-tool-shell.is-guide-date .date-strip #endDateField {
  grid-column: 1 / 2;
}

.booking-tool-shell.is-guide-map .date-strip {
  display: none;
}

.booking-tool-shell.is-guide-map .booking-map-shell {
  animation: mapReveal 0.42s ease both;
}

.booking-tool-shell.is-guide-map .booking-selection-dock {
  animation: dockReveal 0.5s ease 0.08s both;
}

.booking-tool-shell.is-guide-checkout .booking-tool-panel[data-stage="1"] {
  display: none !important;
}

.booking-start-experience {
  position: relative;
  min-height: 560px;
  grid-template-columns: 1fr;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 44, 61, 0.04) 0 1px, transparent 1px),
    #fffaf0;
  background-size: 72px 100%, auto;
}

.booking-start-map {
  position: absolute;
  inset: 0;
  min-height: 560px;
  padding: 3rem;
  background:
    linear-gradient(180deg, rgba(215, 238, 242, 0.9), rgba(255, 250, 240, 0.92)),
    url("../img/strand28-wide-beach.jpeg") center / cover;
  isolation: isolate;
}

.booking-start-map::before {
  content: "";
  position: absolute;
  inset: 2.2rem;
  z-index: -1;
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(9, 44, 61, 0.12);
  filter: blur(2.5px);
}

.booking-start-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.18), rgba(255, 250, 240, 0.7)),
    radial-gradient(circle at 74% 50%, rgba(255, 250, 240, 0.8), transparent 17rem),
    radial-gradient(circle at 18% 18%, rgba(255, 250, 240, 0.5), transparent 13rem);
  backdrop-filter: blur(3.5px);
}

.booking-start-water {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 3rem;
  z-index: 2;
  height: 62px;
  background:
    radial-gradient(24px 16px at 24px 0, transparent 23px, rgba(215, 238, 242, 0.85) 24px) 0 0 / 48px 34px repeat-x,
    linear-gradient(180deg, rgba(111, 183, 197, 0.65), rgba(111, 183, 197, 0.18));
  animation: guideWave 6s linear infinite;
}

.booking-start-plan {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 42px);
  gap: 12px;
  width: max-content;
  margin: 4.8rem 0 0 6rem;
  opacity: 0.78;
  filter: blur(2.5px);
  transform: rotate(-2deg);
}

.booking-start-plan span {
  width: 42px;
  height: 42px;
  background: #132f3f;
  box-shadow: 7px 7px 0 rgba(9, 44, 61, 0.08);
}

.booking-start-plan span:nth-child(3n) {
  background: #2ead73;
}

.booking-start-plan span:nth-child(5n) {
  background: #e0a13a;
}

.booking-start-copy {
  position: relative;
  z-index: 6;
  display: grid;
  align-content: center;
  gap: 1.2rem;
  width: min(470px, calc(100% - 4rem));
  min-height: 560px;
  margin-left: auto;
  padding: 4rem 3rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.98));
  box-shadow: -16px 0 0 rgba(255, 250, 240, 0.34);
}

.booking-start-copy::before {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -3rem;
  z-index: -1;
  width: 340px;
  height: 280px;
  opacity: 0.28;
  background:
    url("../img/strand28-palm-chairs.jpeg") right bottom / 78% auto no-repeat;
}

.booking-start-copy h3 {
  max-width: 440px;
}

.booking-start-copy p:not(.kicker) {
  max-width: 390px;
  color: var(--ink-soft);
  font-weight: 800;
}

.booking-start-copy .button {
  width: 100%;
  min-height: 64px;
}

.booking-guide-loading {
  min-height: 560px;
  place-items: center;
  gap: 1.6rem;
  text-align: center;
  background:
    radial-gradient(circle at center 36%, rgba(255, 223, 126, 0.42), transparent 9rem),
    linear-gradient(180deg, #d7eef2 0%, #fffaf0 58%, #f0e5d4 100%);
  overflow: hidden;
}

.booking-guide-loading strong {
  max-width: 420px;
  color: var(--blue-dark);
  font-family: var(--script);
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-weight: 400;
}

.loading-sun {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #ffd76d;
  box-shadow:
    0 0 0 14px rgba(255, 215, 109, 0.24),
    0 0 0 30px rgba(255, 215, 109, 0.12);
  animation: sunBreathe 1.25s ease-in-out infinite alternate;
}

.loading-wave {
  width: min(420px, 80vw);
  height: 36px;
  background: radial-gradient(26px 18px at 26px 0, transparent 25px, var(--aqua-strong) 26px) 0 0 / 52px 36px repeat-x;
  animation: guideWave 2.1s linear infinite;
}

@keyframes sunBreathe {
  to {
    transform: scale(1.08) rotate(8deg);
  }
}

@keyframes guideWave {
  to {
    background-position-x: 52px;
  }
}

@keyframes mapReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes dockReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@media (max-width: 900px) {
  .booking-start-experience {
    min-height: 520px;
  }

  .booking-start-map {
    min-height: 520px;
  }

  .booking-start-copy {
    width: min(440px, calc(100% - 2rem));
    min-height: 520px;
    margin: 0 auto;
    padding: 2rem;
  }
}

@media (max-width: 760px) {
  .booking-tool-shell.is-guide-date .date-strip {
    grid-template-columns: 1fr;
    padding: 1.15rem;
    background:
      linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.86)),
      url("../img/strand28-palm-close.jpeg") right bottom / 70% auto no-repeat;
  }

  .booking-tool-shell.is-guide-date .date-strip::before {
    font-size: 2.15rem;
  }

  .booking-start-map {
    min-height: 480px;
    padding: 1.2rem;
  }

  .booking-start-experience {
    min-height: 480px;
  }

  .booking-start-plan {
    grid-template-columns: repeat(6, 28px);
    gap: 8px;
    margin-top: 2.6rem;
  }

  .booking-start-plan span {
    width: 28px;
    height: 28px;
  }

  .booking-start-water {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
  }

  .booking-start-copy {
    padding: 1.2rem;
    min-height: 480px;
    width: calc(100% - 1.2rem);
  }

  .booking-start-copy .button {
    width: 100%;
  }

  .booking-guide-loading {
    min-height: 430px;
  }
}

/* Guided booking refresh: ein Screen, eine Entscheidung. */
.booking-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.booking-intro {
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: 1rem;
}

.booking-intro h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 0.94;
}

.booking-intro p:last-child {
  max-width: 430px;
  color: rgba(11, 52, 80, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 600;
}

.booking-tool-shell {
  max-width: 1120px;
  margin: clamp(0.9rem, 2vw, 1.4rem) auto 0;
  border-radius: 18px;
  background: #fffdf8;
}

.booking-topbar {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(10, 75, 115, 0.1);
}

.booking-tool-progress {
  gap: 0.4rem;
}

.booking-tool-progress-step {
  min-height: 46px;
  border-radius: 0;
  box-shadow: none;
}

.booking-tool-progress-step.is-active {
  background: var(--blue-dark);
}

.booking-flow {
  width: min(720px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-flow::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 50%;
  height: 2px;
  background: rgba(10, 75, 115, 0.13);
  transform: translateY(-50%);
}

.booking-flow-step {
  position: relative;
  z-index: 1;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  background: #fffdf8;
}

.booking-flow-step strong {
  font-size: 0.95rem;
}

.booking-flow-step span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(10, 75, 115, 0.16);
  background: #fff;
}

.booking-flow-step.is-active span,
.booking-flow-step.is-complete span {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.booking-tool-shell.is-guide-map .booking-flow-step[data-flow-step="date"] span,
.booking-tool-shell.is-guide-map .booking-flow-step[data-flow-step="chairs"] span,
.booking-tool-shell.is-guide-checkout .booking-flow-step[data-flow-step="date"] span,
.booking-tool-shell.is-guide-checkout .booking-flow-step[data-flow-step="chairs"] span,
.booking-tool-shell.is-guide-checkout .booking-flow-step[data-flow-step="checkout"] span {
  border-color: var(--blue-dark);
  color: #fff;
  background: var(--blue-dark);
}

.booking-tool-shell.is-guide-map .booking-flow-step[data-flow-step="chairs"] strong,
.booking-tool-shell.is-guide-checkout .booking-flow-step[data-flow-step="checkout"] strong {
  color: var(--blue-dark);
}

.booking-tool-shell.is-guide-map .booking-flow-step[data-flow-step="date"],
.booking-tool-shell.is-guide-checkout .booking-flow-step[data-flow-step="date"],
.booking-tool-shell.is-guide-checkout .booking-flow-step[data-flow-step="chairs"] {
  opacity: 0.72;
}

.booking-start-experience {
  min-height: min(390px, calc(100vh - 170px));
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 18px 18px 0 rgba(10, 75, 115, 0.09);
}

.booking-start-map {
  min-height: min(390px, calc(100vh - 170px));
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.35), rgba(255, 253, 248, 0.8) 60%, rgba(255, 253, 248, 0.94)),
    url("../img/strand28-beach-dunes.jpeg") center / cover;
}

.booking-start-map::before {
  inset: 2rem;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(221, 244, 248, 0.78), rgba(255, 253, 248, 0.9)),
    repeating-linear-gradient(90deg, rgba(10, 75, 115, 0.08) 0 1px, transparent 1px 62px);
  filter: blur(3px);
}

.booking-start-map::after {
  backdrop-filter: blur(4px);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 214, 116, 0.28), transparent 13rem),
    linear-gradient(90deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.78) 68%, rgba(255, 253, 248, 0.96));
}

.booking-start-plan {
  grid-template-columns: repeat(9, 34px);
  gap: 10px;
  margin: 4rem 0 0 4.2rem;
  opacity: 0.62;
  filter: blur(3px);
}

.booking-start-plan span {
  width: 34px;
  height: 34px;
  border-radius: 4px;
}

.booking-start-copy {
  align-self: center;
  width: min(430px, calc(100% - 3rem));
  min-height: auto;
  margin-right: clamp(1.4rem, 4vw, 4rem);
  padding: clamp(1.2rem, 2.6vw, 2rem);
  border: 1px solid rgba(10, 75, 115, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow:
    0 24px 70px rgba(7, 49, 77, 0.16),
    10px 10px 0 rgba(10, 75, 115, 0.08);
}

.booking-start-copy::before {
  right: -3rem;
  bottom: -2rem;
  width: 220px;
  height: 210px;
  opacity: 0.2;
}

.booking-start-copy h3 {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  line-height: 0.95;
}

.booking-start-copy p:not(.kicker) {
  max-width: 340px;
  font-size: 1rem;
  font-weight: 600;
}

.booking-start-copy .button {
  min-height: 54px;
  border-radius: 0;
}

.booking-guide-loading {
  min-height: 460px;
  border-radius: 18px;
}

.booking-tool-shell.is-guide-date .booking-topbar,
.booking-tool-shell.is-guide-date .booking-flow,
.booking-tool-shell.is-guide-map .booking-topbar,
.booking-tool-shell.is-guide-map .booking-flow,
.booking-tool-shell.is-guide-checkout .booking-topbar,
.booking-tool-shell.is-guide-checkout .booking-flow {
  display: flex;
}

body.booking-guide-active .booking-intro {
  display: none;
}

.booking-tool-shell.is-guide-date .booking-topbar,
.booking-tool-shell.is-guide-map .booking-topbar,
.booking-tool-shell.is-guide-checkout .booking-topbar {
  display: none !important;
}

body.booking-guide-active .booking-tool-shell {
  margin-top: 0;
}

.booking-tool-shell.is-guide-date .booking-tool-panel[data-stage="1"] {
  min-height: 410px;
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0 54%, rgba(255, 253, 248, 0.58)),
    url("../img/strand28-palm-close.jpeg") right center / auto 115% no-repeat;
}

.booking-tool-shell.is-guide-date .date-strip {
  width: min(700px, 100%);
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow:
    0 22px 60px rgba(7, 49, 77, 0.13),
    10px 10px 0 rgba(10, 75, 115, 0.07);
}

.booking-tool-shell.is-guide-date .date-strip::before {
  content: "Wann darf's ans Meer gehen?";
  max-width: 540px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

.booking-tool-shell.is-guide-date .date-strip .field input,
.booking-tool-shell.is-guide-date .date-strip .button {
  min-height: 62px;
  border-radius: 0;
}

.booking-tool-shell.is-guide-date .date-strip .button {
  padding-inline: 1.7rem;
  background: var(--coral);
}

.booking-tool-shell.is-guide-date .date-strip .check-field {
  padding: 0.8rem 0;
  border: 0;
  background: transparent;
}

.booking-tool-shell.is-guide-map .booking-tool-panel[data-stage="1"] {
  padding: clamp(0.9rem, 2vw, 1.4rem);
}

.booking-tool-shell.is-guide-map .booking-map-shell {
  border-radius: 14px;
  box-shadow: none;
}

.booking-tool-shell.is-guide-map .map-heading {
  min-height: 112px;
  padding: 1.2rem 1.4rem;
}

.booking-tool-shell.is-guide-map .map-heading h3 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.booking-tool-shell.is-guide-map .booking-tool-status {
  margin: 0.8rem 1.4rem 0;
}

.booking-tool-shell.is-guide-map .booking-tool-map {
  padding: clamp(1rem, 2vw, 1.4rem);
}

.booking-tool-shell.is-guide-map .booking-selection-dock {
  position: sticky;
  bottom: 16px;
  z-index: 8;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.65fr);
  align-items: stretch;
  width: calc(100% - 2rem);
  margin: 1rem auto 0;
  padding: 0.7rem;
  border: 1px solid rgba(10, 75, 115, 0.14);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
  box-shadow:
    0 18px 54px rgba(7, 49, 77, 0.13),
    8px 8px 0 rgba(10, 75, 115, 0.07);
}

.booking-tool-shell.is-guide-map #bookingPriceOverview {
  display: none;
}

.booking-tool-shell.is-guide-map .booking-tool-live-costs {
  min-height: 0;
  padding: 1rem;
  border-radius: 8px;
}

.booking-tool-shell.is-guide-map .booking-tool-live-costs h4 {
  font-size: 1.25rem;
}

.booking-tool-shell.is-guide-map .booking-tool-live-costs-note {
  display: none;
}

.booking-tool-shell.is-guide-map .next-card {
  min-height: 0;
  padding: 1rem;
  border: 1px solid rgba(10, 75, 115, 0.12);
  border-radius: 8px;
  background: #fffdf8;
}

.booking-tool-shell.is-guide-map .next-card p {
  font-size: 0.98rem;
}

.booking-tool-shell.is-guide-map .next-card .button {
  min-height: 54px;
  border-radius: 0;
}

.booking-tool-shell.is-guide-checkout .checkout-panel {
  padding: clamp(1rem, 3vw, 1.8rem);
}

@media (max-width: 900px) {
  .booking-section {
    padding-top: 4.2rem;
  }

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

  .booking-intro h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .booking-start-experience,
  .booking-start-map {
    min-height: 480px;
  }

  .booking-start-copy {
    margin: auto;
  }

  .booking-tool-shell.is-guide-map .booking-selection-dock {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .booking-tool-shell {
    width: calc(100% - 28px);
    border-radius: 14px;
  }

  .booking-flow {
    width: calc(100% - 1rem);
    overflow: hidden;
  }

  .booking-flow-step strong {
    font-size: 0.82rem;
  }

  .booking-flow-step span {
    width: 30px;
    height: 30px;
  }

  .booking-start-experience,
  .booking-start-map {
    min-height: 430px;
  }

  .booking-start-map {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.92)),
      url("../img/strand28-beach-dunes.jpeg") center / cover;
  }

  .booking-start-plan {
    grid-template-columns: repeat(6, 30px);
    margin: 3.3rem 0 0 1.5rem;
  }

  .booking-start-copy {
    width: calc(100% - 1.6rem);
    padding: 1.25rem;
  }

  .booking-start-copy h3 {
    font-size: 2.15rem;
  }

  .booking-tool-shell.is-guide-date .booking-tool-panel[data-stage="1"] {
    min-height: 390px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.95)),
      url("../img/strand28-palm-close.jpeg") right bottom / 92% auto no-repeat;
  }

  .booking-tool-shell.is-guide-date .date-strip {
    padding: 1rem;
  }

  .booking-tool-shell.is-guide-date .date-strip .field {
    min-width: 0;
  }

  .booking-tool-shell.is-guide-date .date-strip .field input,
  .booking-tool-shell.is-guide-date .date-strip .button {
    width: 100%;
  }

  .booking-tool-shell.is-guide-map .map-heading {
    align-items: start;
  }

  .booking-tool-shell.is-guide-map .map-legend {
    justify-content: flex-start;
  }
}

/* Service polish: konkrete Ausstattung statt generischer Vorteilsboxen. */
.accent-dot {
  color: var(--coral-dark);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: start;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto 5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(9, 44, 61, 0.14);
  background:
    radial-gradient(circle at 14% 20%, rgba(239, 118, 92, 0.11), transparent 16rem),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(236, 249, 250, 0.9));
}

.service-panel-copy {
  position: sticky;
  top: 120px;
}

.service-panel-copy h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2.25rem, 4.1vw, 4.4rem);
  line-height: 0.92;
  text-transform: none;
}

.service-panel-copy h2 .accent-script {
  display: inline-block;
  color: var(--coral-dark);
  font-size: 0.95em;
  line-height: 0.9;
  white-space: nowrap;
}

.service-panel-copy h2 .accent-dot {
  display: inline-block;
  margin-left: 0.05em;
  color: var(--coral-dark);
}

.service-panel-copy p:not(.kicker) {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 700;
}

.service-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-icons article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 178px;
  padding: 1.35rem;
  border: 1px solid rgba(9, 44, 61, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.84));
  box-shadow: 9px 9px 0 rgba(10, 75, 115, 0.06);
}

.service-icons article::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  width: 34px;
  height: 3px;
  background: var(--coral);
}

.service-icons svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  color: var(--blue-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icons strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: none;
}

.service-icons span {
  display: block;
  max-width: 270px;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-panel-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .service-panel {
    width: calc(100% - 28px);
    padding: 1.1rem;
  }

  .service-chip-grid {
    grid-template-columns: 1fr;
  }

  .service-icons article {
    min-height: auto;
  }
}

/* Final structure polish. */
.hero {
  min-height: clamp(540px, 64vh, 620px);
  padding-top: clamp(92px, 10vh, 112px);
}

.hero-content {
  padding: clamp(2.2rem, 5vh, 3.1rem) 0 clamp(5.5rem, 9vh, 6.8rem);
}

.hero-content h1 {
  max-width: 600px;
  font-size: clamp(3rem, 5.25vw, 5.35rem);
}

.hero-content p:not(.kicker) {
  max-width: 400px;
  font-size: 1.02rem;
}

.hero-search {
  width: min(960px, 100%);
  margin-bottom: -42px;
}

.hero-search label,
.hero-search button {
  min-height: 72px;
}

body.booking-guide-active .booking-section {
  width: min(1380px, calc(100% - 40px));
}

body.booking-guide-active .booking-tool-shell {
  width: 100%;
  max-width: none;
}

body.booking-guide-active .booking-tool-shell.is-guide-date .booking-tool-panel[data-stage="1"] {
  min-height: min(620px, calc(100vh - 160px));
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-map-shell {
  min-height: min(720px, calc(100vh - 160px));
}

.service-panel {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.service-icons article {
  overflow: hidden;
}

.service-icons article::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--service-color, var(--aqua-strong)) 22%, #fff 78%);
}

.service-icons article::after {
  background: var(--service-color, var(--coral));
}

.service-icons article:nth-child(1) {
  --service-color: #2f9bc8;
}

.service-icons article:nth-child(2) {
  --service-color: #ef765c;
}

.service-icons article:nth-child(3) {
  --service-color: #d6a04b;
}

.service-icons article:nth-child(4) {
  --service-color: #33a9a5;
}

.service-icons article:nth-child(5) {
  --service-color: #67a950;
}

.service-icons article:nth-child(6) {
  --service-color: #0a4b73;
}

.service-icons svg {
  position: relative;
  z-index: 1;
  color: var(--service-color, var(--blue-dark));
  stroke-width: 2.05;
}

@media (max-width: 760px) {
  .hero {
    min-height: 560px;
    padding-top: 82px;
  }

  .hero-content {
    padding: 2.1rem 0 5.8rem;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  body.booking-guide-active .booking-section {
    width: calc(100% - 20px);
  }
}

/* Booking flow detail polish. */
.accent-script,
h1 .accent-script,
h2 .accent-script,
.service-panel-copy h2 .accent-script {
  font-weight: 400 !important;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
}

body.booking-guide-active .booking-section {
  width: min(1560px, calc(100% - 24px));
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-panel[data-stage="1"] {
  padding-inline: clamp(0.8rem, 1.4vw, 1.25rem);
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-map-shell {
  min-height: min(760px, calc(100vh - 140px));
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-map {
  width: 100%;
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-row {
  min-width: 0;
  width: 100%;
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-row-grid {
  grid-template-columns: repeat(21, minmax(35px, 1fr)) !important;
  gap: clamp(5px, 0.48vw, 10px);
  width: 100%;
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-chair,
body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-marker {
  width: 100%;
  min-width: 0;
  height: clamp(38px, 3.25vw, 52px);
  border-radius: clamp(7px, 0.8vw, 12px);
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-chair-number {
  font-size: clamp(0.72rem, 0.9vw, 0.96rem);
}

body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-chair-model {
  font-size: clamp(0.42rem, 0.52vw, 0.58rem);
}

.service-icons article::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%),
    linear-gradient(145deg, color-mix(in srgb, var(--service-color, var(--aqua-strong)) 30%, #fff 70%), #ffffff 74%);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--service-color, var(--aqua-strong)) 25%, transparent 75%),
    0 16px 34px color-mix(in srgb, var(--service-color, var(--aqua-strong)) 20%, transparent 80%);
}

.service-icons svg {
  width: 68px;
  height: 68px;
  padding: 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95) 0 16%, transparent 17%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), color-mix(in srgb, var(--service-color, var(--aqua-strong)) 24%, #fff 76%));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 18px 34px color-mix(in srgb, var(--service-color, var(--aqua-strong)) 16%, transparent 84%);
  color: color-mix(in srgb, var(--service-color, var(--blue-dark)) 88%, #07314b 12%);
  stroke-width: 2.45;
}

.service-icons svg .icon-fill {
  fill: color-mix(in srgb, var(--service-color, var(--aqua-strong)) 42%, #fff 58%);
  stroke: none;
}

.service-icons svg .icon-pop {
  fill: color-mix(in srgb, var(--service-color, var(--aqua-strong)) 82%, #fff 18%);
  stroke: none;
}

.service-icons svg .icon-cream {
  fill: #fff6d8;
  stroke: none;
}

.service-icons svg path,
.service-icons svg circle,
.service-icons svg rect {
  vector-effect: non-scaling-stroke;
}

.service-icons article:nth-child(1) {
  --service-color: #279fd5;
}

.service-icons article:nth-child(2) {
  --service-color: #ff7c5d;
}

.service-icons article:nth-child(3) {
  --service-color: #e5a93a;
}

.service-icons article:nth-child(4) {
  --service-color: #2db6af;
}

.service-icons article:nth-child(5) {
  --service-color: #76b847;
}

.service-icons article:nth-child(6) {
  --service-color: #11648b;
}

@media (max-width: 760px) {
  body.booking-guide-active .booking-section {
    width: calc(100% - 14px);
  }

  body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-row {
    min-width: 850px;
  }

  body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-row-grid {
    grid-template-columns: repeat(21, 34px) !important;
    gap: 7px;
  }

  body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-chair,
  body.booking-guide-active .booking-tool-shell.is-guide-map .booking-tool-marker {
    width: 34px;
    min-width: 34px;
    height: 39px;
  }

  .service-icons svg {
    width: 58px;
    height: 58px;
  }
}

/* Content polish: pricing, generated icons, trust and footer. */
.feature-band.is-merged-away {
  display: none;
}

.offer-combined {
  padding-top: clamp(5rem, 8vw, 7rem);
}

.offer-combined .section-copy {
  margin-bottom: clamp(1.35rem, 2.4vw, 2.3rem);
}

.offer-grid {
  gap: clamp(1rem, 2vw, 1.45rem);
}

.offer-combined .offer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.offer-card {
  background: #fffaf2;
}

.offer-card div {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.7rem);
}

.offer-combined .offer-card div {
  display: grid;
  align-content: start;
  min-height: 310px;
}

.offer-combined .feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 0.75rem;
  border-color: rgba(9, 44, 61, 0.18);
  background: rgba(215, 238, 242, 0.55);
}

.offer-combined .feature-icon + .icon-line {
  width: 74px;
  height: 3px;
  margin-bottom: 1rem;
}

.offer-card .offer-kicker {
  color: #1684a2;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card .price-icon {
  position: absolute;
  right: 1.15rem;
  top: 1.1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fffaf0;
  background: linear-gradient(145deg, var(--coral), #f0a548);
  font-family: var(--body);
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(231, 96, 77, 0.22);
}

.offer-card h3 {
  margin-top: 0.65rem;
}

.offer-combined .offer-card h3 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
  line-height: 0.95;
}

.offer-combined .offer-card p {
  min-height: 4.8em;
  margin: 0 0 1.25rem;
}

.offer-combined .offer-card strong {
  display: block;
  align-self: end;
  margin-top: auto;
  color: var(--blue-dark);
  font-family: var(--font-sans, var(--body));
  font-size: clamp(1.65rem, 2vw, 2.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.offer-combined .offer-card small:not(.price-icon) {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-weight: 750;
}

@media (max-width: 1100px) {
  .offer-combined .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-combined .offer-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .offer-combined .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-combined .offer-card {
    border-right: 0;
  }

  .offer-combined .offer-card div {
    min-height: auto;
  }

  .offer-combined .offer-card p {
    min-height: 0;
  }
}

/* Premium price cards: calmer, more editorial and less boxed-in. */
.offer-combined {
  position: relative;
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.offer-combined::before {
  content: "";
  position: absolute;
  inset: 1.5rem max(-4vw, -60px) auto;
  height: 58%;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 126, 109, 0.1), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(70, 169, 190, 0.12), transparent 30rem);
  z-index: -1;
}

.offer-combined .section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.38fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.4rem, 3vw, 2.6rem);
}

.offer-combined .section-copy::after {
  content: "Alle Preise inkl. MwSt. Wochenpreise gelten fuer 7 Tage.";
  max-width: 340px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
}

.offer-combined .offer-grid {
  gap: clamp(1rem, 1.6vw, 1.55rem);
}

.offer-combined .offer-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(9, 44, 61, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 240, 0.9));
  box-shadow:
    0 26px 56px rgba(9, 44, 61, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.offer-combined .offer-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 126, 109, 0.1), transparent 70%);
  pointer-events: none;
}

.offer-combined .offer-card img {
  height: clamp(210px, 17vw, 300px);
  padding: 12px 12px 0;
  border-radius: 28px 28px 10px 10px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.offer-combined .offer-card div {
  min-height: 360px;
  padding: clamp(1.25rem, 1.8vw, 1.75rem) clamp(1.25rem, 1.7vw, 1.65rem) clamp(1.35rem, 1.9vw, 1.9rem);
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(255, 250, 240, 0.7));
}

.offer-combined .feature-icon {
  width: 64px;
  height: 64px;
  margin: -3.35rem 0 1rem;
  border: 8px solid #fffaf2;
  border-radius: 22px;
  background-color: #fff !important;
  box-shadow:
    0 18px 34px rgba(9, 44, 61, 0.12),
    inset 0 0 0 1px rgba(9, 44, 61, 0.06);
}

[data-ai-icon="three-chair"] {
  --sprite-x: 66.666%;
  --sprite-y: 33.333%;
}

.offer-combined .feature-icon-wide {
  width: 76px;
  background-size: 400% 400% !important;
}

.offer-combined .feature-icon + .icon-line {
  width: 52px;
  height: 3px;
  margin: 0 0 1.05rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f15d4d, rgba(241, 93, 77, 0.16));
}

.offer-combined .offer-card .offer-kicker {
  color: #167995;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.offer-combined .offer-card h3 {
  max-width: 8.5ch;
  margin: 0.45rem 0 0.8rem;
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 1.8vw, 2.35rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.offer-combined .offer-card p {
  min-height: 5.8em;
  margin-bottom: 1.25rem;
  color: #49677a;
  font-size: 1rem;
  line-height: 1.58;
}

.offer-combined .offer-card strong {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  margin-top: auto;
  padding: 0.62rem 0.85rem 0.56rem;
  border: 1px solid rgba(9, 44, 61, 0.12);
  border-radius: 999px;
  color: #082f42;
  background: #fff;
  box-shadow: 0 12px 28px rgba(9, 44, 61, 0.08);
  font-size: clamp(1.25rem, 1.45vw, 1.7rem);
  letter-spacing: -0.04em;
}

.offer-combined .offer-card small:not(.price-icon) {
  max-width: 22ch;
  margin-top: 0.72rem;
  color: #5d7483;
  font-size: 0.88rem;
  line-height: 1.45;
}

.offer-combined .offer-card .price-icon {
  top: calc(clamp(210px, 17vw, 300px) + 1.1rem);
  right: 1.25rem;
  width: 50px;
  height: 50px;
  border: 6px solid #fffaf2;
  border-radius: 18px;
  background-color: #fff !important;
  box-shadow: 0 16px 32px rgba(231, 96, 77, 0.16);
}

@media (max-width: 1100px) {
  .offer-combined .section-copy {
    grid-template-columns: 1fr;
  }

  .offer-combined .section-copy::after {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .offer-combined .offer-card img {
    height: 240px;
  }

  .offer-combined .offer-card div {
    min-height: 0;
  }

  .offer-combined .offer-card p {
    min-height: 0;
  }
}

.service-icons article::before {
  position: static;
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 1rem;
  border-radius: 26px;
  background-image: url("../img/strand28-ai-icons-v2.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  box-shadow: 0 22px 42px rgba(7, 49, 77, 0.12);
}

.service-icons article:nth-child(1)::before {
  background-position: 0% 0%;
}

.service-icons article:nth-child(2)::before {
  background-position: 50% 0%;
}

.service-icons article:nth-child(3)::before {
  background-position: 100% 0%;
}

.service-icons article:nth-child(4)::before {
  background-position: 0% 100%;
}

.service-icons article:nth-child(5)::before {
  background-position: 50% 100%;
}

.service-icons article:nth-child(6)::before {
  background-position: 100% 100%;
}

.service-icons article > svg {
  display: none;
}

.gallery-card p {
  position: absolute;
  z-index: 1;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.15rem;
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 700;
}

.gallery-card h3 {
  bottom: 4.1rem;
}

.gallery-card span {
  bottom: 7.9rem;
}

.trust-section article::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent),
    color-mix(in srgb, var(--coral) 22%, #fffaf0 78%);
}

.trust-section article strong {
  max-width: 260px;
}

.trust-section article span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.trust-section article span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.payment-option {
  margin: 0.75rem 0;
}

.payment-option-stripe b {
  color: #fff;
  background: #635bff;
}

.contact-band {
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr auto;
  background:
    linear-gradient(120deg, rgba(232, 250, 252, 0.92), rgba(255, 250, 240, 0.96)),
    #fff;
}

.contact-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(231, 96, 77, 0.1);
}

.contact-facts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  max-width: 360px;
}

.contact-facts span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(9, 44, 61, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  font-weight: 900;
}

.site-footer {
  grid-template-columns: minmax(260px, 1.2fr) minmax(160px, auto) minmax(180px, auto);
  border-top: 8px solid var(--coral);
}

.site-footer nav strong {
  margin-bottom: 0.45rem;
  color: #fffaf0;
  font-family: var(--display);
  font-size: 1.35rem;
}

@media (max-width: 900px) {
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-facts {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .offer-card .price-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .service-icons article::before {
    width: 82px;
    height: 82px;
  }

  .gallery-card span {
    bottom: 8.4rem;
  }

  .gallery-card h3 {
    bottom: 4.6rem;
  }
}

/* Clickable booking flow navigation. */
.booking-flow-step {
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.booking-flow-step:hover,
.booking-flow-step:focus-visible {
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.booking-flow-step:focus-visible {
  outline: 3px solid rgba(231, 96, 77, 0.42);
  outline-offset: 3px;
}

.booking-flow-step[aria-current="step"] {
  box-shadow: 0 12px 28px rgba(7, 49, 77, 0.08);
}

.booking-flow-step.is-complete strong::after,
.booking-flow-step[data-flow-step="date"]:not(.is-active) strong::after {
  content: " ändern";
  margin-left: 0.25rem;
  color: var(--coral-dark);
  font-size: 0.72em;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .booking-flow-step.is-complete strong::after,
  .booking-flow-step[data-flow-step="date"]:not(.is-active) strong::after {
    content: "";
  }
}

/* Final AI icon overrides: keep generated colorful icon set consistent across the page. */
.ai-icon {
  --sprite-x: 0%;
  --sprite-y: 0%;
  display: inline-block;
  flex: 0 0 auto;
  background-image: url("../img/strand28-ai-icons-v2.png") !important;
  background-position: var(--sprite-x) var(--sprite-y) !important;
  background-repeat: no-repeat !important;
  background-size: 400% 400% !important;
}

[data-ai-icon="home"] { --sprite-x: 0%; --sprite-y: 0%; }
[data-ai-icon="chair"] { --sprite-x: 33.333%; --sprite-y: 0%; }
[data-ai-icon="price"] { --sprite-x: 66.666%; --sprite-y: 0%; }
[data-ai-icon="map"] { --sprite-x: 100%; --sprite-y: 0%; }
[data-ai-icon="service"] { --sprite-x: 0%; --sprite-y: 33.333%; }
[data-ai-icon="contact"] { --sprite-x: 33.333%; --sprite-y: 33.333%; }
[data-ai-icon="two-chair"] { --sprite-x: 66.666%; --sprite-y: 33.333%; }
[data-ai-icon="three-chair"] { --sprite-x: 100%; --sprite-y: 33.333%; }
[data-ai-icon="recliner"] { --sprite-x: 0%; --sprite-y: 66.666%; }
[data-ai-icon="drink"] { --sprite-x: 33.333%; --sprite-y: 66.666%; }
[data-ai-icon="ice"] {
  --sprite-x: 66.666%;
  --sprite-y: 66.666%;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='160' height='160' rx='32' fill='%23FFFDF7'/%3E%3Cellipse cx='80' cy='132' rx='38' ry='10' fill='%23F0DCC4' opacity='.42'/%3E%3Crect x='68' y='98' width='24' height='42' rx='10' fill='%23D59A57'/%3E%3Crect x='73' y='100' width='14' height='39' rx='7' fill='%23E7B777'/%3E%3Cpath d='M50 74c0-26.5 13.7-47 30.5-47S111 47.5 111 74v28.5c0 10.2-8.3 18.5-18.5 18.5h-24C58.3 121 50 112.7 50 102.5V74Z' fill='%23FFCE55'/%3E%3Cpath d='M50 74c0-26.5 13.7-47 30.5-47S111 47.5 111 74v6H50v-6Z' fill='%23FF7769'/%3E%3Cpath d='M50 80h61v23c0 9.9-8.1 18-18 18H68c-9.9 0-18-8.1-18-18V80Z' fill='%23FFD861'/%3E%3Cpath d='M80.5 27C97.3 27 111 47.5 111 74v28.5c0 10.2-8.3 18.5-18.5 18.5H80.5V27Z' fill='%23F4A83B' opacity='.5'/%3E%3Cpath d='M62 48c4.7-8.8 11.1-13.7 18.5-13.7' stroke='%23FFF9E9' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M50 80h61' stroke='%23FFF6DA' stroke-width='5'/%3E%3Cpath d='M50 103.5c0 9.7 7.8 17.5 17.5 17.5h25c9.7 0 17.5-7.8 17.5-17.5V74c0-26.5-13.4-47-30-47S50 47.5 50 74v29.5Z' stroke='%230D3147' stroke-width='6' stroke-linejoin='round'/%3E%3Crect x='68' y='98' width='24' height='42' rx='10' stroke='%230D3147' stroke-width='6'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-size: contain !important;
}
[data-ai-icon="change"] { --sprite-x: 100%; --sprite-y: 66.666%; }
[data-ai-icon="shower"] { --sprite-x: 0%; --sprite-y: 100%; }
[data-ai-icon="toy"] { --sprite-x: 33.333%; --sprite-y: 100%; }
[data-ai-icon="payment"] { --sprite-x: 66.666%; --sprite-y: 100%; }
[data-ai-icon="key"] { --sprite-x: 100%; --sprite-y: 100%; }

.main-nav .ai-nav-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.05rem;
  border-radius: 8px;
  box-shadow: 0 7px 16px rgba(9, 44, 61, 0.1);
}

.main-nav a svg,
.service-icons article > svg {
  display: none !important;
}

.feature-icon.ai-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 1rem;
  border: 0;
  background-color: transparent;
  box-shadow: 0 18px 34px rgba(9, 44, 61, 0.12);
}

.offer-card .price-icon.ai-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: transparent;
  background-color: transparent;
  box-shadow: 0 16px 30px rgba(231, 96, 77, 0.18);
}

.booking-tool-price-pill {
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  column-gap: 0.65rem;
}

.booking-tool-price-pill-icon {
  grid-row: 1 / span 3;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(9, 44, 61, 0.1);
}

.service-icons article::before {
  content: none !important;
}

.service-card-icon {
  grid-row: span 2;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(9, 44, 61, 0.12);
}

.trust-section article::before {
  background-image: url("../img/strand28-ai-icons-v2.png") !important;
  background-repeat: no-repeat !important;
  background-size: 400% 400% !important;
  box-shadow: 0 18px 34px rgba(9, 44, 61, 0.12);
}

.trust-section article:nth-of-type(1)::before {
  background-position: 66.666% 100% !important;
}

.trust-section article:nth-of-type(2)::before {
  background-position: 66.666% 0% !important;
}

.trust-section article:nth-of-type(3)::before {
  background-position: 0% 33.333% !important;
}

@media (max-width: 760px) {
  .main-nav .ai-nav-icon {
    width: 30px;
    height: 30px;
  }

  .feature-icon.ai-icon {
    width: 72px;
    height: 72px;
  }

  .service-card-icon {
    width: 74px;
    height: 74px;
  }

  .offer-card .price-icon.ai-icon {
    width: 48px;
    height: 48px;
  }
}

/* Final booking start fix: keep this last so old duplicated booking styles cannot win. */
.booking-section {
  padding-top: clamp(5.25rem, 8vw, 7.5rem) !important;
}

.booking-intro {
  width: min(1180px, 100%) !important;
  max-width: none !important;
  margin-inline: auto !important;
  margin-bottom: clamp(2rem, 4vw, 3.5rem) !important;
}

.booking-intro h2 {
  max-width: 9.5ch !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(3.1rem, 6.6vw, 5.8rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.065em !important;
}

.booking-intro p:last-child {
  max-width: 620px !important;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem) !important;
  line-height: 1.65 !important;
}

.booking-tool-shell.is-guide-start {
  width: min(1280px, 100%) !important;
  max-width: 1280px !important;
  margin-inline: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.booking-tool-shell.is-guide-start .booking-start-experience {
  display: grid !important;
}

.booking-tool-shell:not(.is-guide-start) .booking-start-experience,
.booking-tool-shell.is-guide-loading .booking-start-experience,
.booking-tool-shell.is-guide-date .booking-start-experience,
.booking-tool-shell.is-guide-map .booking-start-experience,
.booking-tool-shell.is-guide-checkout .booking-start-experience {
  display: none !important;
}

.booking-start-experience {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.78fr) !important;
  min-height: clamp(390px, 43vw, 520px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(9, 44, 61, 0.16) !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow:
    22px 22px 0 rgba(9, 44, 61, 0.08),
    0 30px 90px rgba(9, 44, 61, 0.1) !important;
}

.booking-start-map {
  position: relative !important;
  inset: auto !important;
  min-height: inherit !important;
  padding: clamp(2rem, 4vw, 4.2rem) !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.58) 58%, rgba(255, 253, 248, 0.88)),
    url("../img/strand28-beach-dunes.jpeg") center / cover !important;
  isolation: isolate !important;
}

.booking-start-map::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(1.4rem, 3vw, 3rem) !important;
  z-index: 1 !important;
  border: 1px solid rgba(9, 44, 61, 0.1) !important;
  background:
    linear-gradient(180deg, rgba(224, 244, 248, 0.72), rgba(255, 253, 248, 0.78)),
    repeating-linear-gradient(90deg, rgba(9, 44, 61, 0.08) 0 1px, transparent 1px 54px) !important;
  filter: blur(5px) !important;
}

.booking-start-map::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 213, 111, 0.2), transparent 15rem),
    linear-gradient(90deg, rgba(255, 253, 248, 0.03), rgba(255, 253, 248, 0.56) 70%, rgba(255, 253, 248, 0.88)) !important;
  backdrop-filter: blur(2px) !important;
}

.booking-start-water {
  left: clamp(1.4rem, 3vw, 3rem) !important;
  right: clamp(1.4rem, 3vw, 3rem) !important;
  bottom: clamp(1.4rem, 3vw, 3rem) !important;
  z-index: 4 !important;
  height: 70px !important;
  opacity: 0.78 !important;
}

.booking-start-plan {
  z-index: 3 !important;
  grid-template-columns: repeat(9, clamp(28px, 3vw, 42px)) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  width: max-content !important;
  margin: clamp(3rem, 7vw, 6rem) 0 0 clamp(2rem, 7vw, 7rem) !important;
  opacity: 0.46 !important;
  filter: blur(4px) !important;
  transform: rotate(-2deg) !important;
}

.booking-start-plan span {
  width: clamp(28px, 3vw, 42px) !important;
  height: clamp(28px, 3vw, 42px) !important;
  border-radius: 6px !important;
  box-shadow: 8px 8px 0 rgba(9, 44, 61, 0.06) !important;
}

.booking-start-copy {
  position: relative !important;
  z-index: 5 !important;
  align-self: stretch !important;
  display: grid !important;
  align-content: center !important;
  width: auto !important;
  min-height: auto !important;
  margin: 0 !important;
  padding: clamp(2rem, 4.6vw, 4.8rem) !important;
  border: 0 !important;
  border-left: 1px solid rgba(9, 44, 61, 0.12) !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
}

.booking-start-copy::before,
.booking-start-copy::after {
  content: none !important;
  display: none !important;
}

.booking-start-copy h3 {
  max-width: 9.2ch !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(2.1rem, 4.1vw, 4rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.055em !important;
}

.booking-start-copy p:not(.kicker) {
  max-width: 430px !important;
  font-size: clamp(1rem, 1.25vw, 1.16rem) !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

.booking-start-copy .button {
  width: min(100%, 420px) !important;
  min-height: 62px !important;
  margin-top: 0.6rem !important;
  border-radius: 0 !important;
}

@media (max-width: 900px) {
  .booking-section {
    padding-top: 4.25rem !important;
  }

  .booking-intro {
    margin-bottom: 1.5rem !important;
  }

  .booking-intro h2 {
    max-width: 10ch !important;
    font-size: clamp(2.75rem, 14vw, 4.6rem) !important;
    letter-spacing: -0.058em !important;
  }

  .booking-start-experience {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    box-shadow:
      10px 10px 0 rgba(9, 44, 61, 0.08),
      0 22px 60px rgba(9, 44, 61, 0.1) !important;
  }

  .booking-start-map {
    min-height: 260px !important;
  }

  .booking-start-plan {
    margin: 4rem auto 0 !important;
  }

  .booking-start-copy {
    border-left: 0 !important;
    border-top: 1px solid rgba(9, 44, 61, 0.12) !important;
  }
}

@media (max-width: 560px) {
  .booking-intro h2 {
    max-width: 8.5ch !important;
    font-size: clamp(2.45rem, 15vw, 3.7rem) !important;
  }

  .booking-start-map {
    min-height: 210px !important;
  }

  .booking-start-plan {
    grid-template-columns: repeat(6, 28px) !important;
    gap: 8px !important;
    opacity: 0.38 !important;
  }

  .booking-start-copy {
    padding: 1.5rem !important;
  }

  .booking-start-copy h3 {
    max-width: 10ch !important;
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
}
.offer-combined [data-ai-icon="three-chair"] {
  --sprite-x: 66.666% !important;
  --sprite-y: 33.333% !important;
}

.offer-combined .feature-icon-wide {
  width: 76px !important;
}

/* 2026-07-20: clean price section, no legacy card leftovers. */
.offer-combined {
  width: min(1240px, calc(100% - 48px)) !important;
  padding-block: clamp(4rem, 7vw, 6.5rem) !important;
}

.offer-combined::before {
  inset: 0 max(-3vw, -42px) auto !important;
  height: 46% !important;
  opacity: 0.72 !important;
}

.offer-combined .section-copy {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 310px) !important;
  gap: clamp(1.2rem, 4vw, 4.5rem) !important;
  align-items: end !important;
  margin-bottom: clamp(1.6rem, 3vw, 2.8rem) !important;
}

.offer-combined .section-copy::after {
  content: none !important;
}

.offer-combined .section-copy h2 {
  max-width: 900px !important;
  margin: 0.45rem 0 0 !important;
  font-size: clamp(2.9rem, 5.6vw, 5.45rem) !important;
  line-height: 0.86 !important;
  letter-spacing: -0.07em !important;
}

.offer-combined .accent-script {
  display: inline-block !important;
  margin-left: 0.22em !important;
  color: #c34838 !important;
  font-size: 0.72em !important;
  font-weight: 400 !important;
  letter-spacing: -0.03em !important;
  transform: translateY(0.06em) rotate(-2deg);
}

.offer-combined .accent-dot {
  color: #c34838 !important;
}

.price-note {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid #e85f4f;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 16px 42px rgba(9, 44, 61, 0.08);
}

.price-note span {
  color: #1684a2;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-note strong {
  color: #153c55;
  font-size: 0.98rem;
  line-height: 1.35;
}

.offer-combined .offer-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.6vw, 1.4rem) !important;
  margin-top: 0 !important;
}

.offer-combined .offer-card {
  position: relative !important;
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  overflow: hidden !important;
  border: 1px solid rgba(9, 44, 61, 0.12) !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow: 0 22px 60px rgba(9, 44, 61, 0.08) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.offer-combined .offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(9, 44, 61, 0.13) !important;
}

.offer-combined .offer-card::after {
  content: none !important;
}

.offer-combined .offer-card img {
  width: 100% !important;
  height: clamp(190px, 17vw, 250px) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  filter: saturate(1.02) contrast(1.03) !important;
}

.offer-combined .offer-card div {
  display: grid !important;
  grid-template-rows: auto auto auto 1fr auto auto !important;
  min-height: 0 !important;
  padding: clamp(1.15rem, 1.7vw, 1.55rem) !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), #fffaf0) !important;
}

.offer-combined .feature-icon {
  width: 58px !important;
  height: 58px !important;
  margin: -2.55rem 0 0.78rem !important;
  border: 6px solid #fffdf8 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: 0 18px 32px rgba(9, 44, 61, 0.14) !important;
}

.offer-combined .feature-icon-wide {
  width: 68px !important;
}

.offer-combined .feature-icon + .icon-line {
  width: 44px !important;
  height: 3px !important;
  margin: 0 0 0.85rem !important;
  background: #e85f4f !important;
}

.offer-combined .offer-card .offer-kicker {
  color: #1684a2 !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.18em !important;
}

.offer-combined .offer-card h3 {
  max-width: 9.5ch !important;
  margin: 0.34rem 0 0.72rem !important;
  color: #0a2f43 !important;
  font-size: clamp(1.6rem, 2vw, 2.1rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
}

.offer-combined .offer-card p {
  min-height: 0 !important;
  margin: 0 0 1.15rem !important;
  color: #4c6577 !important;
  font-size: 0.96rem !important;
  line-height: 1.56 !important;
}

.offer-combined .offer-card strong {
  display: inline-flex !important;
  align-items: baseline !important;
  width: fit-content !important;
  margin-top: auto !important;
  padding: 0.5rem 0.74rem 0.46rem !important;
  border: 1px solid rgba(22, 132, 162, 0.18) !important;
  border-radius: 999px !important;
  color: #092c3d !important;
  background: #f1fbfc !important;
  box-shadow: none !important;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

.offer-combined .offer-card small:not(.price-icon) {
  max-width: 25ch !important;
  margin-top: 0.68rem !important;
  color: #536f80 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
}

.offer-combined .offer-card .price-icon {
  top: auto !important;
  right: 1rem !important;
  bottom: 1rem !important;
  width: 44px !important;
  height: 44px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 16px 32px rgba(232, 95, 79, 0.18) !important;
}

@media (max-width: 1100px) {
  .offer-combined .section-copy {
    grid-template-columns: 1fr !important;
  }

  .offer-combined .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .offer-combined {
    width: min(100% - 24px, 560px) !important;
  }

  .offer-combined .section-copy h2 {
    font-size: clamp(2.45rem, 13vw, 3.6rem) !important;
  }

  .offer-combined .accent-script {
    display: block !important;
    margin: 0.16rem 0 0 !important;
    font-size: 0.78em !important;
  }

  .offer-combined .offer-grid {
    grid-template-columns: 1fr !important;
  }

  .offer-combined .offer-card img {
    height: 230px !important;
  }
}

/* 2026-07-21 service icon correction: Stieleis in the same soft illustration style. */
[data-ai-icon="ice"] {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22160%22%20height%3D%22160%22%20viewBox%3D%220%200%20160%20160%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%22160%22%20height%3D%22160%22%20rx%3D%2232%22%20fill%3D%22%23fffdf7%22%2F%3E%0A%3Cellipse%20cx%3D%2280%22%20cy%3D%22133%22%20rx%3D%2235%22%20ry%3D%229%22%20fill%3D%22%23e8d3bc%22%20opacity%3D%22.34%22%2F%3E%0A%3Crect%20x%3D%2270%22%20y%3D%22100%22%20width%3D%2220%22%20height%3D%2239%22%20rx%3D%228%22%20fill%3D%22%23cf8e4a%22%2F%3E%0A%3Crect%20x%3D%2275%22%20y%3D%22101%22%20width%3D%2210%22%20height%3D%2235%22%20rx%3D%225%22%20fill%3D%22%23edbc75%22%20opacity%3D%22.95%22%2F%3E%0A%3Cpath%20d%3D%22M54%2076c0-27%2011.8-47%2026-47s26%2020%2026%2047v25c0%2014.4-11.6%2026-26%2026s-26-11.6-26-26V76Z%22%20fill%3D%22%23ffd457%22%2F%3E%0A%3Cpath%20d%3D%22M54%2076c0-27%2011.8-47%2026-47s26%2020%2026%2047v7H54v-7Z%22%20fill%3D%22%23ff7d69%22%2F%3E%0A%3Cpath%20d%3D%22M80%2029c14.2%200%2026%2020%2026%2047v25c0%2014.4-11.6%2026-26%2026V29Z%22%20fill%3D%22%23f29b35%22%20opacity%3D%22.5%22%2F%3E%0A%3Cpath%20d%3D%22M54%2083h52v18c0%2014.4-11.6%2026-26%2026s-26-11.6-26-26V83Z%22%20fill%3D%22%23ffdb64%22%2F%3E%0A%3Cpath%20d%3D%22M64%2053c3.2-8.1%208.5-13.2%2014.8-14.3%22%20stroke%3D%22%23fff3cc%22%20stroke-width%3D%227%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.85%22%2F%3E%0A%3Cpath%20d%3D%22M58%2084c13%206.8%2029.7%206.9%2045%200%22%20stroke%3D%22%23fff7d9%22%20stroke-width%3D%224%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.8%22%2F%3E%0A%3Cpath%20d%3D%22M54%2076c0-27%2011.8-47%2026-47s26%2020%2026%2047v25c0%2014.4-11.6%2026-26%2026s-26-11.6-26-26V76Z%22%20stroke%3D%22%23f4c4a6%22%20stroke-width%3D%222%22%20opacity%3D%22.72%22%2F%3E%0A%3Cpath%20d%3D%22M56%20109c3.6%2010.5%2012.8%2018%2024%2018%2013.9%200%2025.3-10.9%2026-24.6%22%20stroke%3D%22%23c96543%22%20stroke-width%3D%223%22%20opacity%3D%22.18%22%2F%3E%0A%3C%2Fsvg%3E") !important;
  background-position: center !important;
  background-size: contain !important;
}

/* 2026-07-20 visual reset for the welcome + price area shown after the hero. */
.intro {
  width: min(1180px, calc(100% - 48px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr) !important;
  gap: clamp(1.5rem, 4vw, 4rem) !important;
  align-items: center !important;
  margin-top: clamp(2.8rem, 5vw, 4.5rem) !important;
  padding: clamp(1.6rem, 3vw, 2.5rem) !important;
  border: 1px solid rgba(15, 63, 87, 0.1) !important;
  border-radius: 0 !important;
  background:
    linear-gradient(110deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.78)),
    radial-gradient(circle at 88% 18%, rgba(145, 205, 217, 0.22), transparent 17rem) !important;
  box-shadow: 0 24px 70px rgba(9, 44, 61, 0.08) !important;
}

.intro .section-copy {
  max-width: 590px !important;
}

.intro .section-copy h2 {
  max-width: 9.8ch !important;
  margin: 0 !important;
  font-size: clamp(2.7rem, 5vw, 4.7rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.072em !important;
}

.intro .accent-script {
  display: inline-block !important;
  margin: 0.02em 0 0 !important;
  color: #c34838 !important;
  font-size: 0.66em !important;
  font-weight: 400 !important;
  letter-spacing: -0.035em !important;
  transform: rotate(-1.5deg);
}

.intro .accent-dot {
  display: inline-block !important;
  color: #c34838 !important;
  transform: translateX(-0.06em);
}

.intro-text {
  display: grid !important;
  gap: 0.85rem !important;
  padding: 0 !important;
  color: #415e70 !important;
  font-size: clamp(1rem, 1.2vw, 1.12rem) !important;
  font-weight: 700 !important;
  line-height: 1.58 !important;
}

.intro-text p {
  margin: 0 !important;
}

.offer-combined {
  width: 100% !important;
  max-width: none !important;
  margin-top: clamp(2.6rem, 5vw, 4.2rem) !important;
  padding: clamp(2.45rem, 5vw, 4.4rem) max(24px, calc((100vw - 1240px) / 2)) clamp(3.6rem, 6vw, 6.2rem) !important;
  border-top: 1px solid rgba(15, 63, 87, 0.1) !important;
  border-bottom: 1px solid rgba(15, 63, 87, 0.1) !important;
  background:
    linear-gradient(90deg, rgba(10, 82, 111, 0.045) 0 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(232, 95, 79, 0.1), transparent 23rem),
    radial-gradient(circle at 88% 8%, rgba(145, 205, 217, 0.22), transparent 26rem),
    linear-gradient(180deg, #fffaf0, #f7fbf9) !important;
  background-size: 84px 100%, auto, auto, auto !important;
}

.offer-combined::before {
  content: none !important;
}

.offer-combined .section-copy {
  width: min(1240px, 100%) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.76fr) minmax(260px, 0.34fr) !important;
  gap: clamp(1.4rem, 4vw, 4rem) !important;
  align-items: end !important;
  margin: 0 auto clamp(1.05rem, 2.2vw, 1.85rem) !important;
}

.offer-combined .section-copy h2 {
  max-width: 740px !important;
  margin: 0.35rem 0 0 !important;
  font-size: clamp(2.55rem, 4.2vw, 4.65rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.065em !important;
}

.offer-combined .accent-script {
  display: inline-block !important;
  margin-left: 0.18em !important;
  color: #c34838 !important;
  font-size: 0.62em !important;
  font-weight: 400 !important;
  letter-spacing: -0.035em !important;
  transform: translateY(0.08em) rotate(-2deg) !important;
}

.price-note {
  align-self: end !important;
  padding: 0.95rem 1rem 1rem 1.15rem !important;
  border: 1px solid rgba(15, 63, 87, 0.1) !important;
  border-left: 4px solid #e85f4f !important;
  background: rgba(255, 253, 248, 0.9) !important;
  box-shadow: 0 16px 40px rgba(9, 44, 61, 0.08) !important;
}

.offer-combined .offer-grid {
  width: min(1240px, 100%) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.55vw, 1.35rem) !important;
  margin: 0 auto !important;
  border: 0 !important;
}

.offer-combined .offer-card {
  display: grid !important;
  grid-template-rows: 210px 1fr !important;
  overflow: hidden !important;
  border: 1px solid rgba(15, 63, 87, 0.12) !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow: 0 18px 48px rgba(9, 44, 61, 0.08) !important;
}

.offer-combined .offer-card img {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
}

.offer-combined .offer-card div {
  position: relative !important;
  display: grid !important;
  grid-template-rows: auto auto auto 1fr auto auto !important;
  min-height: 300px !important;
  padding: 1.25rem 1.25rem 1.3rem !important;
  background: #fffdf8 !important;
}

.offer-combined .feature-icon {
  width: 54px !important;
  height: 54px !important;
  margin: -2.55rem 0 0.8rem !important;
  border: 5px solid #fffdf8 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: 0 14px 28px rgba(9, 44, 61, 0.13) !important;
}

.offer-combined .feature-icon-wide {
  width: 66px !important;
}

.offer-combined .feature-icon + .icon-line {
  width: 44px !important;
  height: 3px !important;
  margin: 0 0 0.78rem !important;
  background: #e85f4f !important;
}

.offer-combined .offer-card h3 {
  max-width: 10ch !important;
  margin: 0.32rem 0 0.72rem !important;
  font-size: clamp(1.52rem, 1.7vw, 1.95rem) !important;
  line-height: 0.95 !important;
}

.offer-combined .offer-card p {
  margin: 0 0 1.05rem !important;
  color: #49677a !important;
  font-size: 0.94rem !important;
  line-height: 1.52 !important;
}

.offer-combined .offer-card strong {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #0a2f43 !important;
  font-size: clamp(1.42rem, 1.8vw, 1.88rem) !important;
}

.offer-combined .offer-card .price-icon {
  right: 1rem !important;
  bottom: 1.15rem !important;
  width: 38px !important;
  height: 38px !important;
  opacity: 0.92 !important;
}

@media (max-width: 1060px) {
  .intro,
  .offer-combined .section-copy {
    grid-template-columns: 1fr !important;
  }

  .offer-combined .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .intro {
    width: min(100% - 24px, 560px) !important;
    padding: 1.25rem !important;
  }

  .intro .section-copy h2,
  .offer-combined .section-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem) !important;
  }

  .offer-combined {
    padding-inline: 12px !important;
  }

  .offer-combined .accent-script {
    display: block !important;
    margin: 0.16rem 0 0 !important;
  }

  .offer-combined .offer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 2026-07-20 wide-screen refinement: sections should grow gracefully, not float as tiny islands. */
@media (min-width: 1440px) {
  .intro {
    width: min(1380px, calc(100% - 160px)) !important;
  }

  .offer-combined {
    padding-inline: max(64px, calc((100vw - 1500px) / 2)) !important;
  }

  .offer-combined .section-copy,
  .offer-combined .offer-grid {
    width: min(1500px, 100%) !important;
  }

  .offer-combined .offer-card {
    grid-template-rows: clamp(230px, 14vw, 310px) 1fr !important;
  }

  .offer-combined .offer-card div {
    min-height: 330px !important;
    padding: clamp(1.35rem, 1.25vw, 1.75rem) !important;
  }
}

/* Price cards: more like clear beach tickets, less like small plain columns. */
.offer-combined .offer-card {
  isolation: isolate !important;
  background:
    linear-gradient(180deg, #ffffff 0, #fffdf8 58%, #fff8ed 100%) !important;
}

.offer-combined .offer-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, transparent 34%, rgba(255, 253, 248, 0.88) 34.2%),
    radial-gradient(circle at 92% 88%, rgba(232, 95, 79, 0.09), transparent 8rem) !important;
}

.offer-combined .offer-card > img,
.offer-combined .offer-card > div {
  position: relative !important;
  z-index: 2 !important;
}

.offer-combined .offer-card > img {
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%) !important;
}

.offer-combined .offer-card div {
  border-top: 1px solid rgba(15, 63, 87, 0.08) !important;
}

.offer-combined .offer-card .offer-kicker {
  display: inline-flex !important;
  width: fit-content !important;
  margin-bottom: 0.15rem !important;
  padding: 0.26rem 0.48rem !important;
  color: #0f7190 !important;
  background: rgba(219, 243, 247, 0.8) !important;
  letter-spacing: 0.16em !important;
}

.offer-combined .offer-card h3 {
  min-height: 1.9em !important;
}

.offer-combined .offer-card strong {
  position: relative !important;
  width: fit-content !important;
  margin-top: 0.25rem !important;
  padding: 0.55rem 0.7rem 0.48rem !important;
  color: #fffdf8 !important;
  background: #0a2f43 !important;
}

.offer-combined .offer-card strong::before {
  content: "" !important;
  position: absolute !important;
  left: 0.7rem !important;
  right: 0.7rem !important;
  bottom: -0.32rem !important;
  height: 0.32rem !important;
  background: #e85f4f !important;
}

.offer-combined .offer-card small:not(.price-icon) {
  margin-top: 0.9rem !important;
}

/* 2026-07-20 mobile polish: keep script punctuation together and show beach, not only sky. */
.offer-combined .accent-script,
.offer-combined .accent-dot {
  white-space: nowrap !important;
}

.offer-combined .accent-dot {
  display: inline-block !important;
  margin-left: -0.03em !important;
  color: #c34838 !important;
  vertical-align: baseline !important;
}

@media (max-width: 680px) {
  .offer-combined .accent-script {
    display: inline-block !important;
    margin: 0.14rem 0 0 !important;
  }

  .offer-combined .accent-dot {
    transform: translateX(-0.04em) !important;
  }

  .offer-combined .offer-card {
    grid-template-rows: 255px 1fr !important;
  }

  .offer-combined .offer-card img {
    height: 255px !important;
    object-fit: cover !important;
    object-position: center 68% !important;
  }

  .offer-combined .offer-card:nth-child(2) img,
  .offer-combined .offer-card:nth-child(4) img {
    object-position: center 62% !important;
  }

  .offer-combined .offer-card:nth-child(3) img {
    object-position: center 72% !important;
  }

  .price-note {
    width: 100% !important;
    min-width: 0 !important;
  }

  .price-note strong,
  .price-note span {
    overflow-wrap: anywhere !important;
  }
}

/* 2026-07-21 mobile calm-down pass: less visual weight, cleaner breaks, faster booking entry. */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px !important;
  }

  body {
    background-size: 54px 100%, auto, auto !important;
  }

  .site-header {
    min-height: 62px !important;
    padding: 0.45rem 14px !important;
  }

  .brand img {
    max-height: 44px !important;
  }

  .header-cta {
    display: none !important;
  }

  .hero {
    min-height: auto !important;
    padding: 78px 16px 26px !important;
  }

  .hero-content {
    padding: 2.1rem 0 1rem !important;
  }

  .hero-logo-mark {
    width: 116px !important;
    margin-bottom: 1rem !important;
  }

  .hero-content h1 {
    max-width: 9.5ch !important;
    font-size: clamp(2.55rem, 13.2vw, 4.2rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.055em !important;
  }

  .hero-content p:not(.kicker) {
    max-width: 30ch !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
    width: min(100%, 360px) !important;
  }

  .hero-search {
    position: relative !important;
    width: 100% !important;
    margin: 0.8rem 0 0 !important;
    padding: 0.65rem !important;
    border-radius: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 0.45rem !important;
  }

  .hero-search label,
  .hero-search button {
    min-height: 54px !important;
    padding: 0.72rem 0.85rem !important;
  }

  .hero-trust {
    display: none !important;
  }

  .section,
  .intro,
  .offers,
  .booking-section,
  .service-panel,
  .wide-story,
  .gallery-section,
  .contact-band {
    margin-top: 0 !important;
  }

  .intro {
    width: calc(100% - 24px) !important;
    padding: 1.15rem !important;
    gap: 1rem !important;
  }

  .intro .section-copy h2,
  .offer-combined .section-copy h2,
  .booking-intro h2,
  .section-copy h2 {
    font-size: clamp(2rem, 10.5vw, 3rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.05em !important;
  }

  .accent-script {
    line-height: 1 !important;
  }

  .offer-combined {
    padding: 2.4rem 12px !important;
  }

  .offer-combined .section-copy {
    gap: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .offer-combined .offer-grid {
    gap: 0.9rem !important;
  }

  .offer-combined .offer-card {
    grid-template-rows: 170px 1fr !important;
    border-radius: 0 !important;
    box-shadow: 0 12px 30px rgba(9, 44, 61, 0.08) !important;
  }

  .offer-combined .offer-card img {
    height: 170px !important;
    object-fit: cover !important;
    object-position: center 70% !important;
  }

  .offer-combined .offer-card div {
    min-height: 0 !important;
    padding: 1rem !important;
    grid-template-rows: auto auto auto auto auto auto !important;
  }

  .offer-combined .feature-icon {
    width: 48px !important;
    height: 48px !important;
    margin-top: -2.25rem !important;
  }

  .offer-combined .offer-card h3 {
    max-width: 13ch !important;
    min-height: 0 !important;
    margin-bottom: 0.55rem !important;
    font-size: clamp(1.35rem, 7vw, 1.9rem) !important;
  }

  .offer-combined .offer-card p {
    margin-bottom: 0.85rem !important;
    font-size: 0.94rem !important;
  }

  .offer-combined .offer-card strong {
    font-size: 1.22rem !important;
    white-space: nowrap !important;
  }

  .offer-combined .offer-card small:not(.price-icon) {
    margin-top: 0.65rem !important;
    font-size: 0.84rem !important;
  }

  .price-note {
    padding: 0.85rem 1rem !important;
    border-left-width: 3px !important;
  }

  .booking-intro {
    width: calc(100% - 24px) !important;
    margin: 0 auto 1rem !important;
  }

  .service-panel,
  .wide-story,
  .gallery-section,
  .contact-band,
  .site-footer {
    width: calc(100% - 24px) !important;
    margin-inline: auto !important;
  }

  .service-panel {
    padding: 1rem !important;
  }

  .service-panel-copy p:not(.kicker) {
    font-size: 1rem !important;
  }

  .service-icons {
    gap: 0.75rem !important;
  }

  .service-icons article {
    padding: 1rem !important;
  }

  .wide-story {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 1.25rem !important;
  }

  .wide-story :is(img, video) {
    min-height: 220px !important;
    max-height: 320px !important;
  }

  .gallery-section {
    padding-top: 2.4rem !important;
  }

  .gallery-grid {
    gap: 0.75rem !important;
  }

  .gallery-card,
  .gallery-card-large {
    min-height: 235px !important;
  }

  .gallery-card h3 {
    font-size: clamp(1.45rem, 8vw, 2.2rem) !important;
  }

  .contact-band {
    padding: 1.6rem 1.2rem !important;
    gap: 1rem !important;
  }

  .contact-band h2 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .site-footer {
    padding: 1.4rem !important;
    gap: 1.1rem !important;
  }

  .mobile-booking-bar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    left: 12px !important;
    right: 12px !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: auto !important;
    padding: 0.7rem !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 420px) {
  .hero-content h1,
  .intro .section-copy h2,
  .offer-combined .section-copy h2,
  .booking-intro h2,
  .section-copy h2 {
    hyphens: none !important;
    text-wrap: balance !important;
  }

  .button,
  .hero-search button,
  .mobile-booking-bar a {
    letter-spacing: 0.035em !important;
  }

  .offer-combined .offer-card strong {
    font-size: 1.08rem !important;
  }
}
