/* ============================================
   Tarra & Sura — Dark Luxury Restaurant & Bar
   Complete Redesign — Premium Feel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Kostania — Custom Font (Ekahermawan) ── */
@font-face {
  font-family: 'Kostania';
  src: url('../fonts/KostaniaThin.woff2') format('woff2'),
       url('../fonts/KostaniaThin.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg:       #060606;
  --bg-alt:   #0c0c0c;
  --bg-card:  #111111;
  --bg-elevated: #161616;
  --gold:     #c9a96e;
  --gold-light: #d4b97a;
  --gold-muted: #a8894f;
  --gold-dark: #8a7040;
  --gold-glow: rgba(201,169,110,0.15);
  --white:    #f5f5f0;
  --white-soft: #d8d5cc;
  --gray:     #6a6a6a;
  --gray-dark: #2a2a2a;
  --charcoal: #1a1a1a;
  --dark-green: #0a1a0a;
  --dark-brown: #1a120a;

  --font-body:    'DM Sans', sans-serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-accent:  'Playfair Display', serif;
  --font-display: 'Kostania', 'Cormorant Garamond', serif;

  --container: 1240px;
  --section-pad: 140px 0;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--bg); }
a { text-decoration:none; color:inherit; transition: all 0.4s var(--ease); }
img { max-width:100%; height:auto; display:block; }
ul,ol { list-style:none; }

.container { max-width:var(--container); margin:0 auto; padding:0 48px; }
.container-narrow { max-width:860px; margin:0 auto; padding:0 48px; }

/* ── Grain Overlay ── */
body::after {
  content:'';
  position:fixed; inset:0; z-index:9999;
  pointer-events:none; opacity:0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ── Preloader ── */
.preloader {
  position:fixed; inset:0; z-index:99999;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.preloader__logo {
  height: auto;
  width: auto;
  max-height: 72px;
  max-width: 80px;
  object-fit: contain;
  object-position: center;
  animation: preloaderPulse 1.5s ease infinite;
  filter: drop-shadow(0 0 20px rgba(201,169,110,0.3));
}
.preloader__logo.logo-img--tarra {
  max-height: 48px;
  max-width: 200px;
}
.preloader__logo.logo-img--sura {
  max-height: 36px;
  max-width: 220px;
}
.preloader__text {
  font-family:var(--font-display);
  font-size:1.8rem; letter-spacing:0.3em;
  color:var(--gold);
  animation: preloaderPulse 1.5s ease infinite;
}
@keyframes preloaderPulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

/* ── Custom Cursor ── */
.custom-cursor {
  width:20px; height:20px;
  border:1px solid var(--gold);
  border-radius:50%;
  position:fixed;
  pointer-events:none; z-index:99998;
  transition: width 0.3s ease, height 0.3s ease;
  transform:translate(-50%,-50%);
  mix-blend-mode:difference;
}
.custom-cursor.hover { width:50px; height:50px; background:rgba(201,169,110,0.08); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family:var(--font-heading); font-weight:400; line-height:1.15; letter-spacing:0.03em; }
h1 { font-family:var(--font-display); font-size:clamp(3rem,6vw,6rem); letter-spacing:0.08em; }
h2 { font-family:var(--font-display); font-size:clamp(2.2rem,4.5vw,4rem); letter-spacing:0.06em; }
h3 { font-size:clamp(1.5rem,3vw,2.5rem); }
h4 { font-size:clamp(1.2rem,2vw,1.6rem); }

p { color:var(--white-soft); font-size:1rem; line-height:1.9; }
.text-gold { color:var(--gold); }
.text-center { text-align:center; }

.section-subtitle {
  font-family:var(--font-body); font-size:0.7rem;
  text-transform:uppercase; letter-spacing:0.35em;
  color:var(--gold); margin-bottom:18px; font-weight:500;
  display:inline-block;
}
.gold-line { width:60px; height:1px; background:var(--gold); margin:28px 0; }
.gold-line-center { width:60px; height:1px; background:var(--gold); margin:28px auto; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:12px;
  padding:16px 44px;
  font-family:var(--font-body); font-size:0.75rem; font-weight:500;
  text-transform:uppercase; letter-spacing:0.2em;
  border:1px solid var(--gold); color:var(--gold);
  background:transparent; cursor:pointer;
  transition: all 0.5s var(--ease);
  position:relative; overflow:hidden;
}
.btn::before {
  content:''; position:absolute; top:0; left:-100%;
  width:100%; height:100%;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: left 0.6s var(--ease); opacity:0.15;
}
.btn:hover::before { left:100%; }
.btn:hover {
  background:var(--gold); color:var(--bg);
  box-shadow:0 0 40px rgba(201,169,110,0.2);
}
.btn-arrow::after { content:'→'; transition: transform 0.3s ease; }
.btn-arrow:hover::after { transform:translateX(4px); }
.btn-filled { background:var(--gold); color:var(--bg); border-color:var(--gold); }
.btn-filled:hover { background:var(--gold-light); box-shadow:0 0 50px rgba(201,169,110,0.3); }
.btn-lg { padding:20px 56px; font-size:0.8rem; }

/* ============================================
   SPLIT SCREEN — Entry Page
   ============================================ */
.split-screen {
  display:flex;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  width:100%;
  overflow:hidden;
  position:relative;
}
/* Home is a full-viewport venue gate — no page below the split */
.page-gate {
  height: 100svh;
  overflow: hidden;
}
.split-screen--home {
  position: relative;
  z-index: 2;
}
.home-after-split {
  position: relative;
  z-index: 3;
  background: var(--bg);
}
.split-panel {
  position:relative; flex:1;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; cursor:pointer;
  transition: flex 0.7s var(--ease);
}
.split-panel:hover { flex:1.25; }

.split-panel__bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(0.35) saturate(0.8);
  transition: all 0.7s var(--ease);
  transform:scale(1.02);
}
.split-panel:hover .split-panel__bg {
  filter:brightness(0.5) saturate(1); transform:scale(1.08);
}

.split-panel__overlay {
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.5) 100%);
  z-index:1;
}
.split-panel__content {
  position:relative; z-index:2;
  text-align:center; padding:40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: none;
  margin: 0 auto 12px;
}
.brand-lockup--hero {
  margin-bottom: 0;
}
.brand-lockup--hero .brand-lockup__tagline {
  margin-top: 24px;
}
.brand-lockup__logo {
  display: block;
  width: auto;
  max-width: none;
  height: clamp(72px, 11vw, 128px);
  flex-shrink: 0;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
}
.brand-lockup__logo--sura {
  height: clamp(38px, 6.2vw, 68px);
}
.brand-lockup--hero .brand-lockup__logo {
  height: clamp(80px, 14vw, 160px);
  filter: drop-shadow(0 4px 40px rgba(0,0,0,0.5));
}
.brand-lockup--hero .brand-lockup__logo--sura {
  height: clamp(42px, 7.5vw, 72px);
}
.brand-lockup__tagline {
  margin: 22px 0 0;
  box-sizing: border-box;
  align-self: flex-start;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.14em;
  opacity: 0.92;
}
.brand-lockup__fit {
  display: block;
  width: max-content;
  white-space: nowrap;
  transform-origin: left top;
}
.brand-lockup .split-panel__divider-line {
  margin-top: 14px;
  margin-bottom: 16px;
  transform: translateX(var(--optical-shift, 0px));
}
.brand-lockup .split-panel__label {
  margin: 0;
  transform: translateX(var(--optical-shift, 0px));
}
.split-panel__logo-text {
  font-family:var(--font-display);
  font-size:clamp(3rem,5vw,5.5rem);
  letter-spacing:0.25em; color:var(--white);
  text-transform:uppercase; margin-bottom:16px;
  text-shadow:0 4px 30px rgba(0,0,0,0.5);
  transition: all 0.5s var(--ease);
}
.split-panel:hover .split-panel__logo-text {
  letter-spacing:0.35em;
  text-shadow:0 0 60px rgba(201,169,110,0.3);
}
/* Logo slot — optical box so uneven PNG padding/aspect doesn't break centering */
.split-panel__logo-slot {
  width: min(86%, 420px);
  height: clamp(88px, 14vw, 148px);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-panel__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
  transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}
/* Aspect compensation: Tarra ~1.93, Sura ~3.48 — equal visual weight */
.split-panel__logo-img.logo-img--tarra {
  height: 92%;
  width: auto;
  max-width: 92%;
}
.split-panel__logo-img.logo-img--sura {
  height: 68%;
  width: auto;
  max-width: 96%;
}
.split-panel:hover .split-panel__logo-img,
.split-panel:hover .brand-lockup__logo {
  filter: drop-shadow(0 0 30px rgba(201,169,110,0.35));
}
.split-panel__divider-line {
  width:60px; height:1px; background:var(--gold);
  margin:0 auto 20px;
  transition: width 0.5s var(--ease);
}
.split-panel:hover .split-panel__divider-line { width:100px; }

.split-panel__label {
  font-family:var(--font-body); font-size:0.75rem;
  letter-spacing:0.3em; text-transform:uppercase;
  color:var(--white-soft); opacity:0.6;
  transition: all 0.4s ease;
}
.split-panel:hover .split-panel__label { opacity:1; color:var(--gold); letter-spacing:0.4em; }

.split-panel__enter {
  margin-top:32px; font-size:0.7rem;
  letter-spacing:0.25em; text-transform:uppercase;
  color:var(--gold); opacity:0;
  transform:translateY(10px);
  transition: all 0.5s var(--ease);
}
.split-panel:hover .split-panel__enter { opacity:0.8; transform:translateY(0); }

.split-divider {
  width:1px;
  background: linear-gradient(180deg, transparent 10%, rgba(201,169,110,0.3) 50%, transparent 90%);
  z-index:5;
}
.split-screen__tagline {
  position:absolute; bottom: max(28px, env(safe-area-inset-bottom));
  left:50%;
  transform:translateX(-50%); z-index:10; text-align:center;
  width: min(96%, 760px);
  pointer-events: none;
}
.split-screen__tagline span {
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform:uppercase; color:var(--gray);
  display: block;
}
.split-screen__scroll {
  position: absolute;
  bottom: max(72px, calc(env(safe-area-inset-bottom) + 56px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  pointer-events: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 10px 14px;
}
.split-screen__scroll:hover { opacity: 1; transform: translateX(-50%) translateY(2px); }
.split-screen__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
/* Gate nav stays visible over the split so shared pages remain reachable */
.navbar--on-split,
.navbar--gate {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  padding:28px 0;
  transition: all 0.5s var(--ease);
}
.navbar.scrolled {
  background:rgba(6,6,6,0.92); backdrop-filter:blur(24px);
  padding:14px 0; border-bottom:1px solid rgba(201,169,110,0.06);
}
.navbar__inner {
  display:flex; align-items:center; justify-content:center;
  gap:48px; max-width:var(--container);
  margin:0 auto; padding:0 48px; position:relative;
}
.navbar__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 44px;
}
.navbar__logo-text {
  font-family:var(--font-heading); font-size:1.5rem;
  letter-spacing:0.2em; color:var(--white); text-transform:uppercase;
}
.navbar__logo-text:hover { color:var(--gold); }
/* Graphic logo in navbar — fixed optical box */
.navbar__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: 48px;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.navbar__logo-img.logo-img--tarra,
.navbar__logo-img.logo-img--sura {
  max-height: 28px;
  max-width: 120px;
}
.navbar__logo-img:hover { opacity:0.85; filter: drop-shadow(0 0 8px rgba(201,169,110,0.4)); }

.navbar__links { display:flex; gap:36px; align-items:center; }
.navbar__links--left { margin-right:auto; }
.navbar__links--right { margin-left:auto; }

.navbar__link {
  font-size: 0.95rem; font-weight:400;
  text-transform:uppercase; letter-spacing: 0.1em;
  color:var(--white); position:relative; padding:6px 0;
  white-space: nowrap;
}
.navbar__link::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--gold);
  transition: width 0.4s var(--ease);
}
.navbar__link:hover { color:var(--gold); }
.navbar__link:hover::after { width:100%; }

.navbar__reserve {
  font-size: 0.82rem;
  padding: 10px 16px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.navbar__hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; z-index:1001;
  background:none; border:none; padding:4px;
}
.navbar__hamburger span {
  display:block; width:24px; height:1.5px;
  background:var(--white); transition: all 0.3s ease;
}
.navbar__hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.navbar__hamburger.active span:nth-child(2) { opacity:0; }
.navbar__hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.navbar__mobile-menu {
  position:fixed; top:0; left:0; width:100%; height:100vh;
  background:rgba(6,6,6,0.97); backdrop-filter:blur(30px);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:28px;
  transform:translateY(-100%);
  transition: transform 0.6s var(--ease-out); z-index:999;
}
.navbar__mobile-menu.open { transform:translateY(0); }
.navbar__mobile-menu a { font-family:var(--font-heading); font-size:1.6rem; letter-spacing:0.15em; color:var(--white); }
.navbar__mobile-menu a:hover { color:var(--gold); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position:relative; height:100vh; width:100%;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero__video-wrapper { position:absolute; inset:0; z-index:0; }
.hero__bg {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  filter:brightness(0.40) saturate(0.85);
}
.hero__overlay {
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(6,6,6,0.5) 0%, rgba(6,6,6,0.15) 40%, rgba(6,6,6,0.6) 100%);
  z-index:1;
}
.hero__content { position:relative; z-index:2; text-align:center; }
.hero__logo-text {
  font-family:var(--font-display);
  font-size:clamp(3.5rem,8vw,8rem);
  letter-spacing:0.3em; color:var(--white);
  text-shadow:0 4px 40px rgba(0,0,0,0.4);
  animation: heroFadeIn 1.5s var(--ease) forwards;
}
/* When using graphic logo in hero */
.hero__logo-img {
  height: clamp(80px, 14vw, 160px); width: auto;
  display: block; margin: 0 auto;
  filter: drop-shadow(0 4px 40px rgba(0,0,0,0.5));
  animation: heroFadeIn 1.5s var(--ease) forwards;
}
.hero__tagline {
  font-family:var(--font-body); font-size:0.8rem;
  letter-spacing:0.35em; text-transform:uppercase;
  color:var(--gold); margin-top:20px;
  opacity:0; animation: heroFadeIn 1.5s var(--ease) 0.4s forwards;
}
/* Match gold tagline width to the wordmark (Lima symmetry) */
.hero .hero__tagline {
  width: min(72vw, 420px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}
.sura-hero .hero__tagline {
  width: min(90vw, 560px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
}
.hero__line {
  width:1px; height:60px;
  background:linear-gradient(180deg, var(--gold), transparent);
  margin:30px auto 0; opacity:0;
  animation: heroFadeIn 1.5s var(--ease) 0.7s forwards;
}
.hero__scroll {
  position:absolute; bottom:40px; left:50%;
  transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.hero__scroll span { font-size:0.6rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--gray); }
.hero__scroll-line {
  width:1px; height:50px;
  background:linear-gradient(180deg, var(--gold-muted), transparent);
  animation: scrollPulse 2.5s ease infinite;
}

@keyframes heroFadeIn { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.8);} 50%{opacity:1;transform:scaleY(1);} }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: var(--section-pad); position: relative; }
.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

/* Column that holds the image composition */
.about-section__images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

/* Золотой круг на заднем плане */
.about-section__img-wrap {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.about-section__img-wrap::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-muted);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
}
/* Второй круг, крупнее, для глубины */
.about-section__img-wrap::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
}

/* Сама картинка — прямоугольник с сильно закруглёнными углами, перекрывает круг */
.about-section__img-main {
  position: relative;
  z-index: 2;
  display: block;
  width: 340px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;
  filter: brightness(0.92) saturate(0.92);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.08);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.about-section__images:hover .about-section__img-main {
  filter: brightness(1) saturate(1);
  transform: translateY(-6px);
}

.about-section__text p { margin-bottom: 24px; max-width: 480px; }
.about-section__stats { display: flex; gap: 40px; margin-top: 48px; }
.stat__number { font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 2.6rem); color: var(--gold); line-height: 1.15; letter-spacing: 0.04em; }
.stat__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray); margin-top: 8px; }

/* Legacy — hidden */
.about-section__img-accent { display: none; }
.about-section__img-frame  { display: none; }

/* ============================================
   MENU PREVIEW
   ============================================ */
.menu-preview {
  padding:var(--section-pad); background:var(--bg-alt);
  position:relative; overflow:hidden;
}
.menu-preview::before {
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:1px; height:100px;
  background:linear-gradient(180deg, transparent, var(--gold-muted));
}
.menu-preview__header { text-align:center; margin-bottom:80px; }
.menu-preview__header p { max-width:500px; margin:16px auto 0; }

.menu-preview__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

.dish-card { position:relative; overflow:hidden; aspect-ratio:3/4; cursor:pointer; }
.dish-card__img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.8s var(--ease), filter 0.6s ease;
  filter:brightness(0.7) saturate(0.9);
}
.dish-card:hover .dish-card__img { transform:scale(1.08); filter:brightness(0.85) saturate(1.1); }
.dish-card__overlay {
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,6,6,0.85) 100%);
  z-index:1;
}
/* ── Vignette / Fade-out effect on standalone dish photos ──
   Edges dissolve into dark background — like the client's dark-plate reference */
.dish-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(6,6,6,0.40) 65%,
    rgba(6,6,6,0.78) 85%,
    rgba(6,6,6,0.95) 100%
  );
}
.dish-card__content {
  position:absolute; bottom:0; left:0; right:0;
  padding:32px; z-index:2;
  transform:translateY(8px);
  transition: transform 0.5s var(--ease);
}
.dish-card:hover .dish-card__content { transform:translateY(0); }
.dish-card__name { font-family:var(--font-heading); font-size:1.5rem; color:var(--white); margin-bottom:6px; }
.dish-card__desc { font-size:0.8rem; color:var(--white-soft); opacity:0; transition: opacity 0.5s ease; }
.dish-card:hover .dish-card__desc { opacity:0.8; }
.dish-card__price { font-family:var(--font-heading); font-size:1.1rem; color:var(--gold); margin-top:8px; }
.dish-card--photo-only .dish-card__content,
.dish-card--photo-only .dish-card__overlay { display: none; }

.menu-preview__cta { text-align:center; margin-top:64px; }

/* ============================================
   FULL-WIDTH IMAGE BREAK
   ============================================ */
.image-break { position:relative; height:60vh; overflow:hidden; }
.image-break__bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  background-attachment:fixed; filter:brightness(0.35);
}
.image-break__content {
  position:relative; z-index:1; height:100%;
  display:flex; align-items:center; justify-content:center;
}
.image-break__content blockquote {
  font-family:var(--font-accent);
  font-size:clamp(1.5rem,3vw,2.5rem);
  font-style:italic; color:var(--white);
  text-align:center; max-width:700px;
  padding:0 40px; line-height:1.6;
}
.image-break__content blockquote cite {
  display:block; font-family:var(--font-body);
  font-size:0.7rem; font-style:normal;
  text-transform:uppercase; letter-spacing:0.25em;
  color:var(--gold); margin-top:24px;
}

/* ============================================
   CHEF SECTION
   ============================================ */
.chef-section { padding: var(--section-pad); }
.chef-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.chef-section__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}
/* Золотой круг на заднем плане, смещён влево-вниз */
.chef-section__image::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-muted);
  top: 55%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.chef-section__image::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  top: 55%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}
.chef-section__image img {
  position: relative;
  z-index: 1;
  width: 300px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
  filter: brightness(0.9) saturate(0.9);
  box-shadow: 0 28px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,169,110,0.07);
  transform: translate(16px, -8px);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.chef-section__image:hover img {
  filter: brightness(1) saturate(1);
  transform: translate(16px, -14px);
}
.chef-section__text { container-type: inline-size; }
#platform-heading {
  white-space: nowrap;
  font-size: clamp(0.95rem, 4.4cqi, 1.55rem);
  letter-spacing: 0.045em;
  line-height: 1.2;
  max-width: 100%;
}
.chef-section__text .chef-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 28px;
}
.chef-section__text p { margin-bottom: 20px; max-width: 480px; }
.chef-section__text .btn { margin-top: 28px; }
.chef-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.chef-section__text .chef-section__actions .btn { margin-top: 0; }

/* ============================================
   ATMOSPHERE MARQUEE
   ============================================ */
.atmosphere { padding:var(--section-pad); background:var(--bg-alt); overflow:hidden; }
.atmosphere__header { text-align:center; margin-bottom:60px; }
.atmosphere__marquee-wrapper { overflow:hidden; width:100%; }
.atmosphere__marquee { display:flex; gap:16px; animation: marquee 30s linear infinite; }
.atmosphere__item { min-width:400px; height:300px; overflow:hidden; flex-shrink:0; position:relative; }
.atmosphere__item img { width:100%; height:100%; object-fit:cover; filter:brightness(0.7); transition: filter 0.5s ease; }
.atmosphere__item:hover img { filter:brightness(0.9); }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding:var(--section-pad); }
.testimonials__header { text-align:center; margin-bottom:80px; }
.testimonials__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.testimonial-card {
  background:var(--bg-card); border:1px solid rgba(201,169,110,0.06);
  padding:48px 36px; transition: all 0.4s var(--ease);
}
.testimonial-card:hover { border-color:rgba(201,169,110,0.15); transform:translateY(-4px); }
.testimonial-card__stars { color:var(--gold); font-size:0.9rem; letter-spacing:4px; margin-bottom:24px; }
.testimonial-card__text {
  font-family:var(--font-accent); font-size:1.1rem;
  font-style:italic; color:var(--white-soft); line-height:1.7; margin-bottom:28px;
}
.testimonial-card__author { font-size:0.75rem; text-transform:uppercase; letter-spacing:0.2em; color:var(--gold); }

/* ============================================
   RESERVATION CTA
   ============================================ */
.reservation-cta {
  position:relative; padding:160px 0;
  text-align:center; overflow:hidden;
}
.reservation-cta__bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(0.25);
}
.reservation-cta__overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(6,6,6,0.5), rgba(6,6,6,0.7));
  z-index:0;
}
.reservation-cta__content { position:relative; z-index:1; }
.reservation-cta__content h2 { margin-bottom:16px; }
.reservation-cta__content p { max-width:500px; margin:0 auto 40px; }

/* ============================================
   SURA BAR STYLES
   ============================================ */
.sura-hero {
  position:relative; height:100vh;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.sura-hero__bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(0.3) saturate(0.7);
  animation: slowZoom 20s ease infinite alternate;
}
@keyframes slowZoom { from{transform:scale(1);} to{transform:scale(1.1);} }
.sura-hero__overlay {
  position:absolute; inset:0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(6,6,6,0.7) 100%);
  z-index:1;
}
.sura-hero__content { position:relative; z-index:2; text-align:center; }

.cocktails { padding:var(--section-pad); }
.cocktails__header { text-align:center; margin-bottom:80px; }
.cocktails__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.cocktail-card { position:relative; overflow:hidden; aspect-ratio:3/4; cursor:pointer; }
.cocktail-card__img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.7s var(--ease), filter 0.5s ease;
  filter:brightness(0.6);
}
.cocktail-card:hover .cocktail-card__img { transform:scale(1.06); filter:brightness(0.8); }
.cocktail-card__overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(6,6,6,0.9) 100%);
  z-index:1;
}
/* Radial vignette on cocktail photos */
.cocktail-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 25%,
    rgba(6,6,6,0.38) 60%,
    rgba(6,6,6,0.80) 82%,
    rgba(6,6,6,0.95) 100%
  );
}
.cocktail-card__content { position:absolute; bottom:0; left:0; right:0; padding:28px; z-index:2; }
.cocktail-card__name { font-family:var(--font-heading); font-size:1.3rem; color:var(--white); }
.cocktail-card__price { color:var(--gold); font-size:0.9rem; margin-top:4px; }
.cocktail-card__desc { font-size:0.8rem; color:var(--white-soft); opacity:0; margin-top:8px; transition: opacity 0.4s ease; }
.cocktail-card:hover .cocktail-card__desc { opacity:0.7; }

.events { padding:var(--section-pad); background:var(--bg-alt); }
.events__header { text-align:center; margin-bottom:60px; }
.events__grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.event-card { position:relative; overflow:hidden; height:400px; }
.event-card__bg {
  position:absolute; inset:0; background-size:cover;
  background-position:center; filter:brightness(0.3);
  transition: all 0.6s var(--ease);
}
.event-card:hover .event-card__bg { filter:brightness(0.45); transform:scale(1.05); }
.event-card__content {
  position:relative; z-index:1; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end; padding:40px;
}
.event-card__date { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.2em; color:var(--gold); margin-bottom:12px; }
.event-card__content h3 { margin-bottom:8px; }
.event-card__content p { font-size:0.9rem; }

/* ============================================
   MENU PAGE
   ============================================ */
.page-hero {
  position:relative; height:70vh; min-height:500px;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.page-hero__bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(0.3); }
.page-hero__overlay {
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(6,6,6,0.4), rgba(6,6,6,0.7));
  z-index:1;
}
.page-hero__content { position:relative; z-index:2; text-align:center; }
.page-hero__content p { margin:0 auto; max-width:540px; }
.page-hero--short { height:55vh; min-height:400px; }

.menu-list { padding:var(--section-pad); }
.menu-list__intro { text-align:center; margin-bottom:80px; }
.menu-list__intro p { margin:16px auto 0; }
.menu-list__items { max-width:800px; margin:0 auto; }
.menu-list__item {
  display:flex; align-items:center; justify-content:space-between;
  padding:36px 0; border-bottom:1px solid rgba(201,169,110,0.08);
  cursor:default; transition: all 0.4s var(--ease);
}
a.menu-list__item { cursor:pointer; }
.menu-list__item:first-child { border-top:1px solid rgba(201,169,110,0.08); }
.menu-list__item:hover { padding-left:20px; }
.menu-list__item h3 { transition: color 0.3s ease; }
.menu-list__item:hover h3 { color:var(--gold); }
.menu-list__item-desc { font-size:0.85rem; color:var(--gray); margin-top:4px; }
.menu-list__item-arrow {
  font-size:0.7rem; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gold); opacity:0.7; white-space:nowrap; margin-left:24px;
}

.menu-dishes { padding:0 0 120px; }
.menu-dishes__category { margin-bottom:80px; }
.menu-dishes__category-title { text-align:center; margin-bottom:40px; }
.menu-dishes__grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:20px; max-width:900px; margin:0 auto;
}
.menu-dish-item {
  display:flex; justify-content:space-between; align-items:baseline;
  padding:20px 24px; border-bottom:1px solid rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.menu-dish-item:hover { background:rgba(201,169,110,0.03); }
.menu-dish-item__name { font-family:var(--font-heading); font-size:1.15rem; color:var(--white); }
.menu-dish-item__desc { font-size:0.8rem; color:var(--gray); }
.menu-dish-item__price { font-family:var(--font-heading); font-size:1.1rem; color:var(--gold); white-space:nowrap; margin-left:20px; }

/* ============================================
   CHEF PAGE
   ============================================ */
.chef-bio { padding: var(--section-pad); }
.chef-bio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

/* Колонка с фото — круг смещён вправо-вниз */
.chef-bio__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.chef-bio__image::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-muted);
  top: 45%;
  left: 58%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.48;
}
.chef-bio__image::after {
  content: '';
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  top: 45%;
  left: 58%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}
.chef-bio__image img {
  position: relative;
  z-index: 1;
  width: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 28px;
  filter: brightness(0.88) saturate(0.9);
  box-shadow: 0 28px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,169,110,0.07);
  transition: filter 0.6s ease, transform 0.6s ease;
  transform: translate(-12px, 10px);
}
.chef-bio__image:hover img {
  filter: brightness(1) saturate(1);
  transform: translate(-12px, 4px);
}
.chef-bio__content p { margin-bottom: 24px; max-width: 520px; }

/* ── Chef Philosophy ── */
.chef-philosophy { padding:var(--section-pad); background:var(--bg-alt); }
.chef-philosophy__header { text-align:center; margin-bottom:80px; }
.chef-philosophy__pillars { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; }
.chef-philosophy__pillar {
  padding:48px 32px; border:1px solid rgba(201,169,110,0.06);
  background:var(--bg-card); transition: all 0.5s var(--ease);
}
.chef-philosophy__pillar:hover {
  border-color:rgba(201,169,110,0.15);
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.chef-philosophy__number {
  font-family:var(--font-heading); font-size:3rem;
  color:var(--gold); opacity:0.3; line-height:1; margin-bottom:20px;
}
.chef-philosophy__pillar h3 {
  font-size:1.3rem; margin-bottom:16px; color:var(--white);
}
.chef-philosophy__pillar p { font-size:0.9rem; }

/* ── Chef Timeline ── */
.chef-timeline { padding:var(--section-pad); }
.chef-timeline__header { text-align:center; margin-bottom:80px; }
.chef-timeline__line {
  max-width:800px; margin:0 auto;
  position:relative; padding-left:60px;
}
.chef-timeline__line::before {
  content:''; position:absolute; left:20px; top:0; bottom:0;
  width:1px; background:linear-gradient(180deg, var(--gold), var(--gold-muted) 80%, transparent);
}
.chef-timeline__item {
  position:relative; padding-bottom:56px;
  display:grid; grid-template-columns:auto 1fr; gap:0;
}
.chef-timeline__item:last-child { padding-bottom:0; }
.chef-timeline__year {
  font-family:var(--font-heading); font-size:1.2rem;
  color:var(--gold); position:absolute; left:-60px;
  width:60px; text-align:right; padding-right:24px; top:4px;
}
.chef-timeline__dot {
  position:absolute; left:-44px; top:8px;
  width:10px; height:10px; border-radius:50%;
  border:2px solid var(--gold); background:var(--bg);
  z-index:1; transition: all 0.3s ease;
}
.chef-timeline__item:hover .chef-timeline__dot {
  background:var(--gold); box-shadow:0 0 20px rgba(201,169,110,0.4);
}
.chef-timeline__card {
  padding:24px 32px;
  background:var(--bg-card); border:1px solid rgba(201,169,110,0.06);
  transition: all 0.4s var(--ease);
}
.chef-timeline__item:hover .chef-timeline__card {
  border-color:rgba(201,169,110,0.15);
}
.chef-timeline__card h3 { font-size:1.2rem; margin-bottom:8px; color:var(--white); }
.chef-timeline__card p { font-size:0.9rem; color:var(--white-soft); }

/* ── Chef Gallery Mosaic ── */
.chef-gallery { padding:0 0 var(--section-pad); }
.chef-gallery__header { text-align:center; margin-bottom:60px; }
.chef-gallery__mosaic {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:12px; max-width:var(--container); margin:0 auto; padding:0 48px;
}
.chef-gallery__item { position:relative; overflow:hidden; aspect-ratio:1; }
.chef-gallery__item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.7s var(--ease); filter:brightness(0.7);
}
.chef-gallery__item:hover img { transform:scale(1.08); filter:brightness(0.9); }
.chef-gallery__item--large { grid-row:span 2; aspect-ratio:auto; }

/* ── Chef Awards ── */
.chef-awards { padding:var(--section-pad); background:var(--bg-alt); }
.chef-awards__header { text-align:center; margin-bottom:80px; }
.chef-awards__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.chef-awards__item {
  text-align:center; padding:48px 24px;
  border:1px solid rgba(201,169,110,0.06);
  background:var(--bg-card);
  transition: all 0.5s var(--ease);
}
.chef-awards__item:hover {
  border-color:rgba(201,169,110,0.2);
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.chef-awards__icon {
  font-family:var(--font-heading); font-size:2.5rem;
  color:var(--gold); margin-bottom:20px; line-height:1;
}
.chef-awards__item h3 { font-size:1.1rem; margin-bottom:8px; color:var(--white); }
.chef-awards__item p { font-size:0.85rem; color:var(--gray); }

/* ============================================
   RESERVATION PAGE
   ============================================ */
.reservation-page { padding:var(--section-pad); }
.reservation-page__grid { display:grid; grid-template-columns:1.2fr 0.8fr; gap:80px; align-items:start; }

.reservation-page__form-wrap h2 { margin-bottom:8px; }

.reservation-form { display:flex; flex-direction:column; gap:24px; margin-top:32px; }
.reservation-form__row { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.reservation-form__row--full { grid-template-columns:1fr; }
.reservation-form__group { display:flex; flex-direction:column; gap:8px; }
.reservation-form__group label {
  font-size:0.7rem; text-transform:uppercase;
  letter-spacing:0.2em; color:var(--gold); font-weight:500;
}
.reservation-form__group input,
.reservation-form__group select,
.reservation-form__group textarea {
  background:var(--bg-card); border:1px solid var(--gray-dark);
  color:var(--white); padding:16px 20px;
  font-family:var(--font-body); font-size:0.9rem;
  outline:none; transition: border-color 0.3s ease;
  -webkit-appearance:none; appearance:none;
}
.reservation-form__group input::placeholder,
.reservation-form__group textarea::placeholder { color:var(--gray); }
.reservation-form__group input:focus,
.reservation-form__group select:focus,
.reservation-form__group textarea:focus { border-color:var(--gold); }
.reservation-form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a6a6a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center;
}
.reservation-form__group textarea { resize:vertical; min-height:120px; }
.reservation-form__submit { width:100%; justify-content:center; margin-top:8px; }
.reservation-form__note { font-size:0.8rem; color:var(--gray); text-align:center; margin-top:4px; }

/* ── Reservation Info Cards ── */
.reservation-page__info { display:flex; flex-direction:column; gap:0; }
.reservation-info-card {
  padding:32px; border-bottom:1px solid rgba(201,169,110,0.06);
}
.reservation-info-card:first-child { border-top:1px solid rgba(201,169,110,0.06); }
.reservation-info-card h3 {
  font-family:var(--font-body); font-size:0.7rem;
  text-transform:uppercase; letter-spacing:0.25em;
  color:var(--gold); margin-bottom:20px; font-weight:500;
}
.reservation-info-card p { font-size:0.9rem; color:var(--white-soft); line-height:1.8; }
.reservation-info-card a { color:var(--gold); }
.reservation-info-card a:hover { color:var(--gold-light); }
.reservation-info-card__row {
  display:flex; justify-content:space-between;
  padding:8px 0; font-size:0.9rem;
  color:var(--white-soft); border-bottom:1px solid rgba(255,255,255,0.03);
}
.reservation-info-card__row:last-child { border-bottom:none; }

/* ── Map Section ── */
.map-section { position:relative; }
.map-section__embed { height:450px; width:100%; }
.map-section__embed iframe {
  width:100%; height:100%; border:0;
  filter:brightness(0.7) saturate(0.5) invert(0.93) hue-rotate(180deg);
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page { padding:var(--section-pad); }

.gallery-page__filters {
  display:flex; justify-content:center; gap:8px;
  margin-bottom:60px; flex-wrap:wrap;
}
.gallery-page__filter {
  background:transparent; border:1px solid rgba(201,169,110,0.15);
  color:var(--white-soft); padding:10px 28px;
  font-family:var(--font-body); font-size:0.7rem;
  text-transform:uppercase; letter-spacing:0.2em;
  cursor:pointer; transition: all 0.4s var(--ease);
}
.gallery-page__filter:hover { border-color:var(--gold); color:var(--gold); }
.gallery-page__filter.active {
  background:var(--gold); border-color:var(--gold);
  color:var(--bg); font-weight:500;
}

.gallery-page__grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:280px;
  gap:12px;
}
.gallery-page__item {
  position:relative; overflow:hidden; cursor:pointer;
}
.gallery-page__item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.7s var(--ease), filter 0.5s ease;
  filter:brightness(0.65);
}
.gallery-page__item:hover img { transform:scale(1.06); filter:brightness(0.9); }
.gallery-page__item--tall { grid-row:span 2; }
.gallery-page__item--wide { grid-column:span 2; }

.gallery-page__item-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(6,6,6,0.8) 100%);
  display:flex; align-items:flex-end; padding:24px;
  opacity:0; transition: opacity 0.5s var(--ease);
}
.gallery-page__item:hover .gallery-page__item-overlay { opacity:1; }
.gallery-page__item-overlay span {
  font-family:var(--font-heading); font-size:1.1rem;
  color:var(--white); letter-spacing:0.05em;
}

.gallery-page__item.hidden { display:none; }

.lightbox {
  position:fixed; inset:0; background:rgba(6,6,6,0.95);
  z-index:99990; display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: all 0.4s ease; cursor:pointer;
}
.lightbox.active { opacity:1; visibility:visible; }
.lightbox img { max-width:90vw; max-height:85vh; object-fit:contain; }
.lightbox__close {
  position:absolute; top:30px; right:30px;
  font-size:2rem; color:var(--white); cursor:pointer;
  background:none; border:none; font-family:var(--font-body);
  transition: color 0.3s ease;
}
.lightbox__close:hover { color:var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding:100px 0 40px; background:var(--bg);
  border-top:1px solid rgba(201,169,110,0.06);
}
.footer__top { text-align:center; margin-bottom:80px; }
.footer__top-logo {
  font-family:var(--font-heading); font-size:2.2rem;
  letter-spacing:0.2em; color:var(--white); margin-bottom:8px;
}
/* Footer graphic logo — optical box */
.footer__top-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 64px;
  max-width: 72px;
  margin: 0 auto 12px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 12px rgba(201,169,110,0.15));
}
.footer__top-logo-img.logo-img--tarra,
.footer__top-logo-img.logo-img--sura {
  max-height: 42px;
  max-width: 180px;
}
.hero__logo-img,
.sura-hero .hero__logo-img {
  display: block;
  margin: 0 auto 16px;
  width: auto;
  height: auto;
  max-height: clamp(56px, 10vw, 100px);
  max-width: min(72vw, 420px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 28px rgba(0,0,0,0.45));
}
.hero__logo-img.logo-img--sura {
  max-height: clamp(42px, 7.5vw, 72px);
  max-width: min(78vw, 460px);
}
.page-hero__content .hero__logo-img { max-height: 72px; }
.footer__top-tagline { font-size:0.7rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold-muted); }
.footer__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; margin-bottom:80px; }
.footer__grid--3 { grid-template-columns:repeat(3,1fr); }
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.78rem;
}
.footer__ig svg { flex-shrink: 0; }
.footer__col h4 {
  font-family:var(--font-body); font-size:0.65rem;
  text-transform:uppercase; letter-spacing:0.25em;
  color:var(--gold); margin-bottom:20px; font-weight:500;
}
.footer__venue {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__col p, .footer__col a { font-size:0.9rem; color:var(--white-soft); line-height:2; }
.footer__col a:hover { color:var(--gold); }
.footer__social { display:flex; gap:20px; margin-top:12px; }
.footer__social a { font-size:0.85rem; }

.footer__newsletter { display:flex; gap:0; margin-top:12px; }
.footer__newsletter input {
  flex:1; background:transparent; border:1px solid var(--gray-dark); border-right:none;
  padding:14px 16px; color:var(--white); font-family:var(--font-body); font-size:0.85rem;
  outline:none; transition: border-color 0.3s ease;
}
.footer__newsletter input::placeholder { color:var(--gray); }
.footer__newsletter input:focus { border-color:var(--gold); }
.footer__newsletter button {
  background:var(--gold); border:1px solid var(--gold); color:var(--bg);
  padding:14px 24px; font-family:var(--font-body); font-size:0.65rem;
  text-transform:uppercase; letter-spacing:0.15em; cursor:pointer;
  font-weight:500; transition: all 0.3s ease;
}
.footer__newsletter button:hover { background:var(--gold-light); }

.footer__bottom { text-align:center; padding-top:40px; border-top:1px solid rgba(201,169,110,0.06); }
.footer__bottom p { font-size:0.75rem; color:var(--gray); margin:0 auto; }
.footer__bottom-links { margin-top:12px; display:flex; justify-content:center; gap:24px; }
.footer__bottom-links a { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.15em; color:var(--gray); }
.footer__bottom-links a:hover { color:var(--gold); }

/* ============================================
   GALLERY ITEM VIGNETTE
   ============================================ */
.gallery-page__item::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(6,6,6,0.25) 65%,
    rgba(6,6,6,0.70) 88%,
    rgba(6,6,6,0.95) 100%
  );
  opacity: 0.7; transition: opacity 0.5s ease;
}
.gallery-page__item:hover::after { opacity: 0.3; }

/* ============================================
   ATMOSPHERE MARQUEE ITEM VIGNETTE
   ============================================ */
.atmosphere__item::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 25%,
    rgba(6,6,6,0.30) 60%,
    rgba(6,6,6,0.72) 84%,
    rgba(6,6,6,0.95) 100%
  );
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99997;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 20px 40px; display: flex;
  align-items: center; justify-content: space-between; gap: 32px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { font-size: 0.82rem; color: var(--white-soft); max-width: 700px; line-height: 1.7; }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,169,110,0.4); }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner__accept {
  background: var(--gold); border: 1px solid var(--gold); color: var(--bg);
  padding: 10px 24px; font-size: 0.7rem; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.15em; cursor: pointer;
  font-weight: 500; transition: all 0.3s ease; white-space: nowrap;
}
.cookie-banner__accept:hover { background: var(--gold-light); }
.cookie-banner__decline {
  background: transparent; border: 1px solid rgba(201,169,110,0.25); color: var(--gray);
  padding: 10px 20px; font-size: 0.7rem; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.15em; cursor: pointer;
  transition: all 0.3s ease; white-space: nowrap;
}
.cookie-banner__decline:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   SKIP TO CONTENT (Accessibility)
   ============================================ */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 999999;
  background: var(--gold); color: var(--bg);
  padding: 10px 20px; font-size: 0.8rem; font-family: var(--font-body);
  font-weight: 600; text-decoration: none;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 16px; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal { opacity:0; transform:translateY(50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.reveal-scale { opacity:0; transform:scale(0.95); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-scale.visible { opacity:1; transform:scale(1); }
.stagger-1 { transition-delay:0.1s; }
.stagger-2 { transition-delay:0.2s; }
.stagger-3 { transition-delay:0.3s; }
.stagger-4 { transition-delay:0.4s; }

/* ============================================
   BRAND HOME — Unified Tarra & Sura
   ============================================ */
.brand-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.brand-hero--compact {
  min-height: min(88vh, 820px);
  min-height: min(88svh, 820px);
}
.split-panel__tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  width: min(86%, 420px);
  margin: 0 auto 16px;
  text-align: center;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  box-sizing: border-box;
  white-space: nowrap;
}
/* letter-spacing adds space after the last glyph; indent restores optical center */
.split-panel:has(.logo-img--sura) .split-panel__tagline {
  letter-spacing: 0.22em;
  text-indent: 0.22em;
}
.brand-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.32) saturate(0.85);
  transform: scale(1.04);
  animation: slowZoom 28s ease infinite alternate;
}
.brand-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(6,6,6,0.55) 70%, rgba(6,6,6,0.92) 100%),
    linear-gradient(180deg, rgba(6,6,6,0.35) 0%, transparent 40%, rgba(6,6,6,0.75) 100%);
}
.brand-hero__content {
  position: relative; z-index: 2;
  padding: 120px 24px 80px;
  max-width: 920px;
}
.brand-hero__emblem {
  display: block;
  height: auto;
  width: auto;
  max-height: clamp(52px, 8vw, 76px);
  max-width: clamp(52px, 8vw, 76px);
  margin: 0 auto 28px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(201,169,110,0.25));
}
.brand-hero__logos {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  margin-bottom: 36px; flex-wrap: wrap;
}
.brand-hero__logos img {
  display: block;
  height: auto;
  width: auto;
  max-height: clamp(34px, 5vw, 52px);
  max-width: min(38vw, 200px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.5));
}
.brand-hero__logos img.logo-img--sura {
  max-height: clamp(26px, 3.8vw, 40px);
  max-width: min(42vw, 220px);
}
.brand-hero__amp {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold);
  letter-spacing: 0.12em;
  opacity: 0.85;
}
.brand-hero__statement {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 20px;
}
.brand-hero__sub {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 40px;
}
.brand-hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; align-items: center;
}
.brand-hero__scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.brand-hero__scroll span {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gray);
}
.brand-hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Dual concept welcome */
.dual-welcome { padding: var(--section-pad); }
.dual-welcome__intro {
  text-align: center; max-width: 720px; margin: 0 auto 80px;
}
.dual-welcome__intro p { margin-top: 16px; }
.dual-welcome__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.dual-card {
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px 40px;
  border: 1px solid rgba(201,169,110,0.08);
  transition: border-color 0.5s var(--ease);
}
.dual-card:hover { border-color: rgba(201,169,110,0.22); }
.dual-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.28) saturate(0.85);
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}
.dual-card:hover .dual-card__bg {
  transform: scale(1.06); filter: brightness(0.4) saturate(1);
}
.dual-card__content { position: relative; z-index: 1; }
.dual-card__label {
  font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.dual-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.dual-card p { margin-bottom: 28px; max-width: 420px; font-size: 0.95rem; }

/* Experience pillars — 30% weight */
.experience-section {
  padding: var(--section-pad);
  background: var(--bg-alt);
  position: relative;
}
.experience-section__header {
  text-align: center; max-width: 680px; margin: 0 auto 72px;
}
.experience-section__header p { margin-top: 16px; }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.experience-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.06);
  padding: 40px 28px 36px;
  text-align: center;
  transition: all 0.45s var(--ease);
  min-height: 260px;
  display: flex; flex-direction: column; align-items: center;
}
.experience-card:hover {
  border-color: rgba(201,169,110,0.18);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.experience-card__num {
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.2em;
  color: var(--gold-muted); margin-bottom: 20px;
}
.experience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem; margin-bottom: 14px; color: var(--white);
}
.experience-card p { font-size: 0.88rem; line-height: 1.75; }
a.experience-card { text-decoration: none; color: inherit; }

/* Day to night journey */
.day-night {
  padding: var(--section-pad);
  position: relative; overflow: hidden;
}
.day-night__header { text-align: center; margin-bottom: 64px; }
.day-night__track {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  align-items: stretch; max-width: 1100px; margin: 0 auto;
}
.day-night__phase {
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.08);
}
.day-night__phase--night {
  background: linear-gradient(160deg, #0a0a0c 0%, #12101a 100%);
}
.day-night__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  position: relative;
  margin: 0 8px;
}
.day-night__divider span {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase;
}
.day-night__phase h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.06em; margin-bottom: 12px;
}
.day-night__phase .section-subtitle { margin-bottom: 12px; }
.day-night__phase p { font-size: 0.95rem; }

/* Brand feature blocks (Explore Tarra / Discover Sura) */
.brand-feature { padding: var(--section-pad); }
.brand-feature--alt { background: var(--bg-alt); }
.brand-feature__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 80px; align-items: center;
}
.brand-feature__grid--reverse { direction: rtl; }
.brand-feature__grid--reverse > * { direction: ltr; }
.brand-feature__visual {
  position: relative; min-height: 480px;
}
.brand-feature__img {
  width: 100%; height: 100%; min-height: 480px;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.92);
  border: 1px solid rgba(201,169,110,0.08);
}
.brand-feature__visual::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 80px rgba(6,6,6,0.45);
}
.brand-feature__text p { margin-bottom: 20px; max-width: 480px; }
.brand-feature__list {
  margin: 28px 0 36px;
  display: grid; gap: 12px;
}
.brand-feature__list li {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--white-soft);
  padding-left: 18px;
  position: relative;
}
.brand-feature__list li::before {
  content: '';
  position: absolute; left: 0; top: 0.65em;
  width: 8px; height: 1px; background: var(--gold);
}
.brand-feature__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Signature offerings */
.signatures { padding: var(--section-pad); background: var(--bg-alt); }
.signatures__header { text-align: center; margin-bottom: 64px; max-width: 600px; margin-left: auto; margin-right: auto; }
.signatures__header p { margin-top: 16px; }
.signatures__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.signature-tile {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid rgba(201,169,110,0.06);
}
.signature-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.7s var(--ease), filter 0.5s ease;
}
.signature-tile:hover img { transform: scale(1.06); filter: brightness(0.72); }
.signature-tile__body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 28px 24px;
  background: linear-gradient(transparent, rgba(6,6,6,0.92));
}
.signature-tile__tag {
  font-size: 0.62rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.signature-tile h3 {
  font-family: var(--font-heading); font-size: 1.25rem; color: var(--white);
}

/* Home gallery strip */
.home-gallery { padding: var(--section-pad); }
.home-gallery__header { text-align: center; margin-bottom: 48px; }
.home-gallery__row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.home-gallery__item {
  position: relative; overflow: hidden;
}
.home-gallery__item--tall { grid-row: span 2; }
.home-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.62);
  transition: transform 0.7s var(--ease), filter 0.5s ease;
}
.home-gallery__item:hover img { transform: scale(1.05); filter: brightness(0.85); }
.home-gallery__cta { text-align: center; margin-top: 48px; }

/* Private dining teaser */
.events-teaser {
  position: relative; padding: 140px 0; overflow: hidden; text-align: center;
}
.events-teaser__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.22);
}
.events-teaser__content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 24px; }
.events-teaser__content p { margin: 0 auto 36px; }
.events-teaser__pills {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px;
}
.events-teaser__pill {
  border: 1px solid rgba(201,169,110,0.25);
  padding: 10px 22px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-soft);
}

/* Meet the team — 5% weight, compact */
.team-section { padding: var(--section-pad); background: var(--bg-alt); }
.team-section__header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.team-section__header p { margin-top: 14px; font-size: 0.95rem; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1000px; margin: 0 auto;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.07);
  padding: 36px 28px 32px;
  text-align: center;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.team-card--photo { padding-top: 0; overflow: hidden; }
.team-card__photo {
  display: block;
  width: calc(100% + 56px);
  max-width: none;
  margin: 0 -28px 20px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
}
.team-card__photo--michael { object-position: center 28%; }
.team-card:hover {
  border-color: rgba(201,169,110,0.18);
  transform: translateY(-4px);
}
.team-card__role {
  font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.team-card h3 {
  font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 14px;
}
.team-card p {
  font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px;
}
.team-card .btn { padding: 12px 24px; font-size: 0.65rem; }

/* Visit block on home */
.visit-block { padding: var(--section-pad); }
.visit-block__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.visit-block__details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px 28px;
}
.visit-block__item h4 {
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 500;
}
.visit-block__item p, .visit-block__item a {
  font-size: 0.95rem; color: var(--white-soft); line-height: 1.85;
}
.visit-block__item a:hover { color: var(--gold); }
.visit-block__map {
  min-height: 380px; border: 1px solid rgba(201,169,110,0.1);
  overflow: hidden; background: var(--bg-card);
}
.visit-block__map iframe {
  width: 100%; height: 100%; min-height: 380px; border: 0;
  filter: brightness(0.7) saturate(0.5) invert(0.93) hue-rotate(180deg);
}

/* OpenTable block */
.opentable-block {
  margin-top: 40px;
  padding: 36px;
  border: 1px solid rgba(201,169,110,0.12);
  background: var(--bg-elevated);
  text-align: center;
}
.opentable-block h3 {
  font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 10px;
}
.opentable-block p { margin-bottom: 24px; font-size: 0.9rem; }
.opentable-block__badge {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 12px;
}

/* Platform note (brand > chef) */
.platform-note {
  padding: 80px 0;
  border-top: 1px solid rgba(201,169,110,0.06);
  border-bottom: 1px solid rgba(201,169,110,0.06);
  text-align: center;
}
.platform-note__inner { max-width: 700px; margin: 0 auto; padding: 0 24px; }
.platform-note h2 { margin-bottom: 20px; }
.platform-note p { font-size: 1.02rem; }

/* Explore entry strip (keep split volume) */
.explore-strip {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid rgba(201,169,110,0.06);
}
.explore-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
}
.explore-strip p { margin: 8px 0 0; max-width: 480px; font-size: 0.92rem; }

/* Footer nav links expansion */
.footer__nav-links {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 8px;
}
.footer__nav-links a {
  font-size: 0.85rem; color: var(--white-soft);
}
.footer__nav-links a:hover { color: var(--gold); }

/* Private events page extras */
.events-page__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.events-page__card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.07);
  padding: 40px 32px;
  min-height: 280px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.events-page__card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-4px);
}
.events-page__card h3 {
  font-family: var(--font-heading); font-size: 1.45rem; margin: 16px 0 14px;
}
.events-page__card p { font-size: 0.92rem; }

/* Navbar denser links for brand nav */
.navbar__links { gap: clamp(10px, 1.4vw, 22px); }
.navbar__link { font-size: 0.95rem; letter-spacing: 0.1em; }

/* Shared logo utility */
.logo-img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:1024px) {
  .about-section__grid, .chef-section__wrapper, .reservation-page__grid, .chef-bio__grid,
  .brand-feature__grid, .visit-block__grid, .dual-welcome__grid { grid-template-columns:1fr; gap:60px; }
  .brand-feature__grid--reverse { direction: ltr; }
  .experience-grid { grid-template-columns: repeat(3, 1fr); }
  .signatures__grid { grid-template-columns: repeat(2, 1fr); }
  .day-night__track { grid-template-columns: 1fr; gap: 24px; }
  .day-night__divider { width: 100%; height: 1px; margin: 0; min-height: 1px; }
  .day-night__divider span { top: 50%; }
  .home-gallery__row { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .home-gallery__item--tall { grid-row: span 1; min-height: 240px; }
  .events-page__grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .about-section__images { min-height: 400px; }
  .about-section__img-wrap::before { width: 260px; height: 260px; }
  .about-section__img-wrap::after  { width: 340px; height: 340px; }
  .about-section__img-main { width: 240px; }
  .chef-section__image, .chef-bio__image { min-height: 400px; }
  .chef-section__image img, .chef-bio__image img { width: 240px; }
  .menu-preview__grid { grid-template-columns:repeat(2,1fr); }
  .cocktails__grid { grid-template-columns:repeat(2,1fr); }
  .testimonials__grid { grid-template-columns:1fr; max-width:600px; margin:0 auto; }
  .footer__grid { grid-template-columns:repeat(2,1fr); }
  .gallery-page__grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:260px; }
  .events__grid { grid-template-columns:1fr; }
  .menu-dishes__grid { grid-template-columns:1fr; }
  .chef-philosophy__pillars { grid-template-columns:repeat(2,1fr); }
  .chef-awards__grid { grid-template-columns:repeat(2,1fr); }
  .chef-gallery__mosaic { grid-template-columns:repeat(2,1fr); padding:0 24px; }
  .chef-gallery__item--large { grid-row:span 1; aspect-ratio:1; }
}

@media (max-width:768px) {
  :root { --section-pad:88px 0; }
  .container, .container-narrow { padding:0 20px; }
  .split-screen { flex-direction:column; }
  .split-screen--home .split-panel { min-height: 50svh; }
  .split-divider { width:100%; height:1px; flex-shrink: 0; }
  .split-panel__logo-text { font-size:2.5rem; }
  .split-panel__logo-slot {
    width: min(78%, 280px);
    height: clamp(64px, 16vw, 96px);
    margin-bottom: 12px;
  }
  .split-panel__logo-img.logo-img--tarra { height: 90%; }
  .split-panel__logo-img.logo-img--sura { height: 64%; }
  .split-panel__content { padding: 24px 16px; }
  .brand-lockup { max-width: none; }
  .brand-lockup__logo { height: clamp(64px, 16vw, 96px); }
  .brand-lockup__logo--sura { height: clamp(34px, 9vw, 52px); }
  .brand-lockup--hero .brand-lockup__logo { height: clamp(70px, 18vw, 110px); }
  .brand-lockup--hero .brand-lockup__logo--sura { height: clamp(36px, 10vw, 56px); }
  .hero .hero__tagline { font-size: 0.68rem; letter-spacing: 0.12em; text-indent: 0.12em; }
  .sura-hero .hero__tagline { font-size: 0.58rem; letter-spacing: 0.08em; text-indent: 0.08em; }
  .split-panel__enter { margin-top: 16px; opacity: 0.75; transform: none; }
  .split-screen__tagline { bottom: max(16px, env(safe-area-inset-bottom)); }
  .split-screen__scroll {
    bottom: max(48px, calc(env(safe-area-inset-bottom) + 36px));
    font-size: 0.58rem;
  }
  .split-screen__scroll-line { height: 28px; }

  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .navbar__inner { padding: 0 16px; justify-content: space-between; min-height: 48px; }
  .navbar__links, .navbar__reserve { display:none; }
  .navbar__hamburger {
    display:flex;
    position: relative;
    right: auto;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .navbar__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 40px;
  }
  .navbar__mobile-menu {
    padding: max(24px, env(safe-area-inset-top)) 20px max(32px, env(safe-area-inset-bottom));
    gap: 22px;
    overflow-y: auto;
  }
  .navbar__mobile-menu a {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
    padding: 8px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero__logo-text { font-size:3rem; }
  .hero, .sura-hero, .brand-hero { min-height: 100svh; }
  .page-hero { height: auto; min-height: 48svh; padding: 120px 0 72px; }
  .page-hero--short { min-height: 40svh; padding: 110px 0 64px; }
  .menu-preview__grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; gap: 16px; }
  .cocktails__grid { grid-template-columns:1fr; max-width:350px; margin:0 auto; }
  .chef-gallery__grid { grid-template-columns:repeat(2,1fr); padding:0 24px; }
  .chef-gallery__item--tall { grid-row:span 1; aspect-ratio:1; }
  .gallery-page__grid { grid-template-columns:1fr; grid-auto-rows:240px; }
  .gallery-page__item--tall { grid-row:span 1; }
  .gallery-page__item--wide { grid-column:span 1; }
  .gallery-page__filters { gap: 8px; margin-bottom: 36px; }
  .gallery-page__filter { padding: 10px 16px; font-size: 0.62rem; }
  .chef-philosophy__pillars { grid-template-columns:1fr; max-width:500px; margin:0 auto; }
  .chef-awards__grid { grid-template-columns:1fr 1fr; }
  .chef-timeline__line { padding-left:40px; }
  .chef-timeline__year { left:-40px; width:40px; font-size:1rem; padding-right:14px; }
  .chef-timeline__dot { left:-24px; }
  .chef-timeline__line::before { left:10px; }
  .chef-gallery__mosaic { grid-template-columns:1fr 1fr; padding:0 24px; }
  .chef-gallery__item--large { grid-row:span 1; aspect-ratio:1; }
  .reservation-form__row { grid-template-columns:1fr; }
  .reservation-page__grid { gap: 40px; }
  .footer { padding: 72px 0 32px; }
  .footer__grid { grid-template-columns:1fr; gap:32px; }
  .footer__top { margin-bottom: 48px; }
  .gallery-grid__masonry { columns:1; padding:0 24px; }
  .form-row { grid-template-columns:1fr; }
  .atmosphere__item { min-width:260px; height:200px; }
  .custom-cursor { display:none !important; }
  .experience-grid { grid-template-columns: 1fr !important; max-width: 420px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .experience-card { min-height: 0; padding: 32px 24px; }
  .signatures__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .home-gallery__row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-gallery__item { min-height: 160px; }
  .home-gallery__item--tall { min-height: 160px; }
  .events-page__grid { grid-template-columns: 1fr; }
  .visit-block__details { grid-template-columns: 1fr; }
  .visit-block__map, .visit-block__map iframe { min-height: 280px; }
  .brand-hero__actions { flex-direction: column; width: 100%; }
  .brand-hero__actions .btn { width: 100%; justify-content: center; }
  .dual-card { min-height: 380px; padding: 36px 24px; }
  .dual-card h3, .dual-card h2 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .day-night__phase { padding: 32px 24px; }
  .team-grid { max-width: 100%; }
  .team-card { padding: 28px 22px; }
  .team-card--photo { padding-top: 0; }
  .team-card__photo {
    width: calc(100% + 44px);
    margin: 0 -22px 20px;
  }
  .opentable-block { padding: 28px 20px; }
  .events-teaser { padding: 100px 0; }
  .events-teaser__pills { gap: 8px; }
  .events-teaser__pill { padding: 8px 14px; font-size: 0.6rem; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 16px max(16px, env(safe-area-inset-bottom));
    gap: 14px;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__accept,
  .cookie-banner__decline { flex: 1; text-align: center; min-height: 44px; }
  .map-section__embed { height: 320px; }
  .btn { min-height: 44px; }
  .btn-lg { width: auto; max-width: 100%; }
  .about-section__stats { flex-wrap: wrap; gap: 24px; }
  .stat__number { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .explore-strip__inner { flex-direction: column; align-items: flex-start; }
  .reservation-cta { padding: 100px 0; }
  .reservation-cta__content p { padding: 0 8px; }
}

@media (max-width:480px) {
  .split-panel__logo-text { font-size:2rem; }
  .hero__logo-text { font-size:2.2rem; }
  .btn { padding:12px 28px; font-size:0.68rem; }
  .btn-lg { padding:14px 32px; }
  .signatures__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .home-gallery__row { grid-template-columns: 1fr; }
  .chef-awards__grid { grid-template-columns: 1fr; }
  .split-screen__tagline span { font-size: 0.58rem; letter-spacing: 0.04em; }
  h1 { letter-spacing: 0.04em; }
  h2 { letter-spacing: 0.03em; }
}

@media (hover: none) {
  .split-panel:hover { flex: 1; }
  .split-panel__enter { opacity: 0.7; transform: none; }
  .dish-card__desc,
  .cocktail-card__desc { opacity: 0.75; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .atmosphere__marquee { animation: none; }
  .split-panel__bg,
  .sura-hero__bg { animation: none; }
}
