/* ═══════════════════════════════════════════════════════════════
   TAVACI SEYDO · Premium Restaurant — Black & Gold Theme
   Designed with: Cormorant Garamond, Italiana, Inter
═══════════════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --black: #0a0a0a;
  --black-2: #0e0e0e;
  --black-3: #141414;
  --black-4: #1a1a1a;
  --line: rgba(201, 169, 97, 0.18);
  --line-strong: rgba(201, 169, 97, 0.42);
  --line-soft: rgba(255, 255, 255, 0.06);

  --gold: #C9A961;
  --gold-light: #E8C77E;
  --gold-bright: #F0D080;
  --gold-dark: #8B7339;
  --gold-deep: #6E5A28;

  --text: #EDEAE2;
  --text-dim: #B4ADA0;
  --text-muted: #7A746A;

  /* Type */
  --font-display: "Italiana", "Cormorant Garamond", serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --container: 1480px;
  --pad-x: clamp(20px, 5vw, 96px);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.7, 0, .84, 0);

  /* Effects */
  --shadow-gold: 0 0 0 1px rgba(201, 169, 97, 0.18), 0 30px 60px rgba(0, 0, 0, 0.6);
  --grain-opacity: 0.05;
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s var(--ease);
}

button { font-family: inherit; cursor: pointer; }

::selection {
  background: var(--gold);
  color: var(--black);
}

/* Custom scrollbar */
html::-webkit-scrollbar { width: 0; }

/* Film grain noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  padding: 0 24px;
}

.preloader__mark {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 64px);
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 400;
}

.preloader__letter,
.preloader__space {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: prl-letter .9s var(--ease-out) forwards;
}

.preloader__letter:nth-child(1) { animation-delay: .05s; }
.preloader__letter:nth-child(2) { animation-delay: .10s; }
.preloader__letter:nth-child(3) { animation-delay: .15s; }
.preloader__letter:nth-child(4) { animation-delay: .20s; }
.preloader__letter:nth-child(5) { animation-delay: .25s; }
.preloader__letter:nth-child(6) { animation-delay: .30s; }
.preloader__letter:nth-child(8) { animation-delay: .42s; }
.preloader__letter:nth-child(9) { animation-delay: .47s; }
.preloader__letter:nth-child(10) { animation-delay: .52s; }
.preloader__letter:nth-child(11) { animation-delay: .57s; }
.preloader__letter:nth-child(12) { animation-delay: .62s; }

@keyframes prl-letter {
  to { opacity: 1; transform: translateY(0); }
}

.preloader__sub {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  opacity: 0;
  animation: prl-letter .8s var(--ease-out) .8s forwards;
}

.preloader__line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.preloader__progress {
  margin: 28px auto 0;
  width: 220px;
  max-width: 60vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.preloader__progress span {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--gold);
  animation: prl-bar 1.6s var(--ease-out) .4s forwards;
}

@keyframes prl-bar {
  to { right: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

/* Scroll state: logo SHRINKS back to compact size (+33%) */
.nav.is-scrolled .nav__brand-mark {
  width: 70px;
  height: 70px;
  padding: 8px;
  box-shadow: 0 0 24px rgba(201, 169, 97, 0.12);
}

.nav.is-scrolled .nav__brand-mark img {
  filter: drop-shadow(0 0 12px rgba(201, 169, 97, 0.35));
}

.nav.is-scrolled .nav__brand-text strong { font-size: 17px; }
.nav.is-scrolled .nav__brand-text em { font-size: 10px; }

@media (max-width: 980px) {
  .nav__brand-mark { width: 104px; height: 104px; padding: 10px; }
  .nav.is-scrolled .nav__brand-mark { width: 60px; height: 60px; padding: 7px; }
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Default (top, over hero) — BIG (+33%) */
.nav__brand-mark {
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  padding: 12px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 50px rgba(201, 169, 97, 0.22), inset 0 0 24px rgba(201, 169, 97, 0.08);
  transition:
    width .6s var(--ease),
    height .6s var(--ease),
    padding .6s var(--ease),
    background .4s var(--ease),
    border-color .4s var(--ease),
    box-shadow .6s var(--ease),
    transform .5s var(--ease);
}

.nav__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(232, 199, 126, 0.45));
  transition: filter .5s var(--ease);
}

.nav__brand:hover .nav__brand-mark {
  border-color: var(--gold-light);
  transform: scale(1.04);
}

.nav__brand:hover .nav__brand-mark img {
  filter: drop-shadow(0 0 24px rgba(232, 199, 126, 0.7));
}

.nav__brand-text strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.16em;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
  transition: font-size .5s var(--ease);
}

.nav__brand-text em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav__links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-out);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__ctas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.nav__cta--ghost {
  background: transparent;
  color: var(--gold);
}

.nav__cta--ghost:hover {
  background: var(--gold);
  color: var(--black);
}

.nav__cta--solid {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.5);
  animation: callPulse 2.2s ease-in-out infinite;
}

.nav__cta--solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.45);
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.55); }
  50%      { box-shadow: 0 0 0 14px rgba(201, 169, 97, 0); }
}

.nav__cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 1px solid var(--gold);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  transition: transform .4s var(--ease);
}

body.menu-open .nav__burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links, .nav__ctas { display: none; }
  .nav__burger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  transform: translateY(-100%);
  transition: transform .7s var(--ease-out);
  visibility: hidden;
}

body.menu-open .mobile-menu {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 60px);
  letter-spacing: 0.05em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 18px;
  justify-content: center;
}

.mobile-menu__links a span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.18em;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px var(--pad-x) 80px;
  color: var(--text);
  perspective: 1200px;
}

.hero__bg {
  position: absolute;
  inset: -8% -2%;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) brightness(0.45) contrast(1.15);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.95) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 30%, rgba(10, 10, 10, 0.7) 70%, rgba(10, 10, 10, 1) 100%);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px 60px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.hero__deco {
  position: absolute;
  width: 110px;
  height: 110px;
  color: var(--gold);
  opacity: 0.7;
  z-index: 3;
}

.hero__deco--tl { top: 100px; left: 32px; }
.hero__deco--tr { top: 100px; right: 32px; }
.hero__deco--bl { bottom: 80px; left: 32px; }
.hero__deco--br { bottom: 80px; right: 32px; }

@media (max-width: 768px) {
  .hero__deco { width: 60px; height: 60px; }
  .hero__deco--tl, .hero__deco--tr { top: 90px; }
  .hero__deco--bl, .hero__deco--br { bottom: 100px; }
  .hero__deco--tl, .hero__deco--bl { left: 14px; }
  .hero__deco--tr, .hero__deco--br { right: 14px; }
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1100px;
  transform-style: preserve-3d;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}

.hero__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 14vw, 200px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 4px 80px rgba(0, 0, 0, 0.6);
}

.hero__title-line {
  display: block;
  color: var(--text);
}

.hero__title-line--italic em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero__title-line {
  overflow: hidden;
  position: relative;
}

.hero__title-line > span,
.hero__title-line > em {
  display: inline-block;
  transform: translateY(110%);
  animation: heroSlideUp 1.2s var(--ease-out) forwards;
}

.hero__title-line:nth-of-type(1) > span { animation-delay: 1.0s; }
.hero__title-line:nth-of-type(2) > em { animation-delay: 1.18s; }

@keyframes heroSlideUp {
  to { transform: translateY(0); }
}

.hero__lede {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--text-dim);
  font-style: italic;
  max-width: 640px;
  margin: 36px auto 48px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1.6s forwards;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 22px 36px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1.8s forwards;
}

.hero__meta-item {
  text-align: center;
}

.hero__meta-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--gold);
  line-height: 1;
}

.hero__meta-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  margin-top: 6px;
  text-transform: uppercase;
}

.hero__meta-divider {
  width: 1px;
  height: 28px;
  background: var(--line-strong);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 2s forwards;
}

.hero__scroll-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--black);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { inset: 0 100% 0 0; }
  50% { inset: 0 0 0 0; }
  100% { inset: 0 0 0 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__marquee {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.6);
  padding: 18px 0;
  overflow: hidden;
  z-index: 6;
  display: none;
}

@media (min-width: 1100px) {
  .hero__marquee { display: block; }
  .hero__scroll { bottom: 96px; }
}

.hero__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.hero__marquee-track .diamond {
  font-size: 10px;
  color: var(--gold-dark);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   KICKER / QUOTE
═══════════════════════════════════════════════════════════════ */
.kicker {
  padding: clamp(80px, 14vw, 180px) var(--pad-x);
  background: var(--black);
  text-align: center;
  position: relative;
}

.kicker__inner {
  max-width: 920px;
  margin: 0 auto;
}

.kicker__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.kicker__ornament span:not(.kicker__diamond) {
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.kicker__diamond {
  color: var(--gold);
  font-size: 12px;
}

.kicker__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--text);
}

.kicker__quote em {
  font-style: italic;
  color: var(--gold-light);
}

.kicker__attribution {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEAD
═══════════════════════════════════════════════════════════════ */
.section-head {
  max-width: 880px;
  margin: 0 auto clamp(60px, 8vw, 110px);
  padding: 0 var(--pad-x);
}

.section-head--center { text-align: center; }

.section-head__index {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--text);
}

.section-head__title em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head__lead {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 720px;
  font-style: italic;
}

.section-head--center .section-head__lead { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   STORY / TIMELINE
═══════════════════════════════════════════════════════════════ */
.story {
  padding: clamp(80px, 12vw, 160px) 0 clamp(120px, 16vw, 200px);
  position: relative;
}

.timeline {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}

.timeline__rail {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-soft);
  transform: translateX(-50%);
}

.timeline__rail-fill {
  position: absolute;
  inset: 0 0 100% 0;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  transition: bottom .1s linear;
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 50px 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.timeline__item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.timeline__item:nth-child(odd) {
  margin-left: 50%;
  text-align: left;
}

.timeline__item:nth-child(even) {
  text-align: right;
}

.timeline__year {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.timeline__node {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  background: var(--black);
  top: 64px;
  z-index: 2;
  transform: rotate(45deg);
}

.timeline__node::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .6s var(--ease);
}

.in-view .timeline__node::after { opacity: 1; }
.timeline__node--active::after { opacity: 1; }

.timeline__item:nth-child(odd) .timeline__node {
  left: -7px;
}

.timeline__item:nth-child(even) .timeline__node {
  right: -7px;
}

.timeline__body h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: 0.01em;
}

.timeline__body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 880px) {
  .timeline__rail { left: 20px; transform: none; }
  .timeline__item { width: 100%; padding: 30px 0 30px 60px; text-align: left !important; margin: 0 !important; }
  .timeline__item:nth-child(odd) .timeline__node,
  .timeline__item:nth-child(even) .timeline__node {
    left: 13px; right: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   3D BREAK
═══════════════════════════════════════════════════════════════ */
.break-3d {
  position: relative;
  height: 100vh;
  overflow: hidden;
  perspective: 1200px;
}

.break-3d__stage {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
}

.break-3d__layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.break-3d__layer--bg {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 97, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
    var(--black);
}

.break-3d__layer--mid {
  display: grid;
  place-items: center;
  opacity: 0.5;
}

.break-3d__layer--mid img {
  max-height: 70%;
  width: auto;
  filter: grayscale(0.4) brightness(0.7) sepia(0.2);
  mix-blend-mode: luminosity;
}

.break-3d__layer--front {
  display: grid;
  place-items: center;
}

.break-3d__plaque {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 60px 80px;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-gold);
}

.break-3d__plaque-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.break-3d__plaque-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 58px);
  line-height: 1.1;
  color: var(--text);
  letter-spacing: 0.02em;
}

.break-3d__plaque-text em {
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   MENU / DISHES — with real photos
═══════════════════════════════════════════════════════════════ */
.menu {
  padding: clamp(80px, 12vw, 160px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 169, 97, 0.06) 0%, transparent 40%),
    var(--black);
}

/* ───── MENU TABS ───── */
.menu__tabs {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: color .4s var(--ease);
}

.menu__tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width .5s var(--ease);
}

.menu__tab-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.1em;
  transition: opacity .4s var(--ease);
}

.menu__tab-name {
  white-space: nowrap;
}

.menu__tab:hover {
  color: var(--text);
}

.menu__tab.is-active {
  color: var(--gold);
}

.menu__tab.is-active::after {
  width: 80%;
}

@media (max-width: 768px) {
  .menu__tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu__tabs::-webkit-scrollbar { display: none; }
  .menu__tab {
    padding: 18px 18px;
    flex-shrink: 0;
  }
}

/* ───── MENU PANELS ───── */
.menu__panels {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 0;
  position: relative;
}

.menu__panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  animation: panelIn .7s var(--ease-out) forwards;
}

.menu__panel.is-active {
  display: block;
}

@keyframes panelIn {
  to { opacity: 1; transform: translateY(0); }
}

.menu__panel-head {
  text-align: center;
  margin-bottom: 48px;
}

.menu__panel-eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.menu__panel-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--text);
  letter-spacing: 0.005em;
}

.menu__panel-title em {
  font-style: italic;
  color: var(--gold);
}

.menu__panel-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
  max-width: 540px;
  margin-inline: auto;
}

/* ───── MENU LIST ───── */
.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease), background .4s var(--ease);
  position: relative;
}

.menu-item:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(201, 169, 97, 0.03);
}

.menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width .5s var(--ease);
}

.menu-item:hover::before {
  width: 12px;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: color .4s var(--ease);
}

.menu-item:hover .menu-item__name {
  color: var(--gold-light);
}

.menu-item__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

.menu-item__dots {
  flex: 1;
  height: 1px;
  margin-bottom: 6px;
  background-image: radial-gradient(circle, var(--text-muted) 0.6px, transparent 0.8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  opacity: 0.4;
  transition: opacity .4s var(--ease), background-image .4s var(--ease);
}

.menu-item:hover .menu-item__dots {
  opacity: 0.85;
  background-image: radial-gradient(circle, var(--gold) 0.8px, transparent 1px);
}

.menu-item__price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--gold);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .4s var(--ease), transform .4s var(--ease);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.menu-item__price small {
  font-size: 0.7em;
  color: var(--gold-dark);
  font-weight: 600;
  transition: color .4s var(--ease);
}

.menu-item:hover .menu-item__price {
  color: var(--gold-bright);
  transform: scale(1.04);
}

.menu-item:hover .menu-item__price small {
  color: var(--gold);
}

/* Signature item — special accent */
.menu-item--signature {
  position: relative;
}

.menu-item--signature .menu-item__name::after {
  content: "İMZA";
  display: inline-block;
  margin-left: 10px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--gold);
  padding: 3px 8px;
  vertical-align: middle;
  font-weight: 700;
  transition: background .4s var(--ease), color .4s var(--ease);
}

.menu-item--signature:hover .menu-item__name::after {
  background: var(--gold);
  color: var(--black);
}

@media (max-width: 540px) {
  .menu-item { padding: 18px 4px; gap: 10px; }
  .menu-item__name { font-size: 17px; }
  .menu-item__price { font-size: 17px; }
  .menu-item__dots { display: none; }
  .menu-item--signature .menu-item__name::after {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    width: max-content;
  }
}

/* ───── PERKS ───── */
.menu__perks {
  max-width: var(--container);
  margin: clamp(80px, 12vw, 140px) auto 0;
  padding: 0 var(--pad-x);
  text-align: center;
}

.menu__perks-rule {
  width: 1px;
  height: 64px;
  margin: 0 auto 36px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.menu__perks-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 60px;
  letter-spacing: 0.005em;
}

.menu__perks-title em {
  font-style: italic;
  color: var(--gold);
}

.menu__perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 60px;
}

.perk {
  background: var(--black-2);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  transition: background .5s var(--ease);
  overflow: hidden;
}

.perk:hover { background: var(--black-3); }

.perk::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity .6s var(--ease), transform .8s var(--ease-out);
  pointer-events: none;
}

.perk:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.perk__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-bottom: 12px;
  transition: background .5s var(--ease), color .5s var(--ease), transform .5s var(--ease);
  position: relative;
  z-index: 1;
}

.perk__icon svg {
  width: 28px;
  height: 28px;
}

.perk:hover .perk__icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(-6deg) scale(1.06);
}

.perk__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.perk__label {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.perk__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 8px 0 0;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .menu__perks-grid { grid-template-columns: 1fr; }
}

.menu__region {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 32px;
  border: 1px solid var(--line);
  background: rgba(201, 169, 97, 0.03);
}

.menu__region span {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu__region strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════
   VENUES (Sticky 3D Cards)
═══════════════════════════════════════════════════════════════ */
.venues {
  padding: clamp(80px, 12vw, 160px) 0 0;
  position: relative;
}

.venues__stack {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.venue {
  position: sticky;
  top: 18vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--black-2);
  border: 1px solid var(--line);
  margin-bottom: 60px;
  min-height: 540px;
  overflow: hidden;
  transform-origin: center top;
  will-change: transform, opacity;
}

.venue:nth-child(1) { top: calc(18vh + 0px); z-index: 1; }
.venue:nth-child(2) { top: calc(18vh + 30px); z-index: 2; }
.venue:nth-child(3) { top: calc(18vh + 60px); z-index: 3; }

.venue__media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.venue__media img {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.75) contrast(1.1);
  transition: transform 1.6s var(--ease-out), filter 1.6s var(--ease-out);
}

.venue:hover .venue__media img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(0.85) contrast(1.15);
}

.venue__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.1) 40%, transparent 60%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.5) 0%, transparent 50%);
}

.venue__body {
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
    var(--black-2);
}

.venue__index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.venue__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  font-weight: 400;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.005em;
}

.venue__title em {
  font-style: italic;
  color: var(--gold);
}

.venue__desc {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  font-style: italic;
  margin: 0 0 8px;
  max-width: 460px;
}

.venue__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.venue__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text);
}

.venue__features li span {
  color: var(--gold);
  font-size: 8px;
}

@media (max-width: 880px) {
  .venue {
    position: relative;
    top: auto !important;
    grid-template-columns: 1fr;
  }
  .venue__media { min-height: 260px; }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY (Horizontal Scroll)
═══════════════════════════════════════════════════════════════ */
.gallery {
  padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
  position: relative;
}

.gallery__horizontal {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 90svh;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 24px;
  padding: 0 var(--pad-x);
  height: 100%;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.gallery__item {
  position: relative;
  flex: 0 0 auto;
  width: 360px;
  height: 70%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black-3);
}

.gallery__item--tall { width: 320px; height: 85%; }
.gallery__item--wide { width: 540px; height: 65%; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.8);
  transition: transform 1.4s var(--ease-out), filter 1.4s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(1);
}

.gallery__item figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--text);
  background: rgba(10, 10, 10, 0.75);
  padding: 8px 14px;
  border: 1px solid var(--gold);
  backdrop-filter: blur(6px);
}

@media (max-width: 760px) {
  .gallery__horizontal { height: auto; overflow: auto hidden; -webkit-overflow-scrolling: touch; }
  .gallery__track { transform: none !important; }
  .gallery__item { width: 75vw; height: 60vh; }
  .gallery__item--tall { width: 75vw; height: 65vh; }
  .gallery__item--wide { width: 88vw; height: 55vh; }
}

/* ═══════════════════════════════════════════════════════════════
   PRESS
═══════════════════════════════════════════════════════════════ */
.press {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--black-2);
}

.press__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px;
}

.press__card {
  background: var(--black);
  border: 1px solid var(--line);
  padding: 36px;
  transition: border-color .5s var(--ease), transform .8s var(--ease-out);
}

.press__card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.press__card--feature {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.press__card-img {
  height: 320px;
  overflow: hidden;
  background: var(--black-3);
}

.press__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.85);
}

.press__card-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.press__card-meta {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.press__card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--text);
  margin: 0;
}

.press__card-excerpt {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  font-style: italic;
  margin: 0;
}

.press__card-attribution {
  margin: auto 0 0;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--gold);
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .press__grid {
    grid-template-columns: 1fr 1fr;
  }
  .press__card--feature { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 640px) {
  .press__grid { grid-template-columns: 1fr; }
  .press__card--feature { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════════ */
.cta {
  padding: clamp(100px, 14vw, 180px) var(--pad-x);
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.1) 0%, transparent 60%),
    var(--black);
}

.cta::before, .cta::after {
  content: "";
  position: absolute;
  left: 50%;
  width: clamp(220px, 30vw, 380px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transform: translateX(-50%);
}

.cta::before { top: 0; }
.cta::after { bottom: 0; }

.cta__inner { max-width: 880px; margin: 0 auto; }

.cta__eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 20px;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--text);
}

.cta__title em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 44px;
}

.cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
  font-family: var(--font-sans);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--ghost:hover {
  background: var(--gold);
  color: var(--black);
}

.btn__rule {
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width .4s var(--ease);
}

.btn:hover .btn__rule { width: 32px; }

.btn__arrow {
  transition: transform .4s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--black);
}

.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.contact__left .section-head__title { margin-bottom: 48px; }

.contact__block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: start;
}

.contact__block:last-of-type {
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.contact__label {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 4px;
}

.contact__value {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.contact__value a:hover { color: var(--gold); }

.contact__map-btn {
  margin-top: 8px;
}

/* PHONE CARDS — big, eye-catching, tap-to-call */
.contact__block--phones {
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact__block--phones .contact__label {
  padding-top: 0;
}

.contact__phones {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__phone {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 97, 0.04);
  color: var(--text);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.contact__phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(232, 199, 126, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}

.contact__phone:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(201, 169, 97, 0.6);
  border-color: var(--gold-light);
}

.contact__phone:hover::before { transform: translateX(100%); }

.contact__phone-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(10, 10, 10, 0.4);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease);
}

.contact__phone-icon svg {
  width: 24px;
  height: 24px;
}

.contact__phone:hover .contact__phone-icon {
  background: var(--black);
  color: var(--gold-bright);
  border-color: var(--black);
  transform: scale(1.08) rotate(-6deg);
}

.contact__phone-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact__phone-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  transition: color .4s var(--ease);
}

.contact__phone:hover .contact__phone-label {
  color: rgba(10, 10, 10, 0.7);
}

.contact__phone-number {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.1;
  transition: color .4s var(--ease);
}

.contact__phone:hover .contact__phone-number {
  color: var(--black);
}

.contact__phone-cta {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  transition: color .4s var(--ease), transform .4s var(--ease);
}

.contact__phone:hover .contact__phone-cta {
  color: var(--black);
  transform: translateX(6px);
}

@media (max-width: 540px) {
  .contact__phone {
    padding: 18px 18px;
    gap: 14px;
  }
  .contact__phone-icon {
    width: 44px;
    height: 44px;
  }
  .contact__phone-icon svg { width: 20px; height: 20px; }
  .contact__phone-cta { display: none; }
  .contact__phone-number { font-size: 22px; }
}

.contact__right { position: relative; }

.contact__map {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--black-3);
  border: 1px solid var(--gold);
  overflow: hidden;
}

.contact__map iframe {
  filter: grayscale(1) invert(0.92) contrast(1.05) hue-rotate(180deg) saturate(0.4) brightness(0.85);
}

.contact__map-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
}

@media (max-width: 880px) {
  .contact__inner { grid-template-columns: 1fr; gap: 60px; }
  .contact__map { aspect-ratio: 4 / 3; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.foot {
  padding: 80px var(--pad-x) 32px;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.foot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.foot__brand-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  padding: 8px;
  background: rgba(10, 10, 10, 0.6);
}

.foot__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 169, 97, 0.25));
}

.foot__brand-text strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
}

.foot__brand-text em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 6px;
  text-transform: uppercase;
}

.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.foot__links a {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color .3s var(--ease);
}

.foot__links a:hover { color: var(--gold); }

.foot__rule {
  height: 1px;
  background: var(--line);
}

.foot__bot {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   REFERANSLAR / REFERENCES
═══════════════════════════════════════════════════════════════ */
.refs {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
    var(--black);
  position: relative;
  overflow: hidden;
}

.refs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(220px, 30vw, 380px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transform: translateX(-50%);
}

.refs__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.refs__cell {
  position: relative;
  background: var(--black-2);
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 220px;
  transition: background .5s var(--ease), transform .8s var(--ease-out);
  overflow: hidden;
}

.refs__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .6s var(--ease);
}

.refs__cell:hover {
  background: var(--black-3);
}

.refs__cell:hover::before {
  opacity: 1;
}

.refs__cell img {
  max-width: 140px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.85) contrast(1.05);
  opacity: 0.6;
  transition: filter .6s var(--ease), opacity .6s var(--ease), transform .6s var(--ease);
  position: relative;
  z-index: 1;
}

.refs__cell:hover img {
  filter: grayscale(0) brightness(1.1) contrast(1.1);
  opacity: 1;
  transform: scale(1.06);
}

.refs__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  transition: color .5s var(--ease);
}

.refs__cell:hover .refs__label {
  color: var(--gold);
}

.refs__marquee {
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 20, 20, 0.4);
  padding: 22px 0;
  overflow: hidden;
}

.refs__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  font-style: italic;
}

.refs__marquee-track .diamond {
  font-size: 10px;
  color: var(--gold);
  font-style: normal;
}

@media (max-width: 880px) {
  .refs__grid { grid-template-columns: repeat(2, 1fr); }
  .refs__cell { padding: 40px 24px; min-height: 180px; }
  .refs__cell img { max-width: 110px; max-height: 70px; }
}

@media (max-width: 480px) {
  .refs__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED HOVER & MICRO-INTERACTIONS
═══════════════════════════════════════════════════════════════ */

/* Cursor follower (desktop only) */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .3s var(--ease);
  opacity: 0;
  box-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease), opacity .3s var(--ease), border-color .3s var(--ease);
  opacity: 0;
}

body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring {
  opacity: 1;
}

body.has-cursor.cursor-grow .cursor-dot {
  width: 0;
  height: 0;
}

body.has-cursor.cursor-grow .cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--gold-light);
  background: rgba(201, 169, 97, 0.06);
}

@media (max-width: 1024px), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Section head — title underline reveal */
.section-head__title em {
  position: relative;
  display: inline-block;
}

/* Kicker quote glow on scroll-in */
.kicker__quote em {
  position: relative;
  display: inline;
  transition: text-shadow .8s var(--ease);
}

.kicker.in-view .kicker__quote em {
  text-shadow: 0 0 30px rgba(232, 199, 126, 0.25);
}

/* Dish — enhanced 3D tilt + image-ish overlay */
.dish {
  transition: background .6s var(--ease), transform .6s var(--ease-out), box-shadow .6s var(--ease);
}

.dish:hover {
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 97, 0.4),
    0 30px 60px -20px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.dish__title {
  transition: transform .5s var(--ease);
}

.dish:hover .dish__title {
  transform: translateX(6px);
}

.dish__tag {
  transition: color .5s var(--ease), letter-spacing .5s var(--ease);
}

.dish:hover .dish__tag {
  color: var(--gold);
  letter-spacing: 0.42em;
}

/* Venue media — Ken Burns effect on hover */
.venue {
  transition: transform .8s var(--ease-out), box-shadow .8s var(--ease);
}

.venue:hover {
  box-shadow:
    inset 0 0 0 1px var(--line-strong),
    0 40px 80px -30px rgba(0, 0, 0, 0.9);
}

.venue__title {
  transition: transform .6s var(--ease);
}

.venue:hover .venue__title {
  transform: translateX(8px);
}

.venue__features li {
  transition: padding-left .4s var(--ease), color .4s var(--ease);
}

.venue:hover .venue__features li {
  padding-left: 4px;
}

.venue__features li:hover {
  padding-left: 12px;
  color: var(--gold);
}

/* Gallery — caption slide up on hover */
.gallery__item figcaption {
  transform: translateY(0);
  transition: transform .6s var(--ease-out), background .4s var(--ease), border-color .4s var(--ease);
}

.gallery__item:hover figcaption {
  background: rgba(201, 169, 97, 0.9);
  color: var(--black);
  border-color: var(--gold-bright);
}

/* Press cards — 3D parallax tilt + caption slide */
.press__card {
  transform-style: preserve-3d;
  position: relative;
}

.press__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 169, 97, 0.12) 0%, transparent 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}

.press__card:hover::after { opacity: 1; }

.press__card-title {
  transition: color .5s var(--ease), transform .5s var(--ease);
}

.press__card:hover .press__card-title {
  color: var(--gold-light);
}

.press__card--feature .press__card-img img {
  transition: transform 1.6s var(--ease-out), filter 1.6s var(--ease-out);
}

.press__card--feature:hover .press__card-img img {
  transform: scale(1.05);
  filter: grayscale(0) brightness(0.95);
}

/* Refs — extra cell glow already present, add subtle border pulse */
.refs__cell {
  position: relative;
}

.refs__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity .5s var(--ease), transform .6s var(--ease-out);
  pointer-events: none;
}

.refs__cell:hover::after {
  opacity: 0.5;
  transform: scale(1);
}

/* Buttons — magnetic glow */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(232, 199, 126, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.btn:hover::before { opacity: 1; }

.btn--gold:hover::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(10, 10, 10, 0.2) 0%, transparent 50%);
}

/* Nav links — underline draw + slight rise */
.nav__links a {
  transition: color .3s var(--ease), transform .3s var(--ease);
}

.nav__links a:hover { transform: translateY(-2px); }

/* Nav CTA pulse */
.nav__cta {
  position: relative;
  overflow: hidden;
}

.nav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232, 199, 126, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}

.nav__cta:hover::before { transform: translateX(100%); }

/* Contact blocks — value link hover */
.contact__value a {
  position: relative;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .5s var(--ease), color .3s var(--ease);
}

.contact__value a:hover {
  background-size: 100% 1px;
  color: var(--gold);
}

/* Footer links — slide underline */
.foot__links a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.foot__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}

.foot__links a:hover::after { width: 100%; }

/* Timeline items — gentle scale on hover */
.timeline__item {
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.timeline__item.in-view:hover .timeline__year {
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(232, 199, 126, 0.4);
}

.timeline__year {
  transition: color .5s var(--ease), text-shadow .5s var(--ease);
}

.timeline__body h3 {
  transition: color .4s var(--ease), letter-spacing .4s var(--ease);
}

.timeline__item:hover .timeline__body h3 {
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .timeline__item, [data-reveal] { opacity: 1 !important; transform: none !important; }
}
