:root {
  color-scheme: dark;
  --black: #040404;
  --black-soft: #0b0b0c;
  --panel: #111113;
  --panel-light: #171518;
  --text: #f7f1ef;
  --muted: #b9aeac;
  --red: #d5172a;
  --red-deep: #740712;
  --red-soft: #ef3b4d;
  --gold: #c7a75f;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #050505 0%, #0d090a 42%, #050505 100%);
}

html[lang="ar"] body {
  font-family: "Cairo", "Segoe UI", Arial, sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  background: var(--red);
  text-decoration: none;
  transition: top 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(100%, var(--max));
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  font-family: "Cinzel", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  color: var(--red-soft);
}

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

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

.primary-nav a,
.language-link,
.map-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.language-link {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.language-link:hover,
.language-link:focus-visible {
  border-color: rgba(199, 167, 95, 0.9);
  background: rgba(199, 167, 95, 0.16);
}

.map-link {
  color: var(--text);
  border: 1px solid rgba(213, 23, 42, 0.55);
  background: linear-gradient(135deg, rgba(213, 23, 42, 0.26), rgba(116, 7, 18, 0.42));
}

.map-link:hover,
.map-link:focus-visible {
  border-color: rgba(239, 59, 77, 0.9);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  padding: 56px 20px 34px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.58), rgba(4, 4, 4, 0.93)),
    linear-gradient(90deg, rgba(116, 7, 18, 0.48), rgba(4, 4, 4, 0.12) 42%, rgba(213, 23, 42, 0.28)),
    url("assets/optimized/Sky Lark Hotel.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1060px);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
  font-family: "Cairo", "Segoe UI", Arial, sans-serif;
  line-height: 1.18;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 26px;
}

.hero-copy {
  width: min(100%, 720px);
  margin: 14px auto 0;
  color: #e4d9d6;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin: 20px 0 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border-color: rgba(239, 59, 77, 0.82);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 16px 44px rgba(213, 23, 42, 0.25);
}

.button-whatsapp {
  border-color: rgba(37, 211, 102, 0.78);
  background: linear-gradient(135deg, #25d366, #0b6d38);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.icon-link {
  gap: 8px;
}

.icon-link svg,
.card-action svg,
.floating-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-frame {
  width: min(100%, 920px);
  height: 42vh;
  min-height: 240px;
  max-height: 420px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.section {
  padding: 84px 20px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  width: min(100%, 760px);
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow),
.sub-heading p,
.about-copy p,
.feature-list span,
.contact-details dd {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  font-size: 17px;
}

.service-keywords {
  list-style: none;
  margin: -8px 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-keywords li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(199, 167, 95, 0.28);
  border-radius: 8px;
  color: #eadfcf;
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.staff-section,
.reviews-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--black);
}

.services-section {
  background:
    linear-gradient(180deg, rgba(116, 7, 18, 0.2), rgba(5, 5, 5, 0.86)),
    var(--black-soft);
}

.about-section,
.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, #0a0a0b 0%, #14090b 52%, #070707 100%);
}

.portrait-grid,
.service-grid,
.room-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.image-card {
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.image-button {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.image-button img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.portrait-card img,
.service-card img {
  aspect-ratio: 1 / 1;
}

.room-card img {
  aspect-ratio: 4 / 5;
}

.review-card img,
.why-panel img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #080808;
}

.service-card figcaption,
.room-card figcaption {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(213, 23, 42, 0.16), rgba(255, 255, 255, 0.035));
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.card-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card-action:hover,
.card-action:focus-visible {
  transform: translateY(-1px);
}

.card-action-call {
  border: 1px solid rgba(239, 59, 77, 0.72);
  background: linear-gradient(135deg, rgba(213, 23, 42, 0.92), rgba(116, 7, 18, 0.96));
}

.card-action-whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.75);
  background: linear-gradient(135deg, #25d366, #0b6d38);
}

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

.about-copy p {
  margin: 16px 0 0;
  font-size: 16px;
}

.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature-list li {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

html[dir="rtl"] .feature-list li {
  border-right: 3px solid var(--red);
  border-left: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-list span {
  display: block;
  font-size: 14px;
}

.about-media {
  display: grid;
  gap: 14px;
}

.media-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  display: block;
}

.hotel-panel img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.rooms-wrap {
  margin-top: 44px;
}

.sub-heading {
  margin-bottom: 20px;
}

.sub-heading p {
  margin: 10px 0 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.contact-details {
  padding: 22px;
}

.contact-details dl {
  margin: 0 0 24px;
  display: grid;
  gap: 18px;
}

.contact-details dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
}

.contact-details a:not(.button) {
  color: var(--text);
  text-decoration-color: rgba(239, 59, 77, 0.78);
  text-underline-offset: 4px;
}

.contact-details a[dir="ltr"] {
  direction: ltr;
  display: inline-block;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-frame {
  min-height: 360px;
  background: #080808;
}

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

.site-footer {
  padding: 30px 20px;
  color: var(--muted);
  text-align: center;
  background: #030303;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  line-height: 1.6;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-button {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-button:hover,
.floating-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5);
}

.floating-button svg {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.floating-call {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #075e32);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.9);
}

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

.lightbox img {
  max-width: min(100%, 1120px);
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--text);
  background: rgba(10, 10, 10, 0.86);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--red-soft);
}

@media (min-width: 620px) {
  .portrait-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

@media (min-width: 900px) {
  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 48px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) 430px;
  }

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

  .room-grid,
  .review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 0.72fr 1fr;
  }

  .contact-details {
    padding: 32px;
  }
}

@media (min-width: 1100px) {
  h1 {
    font-size: 88px;
  }

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

@media (max-width: 760px) {
  .nav-inner {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .brand {
    font-size: 22px;
  }

  .language-link,
  .map-link {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero-section {
    min-height: calc(100vh - 96px);
    padding-top: 38px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .video-frame {
    height: 36vh;
  }

  .section {
    padding: 64px 16px;
  }

  .site-footer {
    padding-bottom: 108px;
  }

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

  .floating-button {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
