:root {
  --ink: #17211f;
  --muted: #4f625d;
  --paper: #f7f3eb;
  --surface: #fffaf2;
  --line: #d8c9b4;
  --teal: #0d4f4a;
  --teal-soft: #e4f0ed;
  --coral: #c7473b;
  --coral-dark: #a83830;
  --gold: #d5a642;
  --olive: #5f6d3a;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(23, 33, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body[dir="rtl"] {
  font-family:
    "Segoe UI", Tahoma, Arial, "Noto Sans Arabic", "Noto Kufi Arabic",
    sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 16px 20px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-weight: 750;
}

.brand-mark {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-links {
  align-items: center;
  display: none;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--teal);
}

.language-link,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
}

.language-link {
  border: 1px solid #bda98d;
  background: var(--surface);
  font-size: 0.94rem;
}

.language-link:hover {
  border-color: var(--teal);
}

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

.hero-grid {
  display: grid;
  gap: 34px;
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 75px);
  padding: 48px 20px 42px;
}

.eyebrow {
  border: 1px solid color-mix(in srgb, var(--coral) 38%, transparent);
  border-radius: 999px;
  color: #8c3029;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0 0 18px;
  padding: 8px 14px;
}

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

h1 {
  font-size: clamp(3rem, 10vw, 6.8rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 20px;
}

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

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.75;
  max-width: 760px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover {
  background: #0a403c;
}

.button-coral {
  background: var(--coral);
  color: var(--white);
}

.button-coral:hover {
  background: var(--coral-dark);
}

.button-secondary {
  background: var(--surface);
  border: 1px solid #bda98d;
}

.button-secondary:hover {
  border-color: var(--teal);
}

.hero-card {
  align-self: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero-card-body {
  padding: 22px;
}

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

.meta-list li {
  align-items: center;
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.dot {
  background: var(--gold);
  border-radius: 999px;
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.section {
  padding: 64px 20px;
}

.section.surface {
  background: var(--surface);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.wrap {
  margin: 0 auto;
  max-width: 1180px;
}

.split {
  display: grid;
  gap: 30px;
}

.body-copy {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.dark .body-copy {
  color: #d8e6df;
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card.white {
  background: var(--white);
}

.card.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.tag {
  color: #8c3029;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

body[dir="rtl"] .tag {
  text-transform: none;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  background: var(--teal-soft);
  border: 1px solid #bdd8d3;
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 750;
  padding: 8px 12px;
}

.pathway {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.step {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px 1fr;
  padding: 18px;
}

.step::before {
  align-items: center;
  background: var(--coral);
  border-radius: 8px;
  color: var(--white);
  content: counter(step);
  counter-increment: step;
  display: inline-flex;
  font-weight: 850;
  height: 44px;
  justify-content: center;
  width: 44px;
}

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

.article-list a {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 16px;
}

.article-list a:hover {
  border-color: var(--gold);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  color: var(--muted);
  margin: 12px 0 0;
}

.booking-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 20px;
}

.footer-inner {
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  max-width: 1180px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mini-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 56px 20px;
}

.mini-hero .wrap {
  max-width: 940px;
}

.content-page {
  background: var(--paper);
}

.content-page article {
  margin: 0 auto;
  max-width: 900px;
  padding: 54px 20px;
}

.content-page article p,
.content-page article li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.content-page article ul {
  padding-inline-start: 22px;
}

.note-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 28px 0;
  padding: 20px;
}

@media (min-width: 640px) {
  .hero-actions,
  .cta-row {
    flex-direction: row;
  }
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 64px;
  }

  .split {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .cards.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards.four {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  .section {
    padding: 48px 20px;
  }
}
