/* =========================================================
   PS Lounge Baku — stylesheet
   Palette: near-black ground, cream text, cool-silver accent
   Type: Instrument Serif (display) + Manrope (body)
   ========================================================= */

:root {
  /* surfaces */
  --bg: #0A0908;
  --bg-2: #0C0B0A;
  --bg-3: #100E0D;
  --surface: #17140F;
  --card: rgba(242, 237, 228, 0.035);
  --card-hover: rgba(242, 237, 228, 0.07);

  /* ink */
  --cream: #F2EDE4;
  --accent: #C7CED4;
  --muted: #6A635B;
  --ink-82: rgba(242, 237, 228, 0.82);
  --ink-72: rgba(242, 237, 228, 0.72);
  --ink-64: rgba(242, 237, 228, 0.64);
  --ink-55: rgba(242, 237, 228, 0.55);
  --ink-45: rgba(242, 237, 228, 0.52);
  --line: rgba(242, 237, 228, 0.08);
  --line-strong: rgba(242, 237, 228, 0.22);

  /* type */
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;

  /* shape + motion */
  --pill: 999px;
  --r-lg: 40px;
  --r-card: 30px;
  --r-md: 16px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --container: 1560px;
  --pad: 56px;
  --header-h: 108px;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* the hidden attribute must always win over component display rules */
[hidden] { display: none !important; }
/* lock background scroll while the mobile menu overlay is open */
body.nav-open { overflow: hidden; }

/* skip-to-content link (visible only on keyboard focus) */
.skip-link {
  position: fixed; top: 14px; left: 14px; z-index: 300;
  background: var(--cream); color: var(--bg); padding: 12px 22px; border-radius: var(--pill);
  font-size: 16px; font-weight: 500; transform: translateY(-160%); transition: transform .25s var(--ease);
}
.skip-link:focus { transform: none; color: var(--bg); }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .4s var(--ease), background .4s var(--ease), border-color .4s, opacity .4s, transform .5s var(--ease); }
a:hover { color: var(--cream); }
button { font-family: inherit; }
h1, h2, h3, p { margin: 0; text-wrap: pretty; }

::selection { background: var(--accent); color: var(--bg); }
::placeholder { color: var(--muted); }

/* keyboard focus only */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

.serif { font-family: var(--serif); font-weight: 400; }

/* film grain */
.grain {
  position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}

/* ---------- layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); width: 100%; }
.section { padding: 130px 0; }
.section--tight { padding: 30px 0; }
.section--panel { background: var(--bg-3); }
.view { display: block; }
.view[hidden] { display: none; }

.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 110px; align-items: center; }
.split--wide { grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 120px; }
.split--flame { grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); align-items: start; }
.split--social { grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr); align-items: start; }

.stagger-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stagger-pair img { width: 100%; height: 380px; object-fit: cover; border-radius: 28px; background: var(--surface); filter: saturate(1.12) contrast(1.03); }
.stagger-pair img:nth-child(2) { margin-top: 64px; }

/* ---------- typography helpers ---------- */
.h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 4.4vw, 74px); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 40px; }
.eyebrow { font-size: 18px; color: var(--accent); margin-bottom: 30px; }
.eyebrow--mt { margin-top: 44px; }
.lead { font-size: 21px; line-height: 1.75; color: var(--ink-72); margin-bottom: 26px; max-width: 52ch; }
.body { font-size: 20px; line-height: 1.75; color: var(--ink-64); max-width: 52ch; }
.body--dim { color: rgba(242, 237, 228, 0.6); }
.mb-md { margin-bottom: 40px; }
.mb-lg { margin-bottom: 60px; }
.mb-xl { margin-bottom: 110px; }
.arrow { color: currentColor; }
.rounded { border-radius: 28px; width: 100%; height: 340px; object-fit: cover; background: var(--surface); }

.section__intro { max-width: 60ch; margin-bottom: 72px; }
.section__intro .h2 { margin-bottom: 24px; }
.section__intro .body { color: var(--ink-64); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  border-radius: var(--pill); padding: 22px 44px; font-size: 18px; line-height: 1;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.btn--solid { background: var(--cream); color: var(--bg); font-weight: 500; }
.btn--solid:hover { background: var(--accent); color: var(--bg); transform: translateY(-3px); }
.btn--outline { border-color: rgba(242, 237, 228, 0.26); color: var(--cream); }
.btn--outline:hover { background: rgba(242, 237, 228, 0.09); color: var(--cream); transform: translateY(-3px); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--cream); padding: 19px 36px; }
.btn--ghost:hover { background: rgba(242, 237, 228, 0.09); color: var(--cream); transform: translateY(-3px); }
.btn--ghost .arrow { color: var(--accent); }
.btn--block { width: 100%; }

/* ---------- header / nav ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: linear-gradient(180deg, rgba(10,9,8,0.92), rgba(10,9,8,0.55) 70%, rgba(10,9,8,0));
}
.header__inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.header__logo { flex-shrink: 0; }
.header__logo img { height: 48px; width: auto; }
.header__logo:hover { opacity: 0.75; }

.nav { display: flex; align-items: center; gap: 40px; font-size: 19px; }
.nav__link { color: var(--ink-82); padding: 10px 0; background: none; border: none; cursor: pointer; font-size: 19px; font-weight: 300; }
.nav__link:hover { color: var(--cream); }
.nav__link[aria-current="page"] { color: var(--cream); }
.mobile-nav__links a[aria-current="page"] { color: var(--accent); }
.nav__group { position: relative; padding: 10px 0; }
.nav__toggle { display: flex; align-items: center; gap: 9px; }
.nav__caret { width: 5px; height: 5px; border-right: 1px solid rgba(242,237,228,0.5); border-bottom: 1px solid rgba(242,237,228,0.5); transform: rotate(45deg); margin-top: -4px; }
.nav__lang { color: var(--ink-55); letter-spacing: 0.06em; font-size: 18px; }
.nav__lang:hover { color: var(--cream); }
.nav__cta { padding: 17px 32px; font-size: 17px; }

/* dropdown */
.dropdown { position: absolute; top: 100%; left: -28px; padding-top: 20px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s; }
.dropdown--sm { left: -22px; }
.nav__group.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown__panel {
  background: rgba(20,18,16,0.92); backdrop-filter: blur(24px);
  border: 1px solid rgba(242,237,228,0.08); border-radius: 22px; min-width: 288px;
  padding: 16px; box-shadow: 0 40px 90px rgba(0,0,0,0.65); display: flex; flex-direction: column; gap: 2px;
}
.dropdown--sm .dropdown__panel { min-width: 118px; border-radius: 18px; padding: 12px; }
.dropdown__item { color: rgba(242,237,228,0.78); padding: 15px 20px; border-radius: 14px; font-size: 18px; background: none; border: none; text-align: left; cursor: pointer; }
.dropdown--sm .dropdown__item { padding: 11px 18px; border-radius: 12px; font-size: 17px; }
.dropdown__item:hover { color: var(--cream); background: rgba(242,237,228,0.06); }

/* hamburger */
.burger { display: none; width: 54px; height: 54px; border-radius: var(--pill); border: 1px solid rgba(242,237,228,0.22); background: none; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
.burger:hover { background: rgba(242,237,228,0.08); }
.burger span { width: 22px; height: 1px; background: var(--cream); display: block; }

/* ---------- mobile nav ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 95; background: rgba(10,9,8,0.97); backdrop-filter: blur(24px); padding: 40px 0; display: flex; flex-direction: column; overflow-y: auto; animation: fade .22s ease-out; }
.mobile-nav[hidden] { display: none; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.mobile-nav__top img { height: 40px; width: auto; }
.mobile-nav__close { width: 52px; height: 52px; border-radius: var(--pill); border: 1px solid rgba(242,237,228,0.22); background: none; font-size: 26px; color: var(--cream); cursor: pointer; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; font-family: var(--serif); margin-bottom: 40px; }
.mobile-nav__links a { font-size: 34px; color: var(--cream); padding: 12px 0; }
.mobile-nav__cta { padding: 22px 40px; font-size: 18px; width: auto; }
.mobile-nav__lang { display: flex; gap: 26px; margin-top: 36px; font-size: 18px; }
.mobile-nav__lang button { background: none; border: none; color: rgba(242,237,228,0.6); cursor: pointer; font-size: 18px; }
.mobile-nav__lang button:hover { color: var(--cream); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; filter: saturate(1.18) contrast(1.04); animation: parallax linear both; animation-timeline: scroll(root); animation-range: 0 60vh; }
.hero__veil { position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 10%, rgba(10,9,8,0.35), rgba(10,9,8,0.92) 70%); }
.hero__glow { position: absolute; width: 900px; height: 900px; left: 50%; top: 46%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(199,206,212,0.14), transparent 62%); filter: blur(20px); }
.hero__inner { position: relative; padding-top: 190px; padding-bottom: 130px; }
.kicker { display: flex; align-items: center; gap: 18px; margin-bottom: 42px; }
.kicker__rule { width: 54px; height: 1px; background: rgba(199,206,212,0.8); }
.kicker__text { font-size: 24px; color: var(--accent); }
.hero__title { font-size: clamp(64px, 9.4vw, 178px); line-height: 0.92; letter-spacing: -0.025em; max-width: 15ch; }
.hero__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; flex-wrap: wrap; margin-top: 72px; }
.hero__sub { font-size: 23px; line-height: 1.6; color: rgba(242,237,228,0.75); max-width: 38ch; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__actions .btn { padding: 24px 46px; }
.hero__hours { position: absolute; bottom: 46px; right: var(--pad); font-size: 17px; color: var(--ink-45); }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid rgba(242,237,228,0.07); border-bottom: 1px solid rgba(242,237,228,0.07); padding: 30px 0; background: var(--bg-2); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__row { display: flex; align-items: center; gap: 44px; padding-right: 44px; font-size: 34px; color: var(--ink-72); white-space: nowrap; }
.marquee__row span.dot { color: var(--accent); }

/* ---------- worlds grid ---------- */
.worlds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.world { position: relative; overflow: hidden; border-radius: 28px; height: 540px; background: var(--surface); display: block; }
.world:hover { transform: translateY(-8px); }
.world > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8; filter: saturate(1.14) contrast(1.04); }
.world__grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,0), rgba(10,9,8,0.9)); }
.world__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 38px 34px; }
.world__name { font-size: 34px; margin-bottom: 14px; color: var(--cream); }
.world__name--accent { color: var(--accent); }
.world__body p { font-size: 18px; color: rgba(242,237,228,0.66); line-height: 1.58; }

/* ---------- menu preview panel ---------- */
.menu-hero-img { width: 100%; height: 620px; object-fit: cover; border-radius: 32px; background: var(--surface); filter: saturate(1.12) contrast(1.03); }
.cuisines { display: flex; gap: 56px; margin: 0 0 56px; }
.cuisines span { font-size: 44px; color: var(--accent); line-height: 1; }

/* ---------- card grids ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.card { background: var(--card); border-radius: 28px; transition: background .4s, transform .5s var(--ease); }
.card--pad { padding: 52px 44px; }
.card--pad-sm { padding: 38px 34px; }
.card:hover { background: var(--card-hover); transform: translateY(-8px); }
.card__num { font-size: 22px; color: var(--accent); margin-bottom: 26px; }
.card__title { font-size: clamp(34px, 3vw, 40px); margin-bottom: 18px; letter-spacing: -0.01em; }
.card p { font-size: 19px; color: var(--ink-64); line-height: 1.7; }
.card__tag { font-size: 26px; color: var(--accent); margin-bottom: 14px; }
.card__text { font-size: 20px; color: rgba(242,237,228,0.75); line-height: 1.62; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 18px; }
.gallery__cell { overflow: hidden; border-radius: 24px; height: 300px; background: var(--surface); }
.gallery__cell--2 { grid-column: span 2; }
.gallery__cell--3 { grid-column: span 3; }
.gallery__cell--drop { margin-top: 44px; }
.gallery__cell img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.14) contrast(1.04); transition: transform .6s var(--ease); }
.zoom--low { object-position: center 35%; }
.gallery__cell:hover .zoom { transform: scale(1.05); }

/* ---------- cta band ---------- */
.cta-band { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 520px; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--bg-3); }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.48; filter: saturate(1.15); }
.cta-band__veil { position: absolute; inset: 0; background: radial-gradient(90% 90% at 50% 50%, rgba(10,9,8,0.55), rgba(10,9,8,0.9)); }
.cta-band__body { position: relative; padding: 90px 40px; }
.cta-band__kicker { font-size: 26px; color: var(--accent); margin-bottom: 26px; }
.cta-band__title { font-size: clamp(46px, 6vw, 104px); line-height: 0.98; letter-spacing: -0.025em; margin-bottom: 46px; }

/* ---------- page hero ---------- */
.page-hero { position: relative; padding: 220px 0 90px; overflow: hidden; }
.page-hero--image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; filter: saturate(1.15); }
.page-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,0.8), rgba(10,9,8,0.98)); }
.page-hero__inner { position: relative; }
.page-hero__kicker { font-size: 26px; color: var(--accent); margin-bottom: 26px; }
.page-hero__title { font-size: clamp(48px, 6.4vw, 112px); line-height: 0.95; letter-spacing: -0.025em; max-width: 22ch; }

/* ---------- menu page ---------- */
.menu-bar { position: relative; z-index: 1; background: var(--bg-2); border-top: 1px solid rgba(242,237,228,0.07); border-bottom: 1px solid rgba(242,237,228,0.07); }
.menu-bar__scroll { padding-top: 20px; padding-bottom: 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.menu-tab { font-size: 19px; padding: 16px 34px; border-radius: var(--pill); border: 1px solid rgba(242,237,228,0.16); color: rgba(242,237,228,0.8); background: transparent; cursor: pointer; transition: border-color .3s, color .3s, background .3s; }
.menu-tab:hover { border-color: rgba(199,206,212,0.8); }
.menu-tab[aria-selected="true"] { border-color: transparent; color: var(--bg); background: var(--cream); }

.menu-cat-hero { position: relative; border-radius: 34px; overflow: hidden; height: 380px; background: var(--surface); }
.menu-cat-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.72; filter: saturate(1.18) contrast(1.05); }
.menu-cat-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,0.2), rgba(10,9,8,0.9)); }
.menu-cat-hero__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 52px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.menu-cat-hero__body h2 { font-size: clamp(40px, 5vw, 84px); line-height: 0.95; letter-spacing: -0.02em; }
.menu-cat-hero__sub { font-size: 20px; color: var(--ink-72); }

.sub-tabs { display: flex; flex-wrap: wrap; gap: 34px; border-bottom: 1px solid var(--line); }
.sub-tab { font-family: var(--serif); font-size: 30px; color: rgba(242,237,228,0.5); padding-bottom: 18px; border: none; border-bottom: 2px solid transparent; background: none; margin-bottom: -1px; cursor: pointer; transition: color .3s; }
.sub-tab:hover { color: var(--cream); }
.sub-tab[aria-selected="true"] { color: var(--cream); border-bottom-color: var(--accent); }

.menu-items { gap: 30px; }
.menu-item { border-radius: var(--r-card); overflow: hidden; background: var(--card); transition: background .4s, transform .5s var(--ease); }
.menu-item:hover { background: rgba(242,237,228,0.075); transform: translateY(-8px); }
.menu-item__media { height: 300px; overflow: hidden; background: var(--surface); }
.menu-item__img { width: 100%; height: 100%; background-size: cover; background-position: center; filter: saturate(1.2) contrast(1.06); transition: transform .6s var(--ease); }
.menu-item:hover .menu-item__img { transform: scale(1.05); }
.menu-item__body { padding: 36px 34px 40px; }
.menu-item__head { display: flex; align-items: baseline; justify-content: space-between; gap: 22px; margin-bottom: 14px; }
.menu-item__name { font-family: var(--serif); font-weight: 400; font-size: 34px; letter-spacing: -0.01em; line-height: 1.1; }
.menu-item__price { font-size: 23px; color: var(--accent); white-space: nowrap; }
.menu-item__desc { font-size: 19px; color: rgba(242,237,228,0.62); line-height: 1.62; }

.menu-note { max-width: var(--container); margin: 70px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 46px; }
.menu-note p { font-size: 18px; color: rgba(242,237,228,0.58); line-height: 1.7; max-width: 60ch; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { background: var(--card); border-radius: 26px; padding: 44px 38px; }
.stat__num { font-size: 68px; color: var(--accent); line-height: 1; }
.stat__label { font-size: 18px; color: rgba(242,237,228,0.6); margin-top: 16px; }

/* ---------- flame ---------- */
.flame-hero { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.flame-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.66; filter: saturate(1.15); }
.flame-hero__veil { position: absolute; inset: 0; background: radial-gradient(70% 70% at 50% 50%, rgba(10,9,8,0.35), rgba(10,9,8,0.94)); }
.flame-hero__inner { position: relative; padding: 200px 40px 120px; }
.flame-hero__title { font-size: clamp(72px, 14vw, 240px); line-height: 0.9; letter-spacing: -0.03em; margin-bottom: 28px; color: var(--accent); }
.flame-hero__kicker { font-size: 20px; color: rgba(242,237,228,0.65); }
.flame-cards { display: grid; gap: 20px; }

/* ---------- social partners ---------- */
.partners { list-style: none; margin: 0; padding: 0; }
.partners li { font-size: 19px; color: rgba(242,237,228,0.78); padding: 16px 0; border-bottom: 1px solid rgba(242,237,228,0.06); }

/* ---------- branches ---------- */
.branches { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.branch { border-radius: var(--r-card); overflow: hidden; background: var(--card); transition: background .4s, transform .5s var(--ease); }
.branch:hover { background: var(--card-hover); transform: translateY(-8px); }
.branch__media { width: 100%; height: 340px; background: var(--surface); background-size: cover; background-position: center; }
.branch__body { padding: 40px 38px 44px; }
.branch__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.branch__city { font-family: var(--serif); font-weight: 400; font-size: 38px; letter-spacing: -0.01em; }
.branch__tag { font-size: 17px; color: var(--accent); white-space: nowrap; }
.branch__venue { font-size: 19px; color: var(--ink-64); margin-bottom: 12px; }
.branch__hours { font-size: 18px; color: rgba(242,237,228,0.48); }

/* ---------- events program ---------- */
.program__row { display: grid; grid-template-columns: 240px 1fr 160px; gap: 34px; align-items: baseline; padding: 30px 0; border-bottom: 1px solid rgba(242,237,228,0.07); }
.program__day { font-size: 19px; color: rgba(242,237,228,0.6); }
.program__title { font-family: var(--serif); font-size: 34px; color: var(--cream); letter-spacing: -0.01em; }
.program__time { font-size: 19px; color: var(--accent); text-align: right; }

/* ---------- reservation ---------- */
.section--res { padding: 150px 0 120px; }
.split--res { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 30px; align-items: stretch; }
.res-visual { position: relative; overflow: hidden; border-radius: 36px; min-height: 620px; background: var(--bg-3); }
.res-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.66; filter: saturate(1.15); }
.res-visual__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,0.3), rgba(10,9,8,0.92)); }
.res-visual__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 54px; }
.res-visual__body h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 4.6vw, 76px); line-height: 0.98; letter-spacing: -0.02em; margin-bottom: 26px; }
.res-visual__body p { font-size: 21px; line-height: 1.7; color: var(--ink-72); max-width: 40ch; }
.res-panel { background: var(--card); border-radius: 36px; padding: 66px 60px; }
.res-form__kicker { font-size: 26px; color: var(--accent); margin-bottom: 44px; }
.res-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 22px; }
.field { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.field--full { grid-column: span 2; }
.field > span { font-size: 18px; color: rgba(242,237,228,0.6); }
.field input, .field select, .field textarea {
  background: rgba(242,237,228,0.05); border: 1px solid rgba(242,237,228,0.1); border-radius: var(--r-md);
  color: var(--cream); font-family: inherit; font-size: 19px; padding: 20px 22px; width: 100%; min-width: 0; color-scheme: dark;
}
.field textarea { resize: vertical; }
.field select option { background: #16130F; }
.btn--block { margin-top: 40px; }
.res-fine { font-size: 17px; color: rgba(242,237,228,0.58); margin-top: 26px; line-height: 1.7; }
.res-success { height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 26px; }
.res-success__icon { width: 64px; height: 64px; border-radius: var(--pill); background: var(--accent); color: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.res-success h2 { font-family: var(--serif); font-weight: 400; font-size: 54px; letter-spacing: -0.02em; }
.res-success p { font-size: 21px; color: var(--ink-72); line-height: 1.75; max-width: 40ch; }

/* ---------- contact ---------- */
.contact__name { font-size: 32px; color: var(--cream); margin-bottom: 14px; line-height: 1.2; }
.contact__addr { font-size: 18px; color: rgba(242,237,228,0.58); margin-bottom: 32px; line-height: 1.7; }
.contact__reach { display: flex; flex-direction: column; gap: 18px; font-size: 22px; }
.contact__reach a { color: var(--ink-82); }
.contact__reach a:hover { color: var(--cream); }
.contact__social { display: flex; flex-direction: column; gap: 10px; }
.contact__social a { display: flex; align-items: center; gap: 14px; font-size: 20px; color: var(--ink-82); padding: 12px 16px; border-radius: var(--r-md); }
.contact__social a:hover { background: rgba(242,237,228,0.06); color: var(--cream); }
.contact__hours { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact__hours--last { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact__hours-name { font-size: 28px; margin-bottom: 10px; }
.contact__hours-val { font-size: 19px; color: var(--ink-64); line-height: 1.6; }

/* ---------- footer ---------- */
.footer { padding: 120px 0 48px; background: var(--bg); border-top: 1px solid rgba(242,237,228,0.07); }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 60px 70px; padding-bottom: 90px; align-items: start; }
.footer__logo { height: 70px; width: auto; margin-bottom: 30px; }
.footer__tag { font-size: 20px; color: var(--ink-55); line-height: 1.7; max-width: 30ch; }
.footer__head { font-size: 17px; color: var(--accent); margin-bottom: 28px; }
.footer__links { display: flex; flex-direction: column; gap: 16px; font-size: 19px; }
.footer__links a { color: rgba(242,237,228,0.68); }
.footer__links a:hover { color: var(--cream); }
.footer__hours { font-size: 19px; color: rgba(242,237,228,0.68); line-height: 1.8; }
.footer__social { display: flex; gap: 12px; margin-top: 30px; }
.footer__social a { width: 50px; height: 50px; border-radius: var(--pill); border: 1px solid rgba(242,237,228,0.16); display: flex; align-items: center; justify-content: center; }
.footer__social a:hover { background: rgba(199,206,212,0.14); border-color: rgba(199,206,212,0.6); }
.footer__bottom { border-top: 1px solid rgba(242,237,228,0.07); padding-top: 34px; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; font-size: 16px; color: var(--ink-45); }
.footer__langs { display: flex; gap: 24px; }
.footer__langs button { background: none; border: none; color: rgba(242,237,228,0.38); cursor: pointer; font-size: 16px; }
.footer__langs button:hover { color: var(--cream); }

/* ---------- whatsapp float ---------- */
.wa-float { position: fixed; right: 34px; bottom: 34px; z-index: 80; background: rgba(20,18,16,0.86); backdrop-filter: blur(20px); border: 1px solid rgba(199,206,212,0.45); color: var(--accent); padding: 18px 30px; border-radius: var(--pill); font-size: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.55); display: flex; align-items: center; gap: 12px; }
.wa-float:hover { background: var(--accent); color: var(--bg); transform: translateY(-3px); }
.wa-float[hidden] { display: none; }

/* ---------- animations ---------- */
@keyframes psIn { from { opacity: 0; transform: translateY(28px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes parallax { from { transform: translateY(-3%) scale(1.06); } to { transform: translateY(6%) scale(1.14); } }

.fade-1 { animation: psIn 900ms var(--ease) both; }
.fade-2 { animation: psIn 1100ms var(--ease) 120ms both; }
.fade-3 { animation: psIn 1100ms var(--ease) 260ms both; }

.reveal { opacity: 0; transform: translateY(46px); transition: opacity .9s ease, transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .worlds, .cards-3, .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .world, .menu-item__media { height: 420px; }
}
@media (max-width: 1024px) {
  :root { --header-h: 84px; --pad: 30px; }
  .split, .split--wide, .split--flame, .split--social, .res-grid, .split--res { grid-template-columns: minmax(0,1fr); gap: 40px; align-items: start; }
  .nav { display: none; }
  .burger { display: flex; }
  .program__row { grid-template-columns: minmax(0,1fr); gap: 8px; }
  .program__time { text-align: left; }
  .marquee__row { font-size: 26px; gap: 30px; }
  .menu-bar__scroll { flex-wrap: nowrap; overflow-x: auto; }
  .world, .menu-item__media { height: 340px; }
  .hero__inner { padding-top: 150px; padding-bottom: 90px; }
  .page-hero, .flame-hero__inner { padding-top: 150px; }
  .field--full { grid-column: auto; }
}
@media (max-width: 720px) {
  .worlds, .cards-3, .stats, .gallery, .branches { grid-template-columns: minmax(0,1fr); }
  .gallery__cell--2, .gallery__cell--3, .gallery__cell--drop { grid-column: auto; margin-top: 0; }
  .world, .menu-item__media { height: 280px; }
  .stagger-pair img { height: 220px; }
  .stagger-pair img:nth-child(2) { margin-top: 0; }
  .marquee__row { font-size: 22px; }
  .section { padding: 80px 0; }
  .cuisines { gap: 32px; }
  .cuisines span { font-size: 34px; }
  .res-panel { padding: 44px 28px; }
  .res-visual__body, .menu-cat-hero__body { padding: 36px 28px; }
  .card--pad { padding: 40px 30px; }
  .wa-float { right: 18px; bottom: 18px; padding: 15px 22px; font-size: 16px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__bg { animation: none; }
  .marquee__track { animation: none; }
}
