:root {
      --gold: #c9972c;
      --gold-light: #e8c46a;
      --cream: #f7f0e3;
      --dark: #1a1209;
      --mid: #2e1f0a;
      --rust: #8b3a1a;
      --text: #3b2a14;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--cream);
      font-family: 'Cormorant Garamond', serif;
      overflow-x: hidden;
    }

    /* ── ORNAMENT ── */
    .ornament {
      display: block;
      text-align: center;
      color: var(--gold);
      font-size: 1.4rem;
      letter-spacing: .4em;
      margin: 1rem auto;
      opacity: .75;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      padding: 1.2rem 4rem;
      display: flex; align-items: center; justify-content: space-between;
      background: linear-gradient(to bottom, rgba(26,18,9,.95), transparent);
      backdrop-filter: blur(2px);
    }
    .nav-logo {
      font-family: 'Cinzel Decorative', cursive;
      font-size: 1.1rem;
      color: var(--gold-light);
      letter-spacing: .08em;
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 2.4rem; list-style: none; }
    .nav-links a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      opacity: .85;
      transition: color .3s, opacity .3s;
    }
    .nav-links a:hover { color: var(--gold-light); opacity: 1; }
    .nav-call {
      background: var(--gold) !important;
      color: var(--dark) !important;
      padding: .4rem 1.1rem !important;
      opacity: 1 !important;
      font-weight: 700 !important;
      transition: background .3s, transform .2s !important;
    }
    .nav-call:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

    /* ── HERO / SLIDESHOW ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    /* ── HERO VIDEO ── */
    .hero-video-wrap {
      position: absolute; inset: 0; z-index: 0;
      overflow: hidden;
    }
    .hero-video {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%; min-height: 100%;
      width: auto; height: auto;
      object-fit: cover;
    }
    .hero-video-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,6,2,.55) 0%,
        rgba(10,6,2,.3)  40%,
        rgba(10,6,2,.65) 100%
      );
    }

    /* Logo badge */
    .hero-logo {
      position: relative; z-index: 5;
      margin-bottom: 1.8rem;
      animation: fadeUp .7s ease both;
    }
    .logo-circle {
      width: 120px; height: 120px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      background: rgba(26,18,9,.75);
      backdrop-filter: blur(4px);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      margin: 0 auto;
      box-shadow: 0 0 40px rgba(201,151,44,.25), inset 0 0 20px rgba(201,151,44,.08);
    }
    .logo-circle img {
      width: 80px; height: 80px;
      object-fit: contain;
      border-radius: 50%;
    }
    .logo-placeholder {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      width: 100%; height: 100%;
    }
    .logo-placeholder span:first-child {
      font-size: 2.2rem; line-height: 1;
    }
    .logo-placeholder span:last-child {
      font-family: 'Cinzel Decorative', cursive;
      font-size: .45rem;
      color: var(--gold);
      letter-spacing: .12em;
      margin-top: .3rem;
      text-transform: uppercase;
    }
    /* outer ring decoration */
    .logo-ring {
      position: relative;
      width: 136px; height: 136px;
      margin: 0 auto;
    }
    .logo-ring::before, .logo-ring::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(201,151,44,.3);
    }
    .logo-ring::after {
      inset: 6px;
      border-style: dashed;
      border-color: rgba(201,151,44,.2);
      animation: spin 20s linear infinite;
    }
    .logo-ring .logo-circle {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    @keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

    .hero-content { position: relative; z-index: 5; padding: 2rem; }
    .hero-eyebrow {
      font-family: 'Amiri', serif;
      font-size: 1rem;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      animation: fadeUp .8s .1s ease both;
      opacity: 0;
      animation-fill-mode: forwards;
    }
    .hero-title {
      font-family: 'Cinzel Decorative', cursive;
      font-size: clamp(2.8rem, 7vw, 6rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--cream);
      text-shadow: 0 4px 40px rgba(0,0,0,.8), 0 0 80px rgba(201,151,44,.3);
      animation: fadeUp .9s .2s ease both;
      opacity: 0;
      animation-fill-mode: forwards;
    }
    .hero-title span { color: var(--gold-light); }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      color: rgba(247,240,227,.8);
      margin-top: 1.2rem;
      text-shadow: 0 2px 10px rgba(0,0,0,.7);
      animation: fadeUp .9s .3s ease both;
      opacity: 0;
      animation-fill-mode: forwards;
    }
    .hero-arabic {
      font-family: 'Amiri', serif;
      font-size: 2rem;
      color: var(--gold);
      opacity: 0;
      margin-top: 1rem;
      direction: rtl;
      animation: fadeUp .9s .4s ease both;
      animation-fill-mode: forwards;
    }
    .hero-cta {
      margin-top: 2.5rem;
      display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
      animation: fadeUp .9s .5s ease both;
      opacity: 0;
      animation-fill-mode: forwards;
    }
    .btn {
      display: inline-block;
      padding: .85rem 2.4rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--gold);
      transition: background .3s, color .3s, transform .2s;
      cursor: pointer;
    }
    .btn-primary { background: var(--gold); color: var(--dark); }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-secondary { color: var(--gold); background: transparent; }
    .btn-secondary:hover { background: rgba(201,151,44,.12); transform: translateY(-2px); }

    /* scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .4rem;
      color: rgba(247,240,227,.4);
      font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
      animation: pulse 2s ease infinite;
      z-index: 10;
    }
    .scroll-hint::after {
      content: '';
      display: block;
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }

    /* ── SECTION BASICS ── */
    section { padding: 7rem 2rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: .75rem;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .8rem;
    }
    .section-title {
      font-family: 'Cinzel Decorative', cursive;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: 1.2;
      color: var(--cream);
    }
    .gold-rule {
      width: 60px; height: 2px;
      background: var(--gold);
      margin: 1.2rem 0 2rem;
    }

    /* ── ABOUT ── */
    #about { background: var(--mid); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-text p {
      font-size: 1.45rem;
      line-height: 1.9;
      color: rgba(247,240,227,.8);
      margin-bottom: 1.2rem;
    }
    .about-visual {
      position: relative;
    }
    .about-pattern {
      width: 100%;
      aspect-ratio: 4/5;
      background:
        radial-gradient(ellipse at center, rgba(201,151,44,.18) 0%, transparent 70%),
        linear-gradient(135deg, #2e1f0a 0%, #1a1209 100%);
      border: 1px solid rgba(201,151,44,.25);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .about-pattern::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        repeating-conic-gradient(rgba(201,151,44,.08) 0deg 5deg, transparent 5deg 45deg);
      background-size: 60px 60px;
    }
    .about-icon {
      font-size: 7rem;
      position: relative; z-index: 2;
      filter: drop-shadow(0 0 30px rgba(201,151,44,.5));
    }
    .about-badge {
      position: absolute;
      bottom: -1.5rem; left: -1.5rem;
      background: var(--gold);
      color: var(--dark);
      padding: 1.2rem 1.8rem;
      font-family: 'Cinzel Decorative', cursive;
      font-size: .75rem;
      text-align: center;
      line-height: 1.5;
    }
    .about-badge strong { display: block; font-size: 1.5rem; }

    /* ── PDF VIEWER ── */
    .pdf-viewer {
      background: #0d0804;
      border: 1px solid rgba(201,151,44,.2);
      border-radius: 2px;
      padding: 2rem;
      max-height: 80vh;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--gold) rgba(201,151,44,.1);
    }
    .pdf-viewer::-webkit-scrollbar { width: 6px; }
    .pdf-viewer::-webkit-scrollbar-track { background: rgba(201,151,44,.08); }
    .pdf-viewer::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
    .pdf-pages {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
    .pdf-page {
      width: 100%;
      max-width: 720px;
      display: block;
      border: 1px solid rgba(201,151,44,.15);
      box-shadow: 0 4px 30px rgba(0,0,0,.5);
    }

    /* ── MENU ── */
    #menu { background: var(--dark); }
    .menu-tabs {
      display: flex; gap: 0; flex-wrap: wrap;
      border-bottom: 1px solid rgba(201,151,44,.2);
      margin-bottom: 3rem;
    }
    .tab-btn {
      padding: .8rem 1.8rem;
      background: none; border: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 600;
      letter-spacing: .15em; text-transform: uppercase;
      color: rgba(247,240,227,.5);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color .3s, border-color .3s;
    }
    .tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
    .tab-btn:hover { color: var(--gold-light); }
    .menu-panel { display: none; }
    .menu-panel.active { display: block; }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5px;
      background: rgba(201,151,44,.1);
    }
    .menu-item {
      background: var(--dark);
      padding: 2rem;
      border: 1px solid rgba(201,151,44,.08);
      transition: border-color .3s, background .3s;
      cursor: default;
    }
    .menu-item:hover { background: rgba(201,151,44,.05); border-color: rgba(201,151,44,.3); }
    .menu-item-header {
      display: flex; justify-content: space-between; align-items: baseline;
      gap: 1rem; margin-bottom: .6rem;
    }
    .menu-item-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 600;
      color: var(--cream);
    }
    .menu-item-price {
      font-family: 'Cinzel Decorative', cursive;
      font-size: .9rem;
      color: var(--gold);
      white-space: nowrap;
    }
    .menu-item-desc {
      font-size: .95rem;
      font-style: italic;
      color: rgba(247,240,227,.55);
      line-height: 1.6;
    }
    .menu-item-tag {
      display: inline-block;
      margin-top: .8rem;
      padding: .2rem .6rem;
      font-size: .65rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      border: 1px solid var(--gold);
      color: var(--gold);
      opacity: .7;
    }
    .menu-section-heading {
      font-family: 'Cinzel Decorative', cursive;
      font-size: .85rem;
      letter-spacing: .12em;
      color: var(--gold-light);
      padding: .6rem 0 1rem;
      border-bottom: 1px solid rgba(201,151,44,.2);
      margin-bottom: 1.5rem;
    }
    .menu-arabic {
      font-family: 'Amiri', serif;
      font-size: .9rem;
      color: rgba(201,151,44,.6);
      direction: rtl;
      display: block;
      margin-top: .2rem;
    }

    /* ── EXPERIENCE ── */
    #experience {
      background: linear-gradient(160deg, var(--mid) 0%, var(--dark) 100%);
    }
    .exp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    .exp-card {
      border: 1px solid rgba(201,151,44,.15);
      padding: 2.5rem 2rem;
      text-align: center;
      position: relative;
      transition: border-color .3s;
    }
    .exp-card:hover { border-color: var(--gold); }
    .exp-card::before {
      content: '';
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 40px; height: 2px; background: var(--gold);
    }
    .exp-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .exp-title {
      font-family: 'Cinzel Decorative', cursive;
      font-size: .9rem;
      color: var(--gold-light);
      margin-bottom: 1rem;
      letter-spacing: .05em;
    }
    .exp-text {
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(247,240,227,.65);
    }

    /* ── RESERVE ── */
    #reserve {
      background: var(--dark);
      text-align: center;
    }
    .reserve-inner { max-width: 600px; margin: 0 auto; }
    .reserve-info {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; margin: 3rem 0;
      text-align: left;
    }
    .info-block h4 {
      font-family: 'Cinzel Decorative', cursive;
      font-size: .75rem;
      color: var(--gold);
      letter-spacing: .15em;
      margin-bottom: .6rem;
    }
    .info-block p {
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(247,240,227,.7);
    }
    .reserve-form {
      display: flex; flex-direction: column; gap: 1rem;
      text-align: left; margin-top: 2rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group label {
      font-size: .75rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: .8;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(201,151,44,.06);
      border: 1px solid rgba(201,151,44,.2);
      color: var(--cream);
      padding: .8rem 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      outline: none;
      transition: border-color .3s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); }
    .form-group select option { background: var(--mid); }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      text-align: center; margin-top: .5rem;
    }

    /* ── FOOTER ── */
    footer {
      background: #100c06;
      border-top: 1px solid rgba(201,151,44,.15);
      padding: 4rem 2rem 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Cinzel Decorative', cursive;
      font-size: 1.6rem;
      color: var(--gold-light);
      margin-bottom: .5rem;
    }
    .footer-tagline {
      font-style: italic;
      color: rgba(247,240,227,.4);
      font-size: 1rem;
      margin-bottom: 2rem;
    }
    .footer-links {
      display: flex; justify-content: center; gap: 2rem;
      list-style: none; flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .footer-links a {
      font-size: .85rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(247,240,227,.5);
      text-decoration: none;
      transition: color .3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      font-size: .8rem;
      color: rgba(247,240,227,.25);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: .4; }
      50% { opacity: .8; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-badge { bottom: 1rem; left: 1rem; }
      .exp-grid { grid-template-columns: 1fr; }
      .reserve-info { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }