:root {
  --ink: #221a35;
  --muted: #655f70;
  --plum: #2a1745;
  --teal: #0f766e;
  --teal-soft: #dff4f0;
  --rose: #b75b75;
  --paper: #ffffff;
  --wash: #f6faf9;
  --line: #e5ebe9;
  --shadow: 0 18px 50px rgba(31, 23, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  direction: ltr;
  font-family: "Cairo", system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

.site-header,
main,
.mobile-bar,
.site-footer {
  direction: rtl;
}

a {
  color: inherit;
}

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: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--plum);
  border: 2px solid var(--plum);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.83rem;
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  min-width: 74px;
  padding: 8px 12px;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--teal-soft);
  color: var(--plum);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: clamp(36px, 7vw, 92px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 250, 249, 0.96) 0%, rgba(246, 250, 249, 0.84) 44%, rgba(246, 250, 249, 0.18) 100%);
}

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

.hero__content {
  position: relative;
  width: min(100%, 650px);
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 13ch;
  color: var(--plum);
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 1.12;
  font-weight: 800;
}

h2 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
}

h3 {
  margin: 0 0 8px;
  color: var(--plum);
  font-size: 1.16rem;
  line-height: 1.35;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 0;
  color: #40374f;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 168px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.button--primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.24);
}

.button--secondary {
  background: var(--paper);
  color: var(--plum);
  border-color: var(--line);
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
}

.quick-info article,
.services article,
.booking,
.contact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-info article {
  padding: 22px;
}

.quick-info span {
  color: var(--rose);
  font-weight: 800;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  color: var(--plum);
  font-size: 1.18rem;
}

.quick-info p {
  margin: 6px 0 14px;
  color: var(--muted);
}

.quick-info a {
  color: var(--teal);
  font-weight: 800;
}

.section,
.booking,
.contact {
  width: min(1120px, calc(100% - 36px));
  margin: 64px auto 0;
}

.section__header {
  margin-bottom: 22px;
}

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

.services article {
  min-height: 150px;
  padding: 24px;
}

.services p {
  margin: 0;
  color: var(--muted);
}

.booking,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 78px;
  padding: 14px 72px 14px 18px;
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps span,
.contact p {
  color: var(--muted);
}

.contact {
  margin-bottom: 64px;
  background: linear-gradient(135deg, #ffffff, #eef8f6);
}

.contact p {
  margin-bottom: 0;
}

.contact__actions {
  margin: 0;
  align-self: center;
}

.site-footer {
  padding: 26px 18px 92px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer p {
  margin: 4px 0;
}

.mobile-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.mobile-bar a {
  display: grid;
  min-width: 0;
  min-height: 48px;
  padding: 0 6px;
  place-items: center;
  background: var(--plum);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 120px;
  }

  .hero__image::after {
    background: linear-gradient(180deg, rgba(246, 250, 249, 0.94) 0%, rgba(246, 250, 249, 0.92) 58%, rgba(246, 250, 249, 0.55) 100%);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .quick-info,
  .services,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick-info article,
  .services article,
  .booking,
  .contact {
    min-width: 0;
  }

  .quick-info {
    margin-top: -72px;
  }

  .contact__actions .button,
  .hero__actions .button {
    flex: 1 1 100%;
  }

  .mobile-bar {
    display: grid;
  }
}

@media (max-width: 480px) {
  .site-header {
    justify-content: center;
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand__mark {
    display: none;
  }

  .hero,
  .section,
  .booking,
  .contact,
  .quick-info {
    width: min(340px, calc(100% - 32px));
  }

  .hero {
    margin-inline: auto;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  h1 {
    margin-inline: auto;
    max-width: 9ch;
    font-size: 2.12rem;
  }

  .lead {
    font-size: 1rem;
  }

  .section,
  .booking,
  .contact {
    margin-top: 42px;
    border-radius: 0;
  }

  .quick-info {
    padding: 0;
  }

  .services {
    width: min(340px, calc(100% - 32px));
    margin-inline: auto;
    padding: 0;
  }

  .section__header {
    padding: 0;
    text-align: center;
  }
}
