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

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

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

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

:root {
  --bg: #f3eadf;
  --bg-deep: #dbc7b2;
  --paper: rgba(251, 247, 241, 0.8);
  --paper-strong: #fcf8f2;
  --ink: #221916;
  --muted: #4f433a;
  --muted-strong: #3f352e;
  --line: rgba(34, 25, 22, 0.1);
  --accent: #a56a45;
  --accent-deep: #7d482a;
  --forest: #697564;
  --night: #24332e;
  --shadow: 0 26px 60px rgba(80, 56, 37, 0.1);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(165, 106, 69, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(105, 117, 100, 0.09), transparent 26%),
    linear-gradient(180deg, #f7efe6 0%, #efe3d4 100%);
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(125, 72, 42, 0.42);
  outline-offset: 3px;
}

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

code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.94em;
}

.site-bg {
  position: fixed;
  inset: auto auto 0 0;
  pointer-events: none;
  z-index: -1;
  filter: blur(24px);
}

.site-bg--one {
  top: -80px;
  left: -90px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(189, 106, 63, 0.34), transparent 68%);
}

.site-bg--two {
  right: -140px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(92, 111, 95, 0.28), transparent 70%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.topbar,
.hero-panel,
.services-band,
.story-grid,
.booking-stage,
.faq-stage,
.contact-band {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar::before,
.hero-panel::before,
.services-band::before,
.story-grid::before,
.booking-stage::before,
.faq-stage::before,
.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
    repeating-linear-gradient(
      0deg,
      rgba(34, 25, 22, 0.018) 0,
      rgba(34, 25, 22, 0.018) 1px,
      transparent 1px,
      transparent 8px
    );
  opacity: 0.55;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 999px;
  position: sticky;
  top: 16px;
  z-index: 12;
  margin-bottom: 24px;
}

.topbar__panel {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brandmark img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brandmark__text {
  display: grid;
  gap: 4px;
}

.brandmark__text strong,
h1,
h2,
h3,
.faq-item summary {
  font-family: "Newsreader", serif;
}

.brandmark__text strong {
  font-size: 1.58rem;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brandmark__text small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  flex: 1 1 420px;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  justify-content: center;
  min-width: 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(24, 19, 17, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.topnav a:hover,
.topnav a:focus-visible,
.language-switcher a:hover,
.language-switcher a:focus-visible,
.service-feature__footer a:hover,
.service-feature__footer a:focus-visible,
.contact-band__actions a:hover,
.contact-band__actions a:focus-visible {
  color: var(--accent-deep);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 6px;
  margin-left: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(24, 19, 17, 0.08);
  box-shadow: 0 12px 24px rgba(34, 25, 22, 0.08);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  transform: translateY(-1px);
}

.language-switcher a.is-active {
  background: var(--ink);
  color: #f7efe5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-panel,
.services-band,
.story-grid,
.booking-stage,
.faq-stage,
.contact-band {
  border-radius: var(--radius-xl);
}

.hero-panel,
.booking-stage__layout {
  display: grid;
  gap: 24px;
}

.hero-panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  padding: 34px;
  align-items: start;
}

.hero-panel__copy {
  padding: 8px 6px 6px 4px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 4.8vw, 4.25rem);
  font-weight: 520;
  text-wrap: balance;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.05rem, 4.2vw, 3.35rem);
}

h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

.hero-panel__lede,
.hero-panel__trust,
.section-intro > p:last-child,
.story-card p,
.booking-card p,
.booking-status,
.faq-item p,
.contact-band__lead p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 62ch;
}

.hero-panel__lede,
.hero-panel__trust,
.section-intro > p:last-child {
  max-width: 58ch;
}

.hero-panel__trust {
  margin-top: 16px;
  padding: 12px 16px;
  border-left: 3px solid rgba(125, 72, 42, 0.28);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted-strong);
  font-size: 0.96rem;
}

html[lang="fr"] h1,
html[lang="de"] h1,
html[lang="lb"] h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 4.6vw, 4.2rem);
  line-height: 0.94;
}

.hero-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  background: var(--ink);
  color: #f7efe5;
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--accent-deep);
}

.button--ghost {
  border: 1px solid rgba(24, 19, 17, 0.16);
  background: rgba(255, 255, 255, 0.42);
}

.button--wide {
  width: 100%;
}

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

.signal-card {
  min-height: 128px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 19, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 240, 232, 0.72));
}

.signal-card__value {
  display: block;
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 800;
}

.signal-card__label {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.hero-panel__media {
  position: relative;
  min-height: 640px;
  min-width: 0;
}

.button--compact {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.hero-visual {
  height: 100%;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  background: #d7c2ae;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  max-width: 260px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(25, 17, 14, 0.14);
}

.floating-note strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.05;
}

.floating-note p {
  margin: 8px 0 0;
  line-height: 1.58;
}

.floating-note__eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-note--light {
  top: 22px;
  left: -12px;
  background: rgba(252, 248, 242, 0.96);
  border: 1px solid rgba(24, 19, 17, 0.08);
}

.floating-note--accent {
  right: -6px;
  bottom: 26px;
  color: #f8eee5;
  background: rgba(31, 45, 40, 0.94);
}

.floating-note--accent p {
  color: rgba(248, 238, 229, 0.76);
}

.services-band,
.story-grid,
.booking-stage,
.faq-stage,
.contact-band {
  margin-top: 24px;
  padding: 34px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24, 19, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.82), rgba(247, 239, 229, 0.82));
}

.service-feature--reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(270px, 0.82fr);
}

.service-feature__image {
  min-height: 290px;
}

.service-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature__content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 32px;
}

.service-feature__meta,
.service-feature__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-feature__meta {
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-feature__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-benefits li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.62;
}

.service-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.service-feature__footer {
  padding-top: 18px;
  border-top: 1px solid rgba(24, 19, 17, 0.08);
  align-items: center;
}

.service-feature__footer strong {
  font-size: 1.12rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.72fr);
  gap: 20px;
  align-items: start;
}

.story-grid__headline {
  grid-column: 1 / -1;
}

.story-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(24, 19, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.story-card--main {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 249, 243, 0.24));
}

.story-card--side {
  background: rgba(31, 45, 40, 0.95);
  color: #f5ebdf;
}

.story-card--side .story-list {
  color: rgba(245, 235, 223, 0.82);
}

.story-card__eyebrow {
  margin: 0 0 16px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-card p {
  margin: 0 0 18px;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.story-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
}

.booking-stage__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 22px;
  align-items: end;
  margin-bottom: 26px;
}

.booking-stage__intro {
  margin-bottom: 0;
}

.booking-stage__cta {
  display: grid;
  gap: 12px;
  align-self: end;
}

.booking-stage__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.booking-stage__layout {
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
}

.booking-rail {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 112px;
}

.booking-card,
.booking-frame,
.faq-item {
  border: 1px solid rgba(24, 19, 17, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.82), rgba(247, 240, 233, 0.82));
}

.booking-card {
  padding: 22px;
}

.booking-card--feature {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 235, 224, 0.92));
}

.booking-card--feature h3 {
  max-width: 10ch;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.booking-card__eyebrow,
.booking-frame__eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-steps {
  display: grid;
  gap: 12px;
}

.booking-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(24, 19, 17, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.booking-step__index {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--night);
  color: #f5ebdf;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.booking-step__title {
  margin: 2px 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.booking-step p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.booking-frame {
  min-height: 760px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(252, 248, 242, 0.94), rgba(246, 238, 229, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.booking-frame__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 6px 18px;
}

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

.booking-frame__header h3 {
  max-width: 14ch;
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
}

.booking-status {
  display: grid;
  place-items: center;
  min-height: 720px;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  border: 1px dashed rgba(24, 19, 17, 0.18);
  background: rgba(255, 255, 255, 0.4);
}

#booking-widget {
  width: 100%;
  min-width: 0;
  height: 720px;
  border-radius: 20px;
  overflow: hidden;
}

.faq-stage__list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 24px;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  line-height: 1.08;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.7rem;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  max-width: 64ch;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.contact-band__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.contact-meta__item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(24, 19, 17, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.contact-meta__label {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-meta__item strong {
  line-height: 1.55;
}

.contact-band__actions {
  display: grid;
  gap: 12px;
  font-weight: 800;
}

.contact-band__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(24, 19, 17, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.contact-band__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(24, 19, 17, 0.1);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.legal-page {
  padding-bottom: 56px;
}

.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.legal-card {
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(24, 19, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 240, 233, 0.86));
  box-shadow: var(--shadow);
}

.legal-card + .legal-card {
  margin-top: 20px;
}

.legal-card h1,
.legal-card h2 {
  max-width: none;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.76;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(34, 25, 22, 0.92);
  color: #f7efe5;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 36px rgba(34, 25, 22, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--accent-deep);
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.cookie-banner[hidden],
.cookie-banner.is-hidden {
  display: none !important;
}

.cookie-banner__content {
  width: min(100%, 820px);
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(24, 19, 17, 0.08);
  background: rgba(252, 248, 242, 0.96);
  box-shadow: 0 26px 60px rgba(34, 25, 22, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-banner__eyebrow {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-banner__content h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.cookie-banner__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cookie-banner__meta {
  margin-top: 14px;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .hero-panel,
  .booking-stage__header,
  .story-grid,
  .booking-stage__layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 30px;
    position: static;
    padding: 18px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .topbar__panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
  }

  .topbar__panel.is-open {
    display: flex;
  }

  .topnav {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 0.84rem;
  }

  .topnav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(24, 19, 17, 0.06);
  }

  .language-switcher {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .hero-panel__media {
    min-height: 460px;
  }

  .hero-panel__copy {
    padding-right: 0;
  }

  .booking-stage__header {
    gap: 18px;
  }

  .booking-rail {
    position: static;
    top: auto;
  }

  .signal-grid,
  .service-feature,
  .service-feature--reverse {
    grid-template-columns: 1fr;
  }

  .floating-note--light,
  .floating-note--accent {
    position: static;
    margin-top: 14px;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .topbar {
    gap: 14px;
    padding: 16px;
    border-radius: 26px;
  }

  .brandmark img {
    width: 50px;
    height: 50px;
  }

  .brandmark__text strong {
    font-size: 1.36rem;
  }

  .hero-panel,
  .services-band,
  .story-grid,
  .booking-stage,
  .faq-stage,
  .contact-band {
    padding: 24px;
  }

  .brandmark__text small {
    display: none;
  }

  .language-switcher {
    width: 100%;
  }

  .language-switcher a {
    flex: 1 1 0;
    min-width: 0;
  }

  .kicker {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 10.8vw, 3.7rem);
    line-height: 0.92;
  }

  html[lang="fr"] h1,
  html[lang="de"] h1,
  html[lang="lb"] h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.9vw, 3.05rem);
    line-height: 0.95;
  }

  h2 {
    max-width: 11ch;
    font-size: clamp(1.85rem, 8.8vw, 2.55rem);
    line-height: 0.94;
  }

  h3 {
    line-height: 0.96;
  }

  .hero-panel__lede,
  .hero-panel__trust,
  .section-intro > p:last-child,
  .story-card p,
  .booking-card p,
  .booking-status,
  .faq-item p,
  .contact-band__lead p:last-child {
    font-size: 0.96rem;
    line-height: 1.74;
  }

  .hero-panel__actions {
    margin: 22px 0 22px;
  }

  .hero-panel__trust {
    margin-top: 14px;
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
  }

  .signal-grid {
    gap: 10px;
  }

  .signal-card {
    min-height: 0;
    padding: 16px;
  }

  .hero-panel__media {
    min-height: 320px;
  }

  .hero-visual {
    border-radius: 24px;
  }

  .service-feature__content {
    padding: 24px;
  }

  .service-feature__meta,
  .booking-card__eyebrow,
  .booking-frame__eyebrow,
  .story-card__eyebrow {
    font-size: 0.68rem;
  }

  .booking-stage__hint {
    font-size: 0.88rem;
  }

  .booking-card,
  .booking-card--feature,
  .booking-step,
  .story-card {
    border-radius: 22px;
  }

  .booking-step {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 14px 16px;
  }

  .booking-step__index {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .booking-frame,
  .booking-status,
  #booking-widget {
    min-height: 620px;
    height: 620px;
  }

  .booking-frame {
    padding: 14px;
    border-radius: 22px;
  }

  .booking-frame__header {
    padding: 4px 4px 14px;
  }

  .faq-item summary {
    padding: 18px 48px 18px 18px;
    font-size: clamp(1.18rem, 6vw, 1.5rem);
  }

  .faq-item summary::after {
    top: 14px;
    right: 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .contact-band {
    gap: 16px;
  }

  .contact-band__meta {
    grid-template-columns: 1fr;
  }

  .contact-band__actions {
    font-size: 0.95rem;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  .cookie-banner {
    inset: auto 10px 10px;
  }

  .cookie-banner__content {
    padding: 18px;
    border-radius: 22px;
  }

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

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

  .hero-panel__media {
    min-height: 420px;
  }
}

@media (min-width: 981px) {
  .topbar__panel {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(calc(100% - 14px), var(--max-width));
  }

  .hero-panel,
  .services-band,
  .story-grid,
  .booking-stage,
  .faq-stage,
  .contact-band {
    padding: 18px;
  }

  .topbar {
    padding: 14px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.8vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8.6vw, 2.15rem);
  }

  .button {
    width: 100%;
  }

  .hero-panel__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-feature__footer {
    align-items: stretch;
  }

  .floating-note {
    padding: 16px;
  }

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

  .booking-step__index {
    width: 42px;
    height: 42px;
  }

  .booking-frame,
  .booking-status,
  #booking-widget {
    min-height: 560px;
    height: 560px;
  }
}

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

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