:root {
  --ink: #16120e;
  --espresso: #2c241c;
  --espresso-soft: #3a3128;
  --gold: #c4a574;
  --gold-deep: #a68554;
  --gold-bright: #e0c9a0;
  --sand: #f3eee6;
  --ivory: #faf8f4;
  --stone: #e6ddd0;
  --text: #3a3229;
  --muted: #6d6154;
  --line: rgba(44, 36, 28, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 18, 14, 0.1);
  --shadow-soft: 0 8px 28px rgba(22, 18, 14, 0.08);
  --radius: 1.25rem;
  --radius-sm: 0.85rem;
  --header-offset: 7.1rem;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  padding-top: var(--header-offset);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 5.5rem;
}

.claim-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.45rem;
  padding: 0.4rem 1rem;
  background: var(--ink);
  color: var(--sand);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.claim-bar a {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.claim-bar a:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--gold);
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--espresso);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0.7rem;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--espresso);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--espresso);
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: width 0.3s var(--ease);
}

.site-nav a:not(.btn):hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

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

.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
  box-shadow: 0 10px 24px rgba(44, 36, 28, 0.18);
}

.btn-primary:hover {
  background: var(--ink);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(250, 248, 244, 0.45);
  color: var(--ivory);
}

.btn-ghost:hover {
  background: rgba(250, 248, 244, 0.1);
}

.btn-outline {
  background: transparent;
  border-color: var(--espresso);
  color: var(--espresso);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-kicker {
  margin: 0 0 0.45rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 18, 14, 0.18) 0%, rgba(22, 18, 14, 0.55) 48%, rgba(22, 18, 14, 0.82) 100%),
    linear-gradient(90deg, rgba(22, 18, 14, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 4.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.78);
}

.breadcrumb a {
  color: var(--gold-bright);
  text-decoration: none;
}

.hero-arabic {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-bright);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-intro {
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(250, 248, 244, 0.9);
  margin: 0 0 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.12);
  border: 1px solid rgba(250, 248, 244, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stars {
  color: var(--gold-bright);
  letter-spacing: 0.08em;
}

.stats {
  background: var(--espresso);
  color: var(--sand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.4rem 0;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--gold-bright);
}

.about-grid,
.experience-grid,
.contact-grid,
.local-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.about-card,
.hours-card,
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
  backdrop-filter: blur(16px);
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img,
.experience-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about-photo:hover img,
.gallery-card:hover img,
.experience-photo:hover img {
  transform: scale(1.05);
}

.highlights {
  background: var(--sand);
}

.highlights-grid,
.categories-grid,
.amenities-grid,
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--sand);
  color: var(--espresso);
  margin-bottom: 0.9rem;
  font-size: 1.15rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  color: var(--ink);
}

.card p,
.faq-item p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.category-card {
  min-height: 12.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(22, 18, 14, 0.18), rgba(22, 18, 14, 0.82)),
    var(--espresso) center/cover;
  color: var(--ivory);
  overflow: hidden;
  position: relative;
}

.category-card:nth-child(odd) {
  background-image:
    linear-gradient(180deg, rgba(22, 18, 14, 0.2), rgba(22, 18, 14, 0.84)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Riyadh_Gallery_from_inside.jpg/800px-Riyadh_Gallery_from_inside.jpg");
}

.category-card:nth-child(even) {
  background-image:
    linear-gradient(180deg, rgba(22, 18, 14, 0.22), rgba(22, 18, 14, 0.86)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Riyadh_Gallery.jpg/800px-Riyadh_Gallery.jpg");
}

.category-card p {
  color: rgba(250, 248, 244, 0.82);
}

.category-card h3 {
  color: var(--white);
}

.gallery {
  background: var(--ink);
  color: var(--sand);
}

.gallery .section-title,
.cta-band .section-title {
  color: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 22rem;
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  background: rgba(22, 18, 14, 0.55);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
}

.gallery-card figcaption a {
  color: var(--gold-bright);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

.review-card small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.rating-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: var(--sand);
}

.rating-banner strong {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.15rem 1.1rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 22rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list a {
  color: var(--espresso);
  font-weight: 600;
}

.hours-card h3 {
  margin: 0 0 0.8rem;
}

.hours-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 1rem;
  margin: 0;
}

.hours-card dt,
.hours-card dd {
  margin: 0;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}

.experience {
  background: var(--sand);
}

.experience-photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 24rem;
  box-shadow: var(--shadow);
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
}

.amenity span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.specialties {
  background:
    radial-gradient(circle at top right, rgba(196, 165, 116, 0.18), transparent 32%),
    var(--ivory);
}

.local-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.cta-band {
  background:
    linear-gradient(180deg, rgba(22, 18, 14, 0.55), rgba(22, 18, 14, 0.78)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Riyadh_Gallery.jpg/1600px-Riyadh_Gallery.jpg") center/cover;
  color: var(--ivory);
  text-align: center;
}

.cta-band .lede {
  margin-inline: auto;
  color: rgba(250, 248, 244, 0.86);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding: 2.4rem 0 6.5rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.site-footer a {
  color: var(--gold-bright);
}

.photo-credit {
  font-size: 0.8rem;
  color: var(--muted);
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 40;
  background: rgba(22, 18, 14, 0.94);
  color: var(--ivory);
  border-radius: 1.1rem;
  padding: 0.55rem;
  box-shadow: var(--shadow);
  gap: 0.45rem;
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.75rem 0.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.8s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.js-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 70ms);
}

@media (max-width: 900px) {
  :root { --header-offset: 7.35rem; }

  .nav-toggle { display: grid; place-items: center; }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 248, 244, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1rem 1rem;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.75rem 0.2rem;
  }

  .stats-grid,
  .highlights-grid,
  .categories-grid,
  .amenities-grid,
  .specialties-grid,
  .reviews-grid,
  .about-grid,
  .experience-grid,
  .contact-grid,
  .local-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 86vh; align-items: center; }
  .hero-content { margin-bottom: 2.4rem; }
  .mobile-cta { display: flex; }
  .section { padding: 3.8rem 0; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .highlights-grid,
  .categories-grid,
  .reviews-grid,
  .specialties-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img,
  .js-ready .reveal-on-scroll,
  .reveal {
    transform: none;
    opacity: 1;
  }
}
