/* ============================================
   RU MARINA v3 — Organimo-inspired
   Scroll-driven · Split text · Ambient audio
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&display=swap');

:root {
  --navy:       #0B1E3D;
  --navy-mid:   #102247;
  --navy-light: #1A3260;
  --gold:       #C9A058;
  --gold-light: #E8C97A;
  --gold-pale:  #F0DEB0;
  --cream:      #F5EDD5;
  --warm-white: #FAFAF7;
  --sand:       #E8DCC8;
  --charcoal:   #2C2C2C;
  --muted:      #8A8A8A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-lux:  cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  font-size: 16px;
  /* scroll-snap aktif */
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--warm-white);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, background .3s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,160,88,.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .2s var(--ease-out), width .4s, height .4s, border-color .3s;
}
a:hover ~ .cursor-follower,
button:hover ~ .cursor-follower {
  width: 52px; height: 52px;
  border-color: rgba(201,160,88,.8);
}

/* ══════════════════════════════════════════
   SPLASH SCREEN (QR birebir, ince stroke)
══════════════════════════════════════════ */
.splash-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  transition: opacity 1s ease, transform 1s ease;
}
.splash-screen.fade-out { opacity: 0; transform: scale(0.3); pointer-events: none; }
.splash-screen.hidden    { display: none !important; }

.splash-logo-container { width: 300px; height: 300px; display: flex; align-items: center; justify-content: center; }
.splash-logo { width: 100%; height: 100%; overflow: visible; }
.splash-logo path { fill: none; stroke: var(--gold); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }

@keyframes drawPath { to { stroke-dashoffset: 0; opacity: 1; } }
@keyframes fillPath { to { fill: var(--gold); stroke: var(--gold); } }

.page-frame {
  position: absolute; top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px solid var(--gold); pointer-events: none; z-index: 1;
  opacity: 0; animation: frameAppear .6s ease .3s forwards;
}
@keyframes frameAppear { to { opacity: 1; } }
.corner-ornament { position: absolute; width: 45px; height: 45px; pointer-events: none; }
.corner-ornament svg { width: 100%; height: 100%; fill: none; stroke: var(--gold); stroke-width: 1.2; }
.corner-tl { top:-1px; left:-1px; }
.corner-tr { top:-1px; right:-1px; transform:rotate(90deg); }
.corner-bl { bottom:-1px; left:-1px; transform:rotate(-90deg); }
.corner-br { bottom:-1px; right:-1px; transform:rotate(180deg); }

/* ══════════════════════════════════════════
   AMBIENT AUDIO TOGGLE
══════════════════════════════════════════ */
.audio-toggle {
  position: fixed;
  bottom: 36px; left: 36px;
  z-index: 800;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  background: none; border: none;
  opacity: 0;
  transition: opacity .5s;
}
.audio-toggle.visible { opacity: 1; }
.audio-toggle-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,160,88,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
  position: relative;
}
.audio-toggle:hover .audio-toggle-ring {
  border-color: var(--gold);
  background: rgba(201,160,88,.08);
}
.audio-toggle-ring svg { width: 16px; height: 16px; stroke: rgba(201,160,88,.7); fill: none; transition: stroke .3s; }
.audio-toggle:hover .audio-toggle-ring svg { stroke: var(--gold-light); }
/* Animasyonlu dalga halkası */
.audio-toggle-ring::before {
  content: '';
  position: absolute; inset: -6px;
  border: 1px solid rgba(201,160,88,.15);
  border-radius: 50%;
  animation: audioRipple 2.5s ease-in-out infinite;
}
.audio-toggle.playing .audio-toggle-ring { border-color: var(--gold); background: rgba(201,160,88,.1); }
.audio-toggle.playing .audio-toggle-ring svg { stroke: var(--gold); }
@keyframes audioRipple {
  0%,100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.3); opacity: 0; }
}
.audio-toggle-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .3s;
}
.audio-toggle:hover .audio-toggle-label { color: rgba(255,255,255,.6); }
.audio-toggle.playing .audio-toggle-label { color: rgba(201,160,88,.7); }

/* Ses dalgası ikonları (bars) */
.audio-bars {
  display: flex; gap: 2px; align-items: center; height: 14px;
}
.audio-bar {
  width: 2px; background: currentColor; border-radius: 1px;
  transform-origin: bottom;
}
.audio-toggle.playing .audio-bar:nth-child(1) { animation: barAnim 1.2s ease-in-out .0s infinite alternate; height: 6px; }
.audio-toggle.playing .audio-bar:nth-child(2) { animation: barAnim 1.2s ease-in-out .2s infinite alternate; height: 10px; }
.audio-toggle.playing .audio-bar:nth-child(3) { animation: barAnim 1.2s ease-in-out .4s infinite alternate; height: 7px; }
.audio-toggle.playing .audio-bar:nth-child(4) { animation: barAnim 1.2s ease-in-out .1s infinite alternate; height: 12px; }
.audio-toggle:not(.playing) .audio-bar { height: 4px; }
@keyframes barAnim {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800; height: 80px;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s var(--ease-lux), backdrop-filter .5s, box-shadow .5s;
}
#nav.scrolled {
  background: rgba(11,30,61,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,160,88,.15);
}
.nav-logo img { height: 42px; opacity: .9; transition: opacity .3s; }
.nav-logo img:hover { opacity: 1; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.65); text-decoration: none;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease-lux);
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.lang-switcher { display: flex; gap: 12px; align-items: center; }
.lang-btn {
  font-size: 10px; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  background: none; border: none; cursor: pointer; padding: 4px 0;
  transition: color .3s;
}
.lang-btn:hover, .lang-btn.active { color: var(--gold); }
.lang-divider { width: 1px; height: 12px; background: rgba(255,255,255,.12); }
.btn-reserve-nav {
  font-size: 10px; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: var(--navy);
  background: var(--gold); border: none;
  padding: 10px 22px; text-decoration: none; cursor: pointer;
  transition: background .3s, transform .2s;
  display: inline-block;
}
.btn-reserve-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   SAĞ BÖLÜM NAVİGASYONU
══════════════════════════════════════════ */
.section-nav {
  position: fixed; right: 32px; top: 50%;
  transform: translateY(-50%);
  z-index: 700;
  display: flex; flex-direction: column; align-items: flex-end;
  opacity: 0; transition: opacity .5s;
}
.section-nav.visible { opacity: 1; }
.section-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; cursor: pointer;
}
.section-nav-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.9); opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s, transform .3s, color .3s;
  white-space: nowrap; pointer-events: none;
  text-shadow: 0 1px 6px rgba(0,0,0,.8), 0 0 12px rgba(0,0,0,.6);
}
.section-nav-item:hover .section-nav-label,
.section-nav-item.active .section-nav-label { opacity: 1; transform: translateX(0); }
.section-nav-item.active .section-nav-label { color: var(--gold-light); }
.section-nav-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(100,80,40,.5);
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
  flex-shrink: 0;
  transition: all .4s var(--ease-lux);
}
.section-nav-item:hover .section-nav-dot { background: rgba(201,160,88,.5); border-color: var(--gold); transform: scale(1.3); }
.section-nav-item.active .section-nav-dot { width: 8px; height: 8px; background: var(--gold); border-color: var(--gold); box-shadow: 0 0 10px rgba(201,160,88,.5); }
.section-nav-line {
  position: absolute; right: 3.5px; top: 14px; bottom: 14px;
  width: 1px; background: rgba(150,120,60,.25); pointer-events: none;
}
.section-nav-thumb {
  position: absolute; left: 0; width: 1px;
  background: var(--gold); top: 0; height: 25%;
  transition: top .5s var(--ease-lux), height .5s var(--ease-lux);
  box-shadow: 0 0 6px rgba(201,160,88,.6);
}

/* ══════════════════════════════════════════
   SCROLL SECTIONS — full viewport snap
══════════════════════════════════════════ */
.snap-section {
  height: 100vh; min-height: 600px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
}
.snap-section.light-bg { background: var(--warm-white); }
.snap-section.cream-bg { background: var(--cream); }
.snap-section.navy-bg  { background: var(--navy-mid); }

/* Marquee strip — snap dışı, hero'nun içinde */
.marquee-strip {
  background: var(--navy);
  padding: 14px 0;
  border-top: 1px solid rgba(201,160,88,.15);
  border-bottom: 1px solid rgba(201,160,88,.15);
  overflow: hidden;
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
}
.marquee-track {
  display: flex; animation: marqueeScroll 28s linear infinite; white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px; padding: 0 28px;
  font-size: 9px; font-weight: 500; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(201,160,88,.5);
}
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .4; flex-shrink: 0; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media video,
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(11,30,61,.35) 0%,
    rgba(11,30,61,.05) 40%,
    rgba(11,30,61,.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px; max-width: 960px;
}

/* ── Split text: eyebrow ── */
.hero-eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: .45em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 24px;
  display: block; overflow: hidden;
}
.hero-eyebrow .char {
  display: inline-block;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.hero-eyebrow.animate .char { opacity: 1; transform: translateY(0); }

/* ── Split text: title — line mask reveal ── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 400; line-height: 1.05;
  color: #fff; margin-bottom: 32px;
}
.line-mask {
  display: block; overflow: hidden;
  padding-bottom: .08em; /* descender gap */
}
.line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.hero-title.animate .line-inner { transform: translateY(0); }
.hero-title em { font-style: normal; color: var(--gold-light); }

/* ── Subtitle ── */
.hero-subtitle {
  font-size: 15px; font-weight: 300; letter-spacing: .05em;
  color: rgba(255,255,255,.65); max-width: 480px;
  margin: 0 auto 48px; line-height: 1.8;
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s var(--ease-out) .6s, transform .8s var(--ease-out) .6s;
}
.hero-content.animate .hero-subtitle { opacity: 1; transform: translateY(0); }

/* ── Actions ── */
.hero-actions {
  display: flex; gap: 20px; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .7s var(--ease-out) .8s, transform .7s var(--ease-out) .8s;
}
.hero-content.animate .hero-actions { opacity: 1; transform: translateY(0); }

.btn-primary {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 16px 36px; text-decoration: none;
  transition: background .3s, transform .25s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.8); background: transparent;
  padding: 15px 36px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .3s, color .3s, transform .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ── Scroll to begin ── */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; transition: opacity .8s var(--ease-out) 1.1s;
  cursor: pointer;
}
.hero-content.animate ~ .hero-scroll { opacity: 1; }
.scroll-text {
  font-size: 9px; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.scroll-indicator {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, rgba(201,160,88,.7), transparent);
  position: relative; overflow: hidden;
}
.scroll-indicator::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,160,88,.9), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--warm-white);
}
.about-image { position: relative; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,30,61,.15) 0%, transparent 100%);
}
.about-badge {
  position: absolute; bottom: 0; right: 0;
  width: 130px; height: 130px; background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
}
.about-badge-year { font-family: var(--font-display); font-size: 34px; font-weight: 400; color: var(--navy); line-height: 1; }
.about-badge-text { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(11,30,61,.65); }
.about-content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--warm-white);
}
.section-label {
  font-size: 9px; font-weight: 600; letter-spacing: .45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: .5; }
.section-title { font-family: 'Times New Roman', serif; font-size: 35px; font-weight: 400; line-height: 1.2; color: var(--navy); }
.section-title.light { color: var(--warm-white); }
.section-title em { font-style: normal; color: var(--gold); }
.gold-line { width: 40px; height: 1px; background: var(--gold); margin: 20px 0; opacity: .5; }
.about-body { font-size: 15px; font-weight: 300; line-height: 1.9; color: #555; max-width: 420px; margin-bottom: 36px; }
.about-signature { display: flex; align-items: center; gap: 14px; }
.about-signature img { height: 44px; opacity: .55; }
.about-signature-name { font-family: var(--font-display); font-size: 15px; font-style: normal; color: var(--charcoal); }
.about-signature-text { font-size: 11px; color: var(--muted); letter-spacing: .05em; margin-top: 2px; }

/* ══════════════════════════════════════════
   EXPERIENCE PILLARS
══════════════════════════════════════════ */
#experience {
  background: var(--navy);
  display: flex; flex-direction: column;
}
.experience-header {
  text-align: center; padding: 56px 48px 36px; flex-shrink: 0;
}
.experience-header .section-label { justify-content: center; }
.experience-header .section-label::before { display: none; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); flex: 1; overflow: hidden; }
.pillar { position: relative; overflow: hidden; cursor: pointer; display: block; text-decoration: none; }
.pillar img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-lux); }
.pillar:hover img { transform: scale(1.06); }
.pillar-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,30,61,.88) 0%, rgba(11,30,61,.2) 60%, transparent 100%);
  transition: background .5s;
}
.pillar:hover .pillar-overlay { background: linear-gradient(0deg, rgba(11,30,61,.94) 0%, rgba(11,30,61,.45) 60%, rgba(11,30,61,.1) 100%); }
.pillar-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 36px; }
.pillar-number { font-family: var(--font-display); font-size: 12px; font-style: normal; color: var(--gold); opacity: .6; display: block; margin-bottom: 10px; }
.pillar-title { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 12px; }
.pillar-line { width: 28px; height: 1px; background: var(--gold); margin: 12px 0; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-lux); }
.pillar:hover .pillar-line { transform: scaleX(1); }
.pillar-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.55); max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s var(--ease-lux), opacity .4s .1s; }
.pillar:hover .pillar-desc { max-height: 120px; opacity: 1; }

/* ══════════════════════════════════════════
   SIGNATURE DISHES
══════════════════════════════════════════ */
#signature {
  background: var(--warm-white);
  display: flex; flex-direction: column;
}
.signature-header {
  padding: 56px 80px 36px;
  display: flex; align-items: flex-end; justify-content: space-between; flex-shrink: 0;
}
.signature-nav { display: flex; gap: 10px; }
.sig-nav-btn {
  width: 46px; height: 46px; background: transparent;
  border: 1px solid var(--sand); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); font-size: 18px;
  transition: background .3s, border-color .3s, color .3s;
}
.sig-nav-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.signature-track { display: flex; gap: 2px; padding: 0 80px; flex: 1; overflow: hidden; }
.sig-card { flex: 0 0 calc(33.333% - 2px); position: relative; overflow: hidden; }
.sig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-lux); }
.sig-card:hover img { transform: scale(1.05); }
.sig-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,30,61,.82) 0%, transparent 60%); }
.sig-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; }
.sig-card-cat { font-size: 9px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.sig-card-title { font-family: var(--font-display); font-size: 21px; font-weight: 400; color: #fff; margin-bottom: 6px; }
.sig-card-desc { font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,.55); }
.signature-cta { text-align: center; padding: 28px 0 36px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SECTION ENTER ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .38s; }
.gold-line {
  opacity: 0; transform: scaleX(0); transform-origin: left;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.gold-line.visible { opacity: .5; transform: scaleX(1); }
.reveal-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-up.visible,
.reveal-up.in { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-left.visible,
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-right.visible,
.reveal-right.in { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .22s !important; }
.delay-3 { transition-delay: .38s !important; }
.delay-4 { transition-delay: .55s !important; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  scroll-snap-align: start;
  background: var(--navy);
  padding: 56px 80px 36px;
  border-top: 1px solid rgba(201,160,88,.12);
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; gap: 48px; }
.footer-logo img { height: 50px; opacity: .75; }
.footer-links { display: flex; gap: 48px; }
.footer-col h5 { font-size: 9px; font-weight: 600; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.35); text-decoration: none; transition: color .3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 14px; }
.social-link { width: 38px; height: 38px; border: 1px solid rgba(201,160,88,.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); text-decoration: none; transition: border-color .3s, color .3s, background .3s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,160,88,.08); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.05); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.18); letter-spacing: .08em; }

/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 8000; background: rgba(0,0,0,.93); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .4s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; transform: scale(.95); transition: transform .4s var(--ease-out); }
.lightbox.open img { transform: scale(1); }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: rgba(255,255,255,.4); font-size: 28px; background: none; border: none; cursor: pointer; transition: color .3s; }
.lightbox-close:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  #nav { padding: 0 28px; }
  .nav-links { gap: 24px; }
  #about { grid-template-columns: 1fr; }
  .about-content { padding: 56px 36px; }
  .pillars { grid-template-columns: 1fr; }
  .signature-header { padding: 40px 28px 24px; }
  .signature-track { padding: 0 28px; }
  .sig-card { flex: 0 0 calc(80% - 2px); }
  footer { padding: 44px 28px 28px; }
  .footer-top { flex-direction: column; }
  .audio-toggle { bottom: 20px; left: 20px; }
}
/* Section nav on light bg */
.section-nav.on-light .section-nav-label { color: rgba(0,0,0,.35); text-shadow: none; }
.section-nav.on-light .section-nav-item.active .section-nav-label { color: var(--gold); }
.section-nav.on-light .section-nav-dot { background: rgba(0,0,0,.18); border-color: rgba(0,0,0,.1); }
.section-nav.on-light .section-nav-line { background: rgba(0,0,0,.08); }

/* Reservation form */
.reservation-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 9px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,160,88,.18);
  color: var(--warm-white);
  padding: 13px 16px;
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  outline: none; transition: border-color .3s, background .3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(201,160,88,.04); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--navy-mid); }
.form-submit { grid-column: span 2; margin-top: 8px; }
.btn-submit {
  width: 100%; padding: 18px; font-size: 11px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  background: var(--gold); color: var(--navy); border: none; cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Inner page hero (galeri, iletisim, rezervasyon) */
.inner-hero {
  height: 52vh; min-height: 380px;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
  margin-top: 80px;
}
.inner-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inner-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,30,61,.85) 0%, rgba(11,30,61,.2) 100%);
}
.inner-hero-content { position: relative; z-index: 2; padding: 0 80px 60px; }
.breadcrumb { font-size: 10px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.inner-hero-title { font-family: var(--font-display); font-size: clamp(36px,5vw,64px); font-weight: 400; color: #fff; line-height: 1.1; }
.inner-hero-title em { color: var(--gold-light); }

/* Menu page */
.menu-page-wrap { padding: 64px 80px; background: var(--warm-white); min-height: calc(100vh - 80px); }
.menu-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--sand); margin-bottom: 48px; }
.menu-tab {
  padding: 14px 32px; font-size: 10px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted); background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: color .3s, border-color .3s; margin-bottom: -1px;
}
.menu-tab.active,
.menu-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-panel-title { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 32px; }
.menu-grid { display: flex; flex-direction: column; }
.menu-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 20px 0; gap: 24px; }
.menu-item-name { font-size: 15px; font-weight: 400; color: var(--charcoal); margin-bottom: 5px; }
.menu-item-desc { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.menu-item-price { font-family: var(--font-display); font-size: 16px; color: var(--gold); white-space: nowrap; }
.menu-divider { height: 1px; background: var(--sand); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  #about { grid-template-columns: 1fr; }
  .hero-title { font-size: 42px; }
  .sig-card { flex: 0 0 calc(88% - 2px); }
  .section-nav { display: none; }
  .reservation-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .form-submit { grid-column: span 1; }
  .menu-page-wrap { padding: 40px 24px; }
  .inner-hero-content { padding: 0 28px 40px; }

  /* Mobilde scroll-snap kapat — görsel render sorunu yaratıyor */
  html { scroll-snap-type: none; }
  .snap-section { scroll-snap-align: none; scroll-snap-stop: unset; }
}

/* Section Title EM Normalization - 31.08.2026 */
.section-title em,
.contact-panel-header .section-title em,
.hakkinda-content .section-title em,
.rezervasyon-inner .section-title em {
  font-family: 'Times New Roman', serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  color: #b8943f !important;
}

.manifesto-left h2 em {
  color: #b8943f !important;
  font-style: normal !important;
}

* { font-style: normal !important; }
em, i { font-style: normal !important; }
