:root {
  --navy: #06233b;
  --navy-2: #0b3656;
  --turquoise: #16c7c2;
  --aqua: #dffbf8;
  --sand: #f5ead8;
  --sun: #f5b832;
  --cream: #fffaf2;
  --ink: #102030;
  --muted: #617180;
  --line: rgba(6, 35, 59, 0.12);
  --shadow: 0 24px 70px rgba(6, 35, 59, 0.18);
  --hero-ink: oklch(22% 0.055 232);
  --hero-cream: oklch(96% 0.018 83);
  --hero-sun: oklch(78% 0.145 76);
  --hero-sea: oklch(58% 0.12 205);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbfb 0%, var(--cream) 45%, #ffffff 100%);
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 250, 242, 0.84);
  backdrop-filter: blur(18px);
}

.hero-header {
  position: fixed;
  width: 100%;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  backdrop-filter: none;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.hero-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(3, 24, 39, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 32px rgba(3, 24, 39, 0.18);
}

.hero-header .brand,
.hero-header .main-nav,
.hero-header .main-nav a,
.hero-header .language-dropdown summary {
  color: white;
}

.hero-header .brand-mark,
.hero-header .header-cta {
  background: white;
  color: var(--navy);
}

.brand img {
  width: clamp(112px, 13vw, 174px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.34));
}

.language-dropdown {
  position: relative;
  z-index: 30;
}

.language-dropdown summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.language-dropdown summary::-webkit-details-marker {
  display: none;
}

.language-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.language-dropdown[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.flag-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(6, 35, 59, 0.12);
}

.flag-de {
  background-image: url("/assets/icons/flag-de.svg");
}

.flag-fr {
  background-image: url("/assets/icons/flag-fr.svg");
}

.flag-gb {
  background-image: url("/assets/icons/flag-gb.svg");
}

.flag-tn {
  background-image: url("/assets/icons/flag-tn.svg");
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(6, 35, 59, 0.16);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.language-menu a:hover,
.language-menu a.active {
  color: var(--navy);
  background: var(--aqua);
}

.brand,
.main-nav,
.hero-actions,
.facts,
.rating {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-family: "Playfair Display", serif;
}

.main-nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  color: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.main-nav a:hover {
  color: var(--navy);
}

.header-cta,
.primary-btn,
.secondary-btn {
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  padding: 11px 18px;
  color: white;
  background: var(--navy);
}

.section-pad {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  min-height: calc(100vh - 72px);
  background:
    radial-gradient(circle at 18% 20%, rgba(22, 199, 194, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(223, 251, 248, 0.8), rgba(255, 250, 242, 0));
}

.hero-full {
  position: relative;
  display: grid;
  min-height: min(760px, 92svh);
  padding: 136px clamp(18px, 6vw, 82px) clamp(56px, 7vw, 86px);
  align-items: end;
  overflow: hidden;
  background: var(--hero-ink);
}

.hero-home-split {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 0;
  padding: 0;
  align-items: stretch;
  direction: ltr;
}

.hero-full::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(28px, 5vw, 64px);
  z-index: 1;
  width: min(38vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--hero-cream) 78%, transparent), transparent);
}

.hero-home-split::after {
  display: none;
}

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

.hero-bg {
  object-fit: cover;
}

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

.hero-full .hero-bg {
  filter: brightness(1.14) contrast(1.08) saturate(1.05);
}

.hero-home-split .hero-bg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: min(760px, 92svh);
  object-fit: contain;
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 24, 39, 0.82), rgba(3, 24, 39, 0.38) 44%, rgba(3, 24, 39, 0.04)),
    linear-gradient(0deg, rgba(3, 24, 39, 0.62), transparent 48%);
}

.hero-full .hero-overlay {
  background:
    radial-gradient(circle at 76% 28%, color-mix(in oklch, var(--hero-sun) 28%, transparent), transparent 28%),
    linear-gradient(90deg, color-mix(in oklch, var(--hero-ink) 90%, transparent), color-mix(in oklch, var(--hero-ink) 42%, transparent) 48%, color-mix(in oklch, var(--hero-sea) 18%, transparent)),
    linear-gradient(0deg, color-mix(in oklch, var(--hero-ink) 82%, transparent), transparent 56%);
}

.hero-home-split .hero-overlay {
  background:
    linear-gradient(90deg, var(--hero-ink) 0%, color-mix(in oklch, var(--hero-ink) 88%, transparent) 43%, transparent 59%),
    radial-gradient(circle at 78% 32%, color-mix(in oklch, var(--hero-sun) 18%, transparent), transparent 30%);
}

.hero-full-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0;
  color: var(--hero-cream);
}

.hero-home-split .hero-full-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding: clamp(124px, 14svh, 168px) clamp(18px, 6vw, 82px) clamp(58px, 7vw, 90px);
}

[dir="rtl"] .hero-home-split .hero-full-copy {
  direction: rtl;
}

.hero-full-copy h1 {
  max-width: 830px;
  color: var(--hero-cream);
  font-size: clamp(44px, 6.6vw, 88px);
  text-shadow: 0 18px 54px rgba(3, 24, 39, 0.5);
}

.hero-home-split .hero-full-copy h1 {
  max-width: 620px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-full-copy p:not(.eyebrow) {
  max-width: 640px;
  color: color-mix(in oklch, var(--hero-cream) 82%, transparent);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.62;
}

.hero-full-copy .eyebrow {
  color: var(--hero-sun);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 26px;
}

.hero-meta span {
  padding: 10px 14px;
  border: 1px solid color-mix(in oklch, var(--hero-cream) 32%, transparent);
  border-radius: 999px;
  color: var(--hero-cream);
  background: color-mix(in oklch, var(--hero-ink) 62%, transparent);
  font-size: 13px;
  font-weight: 900;
}

.hero-full .primary-btn {
  color: var(--hero-ink);
  background: var(--hero-sun);
  box-shadow: 0 18px 34px color-mix(in oklch, var(--hero-ink) 42%, transparent);
}

.hero-full .secondary-btn {
  border-color: color-mix(in oklch, var(--hero-cream) 46%, transparent);
  color: var(--hero-cream);
  background: color-mix(in oklch, var(--hero-ink) 56%, transparent);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.page-hero-tours {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  min-height: min(760px, 82svh);
  background: var(--hero-ink);
}

.page-hero-about {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  min-height: min(760px, 82svh);
  background: var(--hero-ink);
}

.page-hero-tours .hero-bg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: min(760px, 82svh);
  object-position: 66% 62%;
}

.page-hero-about .hero-bg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: min(760px, 82svh);
  object-position: center center;
}

.page-hero-tours .hero-overlay {
  background:
    linear-gradient(90deg, var(--hero-ink) 0%, color-mix(in oklch, var(--hero-ink) 86%, transparent) 42%, transparent 58%),
    linear-gradient(0deg, color-mix(in oklch, var(--hero-ink) 42%, transparent), transparent 38%);
  pointer-events: none;
}

.page-hero-about .hero-overlay {
  background:
    linear-gradient(90deg, var(--hero-ink) 0%, color-mix(in oklch, var(--hero-ink) 86%, transparent) 42%, transparent 58%),
    linear-gradient(0deg, color-mix(in oklch, var(--hero-ink) 42%, transparent), transparent 38%);
  pointer-events: none;
}

.page-hero-tours .page-hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-top: clamp(128px, 15svh, 172px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.page-hero-about .page-hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-top: clamp(128px, 15svh, 172px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.legal-hero {
  padding: clamp(150px, 18vw, 210px) clamp(18px, 6vw, 82px) clamp(54px, 8vw, 96px);
  color: var(--hero-cream);
  background:
    radial-gradient(circle at 82% 18%, color-mix(in oklch, var(--hero-sun) 18%, transparent), transparent 28%),
    linear-gradient(135deg, var(--hero-ink), #05263a);
}

.legal-hero h1 {
  max-width: 900px;
  color: var(--hero-cream);
  font-size: clamp(46px, 7vw, 92px);
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  color: color-mix(in oklch, var(--hero-cream) 76%, transparent);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.legal-document {
  background: linear-gradient(180deg, var(--cream), #f8fbfb);
}

.legal-document article {
  max-width: 920px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(6, 35, 59, 0.08);
}

.legal-document h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: clamp(24px, 2.6vw, 34px);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  max-width: 75ch;
  color: var(--muted);
  line-height: 1.75;
}

.legal-document strong,
.legal-document a {
  color: var(--navy);
}

.legal-document a {
  font-weight: 800;
}

.legal-note {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 150px clamp(18px, 6vw, 82px) clamp(58px, 8vw, 96px);
  color: white;
}

.page-hero-copy h1 {
  color: white;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.45;
}

.glass {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.wide {
  max-width: 1080px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #087d83;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(52px, 8.5vw, 112px);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.045em;
}

h3 {
  color: var(--navy);
  font-size: 22px;
}

.hero-text,
.section-heading p,
.included-card p,
.route-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
}

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

.primary-btn,
.secondary-btn {
  padding: 15px 22px;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 16px 30px rgba(6, 35, 59, 0.22);
}

.secondary-btn {
  color: var(--navy);
  border: 1px solid var(--line);
  background: white;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 32px;
  width: min(260px, 72%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  color: white;
  background: rgba(6, 35, 59, 0.82);
  backdrop-filter: blur(16px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin-bottom: 6px;
  font-size: 24px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px) 42px;
}

.facts div {
  padding: 28px;
  background: var(--navy);
  color: white;
}

.facts div:first-child {
  border-radius: 28px 0 0 28px;
}

.facts div:last-child {
  border-radius: 0 28px 28px 0;
}

.facts span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.facts strong {
  font-size: clamp(17px, 2vw, 24px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.compact {
  margin-bottom: 28px;
}

.experience-grid,
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(6, 35, 59, 0.07);
}

.story-grid span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--turquoise);
  font-weight: 900;
}

.story-grid p,
.tour-list p,
.split-showcase p {
  color: var(--muted);
  line-height: 1.7;
}

.crew {
  background: linear-gradient(180deg, #ffffff, var(--cream));
}

.crew-preview {
  background:
    radial-gradient(circle at 12% 12%, rgba(22, 199, 194, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff, var(--cream));
}

.crew-preview .section-heading {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.crew .section-heading p:not(.eyebrow) + p {
  margin-top: -6px;
}

.crew-cover {
  position: relative;
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: 40px;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.crew-cover img {
  width: 100%;
  height: clamp(360px, 48vw, 640px);
  object-fit: cover;
}

.crew-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 24, 39, 0.52), transparent 46%);
  pointer-events: none;
}

.crew-cover figcaption {
  position: absolute;
  left: clamp(18px, 4vw, 40px);
  bottom: clamp(18px, 4vw, 36px);
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: white;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
}

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

.crew-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(6, 35, 59, 0.1);
}

.crew-card > div:last-child {
  padding: 28px;
}

.crew-card h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.crew-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.crew-photo {
  min-height: 340px;
  background: center / cover no-repeat var(--navy);
}

.crew-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.crew-photo.placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(6, 35, 59, 0.42), rgba(22, 199, 194, 0.18)),
    url("https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1200,fit=crop/GZnTb3gkjUMIBHXw/img-20260516-wa0012-YyfHLIgJNQFhPdyG.jpg") center / cover;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 82px;
  font-weight: 700;
}

.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-showcase img,
.tour-list img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.split-showcase .primary-btn {
  display: inline-flex;
  margin-top: 16px;
}

.tour-list {
  display: grid;
  gap: 42px;
  padding-top: 0;
}

.tour-list article {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(6, 35, 59, 0.08);
}

.tour-featured {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, color-mix(in oklch, var(--turquoise) 18%, transparent), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(223, 251, 248, 0.72));
}

.tour-featured::after {
  content: "";
  position: absolute;
  right: clamp(22px, 4vw, 46px);
  bottom: clamp(22px, 4vw, 46px);
  width: clamp(90px, 13vw, 170px);
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--turquoise) 42%, transparent);
  border-radius: 50%;
  opacity: 0.36;
  pointer-events: none;
}

.tour-featured > img,
.tour-featured .tour-content {
  position: relative;
  z-index: 1;
}

.tour-content {
  align-self: center;
}

.tour-detail-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(22px, 3vw, 30px) 0 0;
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid color-mix(in oklch, var(--navy) 12%, transparent);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(6, 35, 59, 0.08);
}

.tour-detail-panel div {
  min-height: 92px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 242, 0.72));
}

.tour-detail-panel span {
  display: block;
  margin-bottom: 8px;
  color: color-mix(in oklch, var(--muted) 86%, var(--turquoise));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-detail-panel strong {
  display: block;
  color: var(--navy);
  font-size: clamp(0.98rem, 1.4vw, 1.14rem);
  line-height: 1.3;
}

.tour-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(6, 35, 59, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-inline-cta::after {
  content: "→";
  font-size: 1rem;
}

.tour-inline-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(6, 35, 59, 0.24);
}

.tour-specs {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.tour-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.5;
}

.tour-specs li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--turquoise);
  flex-shrink: 0;
  opacity: 0.5;
}

.tour-list article:nth-child(even) img {
  order: 2;
}

.experience-grid article,
.review-cards article {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(6, 35, 59, 0.07);
}

.experience-grid article {
  position: relative;
  overflow: hidden;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-grid article::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(22, 199, 194, 0.13);
}

.experience-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(6, 35, 59, 0.12);
}

.experience-grid article:nth-child(2) {
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 35, 59, 0.94), rgba(12, 84, 105, 0.86)),
    url("assets/images/gallery/WhatsApp Image 2026-05-21 at 14.00.30 (3).jpeg") center / cover;
}

.experience-grid article:nth-child(2) h3,
.experience-grid article:nth-child(2) span,
.experience-grid article:nth-child(2) p {
  color: white;
}

.experience-grid span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--turquoise);
  font-weight: 900;
}

.experience-grid p,
.review-cards p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-section {
  background: var(--navy);
}

.gallery-section h2,
.gallery-section .eyebrow {
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 26px;
  cursor: pointer;
  background: transparent;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-video {
  display: block;
  cursor: default;
  background: #031827;
}

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

.featured-video video {
  transform: scale(1.18);
  transform-origin: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: block;
  width: 64px;
  height: 64px;
  text-indent: -999px;
  overflow: hidden;
  border-radius: 50%;
  color: transparent;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(6, 35, 59, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16.04 2.67A13.18 13.18 0 0 0 4.63 22.46L3 29.33l7.03-1.58a13.2 13.2 0 1 0 6.01-25.08Zm0 23.98c-2.02 0-3.98-.56-5.7-1.62l-.41-.25-4.17.94.97-4.05-.27-.42a10.77 10.77 0 1 1 9.58 5.4Zm5.9-8.08c-.32-.16-1.9-.94-2.2-1.04-.3-.11-.52-.16-.74.16-.22.32-.85 1.04-1.04 1.25-.19.21-.38.24-.7.08-.32-.16-1.36-.5-2.6-1.6-.96-.86-1.61-1.92-1.8-2.24-.19-.32-.02-.5.14-.66.15-.15.32-.38.49-.57.16-.19.22-.32.32-.54.11-.21.05-.4-.03-.56-.08-.16-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56h-.63c-.22 0-.57.08-.87.4-.3.32-1.15 1.12-1.15 2.73s1.18 3.17 1.34 3.38c.16.22 2.32 3.55 5.62 4.98.79.34 1.4.54 1.88.69.79.25 1.5.21 2.07.13.63-.09 1.9-.78 2.17-1.53.27-.75.27-1.39.19-1.53-.08-.13-.3-.21-.62-.37Z'/%3E%3C/svg%3E");
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 46px rgba(6, 35, 59, 0.32);
}

[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 22px;
}

.included-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 42px;
  background: linear-gradient(135deg, var(--sand), #ffffff);
  box-shadow: var(--shadow);
}

.safety-card {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  padding: clamp(28px, 5.5vw, 68px);
  color: var(--hero-cream);
  background:
    radial-gradient(circle at 92% 12%, color-mix(in oklch, var(--hero-sun) 18%, transparent), transparent 28%),
    linear-gradient(135deg, var(--hero-ink), #07314a 62%, #0b4356);
}

.safety-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  pointer-events: none;
}

.safety-copy,
.safety-list {
  position: relative;
  z-index: 1;
}

.safety-copy {
  display: flex;
  max-width: 520px;
  flex-direction: column;
  justify-content: space-between;
}

.safety-copy .eyebrow {
  color: color-mix(in oklch, var(--hero-sun) 82%, white);
}

.safety-copy h2 {
  max-width: 11ch;
  margin-bottom: 22px;
  color: var(--hero-cream);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
}

.safety-copy p:not(.eyebrow) {
  max-width: 48ch;
  color: color-mix(in oklch, var(--hero-cream) 74%, transparent);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.safety-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
}

.safety-list div {
  min-height: 156px;
  padding: clamp(18px, 2.6vw, 28px);
  background: rgba(255, 250, 242, 0.075);
}

.safety-list span {
  display: block;
  margin-bottom: clamp(24px, 4vw, 46px);
  color: color-mix(in oklch, var(--hero-sun) 84%, white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.safety-list strong {
  display: block;
  color: var(--hero-cream);
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
  line-height: 1.2;
}

.safety-list p {
  max-width: 28ch;
  margin: 8px 0 0;
  color: color-mix(in oklch, var(--hero-cream) 68%, transparent);
  font-size: 0.94rem;
  line-height: 1.55;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.route,
.reviews,
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.route-map {
  padding: 36px;
  border-radius: 34px;
  color: white;
  background: linear-gradient(145deg, var(--navy), #0c5469);
  box-shadow: var(--shadow);
}

.route-map span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-map strong {
  display: block;
  font-size: 28px;
}

.route-line {
  width: 2px;
  height: 54px;
  margin: 14px 0 14px 18px;
  background: linear-gradient(var(--turquoise), rgba(255, 255, 255, 0.18));
}

.reviews {
  background:
    radial-gradient(circle at 85% 12%, rgba(22, 199, 194, 0.2), transparent 30%),
    linear-gradient(180deg, var(--aqua), rgba(223, 251, 248, 0));
}

.faq {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 12px 28px rgba(6, 35, 59, 0.06);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--navy);
  cursor: pointer;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--turquoise);
  font-size: 28px;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.rating {
  align-items: baseline;
  gap: 12px;
}

.rating strong {
  color: var(--navy);
  font-size: 62px;
}

.rating span {
  color: #f5b832;
  letter-spacing: 0.08em;
}

.rating small {
  display: block;
  color: var(--muted);
}

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

.review-cards article {
  padding: 24px;
}

.review-cards span {
  display: block;
  margin-bottom: 12px;
  color: var(--sun);
}

.review-cards small {
  color: #087d83;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  background: var(--navy);
  color: white;
}

.contact h2,
.contact .eyebrow {
  color: white;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(3, 24, 39, 0.28);
}

.contact-option span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-option strong {
  font-size: 17px;
  overflow-wrap: anywhere;
}

.contact-option.whatsapp {
  border-color: rgba(37, 211, 102, 0.55);
  background: #25d366;
  color: var(--navy);
}

.contact-option.whatsapp span {
  color: rgba(6, 35, 59, 0.68);
}

.contact-option.email {
  background: rgba(255, 255, 255, 0.12);
}

.contact-map {
  flex: 1 1 100%;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(3, 24, 39, 0.28);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.contact-map a {
  display: block;
  padding: 14px 18px;
  color: white;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.contact-map a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.65fr) minmax(240px, 0.95fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(52px, 7vw, 86px);
  color: color-mix(in oklch, var(--hero-cream) 88%, transparent);
  background:
    radial-gradient(circle at 8% 22%, color-mix(in oklch, var(--hero-sea) 15%, transparent), transparent 32%),
    #031827;
}

.footer-brand {
  display: grid;
  gap: 22px;
  max-width: 430px;
}

.footer-brand img {
  width: clamp(138px, 16vw, 188px);
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.22));
}

.footer-brand div {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  color: var(--hero-cream);
  font-size: 18px;
}

.footer-brand span,
.footer-contact a,
.footer-links a {
  color: color-mix(in oklch, var(--hero-cream) 76%, transparent);
}

.footer-brand span {
  max-width: 44ch;
  line-height: 1.55;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 11px;
}

.footer-links::before,
.footer-contact::before {
  margin-bottom: 4px;
  color: var(--hero-sun);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links::before {
  content: "Navigation";
}

.footer-contact::before {
  content: "Kontakt";
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  line-height: 1.35;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--hero-cream);
}

.footer-contact a {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: currentColor;
  opacity: 0.56;
}

.footer-social span {
  font-size: 0.94rem;
}

.hero-home-split .hero-meta {
  display: none;
}

[dir="rtl"] body {
  font-family: "Noto Kufi Arabic", Inter, system-ui, sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2 {
  font-family: "Noto Kufi Arabic", Inter, system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

[dir="rtl"] .main-nav,
[dir="rtl"] .hero-actions,
[dir="rtl"] .brand,
[dir="rtl"] .rating {
  flex-direction: row-reverse;
}

[dir="rtl"] .site-footer {
  direction: rtl;
}

[dir="rtl"] .footer-links::before {
  content: "روابط";
}

[dir="rtl"] .footer-contact::before {
  content: "اتصال";
}

[dir="rtl"] .route-line {
  margin-right: 18px;
  margin-left: 0;
}

[dir="rtl"] .floating-card {
  right: auto;
  left: -18px;
}

[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(3, 24, 39, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: white;
  font-size: 30px;
  cursor: pointer;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(3, 24, 39, 0.88);
  overflow-y: auto;
}

.legal-modal.is-open {
  display: grid;
}

.legal-modal .legal-modal-content {
  position: relative;
  max-height: 86vh;
  width: min(680px, 100%);
  margin: auto;
  background: white;
  border-radius: 24px;
  padding: 48px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-modal-body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.legal-modal-body h1 {
  font-family: inherit;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  color: var(--navy);
}

.legal-modal-body h2 {
  font-family: inherit;
  font-size: 1.1rem;
  margin: 1.5em 0 0.5em;
  color: var(--navy);
}

.legal-modal-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75em;
  color: var(--ink);
}

.legal-modal-body a {
  color: var(--hero-sun);
  text-decoration: underline;
}

.legal-modal-body .legal-note {
  margin-top: 2em;
  font-style: italic;
  color: #666;
  font-size: 0.85rem;
}

.legal-modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: white;
  font-size: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1;
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: grid;
    order: 3;
    color: white;
  }

  .main-nav {
    order: 5;
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(3, 24, 39, 0.94);
    box-shadow: 0 18px 42px rgba(3, 24, 39, 0.22);
  }

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

  .main-nav a {
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .language-dropdown {
    order: 2;
  }

  .header-cta {
    display: none;
    order: 6;
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

  .site-header.nav-open .header-cta {
    display: flex;
  }

  .hero,
  .hero-home-split,
  .page-hero-tours,
  .page-hero-about,
  .included-card,
  .route,
  .reviews,
  .contact,
  .split-showcase,
  .tour-list article {
    grid-template-columns: 1fr;
  }

  .hero-home-split {
    min-height: auto;
    padding: 0;
  }

  .hero-home-split .hero-full-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 142px clamp(18px, 5vw, 46px) 48px;
  }

  .hero-home-split .hero-bg {
    grid-column: 1;
    grid-row: 2;
    min-height: 420px;
    height: 420px;
    object-position: center right;
  }

  .hero-home-split .hero-overlay {
    background:
      linear-gradient(180deg, var(--hero-ink) 0%, color-mix(in oklch, var(--hero-ink) 82%, transparent) 50%, transparent 70%),
      linear-gradient(0deg, color-mix(in oklch, var(--hero-ink) 46%, transparent), transparent 42%);
  }

  .page-hero-tours .hero-bg {
    grid-column: 1;
    grid-row: 2;
    min-height: 420px;
    height: 420px;
    object-position: center right;
  }

  .page-hero-about .hero-bg {
    grid-column: 1;
    grid-row: 2;
    min-height: 420px;
    height: 420px;
    object-position: center center;
  }

  .page-hero-tours .page-hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding-bottom: 44px;
  }

  .page-hero-about .page-hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding-bottom: 44px;
  }

  .page-hero-tours .hero-overlay {
    background:
      linear-gradient(180deg, var(--hero-ink) 0%, color-mix(in oklch, var(--hero-ink) 82%, transparent) 52%, transparent 72%),
      linear-gradient(0deg, color-mix(in oklch, var(--hero-ink) 58%, transparent), transparent 42%);
  }

  .page-hero-about .hero-overlay {
    background:
      linear-gradient(180deg, var(--hero-ink) 0%, color-mix(in oklch, var(--hero-ink) 82%, transparent) 52%, transparent 72%),
      linear-gradient(0deg, color-mix(in oklch, var(--hero-ink) 58%, transparent), transparent 42%);
  }

  .hero-full {
    min-height: 88svh;
    padding: 132px clamp(18px, 5vw, 46px) 58px;
  }

  .hero-home-split {
    min-height: auto;
    padding: 0;
  }

  .hero-home-split .hero-full-copy {
    padding: 132px clamp(18px, 5vw, 46px) 42px;
  }

  .hero-full::after {
    right: clamp(18px, 5vw, 46px);
    left: clamp(18px, 5vw, 46px);
    width: auto;
  }

  .hero-media img {
    min-height: 420px;
  }

  .facts,
  .experience-grid,
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-list article:nth-child(even) img {
    order: 0;
  }

  .tour-featured::after {
    top: 26px;
    right: 26px;
    bottom: auto;
  }

  .facts div:first-child,
  .facts div:last-child {
    border-radius: 0;
  }

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

  .gallery-item.large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-copy h2 {
    max-width: 13ch;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .language-dropdown {
    width: auto;
  }

  .language-dropdown summary {
    justify-content: center;
  }

  .language-menu {
    right: 50%;
    transform: translateX(50%);
  }

  [dir="rtl"] .language-menu {
    right: 50%;
    left: auto;
  }

  .brand span:last-child {
    max-width: 110px;
    line-height: 1.05;
  }

  .header-cta {
    padding: 10px 13px;
  }

  .brand img {
    width: 108px;
  }

  .section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-full-copy,
  .page-hero-copy {
    padding-top: 132px;
  }

  .hero-full {
    min-height: 86svh;
    padding: 122px 16px 46px;
  }

  .hero-home-split {
    min-height: auto;
    padding: 0;
  }

  .hero-home-split .hero-full-copy {
    padding: 122px 16px 40px;
  }

  .hero-home-split .hero-bg {
    min-height: 330px;
    height: 330px;
    object-fit: cover;
    object-position: center center;
  }

  .page-hero-tours .hero-bg {
    min-height: 340px;
    height: 340px;
  }

  .page-hero-tours .page-hero-copy {
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .page-hero-about .hero-bg {
    min-height: 340px;
    height: 340px;
  }

  .page-hero-about .page-hero-copy {
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .hero-full-copy {
    padding-top: 0;
  }

  .hero-full-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-full-copy h1 {
    font-size: clamp(38px, 11.5vw, 52px);
    line-height: 0.98;
  }

  .hero-home-split .hero-full-copy h1 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.04;
  }

  .hero-meta span {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-media img {
    min-height: 330px;
    border-radius: 28px;
  }

  .floating-card {
    right: 14px;
    bottom: 14px;
  }

  [dir="rtl"] .floating-card {
    right: auto;
    left: 14px;
  }

  .facts,
  .experience-grid,
  .story-grid,
  .crew-grid,
  .gallery-grid,
  .amenities,
  .safety-list,
  .tour-detail-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .safety-card::before {
    inset: 14px;
    border-radius: 28px;
  }

  .safety-list div {
    min-height: auto;
  }

  .safety-list span {
    margin-bottom: 18px;
  }

  .tour-detail-panel div {
    min-height: auto;
  }

  .facts {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

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