/* =========================================
   CAFE AYN — Main Stylesheet
   Black & Gold Premium Coffee Website
   ========================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #080808;
  --dark:         #0f0f0f;
  --card:         #141414;
  --card-hover:   #1a1a1a;
  --border:       rgba(201, 168, 76, 0.15);
  --border-hover: rgba(201, 168, 76, 0.35);

  --gold:         #C9A84C;
  --gold-light:   #E8C96D;
  --gold-dark:    #9A7B2F;
  --gold-grad:    linear-gradient(135deg, #9A7B2F 0%, #E8C96D 50%, #9A7B2F 100%);

  --white:        #FFFFFF;
  --text:         rgba(255,255,255,0.85);
  --text-muted:   rgba(255,255,255,0.45);
  --text-light:   rgba(255,255,255,0.65);

  --heading:      'Cormorant Garamond', serif;
  --body:         'Montserrat', sans-serif;
  --arabic:       'Amiri', serif;
  --calligraphy:  'Amiri', serif;

  --nav-h:        80px;
  --radius:       6px;
  --shadow:       0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.2);
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: 0.18em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 0.06em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.04em; }
em { font-style: italic; color: var(--gold-light); }

/* ===== SHARED COMPONENTS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-tag.light { color: var(--gold-light); }
.section-desc {
  margin-top: 16px; color: var(--text-muted);
  font-size: 0.95rem; max-width: 560px;
  margin-left: auto; margin-right: auto;
}

.gold-line {
  width: 60px; height: 2px;
  background: var(--gold-grad);
  margin: 18px auto 0; border-radius: 2px;
}
.gold-line.left   { margin-left: 0; margin-right: 0; }
.gold-line.center { margin: 18px auto 0; }
.about-copy .gold-line { margin-top: 18px; margin-bottom: 28px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  font-family: var(--body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: var(--radius); transition: all 0.3s var(--ease);
}
.btn-gold { background: var(--gold-grad); color: var(--black); border: 2px solid transparent; }
.btn-gold:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); filter: brightness(1.1); }
.btn-outline { background: transparent; color: var(--gold-light); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-lg   { padding: 18px 52px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-gold-sm {
  display: inline-block; padding: 10px 24px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  border-radius: var(--radius); transition: all 0.3s var(--ease);
}
.btn-gold-sm:hover { background: var(--gold); color: var(--black); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader-logo { width: 120px; height: 120px; object-fit: contain; animation: pulse-logo 1.5s ease-in-out infinite; }
@keyframes pulse-logo {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.08); opacity: 1;   }
}
.preloader-bar { width: 160px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.preloader-fill { height: 100%; width: 0%; background: var(--gold-grad); animation: preload-fill 1.8s var(--ease) forwards; }
@keyframes preload-fill { to { width: 100%; } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#navbar.scrolled {
  background: rgba(8,8,8,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5); border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { width: 54px; height: 54px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(201,168,76,0.25)); }
.nav-actions { display: flex; align-items: center; gap: 4px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand { font-family: var(--heading); font-size: 1.15rem; letter-spacing: 0.2em; color: var(--gold-light); font-weight: 500; }
.nav-tagline { font-family: var(--heading); font-style: italic; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-muted); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 14px; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); border-radius: var(--radius);
  transition: color 0.3s var(--ease); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 12px; padding: 10px 24px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold-grad); color: var(--black); border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); filter: brightness(1.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: all 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding-top: var(--nav-h); box-sizing: border-box;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.35) saturate(0.6);
  transform: scale(1.05); transition: transform 8s ease;
}
.hero:hover .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.85) 80%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 0 24px; animation: fadeUp 1.2s 0.4s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.coming-soon-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 20px; border: 1px solid var(--gold); border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 8px;
  position: relative; z-index: 3;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }
.hero-logo-wrap { width: 290px; height: 290px; }
.hero-logo-img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 30px rgba(201,168,76,0.4)); }
.hero-title {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.3em; margin-bottom: 0;
}
.hero-calli {
  font-family: var(--calligraphy); font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold-light); direction: rtl; letter-spacing: 0.04em; line-height: 1.4;
  text-shadow: 0 2px 20px rgba(201,168,76,0.25); margin-bottom: 2px;
}
.hero-calli-en {
  font-family: var(--heading); font-style: italic;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: var(--text-muted); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 4px;
}
.hero-tagline-ar {
  font-family: var(--calligraphy); font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(201,168,76,0.55); direction: rtl; letter-spacing: 0.04em; margin-top: 4px;
}
.hero-divider { display: flex; align-items: center; gap: 16px; width: 220px; color: var(--gold); font-size: 0.7rem; }
.hero-divider span { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.hero-divider span:last-child { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-tagline { font-family: var(--heading); font-size: clamp(1rem, 2vw, 1.35rem); font-style: italic; color: var(--text-light); letter-spacing: 0.08em; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.3s; animation: float 2s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--gold); }
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ===== FEATURES ===== */
.features { padding: 120px 0; background: var(--dark); border-top: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 28px; text-align: center; transition: all 0.4s var(--ease);
}
.feature-card:hover { background: var(--card-hover); border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,168,76,0.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.4rem; color: var(--gold);
  transition: all 0.3s var(--ease);
}
.feature-card:hover .feature-icon { background: rgba(201,168,76,0.15); border-color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.15); }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--gold-light); }
.feature-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

/* ===== SIGNATURE DRINKS ===== */
.signature-section { padding: 120px 0; background: var(--black); border-top: 1px solid var(--border); }
.drinks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 64px; }
.drink-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--card); cursor: pointer; }
.drink-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  filter: brightness(0.65) saturate(0.75);
}
.drink-card:hover img { transform: scale(1.07); filter: brightness(0.45) saturate(0.65); }
.drink-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 56px 24px 28px;
  background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, transparent 100%);
}
.drink-card-tag {
  display: inline-block; margin-bottom: 8px;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 2px 10px;
}
.drink-card-name { font-family: var(--heading); font-size: 1.3rem; color: var(--white); margin-bottom: 4px; line-height: 1.3; }
.drink-card-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6;
  opacity: 0; transform: translateY(8px); transition: all 0.45s var(--ease);
}
.drink-card:hover .drink-card-desc { opacity: 1; transform: translateY(0); }
.drink-card-price { font-family: var(--heading); font-size: 0.9rem; color: var(--gold); margin-top: 8px; }

/* ===== ABOUT ===== */
.about-section {
  position: relative; padding: 150px 0; border-top: 1px solid var(--border); overflow: hidden;
}
.about-bg { position: absolute; inset: 0; z-index: 0; }
.about-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  filter: brightness(0.28) saturate(0.7);
  transition: transform 10s ease;
}
.about-section:hover .about-bg img { transform: scale(1.04); }
.about-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 50% 60%, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.72) 100%);
}
.about-content {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto; text-align: center;
}
.about-content h2 { margin: 12px 0 0; }
.about-lead { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin: 24px 0 16px; }
.about-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.about-calli {
  margin: 28px auto; padding: 18px 32px;
  border-top: 1px solid rgba(201,168,76,0.35);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.04);
  max-width: 560px;
}
.about-calli .ac-english {
  font-family: var(--heading); font-style: italic;
  font-size: 1.2rem; color: var(--gold-light); letter-spacing: 0.04em; line-height: 1.5;
}
.about-stats {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border);
}
/* Decorative logo — right side of about section */
.about-deco-logo {
  position: absolute;
  right: 5vw; top: 50%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  z-index: 2; opacity: 0.82;
  pointer-events: none;
}
.about-deco-logo img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.9));
}
@media (max-width: 1200px) { .about-deco-logo { display: none; } }

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--heading); font-size: 2.4rem; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }

/* ===== ATMOSPHERE (full bleed) ===== */
.atmosphere-section { position: relative; height: 60vh; min-height: 460px; overflow: hidden; }
.atmosphere-section img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  filter: brightness(0.4) saturate(0.55);
  transition: transform 10s ease;
}
.atmosphere-section:hover img { transform: scale(1.04); }
.atmosphere-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.55) 100%);
}
.atmosphere-text {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.atmosphere-eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.atmosphere-title {
  font-family: var(--heading); font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300; color: var(--white);
  letter-spacing: 0.06em; line-height: 1.1; margin-bottom: 20px;
}
.atmosphere-title em { color: var(--gold-light); }
.atmosphere-sub {
  font-size: 0.75rem; color: rgba(255,255,255,0.42);
  letter-spacing: 0.24em; text-transform: uppercase;
}

/* ===== MENU ===== */
.menu-section { padding: 120px 0; background: var(--black); }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 52px; }
.menu-tab {
  padding: 10px 24px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px; transition: all 0.3s var(--ease);
}
.menu-tab:hover { color: var(--gold-light); border-color: var(--border-hover); }
.menu-tab.active { background: var(--gold-grad); color: var(--black); border-color: transparent; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
.menu-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.25s var(--ease);
}
.menu-item:hover { background: rgba(255,255,255,0.02); }
.menu-item-body { flex: 1; }
.menu-item-body h4 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 4px; transition: color 0.25s; }
.menu-item:hover .menu-item-body h4 { color: var(--gold-light); }
.menu-item-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.menu-vol {
  display: inline-block; margin-top: 6px;
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--gold-dark); background: rgba(201,168,76,0.06); padding: 2px 8px; border-radius: 3px;
}
.menu-price { font-family: var(--heading); font-size: 1.05rem; color: var(--gold); white-space: nowrap; padding-top: 2px; }
.menu-note { text-align: center; margin-top: 48px; font-size: 0.8rem; color: var(--text-muted); }
.menu-note a { color: var(--gold); }
.menu-note a:hover { text-decoration: underline; }

/* ===== ORDER ONLINE ===== */
.order-section { padding: 100px 0; background: var(--dark); border-top: 1px solid var(--border); }
.order-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.order-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 28px; text-align: center; transition: all 0.35s var(--ease);
}
.order-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.order-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 16px; }
.order-card-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 16px; }
.order-card h4, .order-card-name { font-size: 1.1rem; color: var(--white); margin-bottom: 6px; }
.order-card p, .order-card-region { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.ca-only-label, .us-only-label { font-size: 0.75rem; color: var(--gold); margin-bottom: 20px; letter-spacing: 0.05em; }
.order-card.hidden-market { display: none; }

/* ===== FRANCHISE ===== */
.franchise-cta { margin-top: 48px; }
.franchise-cta .btn { min-width: 260px; }
.franchise-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 0 48px; text-align: left; }
.franchise-benefits .benefit:nth-child(5) { grid-column-start: 2; }
@media (max-width: 1024px) {
  .franchise-benefits { grid-template-columns: repeat(3, 1fr); }
  .franchise-benefits .benefit:nth-child(5) { grid-column-start: auto; }
}
@media (max-width: 768px) {
  .franchise-benefits { grid-template-columns: repeat(2, 1fr); }
  .franchise-benefits .benefit:nth-child(5) { grid-column-start: auto; }
}
@media (max-width: 480px) {
  .franchise-benefits { grid-template-columns: 1fr; }
  .franchise-benefits .benefit:nth-child(5) { grid-column-start: auto; }
}

.franchise-section { position: relative; padding: 120px 0; overflow: hidden; }
.franchise-bg { position: absolute; inset: 0; z-index: 0; }
.franchise-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.15) saturate(0.4); }
.franchise-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.65) 100%); z-index: 1;
}
.franchise-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.franchise-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: 12px 0 0;
}
.franchise-desc { margin-top: 24px; font-size: 1rem; color: var(--text-light); max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.8; }

/* Franchise Stats */
.franchise-stats {
  display: flex; justify-content: center;
  margin: 52px 0 48px; border: 1px solid var(--border); border-radius: var(--radius);
}
.f-stat {
  flex: 1; text-align: center; padding: 36px 32px;
  border-right: 1px solid var(--border); transition: background 0.3s var(--ease);
}
.f-stat:last-child { border-right: none; }
.f-stat:hover { background: rgba(201,168,76,0.04); }
.f-stat-num {
  font-family: var(--heading); font-size: 2.2rem; line-height: 1; display: block; margin-bottom: 10px;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.f-stat-lbl {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); display: block;
}

.benefit {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; transition: all 0.35s var(--ease);
}
.benefit:hover { background: rgba(201,168,76,0.05); border-color: var(--border-hover); }
.benefit i { font-size: 1.5rem; color: var(--gold); margin-bottom: 12px; }
.benefit h4 { font-size: 1rem; margin-bottom: 8px; color: var(--gold-light); }
.benefit p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-section { padding: 120px 0; background: var(--black); }

/* 3 horizontal images stacked — full width, no watermark */
.gallery-stack {
  display: flex; flex-direction: column; gap: 6px;
}
.gallery-row {
  width: 100%; overflow: hidden; line-height: 0;
}
.gallery-row img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.78) saturate(0.85);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
  transform-origin: center;
}
.gallery-row:hover img {
  filter: brightness(1.08) saturate(1.15);
  transform: scale(1.03);
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 4px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 2px; }
.gallery-item.gi-large { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.6) saturate(0.7);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.8) saturate(0.9); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); opacity: 0; transition: opacity 0.35s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-wm {
  position: absolute; bottom: 14px; right: 14px;
  width: 36px; height: 36px; opacity: 0;
  transition: opacity 0.4s var(--ease); z-index: 3; pointer-events: none;
}
.gallery-wm img {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}
.gallery-item:hover .gallery-wm { opacity: 0.65; }

/* ===== CONTACT ===== */
.contact-section { padding: 120px 0; background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.opening-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; text-align: center; margin-bottom: 32px;
}
.opening-logo { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; }
.opening-card h3 { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 12px; }
.opening-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.contact-details { margin-bottom: 28px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.contact-row i { font-size: 1rem; color: var(--gold); margin-top: 2px; min-width: 20px; }
.contact-row div { display: flex; flex-direction: column; gap: 2px; }
.contact-row strong { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.contact-row a, .contact-row span { font-size: 0.9rem; color: var(--text-light); }
.contact-row a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted); transition: all 0.3s var(--ease);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold-light); margin-bottom: 28px; font-weight: 400; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; font-family: var(--body); font-size: 0.88rem; color: var(--text);
  outline: none; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-field select { cursor: pointer; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none; padding: 14px 18px;
  background: rgba(201,168,76,0.08); border: 1px solid var(--gold); border-radius: var(--radius);
  font-size: 0.88rem; color: var(--gold-light); gap: 8px; align-items: center;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer-brand .footer-logo { width: 72px; height: 72px; margin-bottom: 16px; }
.footer-brand .footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; letter-spacing: 0.18em; color: #E8C96D; display: block; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-top: 8px; }
.footer-brand > p { font-family: var(--heading); font-style: italic; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-arabic { font-family: var(--calligraphy); font-size: 1.1rem; color: var(--gold); direction: rtl; margin-top: 4px; line-height: 1.5; }
.footer-arabic-sm { font-family: var(--calligraphy); font-size: 0.9rem; color: var(--text-muted); direction: rtl; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted); transition: all 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* Footer Newsletter */
.footer-newsletter { margin-top: 24px; }
.footer-newsletter p { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.newsletter-form { display: flex; }
.newsletter-form input {
  flex: 1; padding: 11px 14px; background: var(--card);
  border: 1px solid var(--border); border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--body); font-size: 0.82rem; color: var(--text); outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 11px 18px; background: var(--gold-grad); color: var(--black);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: filter 0.25s;
}
.newsletter-form button:hover { filter: brightness(1.1); }

.footer-col h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.footer-col ul li i { color: var(--gold); font-size: 0.75rem; min-width: 14px; }
.footer-col ul a { color: var(--text-muted); transition: color 0.25s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-muted); transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold); }

/* ===== HELPERS ===== */
.ayn-gold { color: var(--gold-light); font-style: normal; }

/* ===== COUNTRY SELECTOR ===== */
.country-selector {
  display: flex; align-items: center; gap: 6px; margin-left: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; padding: 5px 10px;
}
.cs-btn { display: flex; align-items: center; gap: 5px; padding: 3px 6px; border-radius: 50px; transition: all 0.25s var(--ease); opacity: 0.45; }
.cs-btn:hover { opacity: 0.75; }
.cs-btn.active { opacity: 1; background: rgba(201,168,76,0.12); }
.cs-flag { font-size: 1rem; line-height: 1; }
.cs-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold-light); }
.cs-sep { font-size: 0.65rem; color: var(--border-hover); user-select: none; }

/* ===== CURRENCY INDICATOR ===== */
.currency-indicator { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 24px; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--text-muted); }
.ci-label { text-transform: uppercase; }
.ci-flag  { font-size: 1rem; }
.ci-value { font-weight: 700; color: var(--gold); letter-spacing: 0.15em; }
.menu-price.changing { animation: priceFlip 0.3s ease; }
@keyframes priceFlip {
  0%  { opacity: 1; transform: translateY(0); }
  50% { opacity: 0; transform: translateY(-6px); }
  100%{ opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 560px; margin: 0 auto; }
  .franchise-stats { flex-wrap: wrap; }
  .f-stat { min-width: 40%; border-bottom: 1px solid var(--border); }
  .f-stat:nth-child(2) { border-right: none; }
  .f-stat:nth-child(3) { border-bottom: none; }
  .f-stat:last-child   { border-bottom: none; border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gi-large { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,0.98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch;
    padding: 16px 20px 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%); opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    pointer-events: none; z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 12px 8px; font-size: 0.8rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 8px 0 0; text-align: center; padding: 14px; }
  .hamburger { display: flex; }
  .hero-logo-wrap { width: 120px; height: 120px; }
  .hero-btns { gap: 12px; }
  .btn { padding: 12px 28px; }
  .features, .signature-section, .about-section, .menu-section, .order-section,
  .franchise-section, .gallery-section, .contact-section { padding: 80px 0; }
  .atmosphere-section { height: 50vh; min-height: 360px; }
  .drinks-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 8px 16px; font-size: 0.7rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.gi-large { grid-column: span 1; }
  .country-selector { margin-left: 0; order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .franchise-stats { flex-direction: column; }
  .f-stat { min-width: 100%; border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .f-stat:last-child { border-bottom: none !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .drinks-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .menu-tab { white-space: nowrap; }
}
