:root {
  --ink: #47172f;
  --ink-soft: #6b5f5a;
  --paper: #fbf6f0;
  --cream: #f5ede4;
  --red: #8e4a66;
  --gold: #dccbb9;
  --line: rgba(71, 23, 47, 0.16);
  --display: "Noto Kufi Arabic", "Alexandria", sans-serif;
  --body: "Alexandria", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 246, 240, 0.9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  width: auto;
  height: 2.3rem;
  object-fit: contain;
}
nav { display: flex; align-items: center; gap: 2.25rem; font-size: 0.9rem; }
nav a { position: relative; }
nav a::after { content: ""; position: absolute; right: 0; bottom: -0.35rem; width: 0; height: 1px; background: var(--red); transition: width 180ms ease; }
nav a:hover::after, nav a:focus-visible::after { width: 100%; }
.header-cta { justify-self: end; padding: 0.65rem 1.2rem; border: 1px solid var(--ink); border-radius: 999px; font-size: 0.85rem; font-weight: 600; transition: 180ms ease; }
.header-cta:hover { background: var(--ink); color: white; }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(3.5rem, 8vw, 8rem) 7vw 5rem;
  position: relative;
}
.hero::before { content: ""; position: absolute; width: 19rem; height: 19rem; border: 1px solid rgba(201, 166, 109, 0.38); border-radius: 50%; top: 7%; right: -8rem; }
.eyebrow, .section-index { margin: 0 0 1.4rem; color: var(--red); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); }
h1 { margin-bottom: 1.6rem; font-size: clamp(3.7rem, 7.2vw, 7.3rem); line-height: 1.18; letter-spacing: -0.08em; }
h1 span { color: var(--red); }
.hero-lead { max-width: 36rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin: 2.3rem 0; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0.7rem 1.6rem; border-radius: 999px; font-weight: 700; transition: transform 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: #fff; }
.button-primary:hover { background: var(--red); }
.text-link { font-weight: 600; }
.text-link span { display: inline-block; margin-right: 0.4rem; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(-4px); }
.trust-line { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 0.78rem; }
.trust-line span::before { content: "✦"; margin-left: 0.45rem; color: var(--gold); }

.hero-visual { position: relative; min-height: 580px; }
.hero-photo-shell { position: absolute; inset: 0 0 4rem 2rem; overflow: hidden; border-radius: 15rem 15rem 1.25rem 1.25rem; background: var(--cream); }
.hero-photo-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(41, 16, 33, 0.58)); }
.hero-photo-shell img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption { position: absolute; right: 2rem; bottom: 1.5rem; z-index: 2; color: white; font-family: var(--display); font-size: 1.05rem; }
.booking-card { position: absolute; left: -2rem; bottom: 0; z-index: 3; width: min(270px, 75%); padding: 1.25rem 1.35rem; border: 1px solid rgba(255,255,255,.5); border-radius: 1.2rem; background: rgba(251, 246, 240, 0.93); box-shadow: 0 24px 70px rgba(71,23,47,.18); backdrop-filter: blur(16px); }
.booking-card p { margin: 0 0 .35rem; color: var(--red); font-size: .72rem; font-weight: 700; }
.booking-card strong, .booking-card span { display: block; }
.booking-card strong { font-family: var(--display); font-size: 1rem; }
.booking-card span { color: var(--ink-soft); font-size: .78rem; }

.intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: 3rem; padding: 8rem 7vw 4rem; border-top: 1px solid var(--line); }
.intro h2, .how h2, .provider h2, .launch h2 { margin-bottom: 1.2rem; font-size: clamp(2.4rem, 4.4vw, 4.6rem); line-height: 1.35; letter-spacing: -0.06em; }
.intro > div { max-width: 58rem; }
.intro > div p { max-width: 42rem; color: var(--ink-soft); font-size: 1.1rem; }

.services { display: grid; grid-template-columns: repeat(4, 1fr); padding: 1rem 7vw 8rem; }
.service-card { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); transition: background 200ms ease, color 200ms ease, transform 200ms ease; }
.service-card:first-child { border-right: 1px solid var(--line); }
.service-card:hover { background: var(--ink); color: white; transform: translateY(-8px); }
.service-featured { background: var(--red); color: white; border-color: var(--red); }
.service-number { opacity: .62; font-size: .75rem; }
.service-card h3 { margin-bottom: .5rem; font-family: var(--display); font-size: 1.7rem; }
.service-card p { margin-bottom: 0; font-size: .88rem; opacity: .72; }
.service-arrow { align-self: flex-end; font-size: 1.7rem; }

.how { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6vw; padding: 8rem 7vw; background: var(--cream); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; padding: 1.6rem 0; border-top: 1px solid rgba(41,16,33,.2); }
.steps li:last-child { border-bottom: 1px solid rgba(41,16,33,.2); }
.steps > li > span { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-weight: 700; }
.steps h3 { margin: 0 0 .3rem; font-family: var(--display); font-size: 1.25rem; }
.steps p { margin: 0; color: var(--ink-soft); }

.provider { min-height: 610px; display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; background: var(--ink); color: white; }
.provider-accent { display: grid; place-content: center; gap: .85rem; overflow: hidden; padding: 4rem 2rem; background: var(--red); color: white; text-align: center; }
.provider-logo { width: clamp(9rem, 18vw, 14rem); margin-inline: auto; }
.provider-brand-subtitle { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.42); font-size: .9rem; font-weight: 700; letter-spacing: .08em; }
.provider-copy { align-self: center; padding: 5rem 8vw; }
.provider-copy .section-index { color: #e7b19d; }
.provider-copy p:not(.section-index) { max-width: 39rem; color: rgba(255,255,255,.66); font-size: 1.05rem; }
.button-light { margin-top: 1.4rem; background: white; color: var(--ink); }
.button-light:hover { background: var(--cream); }

.launch { padding: 9rem 7vw; text-align: center; }
.launch .section-index { color: var(--red); }
.launch p:not(.section-index) { max-width: 37rem; margin: 0 auto 2rem; color: var(--ink-soft); }

footer { min-height: 120px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 2rem 5vw; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .8rem; }
.brand-footer { color: var(--ink); }
footer p { margin: 0; }
footer p:last-child { justify-self: end; direction: rtl; }

a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 72px; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 620px; max-width: 600px; width: 100%; justify-self: center; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3) { border-right: 1px solid var(--line); }
  .how { grid-template-columns: 1fr; }
  .provider { grid-template-columns: .65fr 1.35fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 0 1.1rem; }
  .brand-logo { height: 2rem; }
  .header-cta { padding: .52rem .9rem; font-size: .75rem; }
  .hero { min-height: auto; padding: 3.2rem 1.15rem 4.5rem; gap: 3.5rem; }
  .hero::before { display: none; }
  h1 { font-size: clamp(3.35rem, 18vw, 5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.1rem; }
  .trust-line { gap: .35rem 1rem; }
  .hero-visual { min-height: 485px; }
  .hero-photo-shell { inset: 0 0 3rem 0; border-radius: 9rem 9rem 1rem 1rem; }
  .booking-card { left: -.2rem; width: 72%; }
  .intro { grid-template-columns: 1fr; padding: 5.5rem 1.15rem 2.5rem; gap: .4rem; }
  .intro h2, .how h2, .provider h2, .launch h2 { font-size: 2.55rem; }
  .services { grid-template-columns: 1fr; padding: 1rem 1.15rem 5.5rem; }
  .service-card { min-height: 235px; border-right: 1px solid var(--line); }
  .how { padding: 5.5rem 1.15rem; }
  .provider { grid-template-columns: 1fr; }
  .provider-accent { min-height: 270px; padding: 3rem 1.15rem; }
  .provider-copy { padding: 4.8rem 1.15rem; }
  .launch { padding: 6rem 1.15rem; }
  footer { grid-template-columns: 1fr auto; padding: 2rem 1.15rem; }
  footer p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
}
