
  :root {
    --bg-deep: #100600;
    --bg-dark: #1A0B03;
    --bg-warm: #251208;
    --bg-card: #2E1609;
    --red: #8C1C13;
    --red-light: #B02318;
    --red-glow: #C0392B;
    --gold: #C5922A;
    --gold-light: #E8B84B;
    --cream: #F2E4C4;
    --cream-dim: #C9B48A;
    --cream-muted: #8C7550;
    --text: #F0DEB8;
    --text-dim: #C4A97A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ─── GEOMETRIC PATTERN SVG ─── */
  .geo-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23C5922A' stroke-width='0.5'%3E%3Crect x='10' y='10' width='60' height='60'/%3E%3Cpolygon points='40,2 78,40 40,78 2,40'/%3E%3Cpolygon points='40,14 66,40 40,66 14,40'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Cline x1='40' y1='2' x2='40' y2='78'/%3E%3Cline x1='2' y1='40' x2='78' y2='40'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: linear-gradient(to bottom, rgba(16,6,0,0.95) 0%, rgba(16,6,0,0) 100%);
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(16,6,0,0.97); border-bottom: 0.5px solid rgba(197,146,42,0.2); }

  .nav-logo {
    font-family: 'Amiri', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    letter-spacing: 0.03em;
    text-decoration: none;
  }
  .nav-logo span { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.3em; display: block; color: var(--cream-dim); text-transform: uppercase; margin-top: -0.2rem; }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: 'Lato', sans-serif; font-weight: 300;
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--cream-dim); text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 0.5px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-reserve {
    font-family: 'Lato', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: 0.5px solid var(--gold);
    color: var(--gold); text-decoration: none;
    transition: all 0.3s;
  }
  .nav-reserve:hover { background: var(--gold); color: var(--bg-deep); }

  /* ─── HERO ─── */
  .hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
  background-image: url('hero-cover.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  }

  .hero-geo { opacity: 0.06; }

  .hero-ornament {
    position: absolute; width: 600px; height: 600px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 0.5px solid rgba(197,146,42,0.15);
    animation: rotate-slow 60s linear infinite;
  }
  .hero-ornament::before, .hero-ornament::after {
    content: ''; position: absolute; border-radius: 50%;
    border: 0.5px solid rgba(197,146,42,0.1);
  }
  .hero-ornament::before { inset: 30px; animation: rotate-slow 40s linear infinite reverse; }
  .hero-ornament::after { inset: 60px; }

  @keyframes rotate-slow { to { transform: translate(-50%, -50%) rotate(360deg); } }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 2rem;
    animation: fade-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: 'Cinzel', serif; font-size: 0.85rem;
    letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
    animation: fade-up 1.4s 0.2s both;
  }

  .hero-arabic {
    font-family: 'Amiri', serif; font-size: clamp(4rem, 10vw, 8rem);
    color: var(--cream); line-height: 1;
    text-shadow: 0 0 80px rgba(197,146,42,0.15);
    animation: fade-up 1.4s 0.3s both;
  }

  .hero-english {
    font-family: 'Cinzel', serif; font-size: clamp(1rem, 5vw, 2rem);
    letter-spacing: 0.6em; text-transform: uppercase;
    color: var(--gold-light); margin-top: 0.5rem;
    animation: fade-up 1.4s 0.4s both;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(1.1rem, 4vw, 2rem);
    color: var(--cream-dim); margin-top: 2rem; letter-spacing: 0.05em;
    animation: fade-up 1.4s 0.5s both;
  }

  .hero-divider {
    width: 60px; height: 0.5px; background: var(--gold);
    margin: 2rem auto; animation: fade-up 1.4s 0.6s both;
  }

  .hero-cta {
    display: inline-flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
    animation: fade-up 1.4s 0.7s both;
  }
  .btn-primary {
    font-family: 'Lato', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 1rem 2.5rem; background: var(--red);
    color: var(--cream); text-decoration: none;
    border: none; cursor: pointer; transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }
  .btn-ghost {
    font-family: 'Lato', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 1rem 2.5rem; background: transparent;
    border: 0.5px solid rgba(197,146,42,0.5);
    color: var(--gold); text-decoration: none; transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

  .hero-scroll {
     position: absolute; bottom: 2.5rem;
  left: 0; right: 0;          /* stretch full width */
  margin: 0 auto;             /* center the element itself */
  width: fit-content;         /* shrink to its own content width */
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--cream-muted); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  animation: fade-up 1.4s 1s both;
  }
  .scroll-line {
    width: 0.5px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
  }
  @keyframes scroll-pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

  /* ─── SECTION BASE ─── */
  section { position: relative; overflow: hidden; }

  .section-label {
    font-family: 'Cinzel', serif; font-size: 0.6rem;
    letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem); color: var(--cream);
    line-height: 1.2;
  }

  .section-title-ar {
    font-family: 'Amiri', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--cream); line-height: 1.3;
  }

  .gold-rule { 
    width: 50px; height: 0.5px; background: var(--gold); margin: 1.5rem auto;display: block;
  }

  .body-text {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    line-height: 1.85; color: var(--cream-dim); font-weight: 300;
  }

  /* ─── STORY SECTION ─── */
  .story {
    padding: 8rem 4rem;
    background: var(--bg-dark);
  }
  .story-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .story-left { position: relative; }
  .story-img-frame {
    position: relative; padding: 1.5rem;
  }
  .story-img-frame::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 1.5rem; bottom: 1.5rem;
    border: 0.5px solid rgba(197,146,42,0.3);
  }
  .story-img-frame::after {
    content: ''; position: absolute;
    top: 1.5rem; left: 1.5rem; right: 0; bottom: 0;
    border: 0.5px solid rgba(197,146,42,0.15);
  }
  .story-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    position: relative; z-index: 1;
    filter: sepia(20%) brightness(0.85);
  }
  .story-badge {
    position: absolute; bottom: 3rem; right: -2rem; z-index: 2;
    width: 100px; height: 100px; border-radius: 50%;
    background: var(--red); color: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif; text-align: center;
    border: 0.5px solid rgba(197,146,42,0.4);
  }
  .story-badge span { font-size: 1.6rem; font-weight: 600; line-height: 1; }
  .story-badge small { font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.2rem; color: var(--gold-light); }

  .story-quote {
    font-family: 'Amiri', serif; font-size: 2.2rem;
    color: var(--gold-light); line-height: 1.4;
    direction: rtl; margin-bottom: 1rem;
  }
  .story-quote-en {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.1rem; color: var(--cream-muted); margin-bottom: 2rem;
  }

  .stat-row { display: flex; gap: 3rem; margin-top: 2.5rem; }
  .stat { }
  .stat-num {
    font-family: 'Cinzel', serif; font-size: 2rem;
    color: var(--gold-light); line-height: 1;
  }
  .stat-label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--cream-muted); margin-top: 0.3rem;
  }

  /* ─── ATMOSPHERE ─── */
  .atmosphere {
    padding: 6rem 4rem;
    background: var(--bg-warm);
  }
  .atm-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
  .atm-header .gold-rule { margin: 1.5rem auto; }

  .atm-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .atm-item {
    position: relative; overflow: hidden; cursor: pointer;
  }
  .atm-item:nth-child(1) { grid-row: 1 / 3; }
  .atm-item:nth-child(2) { }
  .atm-item:nth-child(3) { }
  .atm-item:nth-child(4) { }
  .atm-item:nth-child(5) { }

  .atm-img {
    width: 100%; height: 100%; min-height: 200px;
    object-fit: cover;
    filter: sepia(30%) brightness(0.75) saturate(0.8);
    transition: transform 0.8s ease, filter 0.6s ease;
  }
  .atm-item:nth-child(1) .atm-img { min-height: 500px; }

  .atm-item:hover .atm-img {
    transform: scale(1.05);
    filter: sepia(10%) brightness(0.9) saturate(1);
  }

  .atm-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(16,6,0,0.7) 0%, transparent 60%);
    pointer-events: none;
  }

  /* ─── MENU SECTION ─── */
  .menu-section {
    padding: 8rem 4rem;
    background: var(--bg-deep);
  }
  .menu-inner { max-width: 1200px; margin: 0 auto; }
  .menu-header { text-align: center; margin-bottom: 5rem; }
  .menu-header .gold-rule { margin: 1.5rem auto; }

  .menu-tabs {
    display: flex; justify-content: center; gap: 0; margin-bottom: 3rem;
    border-bottom: 0.5px solid rgba(197,146,42,0.2);
    flex-wrap: wrap;
  }
  .branch-selector{
    display: flex; justify-content: center; gap: 0; margin-bottom: 3rem;
    border-bottom: 0.5px solid rgba(197,146,42,0.2);
    flex-wrap: wrap;
  }
  .menu-branch {
  display: none;
}

.active-branch {
  display: block;
}
.branch-btn{
   font-family: 'Lato', sans-serif; font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 0.8rem 2rem; cursor: pointer;
    color: var(--cream-muted); background: none; border: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s; position: relative; bottom: -0.5px;
}
.branch-btn.active{
  color: var(--gold-light); border-bottom-color: var(--gold);
}
.branch-btn:hover{
  color: var(--cream-dim);
}
  .menu-tab {
    font-family: 'Lato', sans-serif; font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 0.8rem 2rem; cursor: pointer;
    color: var(--cream-muted); background: none; border: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s; position: relative; bottom: -0.5px;
     display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 0.5px solid rgba(197,146,42,0.2);
  }
  .menu-tab.active { color: var(--gold-light); border-bottom-color: var(--gold); }
  .menu-tab:hover { color: var(--cream-dim); }

  .menu-panel { display: none; }
  .menu-panel.active { display: block; }

  .menu-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px; background: rgba(197,146,42,0.08);
  }
   .sub-content {
       display: none;
   }
   .sub-content:hover{background: rgba(46,22,9,0.9);}
   .sub-content.active {
     color: var(--gold-light); border-bottom-color: var(--gold);
     display: block;
   }
   .sub-content::before{
    content: ''; position: absolute; left: 0; top: 1.75rem; bottom: 1.75rem;
    width: 2px; background: var(--red);
    transform: scaleY(0); transition: transform 0.3s;
    transform-origin: bottom;
   }
   .sub-content:hover::before{transform: scaleY(1);}
   .sub-tabs{
    font-family: 'Lato', sans-serif; font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 0.8rem 2rem; cursor: pointer;
    color: var(--cream-muted); background: none; border: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s; position: relative; bottom: -0.5px;
     display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 0.5px solid rgba(197,146,42,0.2);
   }
  .menu-item {
    background: var(--bg-card);
    padding: 1.75rem 2rem;
    position: relative; overflow: hidden;
    transition: background 0.3s;
  }
  .menu-item::before {
    content: ''; position: absolute; left: 0; top: 1.75rem; bottom: 1.75rem;
    width: 2px; background: var(--red);
    transform: scaleY(0); transition: transform 0.3s;
    transform-origin: bottom;
  }
  .menu-item:hover { background: rgba(46,22,9,0.9); }
  .menu-item:hover::before { transform: scaleY(1); }

  .menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
  .menu-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--cream); font-weight: 400; }
  .menu-item-name-ar { font-family: 'Amiri', serif; font-size: 1rem; color: var(--cream-dim); direction: rtl; }
  .menu-item-price {
    font-family: 'Cinzel', serif; font-size: 0.85rem;
    color: var(--gold); white-space: nowrap;
  }
  .menu-item-desc { font-size: 0.8rem; color: var(--cream-muted); line-height: 1.5; margin-top: 0.4rem; }

  /* ─── HOOKAH SECTION ─── */
  .hookah-section {
    padding: 6rem 4rem;
    background: var(--bg-warm);
    display: flex; align-items: center; justify-content: center;
  }
  .hookah-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .hookah-visual {
    position: relative; text-align: center;
  }
  .hookah-svg {
    width: 200px; opacity: 0.9;
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

  .hookah-ring {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 300px; height: 300px; border-radius: 50%;
    border: 0.5px solid rgba(197,146,42,0.15);
  }
  .hookah-ring::before {
    content: ''; position: absolute; inset: 20px; border-radius: 50%;
    border: 0.5px solid rgba(197,146,42,0.08);
  }

  .hookah-flavors { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .flavor-chip {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(16,6,0,0.5); border: 0.5px solid rgba(197,146,42,0.15);
    transition: border-color 0.3s;
    cursor: default;
  }
  .flavor-chip:hover { border-color: rgba(197,146,42,0.4); }
  .flavor-name { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--cream); }
  .flavor-price { font-family: 'Cinzel', serif; font-size: 0.7rem; color: var(--gold); }

  /* ─── EXPERIENCE ─── */
  .experience {
    padding: 8rem 4rem;
    background: var(--bg-deep);
  }
  .exp-inner { max-width: 1200px; margin: 0 auto; }
  .exp-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem;
    margin-top: 4rem;
  }
  .exp-card { text-align: center; padding: 3rem 2rem; position: relative; }
  .exp-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 30px; height: 1px; background: var(--gold);
  }
  .exp-icon {
    font-size: 2rem; margin-bottom: 1.5rem; display: block;
  }
  .exp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--cream); margin-bottom: 0.75rem; }
  .exp-text { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.8; }

  /* ─── LOCATIONS ─── */
  .locations {
    padding: 8rem 4rem;
    background: var(--bg-dark);
  }
  .loc-inner { max-width: 1200px; margin: 0 auto; }
  .loc-header { text-align: center; margin-bottom: 5rem; }
  .loc-header .gold-rule { margin: 1.5rem auto; }

  .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

  .loc-card {
    background: var(--bg-card);
    padding: 4rem 3.5rem;
    position: relative; overflow: hidden;
  }
  .loc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(to right, var(--red), var(--gold));
  }
  .loc-num {
    font-family: 'Cinzel', serif; font-size: 4rem;
    color: rgba(197,146,42,0.08); line-height: 1;
    margin-bottom: -1rem; font-weight: 600;
  }
  .loc-name-ar {
    font-family: 'Amiri', serif; font-size: 1.6rem;
    color: var(--gold-light); margin-bottom: 0.5rem; direction: rtl;
    text-align: right;
  }
  .loc-name-en {
    font-family: 'Cinzel', serif; font-size: 0.75rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--cream-muted); margin-bottom: 2rem;
  }
  .loc-detail {
    display: flex; flex-direction: column; gap: 0.75rem;
    margin-top: 2rem;
  }
  .loc-row {
    display: flex; align-items: flex-start; gap: 1rem;
    font-size: 0.85rem;
  }
  .loc-row-label {
    min-width: 70px; font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); padding-top: 0.2rem;
  }
  .loc-row-val { color: var(--cream-dim); line-height: 1.5; }

  .loc-map-btn {
    display: inline-block; margin-top: 2rem;
    font-family: 'Lato', sans-serif; font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 0.75rem 2rem;
    border: 0.5px solid rgba(197,146,42,0.3);
    color: var(--gold); text-decoration: none; transition: all 0.3s;
  }
  .loc-map-btn:hover { background: rgba(197,146,42,0.1); border-color: var(--gold); }

  /* ─── GAMES STRIP ─── */
  .games-strip {
    padding: 4rem;
    background: var(--red);
    text-align: center;
  }
  .games-strip-text {
    font-family: 'Amiri', serif; font-size: 1.6rem;
    color: var(--cream); margin-bottom: 0.5rem;
  }
  .games-strip-sub {
    font-family: 'Cinzel', serif; font-size: 0.65rem;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(242,228,196,0.7); margin-bottom: 1.5rem;
  }
  .games-list {
    display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
    list-style: none;
  }
  .games-list li {
    font-family: 'Lato', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(242,228,196,0.8); padding: 0.4rem 0;
    border-bottom: 0.5px solid rgba(242,228,196,0.3);
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 5rem 4rem 3rem;
    background: var(--bg-deep);
    border-top: 0.5px solid rgba(197,146,42,0.12);
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
  }
  .footer-logo {
    font-family: 'Amiri', serif; font-size: 2.5rem;
    color: var(--gold-light); line-height: 1;
  }
  .footer-logo-en {
    font-family: 'Cinzel', serif; font-size: 0.6rem;
    letter-spacing: 0.4em; color: var(--cream-muted); text-transform: uppercase;
    display: block; margin-top: 0.3rem;
  }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 0.95rem; color: var(--cream-muted);
    margin-top: 1rem; line-height: 1.6;
  }
  .footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
  .footer-social a {
    width: 36px; height: 36px; border: 0.5px solid rgba(197,146,42,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.75rem; text-decoration: none;
    transition: all 0.3s;
  }
  .footer-social a:hover { background: rgba(197,146,42,0.1); border-color: var(--gold); }

  .footer-col h4 {
    font-family: 'Cinzel', serif; font-size: 0.6rem;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a {
    font-size: 0.8rem; color: var(--cream-muted); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--cream-dim); }

  .footer-bottom {
    max-width: 1200px; margin: 3rem auto 0;
    padding-top: 2rem; border-top: 0.5px solid rgba(197,146,42,0.08);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 0.7rem; color: var(--cream-muted); }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── DECORATIVE DIAMOND DIVIDER ─── */
  .diamond-divider {
    text-align: center; padding: 1rem 0;
    color: var(--gold); font-size: 0.5rem; letter-spacing: 1rem;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
     .sub-tab {
    padding: 0.7rem 0.8rem;
    letter-spacing: 0.1em;
    font-size: 0.6rem;
  }
  .hero-bg {
    background-image: url('phone_back.png');
  }
  .gold-rule {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content {
    width: 100%;
    padding: 0 1.5rem;
  }

  .hero-cta {
    display: flex;          /* change from inline-flex → flex */
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .menu-tabs,
  .branch-selector {
    justify-content: center;
    padding: 0 0.5rem;
  }

  .menu-tab,
  .branch-btn {
    padding: 0.7rem 0.8rem;
    letter-spacing: 0.1em;  /* reduce tracking so tabs fit */
    font-size: 0.6rem;
  }
    nav { padding: 1rem 2rem; }
    .nav-links { display: none; }
    .story-inner, .hookah-inner, .exp-grid, .loc-grid, .footer-inner {
      grid-template-columns: 1fr;
    }
    .atm-grid { grid-template-columns: 1fr 1fr; }
    .atm-item:nth-child(1) { grid-column: 1 / -1; grid-row: auto; }
    section, .story, .atmosphere, .menu-section, .experience, .locations { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hookah-section { padding-left: 1.5rem; padding-right: 1.5rem; }
    footer { padding-left: 1.5rem; padding-right: 1.5rem; }
    .story-badge { right: 0; }
    .games-strip { padding: 3rem 1.5rem; }
  }
