:root {
  --ink: #123c2d;
  --ink-deep: #09271d;
  --gold: #b98a31;
  --gold-soft: #d9bd79;
  --paper: #f5f0e7;
  --paper-light: #fbf8f2;
  --muted: #6f746d;
  --line: rgba(18, 60, 45, .15);
  --shadow: 0 24px 70px rgba(31, 45, 37, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-deep);
  background:
    radial-gradient(circle at 10% 10%, rgba(185, 138, 49, .07), transparent 24rem),
    radial-gradient(circle at 90% 35%, rgba(18, 60, 45, .05), transparent 28rem),
    var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  z-index: 20;
}

.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.ambient { position: fixed; border-radius: 999px; filter: blur(10px); pointer-events: none; z-index: -1; }
.ambient-one { width: 340px; height: 340px; background: rgba(185, 138, 49, .08); top: -120px; right: -100px; }
.ambient-two { width: 420px; height: 420px; background: rgba(18, 60, 45, .06); bottom: 8%; left: -200px; }

.hero { min-height: 94vh; display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.nav { height: 90px; display: flex; align-items: center; justify-content: space-between; }
.brand { color: var(--ink); text-decoration: none; letter-spacing: .22em; font-size: .76rem; font-weight: 700; display: flex; gap: 10px; align-items: center; }
.brand-mark { color: var(--gold); font-size: .85rem; }
.nav-link { color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 600; border-bottom: 1px solid var(--gold); padding-bottom: 4px; transition: .25s ease; }
.nav-link:hover { color: var(--gold); }

.hero-inner { flex: 1; display: grid; place-items: center; align-content: center; text-align: center; padding: 70px 0 110px; }
.eyebrow, .section-kicker { margin: 0 0 22px; letter-spacing: .25em; color: var(--gold); font-size: .73rem; font-weight: 700; }
.hero h1 { margin: 0; font-family: "Oswald", sans-serif; font-size: clamp(4.8rem, 15vw, 10.5rem); line-height: .84; letter-spacing: -.045em; font-weight: 600; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 span { color: var(--ink); }
.hero h1 strong { color: var(--gold); font-size: .82em; font-weight: 600; margin-top: .08em; }
.hero-rule { width: min(460px, 82vw); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; margin: 34px auto 26px; color: var(--gold); }
.hero-rule span { height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero-rule span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-rule b { font-size: .86rem; }
.hero-copy { max-width: 520px; margin: 0 auto 34px; color: var(--muted); font-size: clamp(1rem, 2.5vw, 1.16rem); line-height: 1.75; }
.hero-cta { display: inline-flex; align-items: center; gap: 16px; color: var(--ink); text-decoration: none; font-weight: 700; font-size: .92rem; }
.hero-cta span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--gold-soft); border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.hero-cta:hover span { transform: translateY(4px); background: rgba(185, 138, 49, .09); }

.main-content { padding: 110px 0 140px; }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.intro h2 { margin: 0; color: var(--ink); font-family: "Oswald"; font-size: clamp(3rem, 7vw, 5.4rem); line-height: .95; text-transform: uppercase; }
.intro > p { margin: 0; color: var(--muted); line-height: 1.8; max-width: 470px; justify-self: end; }

.category-bar { position: sticky; top: 14px; z-index: 10; display: flex; gap: 8px; width: fit-content; max-width: 100%; overflow-x: auto; padding: 7px; margin-bottom: 90px; border: 1px solid rgba(18,60,45,.11); border-radius: 999px; background: rgba(251,248,242,.85); backdrop-filter: blur(14px); box-shadow: 0 12px 34px rgba(18,60,45,.07); scrollbar-width: none; }
.category-bar::-webkit-scrollbar { display: none; }
.category { border: 0; background: transparent; color: var(--muted); border-radius: 999px; padding: 11px 19px; font: inherit; font-size: .84rem; font-weight: 700; cursor: pointer; transition: .25s ease; white-space: nowrap; }
.category:hover { color: var(--ink); }
.category.active { color: var(--paper-light); background: var(--ink); }

.menu-section { scroll-margin-top: 95px; margin-bottom: 120px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding-bottom: 24px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.section-heading > div { display: flex; gap: 18px; align-items: baseline; }
.section-number { color: var(--gold); font-family: "Oswald"; font-size: 1rem; }
.section-heading h3 { margin: 0; font-family: "Oswald"; color: var(--ink); text-transform: uppercase; letter-spacing: .02em; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; }
.section-heading p { color: var(--muted); margin: 0 0 5px; font-size: .88rem; }

.cocktail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cocktail-card { position: relative; padding: 34px 34px 30px; min-height: 190px; border: 1px solid var(--line); background: rgba(251,248,242,.55); box-shadow: var(--shadow); transition: transform .3s ease, border-color .3s ease, background .3s ease; overflow: hidden; }
.cocktail-card::after { content: ""; position: absolute; width: 90px; height: 90px; border: 1px solid rgba(185,138,49,.25); border-radius: 50%; right: -35px; bottom: -35px; transition: transform .4s ease; }
.cocktail-card:hover { transform: translateY(-5px); border-color: rgba(185,138,49,.5); background: var(--paper-light); }
.cocktail-card:hover::after { transform: scale(1.25); }
.cocktail-card.wide { grid-column: 1 / -1; }
.card-index { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .18em; }
.cocktail-card h4 { margin: 32px 0 10px; font-size: 1.27rem; color: var(--ink); }
.cocktail-card p { margin: 0; color: var(--muted); line-height: 1.65; max-width: 510px; }

.item-list { background: rgba(251,248,242,.55); border: 1px solid var(--line); box-shadow: var(--shadow); }
.menu-row { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 24px 28px; border-bottom: 1px solid var(--line); transition: background .22s ease, padding-left .22s ease; }
.menu-row:last-child { border-bottom: 0; }
.menu-row:hover { background: rgba(185,138,49,.055); padding-left: 34px; }
.menu-row > div { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.arabic { color: var(--ink); font-family: "Noto Sans Arabic", sans-serif; font-weight: 600; font-size: 1.06rem; }
.english { color: var(--muted); font-size: .9rem; }
.english.primary { color: var(--ink); font-weight: 600; font-size: 1rem; }
.menu-row strong { color: var(--ink); white-space: nowrap; font-size: 1rem; }
.menu-row small { color: var(--gold); font-size: .62rem; letter-spacing: .1em; }
.menu-row.featured { background: var(--ink); }
.menu-row.featured .english, .menu-row.featured strong { color: var(--paper-light); }
.menu-row.featured small { color: var(--gold-soft); }
.badge { border: 1px solid rgba(217,189,121,.55); color: var(--gold-soft); font-size: .6rem; letter-spacing: .14em; padding: 5px 8px; }

footer { background: var(--ink-deep); color: var(--paper-light); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner > div { display: flex; align-items: center; gap: 14px; }
.footer-star { color: var(--gold-soft); }
.footer-inner p { margin: 0; font-size: .9rem; }
.footer-inner a { color: var(--gold-soft); text-decoration: none; font-size: .84rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav { height: 74px; }
  .hero { min-height: 86vh; }
  .hero-inner { padding-bottom: 82px; }
  .main-content { padding-top: 78px; }
  .intro { grid-template-columns: 1fr; gap: 22px; margin-bottom: 40px; }
  .intro > p { justify-self: start; }
  .category-bar { margin-bottom: 70px; width: 100%; }
  .cocktail-grid { grid-template-columns: 1fr; }
  .cocktail-card.wide { grid-column: auto; }
  .section-heading { align-items: start; flex-direction: column; gap: 12px; }
  .section-heading p { display: none; }
  .menu-row { padding: 20px 18px; gap: 16px; align-items: flex-start; }
  .menu-row:hover { padding-left: 18px; }
  .menu-row > div { gap: 5px 12px; flex-direction: column; align-items: flex-start; }
  .menu-row strong { margin-top: 2px; font-size: .93rem; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Mobile refinement */
@media (max-width: 760px) {
  body { background-attachment: scroll; }
  body::before { opacity: .18; }

  .shell { width: min(100% - 32px, 1120px); }

  .hero { min-height: auto; }
  .nav { height: 68px; }
  .brand { font-size: .69rem; letter-spacing: .18em; }
  .nav-link { font-size: .8rem; }

  .hero-inner {
    min-height: calc(100svh - 68px);
    padding: 56px 0 72px;
  }
  .eyebrow { margin-bottom: 18px; font-size: .63rem; letter-spacing: .19em; }
  .hero h1 { font-size: clamp(4rem, 22vw, 6.2rem); line-height: .88; }
  .hero h1 strong { margin-top: .12em; }
  .hero-rule { margin: 26px auto 22px; gap: 14px; }
  .hero-copy { max-width: 330px; margin-bottom: 28px; font-size: .96rem; line-height: 1.65; }
  .hero-cta { font-size: .84rem; }

  .main-content { padding: 64px 0 96px; }
  .intro { margin-bottom: 32px; }
  .section-kicker { margin-bottom: 14px; font-size: .65rem; }
  .intro h2 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
  .intro > p { font-size: .92rem; line-height: 1.65; }

  .category-bar {
    top: 8px;
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-bottom: 58px;
    padding: 5px;
    border-radius: 16px;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }
  .category {
    padding: 10px 15px;
    font-size: .78rem;
    scroll-snap-align: start;
  }

  .menu-section { margin-bottom: 86px; scroll-margin-top: 78px; }
  .section-heading { padding-bottom: 18px; margin-bottom: 22px; }
  .section-heading > div { gap: 12px; align-items: center; }
  .section-number { font-size: .86rem; }
  .section-heading h3 { font-size: clamp(1.85rem, 10vw, 2.75rem); line-height: 1.05; }

  .cocktail-grid { gap: 10px; }
  .cocktail-card {
    min-height: 0;
    padding: 24px 22px 22px;
    box-shadow: 0 14px 38px rgba(31, 45, 37, .06);
  }
  .cocktail-card::after { width: 68px; height: 68px; }
  .cocktail-card h4 { margin: 20px 0 8px; font-size: 1.08rem; }
  .cocktail-card p { font-size: .9rem; line-height: 1.55; }

  .item-list { box-shadow: 0 14px 38px rgba(31, 45, 37, .06); }
  .menu-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
  }
  .menu-row > div {
    min-width: 0;
    display: block;
  }
  .arabic, .english, .english.primary { display: block; }
  .arabic { margin-bottom: 3px; font-size: 1rem; line-height: 1.45; }
  .english { font-size: .82rem; line-height: 1.4; overflow-wrap: anywhere; }
  .english.primary { font-size: .94rem; line-height: 1.4; }
  .menu-row strong {
    align-self: center;
    margin: 0;
    font-size: .9rem;
    text-align: right;
    line-height: 1.15;
  }
  .menu-row small { display: block; margin-top: 3px; font-size: .55rem; }
  .badge { display: inline-block; margin-top: 8px; }

  footer { padding: 34px 0; }
  .footer-inner { gap: 18px; }
  .footer-inner p { font-size: .82rem; line-height: 1.45; }
}

@media (max-width: 420px) {
  .shell { width: min(100% - 24px, 1120px); }
  .nav { height: 62px; }
  .hero-inner { min-height: calc(100svh - 62px); padding: 44px 0 58px; }
  .hero h1 { font-size: clamp(3.55rem, 21vw, 5rem); }
  .hero-copy { max-width: 290px; font-size: .9rem; }
  .category { padding-inline: 13px; }
  .menu-row { grid-template-columns: minmax(0, 1fr) 88px; gap: 10px; padding: 16px 14px; }
  .menu-row strong { font-size: .84rem; }
  .cocktail-card { padding: 22px 18px 20px; }
}
