/* ============================================================
   ODYSSEUS Restaurant — styles.css
   Design: Santorini Luxury Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=GFS+Didot&family=Lora:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  --color-bg:           #0D0B09;
  --color-surface:      #1C1810;
  --color-surface-2:    #241F15;
  --color-gold:         #C9A96E;
  --color-gold-light:   #E8C87A;
  --color-gold-dim:     rgba(201,169,110,0.6);
  --color-aegean:       #2A4A6B;
  --color-aegean-light: #4A7FA5;
  --color-olive:        #5C6B2E;
  --color-cream:        #F5EDD9;
  --color-terracotta:   #A0522D;
  --color-muted:        #7A7060;
  --color-border:       rgba(201,169,110,0.18);
  --color-border-hover: rgba(201,169,110,0.5);

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-nav:     'Cinzel', serif;
  --font-body:    'Lora', serif;
  --font-greek:   'GFS Didot', serif;

  --nav-height:    80px;
  --container-max: 1400px;
  --section-pad:   clamp(4rem, 8vw, 8rem);

  --ease-gold:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-gold: 0 0 30px rgba(201,169,110,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
::selection {
  background: var(--color-gold);
  color: var(--color-bg);
}
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-cream);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-gold-light);
  text-shadow: 0 0 80px rgba(232,200,122,0.3), 0 0 160px rgba(232,200,122,0.12);
}
.greek-display {
  font-family: var(--font-greek);
  color: var(--color-gold);
}

/* ─── LAYOUT ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.section { padding: var(--section-pad) 0; }

.section-label {
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.section-label.center { justify-content: center; }
.section-label.center::before,
.section-label.center::after { max-width: 80px; }

.text-center { text-align: center; }
.text-gold   { color: var(--color-gold); }
.text-muted  { color: var(--color-muted); }

/* ─── SCROLL REVEAL ─── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-gold), transform 0.75s var(--ease-gold);
  transition-delay: var(--delay, 0s);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── IMAGE PLACEHOLDERS ─── */
.img-placeholder {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,11,9,0.65) 100%);
}
.img-placeholder--warm {
  background: linear-gradient(135deg, #1a1208 0%, #3a2510 30%, #5c3d1a 60%, #1a1208 100%);
}
.img-placeholder--aegean {
  background: linear-gradient(135deg, #0a2030 0%, #1a3a5a 40%, #2a5a7a 70%, #0a2030 100%);
}
.img-placeholder--portrait {
  background: linear-gradient(160deg, var(--color-aegean) 0%, #1a2a3a 40%, var(--color-surface) 100%);
}
.img-placeholder--hero {
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(42,74,107,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(160,82,45,0.3) 0%, transparent 50%),
    linear-gradient(to bottom, #0D0B09, #161210);
}
.img-placeholder--dish {
  background: linear-gradient(135deg, #2a1a08 0%, #4a2e12 40%, #3a2510 70%, #1a1208 100%);
}
.img-placeholder--dish-2 {
  background: linear-gradient(135deg, #1a2030 0%, #2a3a50 40%, #1a2540 70%, #0a1520 100%);
}
.img-placeholder--dish-3 {
  background: linear-gradient(135deg, #1a1a10 0%, #2a2a18 40%, #3a3020 70%, #1a1810 100%);
}

/* ─── BUTTONS ─── */
.gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease-gold), box-shadow 0.35s;
  z-index: 0;
}
.gold-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-gold);
  z-index: -1;
}
.gold-btn:hover::before { transform: scaleX(1); }
.gold-btn:hover {
  color: var(--color-bg);
  box-shadow: 0 0 24px rgba(201,169,110,0.35);
}

.gold-btn-filled {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--color-gold);
  color: var(--color-bg);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}
.gold-btn-filled:hover {
  background: var(--color-gold-light);
  box-shadow: 0 0 28px rgba(201,169,110,0.45);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: ripple 0.65s linear;
  pointer-events: none;
}

/* ─── TAGS ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  padding: 0.2em 0.65em;
  font-family: var(--font-nav);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}
.tag--veg  { background: rgba(92,107,46,0.18);  color: #9ab846; border: 1px solid rgba(92,107,46,0.35); }
.tag--rec  { background: rgba(201,169,110,0.12); color: var(--color-gold); border: 1px solid var(--color-border); }
.tag--hot  { background: rgba(160,82,45,0.18);  color: #d47a40; border: 1px solid rgba(160,82,45,0.35); }

/* ─── CARDS ─── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 0.35s var(--ease-gold), box-shadow 0.35s, border-color 0.35s;
}
.card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-gold);
  border-color: var(--color-border-hover);
}

/* ─── GREEK QUOTE ─── */
.greek-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.greek-quote__text {
  font-family: var(--font-greek);
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  color: var(--color-gold-light);
  line-height: 1.45;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.greek-quote__text::before { content: '«\00a0'; }
.greek-quote__text::after  { content: '\00a0»'; }
.greek-quote__translation {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-muted);
  font-style: italic;
}
.greek-quote__attribution {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-top: 1.25rem;
  display: block;
}

/* ─── MEANDER COMPONENTS ─── */
.meander-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--color-gold);
  opacity: 0.6;
}
.meander-divider::before,
.meander-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.meander-divider svg {
  flex-shrink: 0;
  width: 160px;
  height: 16px;
}

.meander-line {
  width: 100%;
  height: 16px;
  display: block;
  color: var(--color-gold);
  opacity: 0.5;
}

/* Meander background texture */
.meander-bg {
  position: relative;
}
.meander-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 45 L0 30 L15 30 L15 15 L45 15 L45 45 L30 45 L30 30 L60 30' stroke='%23C9A96E' stroke-width='1' fill='none' opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.meander-bg > * { position: relative; z-index: 1; }

/* Meander border for forms */
.meander-border {
  border: 1px solid var(--color-border);
  position: relative;
  padding: 2.5rem;
}
.meander-border::before,
.meander-border::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='3'%3E%3Cpath d='M0 1.5 L4 1.5 L4 0 L8 0 L8 3 L12 3 L12 1.5 L20 1.5' stroke='%23C9A96E' stroke-width='0.7' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 3px;
  opacity: 0.55;
}
.meander-border::before { top: 6px; }
.meander-border::after  { bottom: 6px; }

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(13,11,9,0.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  flex-shrink: 0;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 2px;
}
.nav-social a {
  color: var(--color-muted);
  font-size: 1rem;
  transition: color 0.25s;
  line-height: 1;
}
.nav-social a:hover { color: var(--color-gold); }
.nav-logo__icon {
  width: 26px;
  height: 26px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.nav-logo__text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
}
.nav-logo__sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-style: italic;
  color: var(--color-muted);
  letter-spacing: 0.12em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,217,0.8);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--color-gold);
  transition: left 0.3s var(--ease-gold), right 0.3s var(--ease-gold);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-gold); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0; right: 0; }

.nav-cta { flex-shrink: 0; display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1002;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-gold);
  transform-origin: center;
  transition: transform 0.35s var(--ease-gold), opacity 0.35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu::before,
.mobile-menu::after {
  content: '';
  position: absolute;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='2'%3E%3Cpath d='M0 1 L4 1 L4 0 L8 0 L8 2 L12 2 L12 1 L20 1' stroke='%23C9A96E' stroke-width='0.7' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 2px;
  opacity: 0.45;
}
.mobile-menu::before { top: 5.5rem; }
.mobile-menu::after  { bottom: 3.5rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  color: var(--color-cream);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-gold), color 0.3s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--color-gold); }
.mobile-menu a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu-cta {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.36s, transform 0.4s 0.36s var(--ease-gold);
}
.mobile-menu.open .mobile-menu-cta { opacity: 1; transform: translateY(0); }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42,74,107,0.3) 0%, transparent 70%),
    linear-gradient(to bottom, var(--color-surface) 0%, var(--color-bg) 100%);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 30%, var(--color-border) 70%, transparent);
}
.page-hero h1 {
  font-family: var(--font-display);
  color: var(--color-gold-light);
  margin-top: 1rem;
}
.page-hero .section-label { justify-content: center; }

/* ─── HERO (homepage) ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(42,74,107,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(160,82,45,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 75%, rgba(92,107,46,0.1) 0%, transparent 55%),
    var(--color-bg);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-columns {
  position: absolute;
  bottom: 0;
  height: 60%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 3;
}
.hero-columns--left  { left: -2%; }
.hero-columns--right { right: -2%; transform: scaleX(-1); }

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 1000px;
}

.hero-welcome {
  font-family: var(--font-greek);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--color-gold);
  letter-spacing: 0.5em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-gold) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 13vw, 9.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--color-gold-light);
  text-shadow: 0 0 80px rgba(232,200,122,0.4), 0 0 180px rgba(232,200,122,0.15);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-gold) 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  font-style: italic;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-gold) 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-gold) 0.9s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-gold) 1.3s forwards;
}
.scroll-indicator__label {
  font-family: var(--font-nav);
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  color: var(--color-muted);
  text-transform: uppercase;
}
.scroll-indicator svg { animation: tridentBounce 2.2s ease-in-out infinite; }

/* ─── PHILOXENIA SECTION ─── */
.philoxenia-section {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--color-bg);
}

.philoxenia-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.pillar-card {
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.35s, transform 0.35s var(--ease-gold);
}
.pillar-card:hover { border-color: var(--color-border-hover); transform: translateY(-5px); }
.pillar-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-gold);
}
.pillar-card__greek {
  font-family: var(--font-greek);
  font-size: 1.5rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.25rem;
}
.pillar-card__german {
  font-family: var(--font-nav);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
  display: block;
}
.pillar-card__desc { font-size: 0.88rem; color: var(--color-muted); line-height: 1.6; }

/* ─── STORY SECTION ─── */
.story-section { padding: var(--section-pad) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
.story-image { height: clamp(280px, 45vw, 520px); }
.story-content h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.story-content p { color: var(--color-muted); margin-bottom: 2rem; line-height: 1.85; }

.link-arrow {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease-gold);
}
.link-arrow:hover { gap: 1rem; }

/* ─── FEATURED DISHES ─── */
.featured-dishes { padding: var(--section-pad) 0; }
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.dish-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--color-border);
}
.dish-card__image { width: 100%; height: 260px; transition: transform 0.6s var(--ease-gold); }
.dish-card:hover .dish-card__image { transform: scale(1.04); }
.dish-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.92) 40%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s;
}
.dish-card:hover .dish-card__overlay {
  background: linear-gradient(to top, rgba(13,11,9,0.97) 65%, rgba(13,11,9,0.25) 100%);
}
.dish-card__greek {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 0.15rem;
}
.dish-card__german { font-size: 0.82rem; color: var(--color-muted); font-style: italic; }
.dish-card__price {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}
.dish-card__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 0.6rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-gold);
  line-height: 1.5;
}
.dish-card:hover .dish-card__desc { max-height: 80px; }

/* ─── MYTHOS SECTION ─── */
.mythos-section {
  padding: var(--section-pad) 0;
  background: var(--color-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mythos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 45 L0 30 L15 30 L15 15 L45 15 L45 45 L30 45 L30 30 L60 30' stroke='%23C9A96E' stroke-width='1' fill='none' opacity='0.045'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}
.mythos-ship {
  width: clamp(180px, 40vw, 380px);
  margin: 0 auto 3rem;
  opacity: 0.75;
  color: var(--color-gold);
  animation: float 8s ease-in-out infinite;
}
.mythos-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-style: italic;
  color: var(--color-cream);
  max-width: 800px;
  margin: 2rem auto 0;
  font-weight: 300;
  line-height: 1.4;
}
.mythos-section .section-label { justify-content: center; }

/* ─── RESERVATION TEASER ─── */
.reservation-teaser {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(42,74,107,0.35) 0%, var(--color-bg) 60%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.reservation-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}
.reservation-teaser p { color: var(--color-muted); margin-bottom: 2.5rem; font-style: italic; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: var(--section-pad) 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.testimonial-card {
  padding: 2rem 2rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: var(--color-border-hover); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-greek);
  font-size: 7rem;
  color: var(--color-gold);
  opacity: 0.1;
  position: absolute;
  top: -1.5rem;
  left: 1rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: var(--color-gold); margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-style: italic; color: var(--color-muted); margin-bottom: 1.5rem; line-height: 1.75; }
.testimonial-author {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.testimonial-origin { font-size: 0.78rem; color: var(--color-muted); margin-top: 0.2rem; }

/* ─── STATS BAND ─── */
.stats-band {
  padding: 3.5rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--color-gold);
  line-height: 1;
}
.stat-item__label {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

/* ─── FOOTER ─── */
.footer {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  background: var(--color-surface);
  position: relative;
}
.footer-meander {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='3'%3E%3Cpath d='M0 1.5 L4 1.5 L4 0 L8 0 L8 3 L12 3 L12 1.5 L20 1.5' stroke='%23C9A96E' stroke-width='0.7' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 3px;
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-family: var(--font-greek);
  font-style: italic;
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-col h4 {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--color-gold); }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours-list li span:last-child { color: var(--color-cream); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.footer-contact-item i { color: var(--color-gold); margin-top: 0.2rem; flex-shrink: 0; }
.footer-ship {
  text-align: center;
  padding: 2rem 0;
  opacity: 0.25;
  color: var(--color-gold);
}
.footer-ship svg { width: clamp(120px, 22vw, 220px); margin: 0 auto; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.85rem;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.footer-social a:hover { color: var(--color-gold); border-color: var(--color-gold); background: rgba(201,169,110,0.07); }
.footer-copy {
  text-align: center;
  font-family: var(--font-nav);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  text-transform: uppercase;
  line-height: 1.8;
}

/* ─── MENU PAGE ─── */
.menu-tabs-wrapper {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: rgba(13,11,9,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.menu-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
  white-space: nowrap;
  background: none;
}
.menu-tab:hover { color: var(--color-cream); }
.menu-tab.active { color: var(--color-gold); border-bottom-color: var(--color-gold); }

.menu-category { padding: var(--section-pad) 0; }
.menu-category:nth-child(even) { background: var(--color-surface); }

.menu-section-header { text-align: center; margin-bottom: 3.5rem; }
.menu-section-header h2 {
  font-family: var(--font-greek);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-gold-light);
  margin-bottom: 0.3rem;
}
.menu-section-header .german-sub {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-muted);
  font-style: italic;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--color-border);
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--color-bg);
  transition: background 0.3s;
  border-bottom: 1px solid var(--color-border);
}
.menu-item:last-child { border-bottom: none; }
.menu-category:nth-child(even) .menu-item { background: var(--color-surface); }
.menu-item:hover { background: var(--color-surface-2); }
.menu-item__name-greek {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 0.1rem;
  font-weight: 600;
}
.menu-item__name-german {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.menu-item__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.menu-item__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.menu-item__price {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-top: 0.3rem;
}

.wine-section { padding: var(--section-pad) 0; }
.wine-section .container > h2 {
  font-family: var(--font-greek);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-gold-light);
  text-align: center;
  margin-bottom: 0.5rem;
}
.wine-section .container > p {
  text-align: center;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 3rem;
}
.wine-region-block { margin-bottom: 3.5rem; }
.wine-region-label {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-aegean-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wine-region-label::after { content: ''; flex: 1; height: 1px; background: var(--color-border); }
.wine-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.wine-item__name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-cream); }
.wine-item__grape { font-size: 0.78rem; color: var(--color-muted); font-style: italic; }
.wine-item__price { font-family: var(--font-nav); font-size: 0.85rem; color: var(--color-gold); text-align: right; }
.wine-item__price span { display: block; font-size: 0.68rem; color: var(--color-muted); }

/* ─── ABOUT PAGE ─── */
.about-hero { padding: calc(var(--nav-height) + 5rem) 0 5rem; text-align: center; }

.timeline-section { padding: var(--section-pad) 0; position: relative; }
.timeline-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--color-border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 4.5rem;
  padding-left: 2rem;
  position: relative;
}
.timeline-dot {
  position: absolute;
  left: -8px;
  top: 0.5rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 18px rgba(201,169,110,0.45);
}
.timeline-item__year {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-gold);
  letter-spacing: 0.12em;
}
.timeline-item__title { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 0.4rem; }
.timeline-item__text { font-size: 0.9rem; color: var(--color-muted); line-height: 1.75; }

.team-section { padding: var(--section-pad) 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.35s var(--ease-gold), border-color 0.35s;
}
.team-card:hover { transform: translateY(-5px); border-color: var(--color-border-hover); }
.team-card__image { height: 280px; width: 100%; }
.team-card__body { padding: 1.75rem 1.5rem; }
.team-card__name { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.25rem; }
.team-card__role {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: block;
}
.team-card__quote { font-family: var(--font-greek); font-size: 0.9rem; color: var(--color-muted); font-style: italic; }

.philosophy-section {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--color-surface);
}
.philosophy-section h2 {
  font-family: var(--font-greek);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}
.philosophy-section .german-sub {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 2rem;
  display: block;
}
.philosophy-section p { color: var(--color-muted); max-width: 700px; margin: 0 auto; line-height: 1.85; }

.values-section { padding: var(--section-pad) 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s, transform 0.3s;
}
.value-item:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.value-item__icon { font-size: 1.8rem; flex-shrink: 0; }
.value-item__greek { font-family: var(--font-greek); font-size: 1.05rem; color: var(--color-gold); display: block; margin-bottom: 0.15rem; }
.value-item__german { font-family: var(--font-nav); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted); }

/* ─── RESERVATIONS PAGE ─── */
.reservations-section { padding: var(--section-pad) 0; }
.reservations-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.form-card {
  background: var(--color-surface);
  position: relative;
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-gold-light);
  margin-bottom: 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--color-border);
  color: var(--color-cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  background: rgba(201,169,110,0.045);
}
.form-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0 L6 7 L12 0' stroke='%23C9A96E' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field select option { background: var(--color-surface); color: var(--color-cream); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field.full { grid-column: 1 / -1; }

.availability-notice {
  padding: 0.9rem 1.2rem;
  border-left: 2px solid var(--color-gold);
  background: rgba(201,169,110,0.055);
  margin-bottom: 1.5rem;
  font-size: 0.84rem;
  color: var(--color-muted);
}
.availability-notice strong { color: var(--color-gold); }

.form-error {
  font-size: 0.75rem;
  color: #e06060;
  font-style: italic;
  display: none;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #e06060; }
.form-field.has-error .form-error { display: block; }

.reservation-info { background: var(--color-surface); border: 1px solid var(--color-border); padding: 2rem; }
.reservation-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold-light);
  margin-bottom: 2rem;
}
.info-item { display: flex; gap: 1rem; margin-bottom: 1.1rem; font-size: 0.88rem; }
.info-item i { color: var(--color-gold); flex-shrink: 0; margin-top: 0.2rem; }
.info-item span { color: var(--color-muted); }
.info-item a { color: var(--color-cream); transition: color 0.3s; }
.info-item a:hover { color: var(--color-gold); }
.opening-grid { margin-top: 2rem; border-top: 1px solid var(--color-border); padding-top: 1.5rem; }
.opening-grid h4 {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.opening-row { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.035); font-size: 0.82rem; }
.opening-row__day { color: var(--color-muted); }
.opening-row__time { color: var(--color-cream); }
.opening-row.closed .opening-row__time { color: var(--color-muted); font-style: italic; }

/* ─── CONTACT PAGE ─── */
.contact-section { padding: var(--section-pad) 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.map-container {
  position: relative;
  border: 1px solid var(--color-border);
  overflow: hidden;
  height: 420px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-aegean) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--color-muted);
}
.map-placeholder i { font-size: 3rem; color: var(--color-gold); }
.map-placeholder p { font-family: var(--font-nav); font-size: 0.68rem; letter-spacing: 0.22em; }
.contact-card { padding: 2rem; background: var(--color-surface); border: 1px solid var(--color-border); }
.contact-card h3 { font-family: var(--font-greek); font-size: 1.5rem; color: var(--color-gold); margin-bottom: 2rem; }
.contact-social { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.contact-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border); color: var(--color-muted); font-size: 0.85rem;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.contact-social a:hover { color: var(--color-gold); border-color: var(--color-gold); background: rgba(201,169,110,0.07); }

.closing-quote-section {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--color-surface);
  position: relative;
}
.closing-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 45 L0 30 L15 30 L15 15 L45 15 L45 45 L30 45 L30 30 L60 30' stroke='%23C9A96E' stroke-width='1' fill='none' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ─── CUSTOM CURSOR ─── */
.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  width: 22px; height: 22px;
  will-change: transform;
  display: none;
}
@media (pointer: fine) {
  .custom-cursor { display: block; }
}
.cursor-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border: 1.5px solid rgba(201,169,110,0.7);
  border-radius: 50%;
  transition: width 0.2s, height 0.2s, opacity 0.2s, border-color 0.2s;
}
.cursor-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  transform: translate(-50%, -50%);
}
.custom-cursor.hovering .cursor-ring { width: 44px; height: 44px; opacity: 0.4; border-color: var(--color-gold); }

/* ─── KEYFRAMES ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tridentBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(9px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%       { transform: translateY(-10px) rotate(0.8deg); }
  70%       { transform: translateY(-5px) rotate(-0.5deg); }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(4, 1fr); }
  .form-grid   { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .story-grid  { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.2fr 1.5fr; }
  .timeline-section::before { display: block; }
  .timeline-item { padding-left: 0; padding-right: 0; grid-template-columns: 1fr 60px 1fr; gap: 2rem; }
  .timeline-item:nth-child(odd)  > *:first-child { grid-column: 1; text-align: right; }
  .timeline-item:nth-child(even) > *:first-child { grid-column: 3; }
  .timeline-item:nth-child(odd)  .timeline-item__year { grid-column: 1; text-align: right; }
  .timeline-item:nth-child(even) .timeline-item__year { grid-column: 3; }
  .timeline-dot { left: calc(50% - 8px); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .hamburger { display: none; }
  .dishes-grid { grid-template-columns: 2fr 1fr 1fr; }
  .dish-card--large { grid-row: span 2; }
  .dish-card--large .dish-card__image { height: 100%; min-height: 350px; }
  .reservations-layout { grid-template-columns: 3fr 2fr; }
}

@media (min-width: 1280px) {
  .dishes-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (max-width: 767px) {
  .timeline-section::before { left: 16px; }
  .timeline-item { padding-left: 2.5rem; }
  .timeline-dot { left: 8px; }
  .timeline-item__year,
  .timeline-item__title,
  .timeline-item__text { grid-column: 1 !important; text-align: left !important; }
}
