/* ============================================
   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: 60px; width: auto;
  animation: preloaderPulse 1.5s ease infinite;
  filter: drop-shadow(0 0 20px rgba(201,169,110,0.3));
}
.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; width:100%;
  overflow:hidden; position:relative;
}
.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;
}
.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);
}
/* Graphic logo in split panel */
.split-panel__logo-img {
  height: clamp(60px, 8vw, 110px); width: auto;
  display: block; margin: 0 auto 16px;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
  transition: all 0.5s var(--ease);
}
.split-panel:hover .split-panel__logo-img {
  filter: drop-shadow(0 0 30px rgba(201,169,110,0.35));
  transform: scale(1.04);
}
.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:40px; left:50%;
  transform:translateX(-50%); z-index:10; text-align:center;
}
.split-screen__tagline span {
  font-size:0.65rem; letter-spacing:0.3em;
  text-transform:uppercase; color:var(--gray);
}

/* ============================================
   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%); }
.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 */
.navbar__logo-img {
  height: 36px; width: auto; display:block;
  transition: opacity 0.4s ease, filter 0.4s ease;
  filter: brightness(1);
}
.navbar__logo-img:hover { opacity:0.8; 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.7rem; font-weight:400;
  text-transform:uppercase; letter-spacing:0.2em;
  color:var(--white); position:relative; padding:6px 0;
}
.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.68rem; padding:10px 28px; }

.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;
}
.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: 3rem; color: var(--gold); line-height: 1; }
.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; }

.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 .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; }

/* ============================================
   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:pointer; transition: all 0.4s var(--ease);
}
.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:1.3rem; color:var(--gold); opacity:0;
  transform:translateX(-10px); transition: all 0.4s var(--ease);
}
.menu-list__item:hover .menu-list__item-arrow { opacity:1; transform:translateX(0); }

.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;
  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 */
.footer__top-logo-img {
  height: 56px; width: auto; display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 2px 12px rgba(201,169,110,0.15));
}
.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__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__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; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:1024px) {
  .about-section__grid, .chef-section__wrapper, .reservation-page__grid, .chef-bio__grid { grid-template-columns:1fr; gap:60px; }
  .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:100px 0; }
  .container, .container-narrow { padding:0 24px; }
  .split-screen { flex-direction:column; }
  .split-divider { width:100%; height:1px; }
  .split-panel__logo-text { font-size:2.5rem; }
  .navbar__links, .navbar__reserve { display:none; }
  .navbar__hamburger { display:flex; position:absolute; right:24px; }
  .navbar__logo { position:static; transform:none; }
  .navbar__inner { justify-content:center; }
  .hero__logo-text { font-size:3rem; }
  .menu-preview__grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .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; }
  .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; }
  .footer__grid { grid-template-columns:1fr; gap:32px; }
  .gallery-grid__masonry { columns:1; padding:0 24px; }
  .form-row { grid-template-columns:1fr; }
  .atmosphere__item { min-width:280px; height:220px; }
  .custom-cursor { display:none; }
}

@media (max-width:480px) {
  .split-panel__logo-text { font-size:2rem; }
  .hero__logo-text { font-size:2.2rem; }
  .btn { padding:12px 32px; font-size:0.7rem; }
  .btn-lg { padding:14px 36px; }
}
