:root {
  --ink: #102434;
  --ink-soft: #243c4d;
  --ocean: #007da0;
  --ocean-dark: #005b72;
  --sand: #ffe4c4;
  --sand-glass: rgba(255, 228, 196, 0.58);
  --sand-soft: rgba(255, 228, 196, 0.32);
  --aqua-water: #00ffff;
  --aqua-glass: rgba(0, 255, 255, 0.18);
  --aqua-soft: rgba(0, 255, 255, 0.08);
  --aqua: #d8f4f4;
  --coral: #f06f4f;
  --gold: #f5b84b;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: #c8dadd;
  --shadow: 0 18px 55px rgba(16, 36, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, var(--sand-glass) 0%, rgba(255, 250, 242, 0.86) 34%, var(--aqua-soft) 68%, rgba(255, 255, 255, 0.92) 100%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background:
    linear-gradient(90deg, rgba(255, 228, 196, 0.9), rgba(0, 255, 255, 0.13) 48%, rgba(255, 250, 242, 0.94)),
    rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(217, 228, 230, 0.8);
  backdrop-filter: blur(18px);
}

.topline {
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  width: auto;
  height: 62px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  display: block;
  height: 100%;
  width: auto;
  max-width: 116px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 125, 160, 0.18));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ocean), var(--sand));
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--ocean-dark);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 4px 8px;
  border: 1px solid rgba(0, 125, 160, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  box-shadow: 0 10px 24px rgba(16, 36, 52, 0.08);
}

.language-switcher svg {
  width: 1rem;
  height: 1rem;
  color: var(--ocean-dark);
}

.language-switcher button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  background: var(--ocean-dark);
  color: var(--white);
}

.icon-link,
.menu-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(240, 111, 79, 0.28);
}

.btn-primary:hover {
  background: #df6042;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
}

.hidden-field {
  display: none;
}

.btn-small {
  min-height: 42px;
  padding-inline: 14px;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 228, 196, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(0, 255, 255, 0.08), transparent 50%);
  content: "";
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(120deg, rgba(0, 255, 255, 0.09), rgba(255, 228, 196, 0.13)),
    linear-gradient(120deg, rgba(16, 36, 52, 0.28), rgba(16, 36, 52, 0.78)),
    image-set(
      url("hero-home-makadi.webp") type("image/webp"),
      url("hero-home-makadi.jpg") type("image/jpeg")
    ) center 50% / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 36, 52, 0.88), rgba(16, 36, 52, 0.46) 52%, rgba(16, 36, 52, 0.14)),
    linear-gradient(180deg, rgba(16, 36, 52, 0) 65%, rgba(16, 36, 52, 0.75));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 380px;
  gap: 64px;
  align-items: end;
  padding: 76px 0 60px;
}

.hero-copy {
  color: var(--white);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--ocean-dark);
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: 4.2rem;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero h1 {
  max-width: 900px;
  font-size: 3.72rem;
  line-height: 1.04;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-request {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 26px;
  box-shadow: var(--shadow);
}

.quick-request h2 {
  font-size: 1.55rem;
}

.quick-list {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.quick-list span {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 700;
}

.trust-strip {
  background:
    linear-gradient(90deg, rgba(255, 228, 196, 0.66), rgba(0, 255, 255, 0.1)),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.strip-grid > div {
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.strip-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.award-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  text-decoration: none;
  transition: transform 160ms ease;
}

.award-badges:hover {
  transform: translateY(-2px);
}

.award-badges img {
  height: 56px;
  width: auto;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  padding: 8px 12px;
  box-shadow: 0 8px 20px rgba(16, 36, 52, 0.12);
}

.award-badges:hover img {
  box-shadow: 0 14px 30px rgba(16, 36, 52, 0.18);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.strip-grid span {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.section {
  padding: 96px 0;
}

.intro-section {
  padding-bottom: 42px;
  background:
    linear-gradient(180deg, rgba(255, 228, 196, 0.24), rgba(255, 250, 242, 0.84));
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.split > p,
.split p {
  color: var(--ink-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.compact {
  color: var(--white);
}

.section-heading.compact p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 88px 0 74px;
  background:
    linear-gradient(135deg, rgba(255, 228, 196, 0.76), rgba(0, 255, 255, 0.12)),
    var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.page-hero-grid > div {
  min-width: 0;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  overflow-wrap: break-word;
}

.page-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.team-hero .page-hero-image {
  aspect-ratio: 16 / 11;
}

.legal-hero {
  background:
    linear-gradient(135deg, rgba(255, 228, 196, 0.84), rgba(255, 255, 255, 0.86) 52%, rgba(0, 255, 255, 0.12)),
    var(--paper);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.offer-card,
.person-card,
.legal-note {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 36, 52, 0.08);
}

.feature-card.large,
.offer-card.wide {
  grid-column: span 2;
}

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

.feature-card.large img,
.offer-card.wide img {
  height: 330px;
}

.feature-card > div,
.offer-card > div {
  padding: 22px;
}

.feature-card p,
.offer-card p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.feature-card a,
.offer-card a {
  color: var(--ocean-dark);
  font-weight: 900;
  text-decoration: none;
}

.offer-catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.offer-catalog-intro h2 {
  max-width: 720px;
}

.offer-catalog-intro p {
  max-width: 760px;
  color: var(--ink-soft);
}

.offer-catalog {
  display: grid;
  gap: 56px;
}

.offer-filter {
  position: sticky;
  top: 76px;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 34px;
  padding: 12px;
  border: 1px solid rgba(0, 125, 160, 0.12);
  border-radius: 8px;
  background: rgba(255, 251, 246, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 32px rgba(16, 36, 52, 0.08);
}

.filter-chip {
  max-width: 100%;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(0, 125, 160, 0.2);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  line-height: 1.15;
  white-space: normal;
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--ocean-dark);
  color: var(--white);
  border-color: var(--ocean-dark);
}

.offer-category {
  display: grid;
  gap: 22px;
}

.offer-category-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.offer-category-header h2 {
  margin-bottom: 10px;
}

.offer-category-header p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.offer-category-header > span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 125, 160, 0.18);
  border-radius: 999px;
  background: rgba(0, 255, 255, 0.08);
  color: var(--ocean-dark);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
}

.pill.muted {
  border-color: rgba(16, 36, 52, 0.1);
  background: rgba(255, 228, 196, 0.36);
  color: var(--ink);
}

.offer-card {
  display: flex;
  flex-direction: column;
}

.offer-card-body {
  display: flex;
  min-height: 370px;
  flex: 1;
  flex-direction: column;
  gap: 12px;
}

.offer-card h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.15;
}

.offer-card p {
  margin-bottom: 0;
}

.offer-card-body > p {
  display: -webkit-box;
  min-height: 4.65em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.offer-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.42;
}

.offer-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.offer-meta,
.offer-card-actions,
.offer-dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-card-actions {
  margin-top: auto;
}

.btn-compact {
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.offer-dialog {
  width: min(1060px, calc(100% - 32px));
  max-height: min(88vh, 860px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(7, 30, 43, 0.34);
}

.offer-dialog::backdrop {
  background: rgba(7, 30, 43, 0.6);
  backdrop-filter: blur(5px);
}

.offer-dialog-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  max-height: inherit;
}

.offer-dialog-media {
  position: relative;
  min-height: 100%;
  background: var(--paper);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.offer-dialog-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.25s ease;
}

.offer-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(7, 30, 43, 0.58);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.offer-gallery-nav:focus {
  outline: none;
}

.offer-gallery-nav:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.offer-gallery-nav:hover {
  background: rgba(7, 30, 43, 0.78);
  transform: translateY(-50%) scale(1.04);
}

.offer-gallery-prev {
  left: 14px;
}

.offer-gallery-next {
  right: 14px;
}

.offer-gallery-counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 30, 43, 0.66);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  user-select: none;
  -webkit-user-select: none;
}

.offer-gallery-dots {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  max-width: calc(100% - 110px);
  flex-wrap: wrap;
  gap: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.offer-gallery-dots button {
  -webkit-tap-highlight-color: transparent;
}

.offer-gallery-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.offer-gallery-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--white);
}

.offer-gallery-dots span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.is-hidden {
  display: none !important;
}

.offer-dialog-content {
  display: flex;
  max-height: inherit;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  padding: 36px;
}

.offer-dialog-content h2 {
  margin-bottom: 0;
}

.offer-dialog-teaser {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.offer-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.detail-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 251, 246, 0.78);
}

.detail-block:first-child,
.dialog-cta-block {
  grid-column: 1 / -1;
}

.detail-block h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.detail-block p,
.detail-block ul {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.detail-block ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.offer-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 36, 52, 0.12);
}

.dialog-cta-block {
  padding: 18px;
  border: 1px solid rgba(0, 125, 160, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 228, 196, 0.55), rgba(0, 255, 255, 0.08));
}

.dialog-cta-block h3 {
  margin-bottom: 8px;
}

.dialog-cta-block p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(255, 228, 196, 0.34), rgba(255, 255, 255, 0.8) 48%, rgba(0, 255, 255, 0.08)),
    var(--white);
}

.media-section {
  background:
    linear-gradient(135deg, rgba(0, 255, 255, 0.13), rgba(255, 228, 196, 0.72)),
    var(--paper);
}

.media-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.media-board {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.video-tile {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(16, 36, 52, 0.12);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-tile.large {
  grid-row: span 2;
  min-height: 500px;
}

.video-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.82;
}

.video-tile video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  background: var(--ink);
}

.video-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 36, 52, 0.04), rgba(16, 36, 52, 0.78));
  content: "";
  pointer-events: none;
}

.video-tile div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  pointer-events: none;
}

.video-tile svg {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  padding: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ocean-dark);
}

.video-tile span,
.video-tile strong {
  display: block;
}

.video-tile span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-tile strong {
  margin-top: 4px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 36, 52, 0.08);
}

.tour-card.featured {
  grid-column: span 2;
}

.tour-card.wide {
  grid-column: span 2;
}

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

.tour-card.featured img {
  height: 318px;
}

.card-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 0 9px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.2), rgba(255, 228, 196, 0.38));
  color: var(--ocean-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.card-body a,
.story-panel a {
  color: var(--ocean-dark);
  font-weight: 900;
  text-decoration: none;
}

.section-ink {
  background:
    linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 228, 196, 0.1)),
    var(--ink);
  color: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.benefit svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--gold);
}

.benefit p {
  color: rgba(255, 255, 255, 0.72);
}

.compact-benefits .benefit {
  min-height: 210px;
}

.benefit.light {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

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

.transfer-section {
  background:
    linear-gradient(135deg, rgba(255, 228, 196, 0.34), rgba(255, 255, 255, 0.82) 42%, rgba(0, 255, 255, 0.08)),
    var(--white);
}

.transfer-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.image-stack {
  position: relative;
  min-height: 470px;
}

.image-main,
.image-small {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-main {
  inset: 0 auto auto 0;
  width: 82%;
  height: 380px;
}

.image-small {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 250px;
  border: 8px solid var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 750;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--ocean);
}

.proof-section {
  background:
    linear-gradient(135deg, rgba(0, 255, 255, 0.16), rgba(255, 228, 196, 0.34)),
    #eef7f6;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.proof-card,
.metric,
.story-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 36, 52, 0.08);
}

.proof-card {
  padding: 28px;
}

.proof-card img {
  width: 210px;
  margin-bottom: 28px;
}

.metric {
  display: grid;
  align-content: center;
  padding: 24px;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ocean-dark);
  font-size: 2.1rem;
  line-height: 1;
}

.metric span {
  color: var(--ink-soft);
  font-weight: 700;
}

.team-grid {
  align-items: stretch;
}

.story-panel {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255, 228, 196, 0.72), rgba(0, 255, 255, 0.16)),
    var(--white);
}

.story-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  margin-bottom: 22px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 62%;
}

.assistant-section {
  background:
    linear-gradient(135deg, rgba(0, 255, 255, 0.16), rgba(255, 228, 196, 0.62)),
    var(--paper);
}

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

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

.assistant-flow {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.assistant-flow span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(0, 125, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 850;
}

.message-preview {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(0, 125, 160, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 228, 196, 0.42)),
    var(--white);
  box-shadow: var(--shadow);
}

.message-bubble {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 750;
}

.message-bubble.incoming {
  justify-self: start;
  background: rgba(16, 36, 52, 0.08);
  color: var(--ink);
}

.message-bubble.outgoing {
  justify-self: end;
  background: rgba(0, 125, 160, 0.95);
  color: var(--white);
}

.message-bubble.muted {
  background: rgba(255, 228, 196, 0.78);
  color: var(--ink);
}

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

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

.person-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr;
}

.person-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.person-card div {
  padding: 30px;
  align-self: center;
}

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

.legal-note {
  display: grid;
  gap: 12px;
  padding: 28px;
  align-self: center;
}

.legal-note svg {
  width: 38px;
  height: 38px;
  color: var(--ocean-dark);
}

.legal-note span {
  color: var(--ink-soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 8px;
}

.legal-sidebar a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-weight: 850;
  text-decoration: none;
}

.legal-content {
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 36, 52, 0.08);
}

.standalone-legal {
  max-width: 920px;
}

.legal-content section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  font-size: 1.55rem;
}

.legal-content p,
.legal-status {
  color: var(--ink-soft);
}

.inquiry-section {
  background:
    linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 228, 196, 0.12)),
    var(--ocean-dark);
  color: var(--white);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.inquiry-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-options a,
.contact-options span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7fbfb;
  color: var(--ink);
  padding: 12px 13px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(0, 125, 160, 0.2);
  border-color: var(--ocean);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: var(--ink-soft) !important;
  font-size: 1rem;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid a,
.footer-grid span {
  display: block;
}

.footer-grid span {
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.footer-grid a {
  margin-top: 8px;
  text-decoration: none;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #082a18;
  font-size: 0;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.sticky-whatsapp svg {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
}

svg {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2.3;
}

@media (max-width: 1040px) {
  .topline {
    grid-template-columns: auto auto 1fr;
  }

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

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .main-nav a {
    padding: 12px;
    border-radius: 6px;
  }

  .main-nav a:hover {
    background: #f0f7f8;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-self: end;
  }

  .header-actions .icon-link,
  .header-actions .btn-small {
    display: none;
  }

  .hero-grid,
  .split,
  .transfer-grid,
  .inquiry-grid,
  .assistant-grid,
  .media-grid,
  .page-hero-grid,
  .legal-layout,
  .offer-catalog-intro,
  .offer-category-header,
  .offer-dialog-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .inquiry-grid,
  .split,
  .assistant-grid,
  .media-grid,
  .page-hero-grid,
  .legal-layout {
    gap: 36px;
  }

  .quick-request {
    max-width: 520px;
  }

  .tour-grid,
  .feature-grid,
  .offer-grid,
  .benefit-grid,
  .proof-grid,
  .team-cards,
  .offer-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-dialog-media img {
    min-height: 320px;
    max-height: 380px;
  }

  .offer-dialog-content {
    padding: 28px;
  }

  .tour-card.featured,
  .tour-card.wide,
  .feature-card.large,
  .offer-card.wide {
    grid-column: span 1;
  }

  .tour-card.featured img {
    height: 235px;
  }

  .proof-card {
    grid-column: span 2;
  }

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

  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .container,
  .topline {
    width: min(100% - 28px, 1160px);
  }

  .topline {
    min-height: 66px;
    gap: 12px;
  }

  .brand-mark {
    height: 46px;
  }

  .brand small {
    max-width: 150px;
  }

  .language-switcher {
    gap: 3px;
    min-height: 40px;
    padding: 3px 5px;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 34px;
    padding: 0 5px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero-media {
    background-position: 47% center;
  }

  .hero-grid {
    padding: 42px 0 28px;
  }

  .hero-copy {
    width: calc(100vw - 28px);
    max-width: 100%;
  }

  h1 {
    max-width: 340px;
    font-size: 2.12rem;
    line-height: 1.05;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .hero-text {
    width: 100%;
    max-width: 330px;
  }

  h2 {
    font-size: 2rem;
  }

  .section h2,
  .section p,
  .strip-grid strong,
  .strip-grid span {
    max-width: 330px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-proof {
    display: grid;
  }

  .section {
    padding: 64px 0;
  }

  .strip-grid,
  .tour-grid,
  .feature-grid,
  .offer-grid,
  .benefit-grid,
  .proof-grid,
  .footer-grid,
  .form-row,
  .media-board,
  .team-cards,
  .person-card,
  .legal-sidebar,
  .offer-detail-grid {
    grid-template-columns: 1fr;
  }

  .offer-catalog {
    gap: 44px;
  }

  .offer-filter {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
  }

  .filter-chip {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    text-align: center;
  }

  .offer-catalog-intro,
  .offer-category-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-hero p,
  .offer-catalog-intro p,
  .offer-category-header p {
    max-width: 100%;
  }

  .page-hero {
    padding: 56px 0 52px;
  }

  .page-hero-image {
    min-height: 280px;
  }

  .feature-card img,
  .feature-card.large img,
  .offer-card img,
  .offer-card.wide img {
    height: 240px;
  }

  .offer-card-body {
    min-height: 0;
  }

  .offer-card-actions {
    display: grid;
  }

  .offer-dialog {
    width: calc(100% - 20px);
    max-height: 92vh;
  }

  .offer-dialog-media img {
    min-height: 220px;
    max-height: 260px;
  }

  .offer-gallery-nav {
    width: 38px;
    height: 38px;
  }

  .offer-gallery-prev {
    left: 10px;
  }

  .offer-gallery-next {
    right: 10px;
  }

  .offer-gallery-counter {
    right: 12px;
    bottom: 12px;
    font-size: 0.8rem;
  }

  .offer-gallery-dots {
    left: 12px;
    bottom: 14px;
    max-width: calc(100% - 96px);
  }

  .offer-dialog-content {
    gap: 12px;
    padding: 24px 18px 28px;
  }

  .detail-block,
  .dialog-cta-block {
    padding: 14px;
  }

  .person-card img {
    min-height: 320px;
  }

  .person-card div,
  .legal-content {
    padding: 22px;
  }

  .video-tile.large,
  .video-tile {
    min-height: 320px;
  }

  .strip-grid > div,
  .strip-grid > div:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-card {
    grid-column: span 1;
  }

  .image-stack {
    min-height: 360px;
  }

  .image-main {
    width: 92%;
    height: 285px;
  }

  .image-small {
    width: 58%;
    height: 185px;
  }

  .quick-request,
  .lead-form,
  .story-panel,
  .proof-card,
  .message-preview {
    padding: 20px;
  }

  .message-bubble {
    max-width: 100%;
  }

  .quick-request {
    display: none;
  }

  .sticky-whatsapp {
    left: auto;
    right: 16px;
    bottom: 16px;
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Über-uns: langer Team-Text */
.team-story {
  max-width: 760px;
}

.team-story p {
  margin: 0 0 1.1rem;
  line-height: 1.75;
  color: var(--ink);
}

.team-story .team-story-highlight {
  margin: 1.6rem 0;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--coral);
}

/* Offizielles WhatsApp-Icon in Buttons/Links */
.wa-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}
.sticky-whatsapp {
  gap: 0;
}
.sticky-whatsapp .wa-icon {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* Footer-Credit: Webdesign by Hyperpage */
.footer-credit {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.75;
}
.footer-credit a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credit a:hover {
  opacity: 0.9;
}
