/* ============================================================
   GACINE Hotels — Cinematic Luxury Design System
   ============================================================ */
:root {
  --paper: #f6f1e7;
  --paper-2: #fbf8f1;
  --ink: #35322b;
  --ink-deep: #211d15;
  --muted: #7d7565;
  --gold: #c9a55c;
  --gold-deep: #a8843e;
  --gold-soft: #e6d2a4;
  --gold-bright: #f2e2ae;
  --dark-1: #241d11;
  --dark-2: #1a1409;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-gold: 0 10px 34px -14px rgba(168, 132, 62, 0.5);
  --grad-gold: linear-gradient(135deg, #b8924a 0%, #e3c684 50%, #c29d55 100%);
  --grad-gold-hover: linear-gradient(135deg, #a8843e 0%, #d3b475 100%);
  --font: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; transition: filter 0.35s ease; }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  color: #f3ecd9;
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  transition: width 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-bright); }
.header-cta { display: flex; gap: 12px; align-items: center; }

/* transparent-over-hero vs scrolled */
.site-header.over-hero .brand img { filter: brightness(0) invert(1) sepia(0.25) saturate(3) hue-rotate(10deg); }
.site-header.scrolled {
  background: rgba(26, 20, 9, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(201, 165, 92, 0.35);
  padding: 8px 0;
}
.site-header.scrolled .brand img { filter: brightness(0) invert(1) sepia(0.25) saturate(3) hue-rotate(10deg); }

/* mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(226, 201, 135, 0.6);
  border-radius: 10px;
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--gold-bright); margin: 4px 0; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
  background: var(--grad-gold);
  color: #241d10;
  border: 1px solid var(--gold-deep);
  box-shadow: 0 8px 28px -8px rgba(201, 165, 92, 0.75);
}
.btn-gold:hover { background: var(--grad-gold-hover); box-shadow: 0 14px 34px -8px rgba(201, 165, 92, 0.95); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f7f2e8;
  border: 1px solid rgba(226, 201, 135, 0.75);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(226, 201, 135, 0.16); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(201, 165, 92, 0.12); }
.btn-sm { padding: 9px 18px; font-size: 0.92rem; }
.btn-whatsapp { background: #1f8a5b; color: #fff; border: 1px solid #14724a; }
.btn-whatsapp:hover { background: #16744b; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: #f7f2e8;
}
.hero.hero-page { min-height: 58vh; }
.hero-bg {
  position: absolute;
  inset: -4%;
  background-position: center 32%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.09) translateY(-1.5%); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center 60%, rgba(24, 19, 10, 0.22) 0%, rgba(24, 19, 10, 0.7) 100%),
    linear-gradient(to top, rgba(18, 14, 7, 0.88) 0%, rgba(18, 14, 7, 0.25) 42%, rgba(18, 14, 7, 0.45) 100%);
}
.hero-content { position: relative; max-width: 920px; padding: 130px 24px 96px; }
.hero-label {
  color: #e2c987;
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  margin-inline-start: 0.32em;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.15s forwards;
}
.hero-title {
  margin-top: 20px;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 1.3;
  font-weight: 700;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.35s forwards;
}
.hero-page .hero-title { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
.goldword {
  background: linear-gradient(100deg, #f4dfa4 10%, #caa14f 38%, #f8ecc2 55%, #b9924a 78%, #e8d195 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.hero-divider {
  width: 130px;
  height: 3px;
  margin: 28px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #d9b96e 20%, #f2e2ae 50%, #d9b96e 80%, transparent);
  box-shadow: 0 0 18px rgba(217, 185, 110, 0.65);
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.55s forwards;
}
.hero-lead {
  margin: 24px auto 0;
  max-width: 640px;
  font-size: 1.18rem;
  line-height: 2;
  color: rgba(247, 242, 232, 0.92);
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.7s forwards;
}
.hero-cta {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 26px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(226, 201, 135, 0.8);
  border-radius: 14px;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.3s forwards;
}
.hero-scroll::before {
  content: "";
  position: absolute;
  top: 7px;
  inset-inline-start: 50%;
  width: 4px;
  height: 8px;
  margin-inline-start: -2px;
  border-radius: 2px;
  background: #e2c987;
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-dark {
  background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
  color: #ecdfc0;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-label {
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-inline-start: 0.28em;
}
.section-dark .section-label { color: var(--gold-soft); }
.section-title {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
}
.section-dark .section-title { color: #f3ecd9; }
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
}
.section-sub { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-sub { color: #b3a482; }

/* ---------- Cards ---------- */
.cards-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  background: var(--paper-2);
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(201, 165, 92, 0.25), 0 10px 30px -18px rgba(168, 132, 62, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 18px -6px rgba(168, 132, 62, 0.28), 0 26px 52px -18px rgba(168, 132, 62, 0.5);
}
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.card:hover .card-media img { transform: scale(1.07); }
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 19, 10, 0.35), transparent 45%);
}
.card-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-title { font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.card-text { color: var(--muted); font-size: 0.98rem; }
.card-note { color: var(--gold-deep); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; }
.card-actions { margin-top: auto; padding-top: 10px; display: flex; gap: 10px; flex-wrap: wrap; }
.card-link {
  color: var(--gold-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.card-link:hover { gap: 12px; color: var(--ink); }

/* ---------- Amenities ---------- */
.amenities { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.amenity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-2);
  border: 1px solid rgba(201, 165, 92, 0.45);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.amenity svg { color: var(--gold-deep); }
.section-dark .amenity { background: rgba(255, 255, 255, 0.05); color: #ecdfc0; border-color: rgba(201, 165, 92, 0.35); }

/* ---------- Gallery (scroll-snap) ---------- */
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.gallery img {
  height: 300px;
  width: auto;
  border-radius: var(--radius-sm);
  scroll-snap-align: center;
  border: 1px solid rgba(201, 165, 92, 0.4);
  cursor: zoom-in;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
}
.gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-gold); }

/* lightbox */
dialog.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 94vw;
  max-height: 92vh;
}
dialog.lightbox::backdrop { background: rgba(12, 9, 4, 0.9); backdrop-filter: blur(6px); }
dialog.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: var(--radius-sm); border: 1px solid rgba(226, 201, 135, 0.5); }
dialog.lightbox .lb-close {
  position: fixed;
  top: 18px;
  inset-inline-end: 22px;
  background: rgba(226, 201, 135, 0.15);
  color: #f2e2ae;
  border: 1px solid rgba(226, 201, 135, 0.6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ---------- Menu ---------- */
.menu-panel {
  max-width: 780px;
  margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid rgba(201, 165, 92, 0.45);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 56px);
  box-shadow: var(--shadow-gold);
}
.menu-section + .menu-section { margin-top: 46px; }
.menu-section > h3 { text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.menu-section > .menu-en { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 2px; }
.menu-section > h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
}
.menu-items { margin-top: 24px; }
.menu-item { padding: 13px 0; }
.menu-item .row { display: flex; align-items: baseline; gap: 12px; }
.menu-item .name { font-weight: 600; color: var(--ink); }
.menu-item .dots { flex: 1; border-bottom: 2px dotted rgba(201, 165, 92, 0.6); min-width: 24px; }
.menu-item .price { font-weight: 700; color: #96742f; white-space: nowrap; }
.menu-item .price small { font-weight: 400; font-size: 0.75em; }
.menu-item .en { color: var(--muted); font-size: 0.86rem; margin-top: 2px; }
.menu-item .desc { color: var(--muted); font-size: 0.93rem; margin-top: 6px; max-width: 560px; line-height: 1.9; }

/* ---------- Contact cards ---------- */
.contact-card {
  background: var(--paper-2);
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover { transform: translateY(-5px); }
.contact-card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 6px; }
.contact-card .addr { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; min-height: 44px; }
.contact-card .actions { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Booking modal ---------- */
dialog.booking {
  border: 1px solid rgba(201, 165, 92, 0.55);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 0;
  width: min(520px, 94vw);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}
dialog.booking::backdrop { background: rgba(12, 9, 4, 0.75); backdrop-filter: blur(5px); }
.booking-inner { padding: 30px 28px; }
.booking-inner h3 { font-size: 1.35rem; color: var(--ink); }
.booking-inner .hint { color: var(--muted); font-size: 0.88rem; margin: 6px 0 20px; }
.booking-inner form { display: grid; gap: 14px; }
.booking-inner label { display: grid; gap: 6px; font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.booking-inner input, .booking-inner select {
  font-family: var(--font);
  font-size: 1rem;
  padding: 11px 14px;
  border: 1px solid rgba(201, 165, 92, 0.55);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.booking-inner input:focus, .booking-inner select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1f8a5b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(31, 138, 91, 0.7);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
  border-top: 2px solid rgba(201, 165, 92, 0.5);
  color: #b3a482;
  padding: 64px 0 0;
  margin-top: 40px;
}
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1fr; padding-bottom: 48px; }
.footer-brand img { height: 84px; margin-bottom: 18px; filter: brightness(0) saturate(100%) invert(88%) sepia(18%) saturate(587%) hue-rotate(357deg) brightness(95%) contrast(90%); }
.footer-col h4 { color: #ecdfc0; font-size: 1.05rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #d8c69a; transition: color 0.2s ease; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid rgba(201, 165, 92, 0.25);
  padding: 18px 0;
  text-align: center;
  font-size: 0.88rem;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: rgba(20, 15, 7, 0.97);
    border-bottom: 1px solid rgba(201, 165, 92, 0.4);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0;
    padding: 10px 0 16px;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.4s ease;
    z-index: 60;
  }
  .main-nav.open { clip-path: inset(0 0 0 0); }
  .main-nav a { color: #f3ecd9; font-size: 1.15rem; padding: 13px 0; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: block; z-index: 70; }
  .header-cta .btn-book-header { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .hero { min-height: 88vh; }
  .booking-row { grid-template-columns: 1fr; }
  .gallery img { height: 220px; }
}

/* ============================================================
   ARTISTIC PASS — editorial luxury layer
   ============================================================ */

/* film grain on dark surfaces + heroes */
.hero::before, .section-dark::before, .site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}
.section-dark, .site-footer { position: relative; }
.section-dark > .container, .site-footer > .container, .site-footer .footer-bottom { position: relative; z-index: 1; }
.hero::before { z-index: 0; }
.hero-content { z-index: 1; }

/* hero blends into the page like a film fade */
.hero .hero-fadeout {
  content: "";
  position: absolute;
  bottom: -1px;
  inset-inline: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  z-index: 1;
  pointer-events: none;
}

/* kicker label with side rules */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-label::before, .section-label::after {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-label::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ghost section numerals */
.section-head { position: relative; }
.section-head[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: -0.55em;
  inset-inline-start: 50%;
  transform: translateX(50%);
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201, 165, 92, 0.22);
  pointer-events: none;
  z-index: -1;
  letter-spacing: 0.02em;
}
.section-dark .section-head[data-num]::before {
  -webkit-text-stroke: 1.5px rgba(230, 210, 164, 0.16);
}

/* golden marquee ribbon */
.marquee {
  overflow: hidden;
  background: linear-gradient(180deg, var(--dark-1), var(--dark-2));
  border-block: 1px solid rgba(201, 165, 92, 0.45);
  padding: 16px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  white-space: nowrap;
  color: #d8c69a;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding-inline: 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.marquee span::after { content: "✦"; color: var(--gold); font-size: 0.8em; }
@keyframes marquee { to { transform: translateX(50%); } }

/* framed editorial images */
.framed { position: relative; }
.framed::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(226, 201, 135, 0.55);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

/* magazine-style branch cards: title over image */
.card-mag { position: relative; border-radius: var(--radius); overflow: hidden; display: block; box-shadow: var(--shadow-gold); border: 1px solid rgba(201, 165, 92, 0.4); }
.card-mag .media { position: relative; aspect-ratio: 4/4.6; overflow: hidden; }
.card-mag .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.8s ease; filter: saturate(0.9); }
.card-mag:hover .media img { transform: scale(1.07); filter: saturate(1.08); }
.card-mag .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 12, 5, 0.88) 0%, rgba(16, 12, 5, 0.25) 45%, rgba(16, 12, 5, 0.15) 100%);
  transition: background 0.4s ease;
}
.card-mag .overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 26px 24px;
  color: #f7f2e8;
  z-index: 1;
}
.card-mag .overlay .rule { width: 44px; height: 2px; border-radius: 2px; background: var(--grad-gold); margin-bottom: 12px; transition: width 0.35s ease; }
.card-mag:hover .overlay .rule { width: 76px; }
.card-mag .overlay h3 { font-size: 1.3rem; font-weight: 700; }
.card-mag .overlay p { font-size: 0.88rem; color: rgba(240, 232, 213, 0.85); margin-top: 6px; }
.card-mag .overlay .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.92rem;
}
.card-mag:hover .overlay .go { gap: 14px; }
.card-mag .overlay .go svg { transition: transform 0.3s ease; }

/* stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 700;
  background: linear-gradient(100deg, #a8843e, #e6d2a4 55%, #b9924a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.stat .lbl { color: var(--muted); font-weight: 500; margin-top: 4px; }
.section-dark .stat .lbl { color: #b3a482; }

/* fine-dining menu panel */
.menu-panel {
  position: relative;
  border: 1px solid rgba(201, 165, 92, 0.55);
  box-shadow: inset 0 0 0 1px rgba(201, 165, 92, 0.2), var(--shadow-gold);
}
.menu-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 165, 92, 0.35);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.menu-section > h3 { letter-spacing: 0.04em; }
.menu-section > h3::before {
  content: "❖";
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.menu-item .name { letter-spacing: 0.02em; }

/* image hover: soft duotone→color everywhere */
.gallery img { filter: saturate(0.85); }
.gallery img:hover { filter: saturate(1.1); }

/* footer wordmark */
.footer-wordmark {
  text-align: center;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 165, 92, 0.3);
  line-height: 1.15;
  padding: 10px 0 26px;
  user-select: none;
}

/* buttons: subtle gold sheen sweep */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  inset-inline-start: -60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: inset-inline-start 0.6s ease;
}
.btn-gold:hover::after { inset-inline-start: 130%; }

/* headings refinement */
.section-title { letter-spacing: -0.01em; }
.hero-title { letter-spacing: -0.01em; }

/* menu notes & footer */
.menu-note {
  text-align: center;
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: 500;
  background: rgba(201, 165, 92, 0.09);
  border: 1px dashed rgba(201, 165, 92, 0.45);
  border-radius: 10px;
  padding: 10px 18px;
  margin: 18px auto 0;
  max-width: 560px;
}
.menu-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 165, 92, 0.35);
  text-align: center;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}
.menu-footer .free-drink {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}
.menu-footer strong { color: var(--gold-deep); font-size: 1.1em; }

/* menu section photos (tea & coffee) */
.menu-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.menu-imgs img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 165, 92, 0.5);
  box-shadow: var(--shadow-gold);
  transition: transform 0.4s ease;
}
.menu-imgs img:hover { transform: scale(1.03); }
@media (max-width: 560px) { .menu-imgs { grid-template-columns: 1fr; } }

/* dish thumbnails inside menu items */
.menu-item.has-thumb {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.menu-thumb {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(201, 165, 92, 0.55);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  cursor: zoom-in;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.menu-thumb:hover {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 14px 34px -10px rgba(168, 132, 62, 0.6);
}
.menu-item-body { flex: 1; min-width: 0; }
@media (max-width: 560px) {
  .menu-thumb { width: 84px; height: 84px; }
  .menu-item.has-thumb { gap: 13px; }
}

/* ===== Multilingual support ===== */
.lang-select {
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(226, 201, 135, 0.6);
  background: rgba(255, 255, 255, 0.07);
  color: #f2e2ae;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.lang-select option { color: #241d10; background: #f6f1e7; }

/* arrow flips only in RTL */
[dir="rtl"] .ic-arrow { transform: scaleX(-1); }

/* LTR fixes for elements tuned in RTL */
[dir="ltr"] .hero-scroll { transform: translateX(-50%); }
@keyframes marqueeLtr { to { transform: translateX(-50%); } }
[dir="ltr"] .marquee-track { animation-name: marqueeLtr; }

/* Japanese font stack */
html[lang="ja"] body,
html[lang="ja"] .btn,
html[lang="ja"] input,
html[lang="ja"] select {
  font-family: "IBM Plex Sans Arabic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}
html[lang="ja"] .hero-title, html[lang="ja"] .section-title { letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .lang-select { padding: 7px 9px; font-size: 0.82rem; }
}

/* language dropdown (links, not select) */
.lang-menu { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(226, 201, 135, 0.6);
  background: rgba(255, 255, 255, 0.07);
  color: #f2e2ae;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 150px;
  background: rgba(26, 20, 9, 0.97);
  border: 1px solid rgba(201, 165, 92, 0.5);
  border-radius: 12px;
  padding: 8px;
  display: none;
  z-index: 80;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.55);
}
.lang-menu.open .lang-list { display: block; }
.lang-list a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  color: #e8dcbc;
  font-size: 0.95rem;
}
.lang-list a:hover { background: rgba(201, 165, 92, 0.18); color: #f8ecc2; }
.lang-list a.current { color: var(--gold-bright); font-weight: 700; }

/* ===== إضافات: المعرض · الأسئلة · الشريط السفلي · شريط الخدمات ===== */
.amenity-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.amenity-strip .amenity { font-size: 15px; padding: 10px 22px; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-btn {
  font-family: var(--font); font-size: 14.5px; font-weight: 600; cursor: pointer;
  color: var(--ink); background: var(--paper-2); border: 1.5px solid var(--gold-soft);
  border-radius: 999px; padding: 9px 22px; transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.filter-btn[aria-pressed="true"] { background: var(--grad-gold); border-color: transparent; color: #fff; box-shadow: var(--shadow-gold); }

.gal-grid { columns: 3; column-gap: 14px; }
.gal-grid .gal-item { break-inside: avoid; margin: 0 0 14px; border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.gal-grid img {
  width: 100%; height: auto; display: block; cursor: zoom-in;
  border-radius: var(--radius-sm); transition: transform .35s ease, box-shadow .35s ease;
}
.gal-grid .gal-item:hover img { transform: scale(1.03); box-shadow: var(--shadow-gold); }
.gal-item.hide { display: none; }
@media (max-width: 900px) { .gal-grid { columns: 2; } }
@media (max-width: 520px) { .gal-grid { columns: 1; } }

.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--paper-2); border: 1px solid var(--gold-soft);
  border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 17px 22px; font-weight: 700; font-size: 16.5px; color: var(--ink-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; font-size: 22px; line-height: 1; color: var(--gold-deep);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 18px; color: var(--muted); line-height: 1.9; }

.mobile-dock {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  display: none; grid-template-columns: 1fr 1.2fr; gap: 10px;
  background: rgba(251, 248, 241, .94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold-soft);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.mobile-dock .btn { width: 100%; justify-content: center; padding: 12px 10px; font-size: 15px; }
.btn-whatsapp { background: #2e7d5b; color: #fff; }
.btn-whatsapp:hover { background: #256a4c; color: #fff; }
@media (max-width: 860px) {
  .mobile-dock { display: grid; }
  body { padding-bottom: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none !important; }
  .gal-grid img, .filter-btn, .faq-item { transition: none !important; }
}
