/* ============================================================
   Olympian Greek Souvlaki — styles.css (v5)
   Editorial 2026 · audited · perf-tuned
   ============================================================ */

:root {
  --ink: #050f1e;
  --navy: #0a1c34;
  --navy-2: #0e2746;
  --teal: #1e5d82;
  --teal-glow: #2f86ae;

  --cream: #f0e6c8;
  --cream-soft: #e7dcb8;
  --cream-dim: rgba(240, 230, 200, 0.62);
  --cream-faint: rgba(240, 230, 200, 0.16);

  --gold: #c9a14a;
  --gold-deep: #8f6f2b;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1320px;
  --gutter: clamp(20px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; background: var(--ink); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
img { height: auto; background-color: rgba(10, 28, 52, 0.4); } /* soft placeholder while loading */
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }

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

/* --- content-visibility for off-screen perf on long page --- */
section { contain: layout style; }

/* ---------- decor ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.055;
  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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--gold);
  z-index: 150;
  transition: width 0.08s linear;
  will-change: width;
}

/* ---------- FLOATING ORDER CTA ---------- */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
  text-decoration: none;
}
.float-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.float-cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5), 0 2px 8px -2px rgba(201, 161, 74, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.float-cta-inner svg { width: 16px; height: 16px; flex-shrink: 0; }
.float-cta-inner .float-cta-arrow { width: 16px; height: 10px; transition: transform 0.3s var(--ease); }
.float-cta:hover .float-cta-inner {
  background: var(--cream);
  box-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.6), 0 4px 14px -2px rgba(201, 161, 74, 0.5);
  transform: translateY(-2px);
}
.float-cta:hover .float-cta-arrow { transform: translateX(3px); }
.float-cta-ring {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  opacity: 0;
  z-index: 0;
  animation: ctaPulse 2.4s ease-out infinite;
}
@keyframes ctaPulse {
  0%   { transform: scale(0.96); opacity: 0.55; }
  70%  { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}
@media (max-width: 640px) {
  .float-cta { bottom: 16px; right: 16px; }
  .float-cta-inner { padding: 11px 16px 11px 13px; font-size: 0.7rem; gap: 8px; }
  .float-cta-inner svg { width: 14px; height: 14px; }
  .float-cta-inner .float-cta-text { display: none; }
  .float-cta-inner .float-cta-arrow { display: none; }
  .float-cta-inner::after {
    content: "Order";
    font-weight: 700;
    letter-spacing: 0.12em;
  }
}

/* ---------- helpers ---------- */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

.display-ital {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px var(--gutter);
  z-index: 80;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), padding 0.3s var(--ease);
  contain: layout;
}
.nav.scrolled {
  background: rgba(5, 15, 30, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--cream-faint);
}
.nav-brand {
  display: flex; align-items: baseline; gap: 12px;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: 0.005em;
  flex-shrink: 0;
}
.nav-omega {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.7em;
  line-height: 1;
  color: var(--gold);
  transform: translateY(2px);
}
.nav-word { line-height: 1; }
.nav-links {
  display: flex; gap: 26px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-items: center;
}
.nav-links a {
  position: relative;
  color: var(--cream);
  opacity: 0.78;
  transition: opacity 0.25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-links a.nav-order {
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  opacity: 1;
  color: var(--gold);
  font-weight: 600;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-links a.nav-order:hover { background: var(--gold); color: var(--ink); }
.nav-links a.nav-order::after { display: none; }

/* Mobile nav: condense, drop 'Craft' link, keep Menu / Owner / Visit / Order */
@media (max-width: 720px) {
  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-word { display: none; }
  .nav-links { gap: 14px; font-size: 0.7rem; }
  .nav-links a[href="#craft"] { display: none; }
  .nav-links a.nav-order { padding: 7px 13px; font-size: 0.68rem; }
}
@media (max-width: 420px) {
  .nav-links { gap: 11px; }
  .nav-links a[href="#yannis"] { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px var(--gutter) 80px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.12);
  animation: heroZoom 12s var(--ease-out-expo) forwards;
  filter: saturate(0.92) contrast(1.02);
}
@keyframes heroZoom {
  from { transform: scale(1.15); }
  to   { transform: scale(1.02); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(5, 15, 30, 0.3) 0%, rgba(5, 15, 30, 0.85) 70%, rgba(5, 15, 30, 0.98) 100%),
    linear-gradient(180deg, rgba(5, 15, 30, 0.6) 0%, rgba(5, 15, 30, 0.2) 30%, rgba(5, 15, 30, 0.92) 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  mix-blend-mode: screen;
  animation: drift 22s ease-in-out infinite alternate;
  will-change: transform;
}
.orb-1 {
  width: min(640px, 90vw); height: min(640px, 90vw);
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  top: -10%; left: 30%;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-inner { max-width: 1100px; width: 100%; position: relative; z-index: 1; }

.hero-mark { display: flex; justify-content: center; margin-bottom: 36px; }
.laurel-mark {
  width: clamp(150px, 20vw, 240px);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(240, 230, 200, 0.12));
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-size: clamp(3.4rem, 12vw, 11rem);
  color: var(--cream);
  margin-bottom: 42px;
  text-shadow: 0 2px 40px rgba(5, 15, 30, 0.5);
}
.hero-title .line { display: block; }
.hero-title .display-block { display: inline; margin-left: 0.2em; }
.hero-title em.display-ital {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  padding-right: 0.08em;
}

.hero-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  color: var(--cream);
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
  text-shadow: 0 2px 20px rgba(5, 15, 30, 0.6);
  max-width: 92vw;
}
.hero-tag-dash {
  display: inline-block;
  width: 42px; height: 1px;
  background: var(--cream);
  opacity: 0.4;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .hero-tagline { gap: 12px; }
  .hero-tag-dash { width: 26px; }
}

.hero-meta {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap; justify-content: center;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.72;
  max-width: 92vw;
}
.hero-meta .dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
}
@media (max-width: 520px) {
  .hero-meta { gap: 12px; font-size: 0.68rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.hero-scroll svg { width: 12px; height: 40px; animation: scrollHint 2s ease-in-out infinite; }
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}
@media (max-width: 520px) { .hero-scroll { display: none; } }

/* ============ STATS BAND ============ */
.stats {
  background: var(--ink);
  padding: clamp(44px, 6vw, 70px) var(--gutter);
  border-bottom: 1px solid var(--cream-faint);
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 0;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .stats-inner { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; }
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 0 14px; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.stat-num em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.stat-divider { display: none; }
@media (min-width: 900px) {
  .stat-divider {
    display: block;
    width: 1px; height: 42px;
    background: var(--cream-faint);
  }
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
  background: var(--ink);
  padding: 22px 0;
  contain: content;
}
.marquee-track {
  display: inline-flex;
  gap: 44px;
  animation: marquee 60s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  color: var(--cream);
  opacity: 0.9;
  padding-left: 44px;
  will-change: transform;
}
.marquee-track span:nth-child(even) { color: var(--gold); opacity: 0.85; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ STORY ============ */
.story {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
  position: relative;
}
.story-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) {
  .story-grid {
    grid-template-columns: auto 1.8fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .story-label { padding-top: 14px; }
  .story-content { min-width: 0; }
  .story-image { grid-row: 1 / span 2; grid-column: 3; }
}
.story-label { padding-top: 14px; }
.story-headline {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 36px;
}
.story-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.story-body {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 58ch;
  color: var(--cream-soft);
  opacity: 0.88;
  margin-bottom: 38px;
}
.story-footer {
  display: flex; align-items: center; gap: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  flex-wrap: wrap;
}
.story-footer .rule { flex: 0 0 48px; height: 1px; background: var(--gold); }

.story-image {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  position: relative;
  background: var(--navy-2);
}
.story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: saturate(0.95);
}
.story-image:hover img { transform: scale(1.04); }

/* ============ CRAFT ============ */
.craft {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  background: var(--navy);
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
  position: relative;
}
.craft-head {
  max-width: var(--container);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 960px) {
  .craft-head { grid-template-columns: auto 1.4fr 1fr; gap: 80px; align-items: end; }
}
.craft-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.craft-title em { color: var(--gold); font-weight: 300; }
.craft-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-soft);
  opacity: 0.82;
  max-width: 44ch;
  padding-bottom: 8px;
}

.craft-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .craft-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: clamp(90px, 10vw, 140px);
    gap: 18px;
  }
  .tile-a { grid-column: 1 / 7;  grid-row: span 4; }
  .tile-b { grid-column: 7 / 13; grid-row: span 3; }
  .tile-c { grid-column: 1 / 6;  grid-row: span 3; }
  .tile-d { grid-column: 6 / 13; grid-row: span 4; }
}
.craft-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: var(--navy-2);
}
@media (min-width: 720px) { .craft-tile { aspect-ratio: auto; height: 100%; } }
.craft-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.95) brightness(0.95);
}
.craft-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1);
}

/* ============ FULL-BLEED FEATURE ============ */
.feature {
  position: relative;
  min-height: 68vh;
  min-height: 68dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 100px var(--gutter);
}
.feature-img {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.88) brightness(0.7);
}
.feature-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,15,30,0.4) 0%, rgba(5,15,30,0.6) 100%),
    radial-gradient(ellipse at 50% 60%, rgba(10, 28, 52, 0.35) 0%, rgba(5, 15, 30, 0.78) 100%);
}
.feature-content {
  max-width: 1000px;
  text-align: center;
  color: var(--cream);
}
.feature-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.feature-line {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.2rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--cream);
  text-shadow: 0 2px 40px rgba(5, 15, 30, 0.6);
}
.feature-line em { font-style: italic; color: var(--gold); font-weight: 300; }

/* ============ MENU ============ */
.menu {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  background: var(--ink);
  position: relative;
}
.menu-head {
  max-width: var(--container);
  margin: 0 auto 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.menu-title em { color: var(--gold); font-weight: 300; }

.menu-list {
  max-width: var(--container);
  margin: 0 auto;
}
.dish {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  gap: 0 28px;
  padding: 24px 0;
  border-top: 1px solid var(--cream-faint);
  position: relative;
  transition: padding 0.4s var(--ease);
}
.dish:last-child { border-bottom: 1px solid var(--cream-faint); }
.dish::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.dish:hover::before { width: 100%; }
.dish:hover { padding-left: 12px; }

.dish-num {
  grid-row: 1 / 2;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 12px;
}
.dish-body { grid-column: 2 / 3; display: flex; flex-direction: column; gap: 4px; }
.dish-greek {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.dish h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.dish-desc {
  grid-column: 2 / 3;
  font-size: 0.98rem;
  max-width: 60ch;
  color: var(--cream-soft);
  opacity: 0.75;
  margin-top: 10px;
  line-height: 1.6;
}
@media (min-width: 820px) {
  .dish { grid-template-columns: 60px 1fr 1fr; gap: 0 40px; padding: 28px 0; }
  .dish-body { grid-column: 2 / 3; }
  .dish-desc { grid-column: 3 / 4; margin-top: 0; padding-top: 18px; }
}

.menu-foot {
  text-align: center;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.menu-foot-line {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.menu-foot-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.menu-foot-cta svg { width: 18px; height: 11px; transition: transform 0.3s var(--ease); }
.menu-foot-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.menu-foot-cta:hover svg { transform: translateX(4px); }

/* ============ PULL QUOTE ============ */
.pullquote {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pullquote-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.pullquote-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: blur(1px) saturate(1.1);
  transform: scale(1.05);
}
.pullquote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(47, 134, 174, 0.22) 0%, transparent 60%),
              linear-gradient(180deg, var(--ink) 0%, rgba(5,15,30,0.7) 50%, var(--ink) 100%);
  z-index: 0;
}
.pullquote-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.stars {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 42px;
}
.pullquote-text {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.2rem, 6.5vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--cream);
  margin-bottom: 40px;
}
.pullquote-text em { font-style: italic; color: var(--gold); font-weight: 300; }
.pullquote cite {
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============ OWNER ============ */
.owner {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
}
.owner-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .owner-grid { grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: center; }
}
.owner-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
  background: var(--navy-2);
}
.owner-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.2s var(--ease);
  filter: saturate(0.95) contrast(1.02);
}
.owner-image:hover img { transform: scale(1.04); }
.owner-content > * + * { margin-top: 26px; }
.owner-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-top: 18px;
}
.owner-title em { color: var(--gold); font-weight: 300; }
.owner-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream-soft);
  opacity: 0.88;
  max-width: 48ch;
}
.owner-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border: 1px solid var(--cream-faint);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.owner-link svg { width: 20px; height: 12px; transition: transform 0.3s var(--ease); }
.owner-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.owner-link:hover svg { transform: translateX(4px); }

/* ============ VIBE ============ */
.vibe {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  background: var(--navy);
}
.vibe-head {
  max-width: var(--container);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .vibe-head { grid-template-columns: auto 1fr; gap: 80px; align-items: end; }
}
.vibe-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.vibe-title em { color: var(--gold); font-weight: 300; }

.vibe-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .vibe-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.vibe-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1/1;
  background: var(--navy-2);
}
.vibe-tile:nth-child(1), .vibe-tile:nth-child(6) { aspect-ratio: 4/5; }
@media (min-width: 720px) {
  .vibe-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
  .vibe-tile:nth-child(6) { aspect-ratio: 1/1; }
}
.vibe-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.9) brightness(0.9);
}
.vibe-tile:hover img { transform: scale(1.04); filter: saturate(1.05) brightness(1); }

/* ============ REVIEWS ============ */
.reviews {
  padding: clamp(70px, 10vw, 140px) var(--gutter);
  background: var(--navy-2);
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
}
.reviews-head { max-width: var(--container); margin: 0 auto 52px; text-align: center; }
.reviews-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 780px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}
.review {
  padding: 32px 28px;
  border: 1px solid var(--cream-faint);
  border-radius: 4px;
  background: rgba(240, 230, 200, 0.02);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.review:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(240, 230, 200, 0.04);
}
.stars-sm { color: var(--gold); letter-spacing: 0.18em; margin-bottom: 16px; font-size: 0.88rem; }
.review blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 20px;
}
.review cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============ VISIT ============ */
.visit {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  position: relative;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.visit-bg { position: absolute; inset: 0; z-index: -1; }
.visit-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.14;
  filter: blur(2px) saturate(0.8);
  transform: scale(1.05);
}
.visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 52, 0.85) 0%, var(--ink) 100%);
  z-index: -1;
}
.visit-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.visit-info > * + * { margin-top: 32px; }
.visit-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.visit-title em { color: var(--gold); font-weight: 300; }

.visit-block .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.visit-block p { font-size: 1.02rem; line-height: 1.7; color: var(--cream); }
.visit-block a {
  position: relative;
  color: var(--cream);
  border-bottom: 1px solid var(--cream-faint);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.visit-block a:hover { color: var(--gold); border-color: var(--gold); }

.hours { display: flex; flex-direction: column; }
.hours > div {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--cream-faint);
  font-size: 0.96rem;
}
.hours > div:last-child { border-bottom: none; }
.hours .shut { color: var(--cream-dim); }

.visit-map {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 320px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--cream-faint);
  background: var(--navy-2);
  position: relative;
}
@media (min-width: 900px) {
  .visit-map { aspect-ratio: auto; height: 100%; min-height: 520px; }
}
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(0.95) brightness(0.85);
}

/* ============ DELIVER CTA ============ */
.deliver {
  position: relative;
  min-height: 64vh;
  min-height: 64dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  text-align: center;
}
.deliver-img { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.deliver-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.85) brightness(0.55) contrast(1.05);
}
.deliver-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 161, 74, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,15,30,0.55) 0%, rgba(5,15,30,0.82) 100%);
}
.deliver-inner { max-width: 900px; color: var(--cream); }
.deliver-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  font-weight: 500;
}
.deliver-line {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 7.5vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.032em;
  color: var(--cream);
  margin-bottom: 26px;
  text-shadow: 0 2px 40px rgba(5, 15, 30, 0.6);
}
.deliver-line em { font-style: italic; color: var(--gold); font-weight: 300; }
.deliver-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--cream-soft);
  opacity: 0.88;
  max-width: 52ch;
  margin: 0 auto 42px;
}
.deliver-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 19px 36px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 10px 40px -10px rgba(201, 161, 74, 0.5);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.deliver-btn svg { width: 20px; height: 12px; transition: transform 0.3s var(--ease); position: relative; z-index: 1; }
.deliver-btn > span { position: relative; z-index: 1; }
.deliver-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 0;
}
.deliver-btn:hover::before { transform: translateY(0); }
.deliver-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 50px -10px rgba(240, 230, 200, 0.4); }
.deliver-btn:hover svg { transform: translateX(5px); }

/* ============ FOOTER ============ */
.foot {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--cream-faint);
  overflow: hidden;
}
.foot-hero {
  padding: clamp(72px, 10vw, 140px) var(--gutter) clamp(36px, 5vw, 70px);
  text-align: center;
  position: relative;
}
.foot-hero-tag {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.2rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 1200px;
  margin: 0 auto 36px;
}
.foot-hero-tag em { font-style: italic; color: var(--gold); font-weight: 300; }
.foot-laurel {
  width: clamp(110px, 13vw, 180px);
  height: auto;
  margin: 0 auto;
  opacity: 0.85;
}

.foot-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  border-top: 1px solid var(--cream-faint);
}
@media (min-width: 640px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (min-width: 900px) {
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 48px; }
}
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-brand { gap: 14px; }
@media (min-width: 640px) { .foot-brand { grid-column: 1 / -1; } }
@media (min-width: 900px) { .foot-brand { grid-column: auto; } }
.foot-brand-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.foot-brand h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.foot-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--cream-soft);
  opacity: 0.72;
  max-width: 36ch;
}
.foot-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.foot-col p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.88;
}
.foot-col a {
  color: var(--cream);
  transition: color 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.foot-col a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.foot-dim { color: var(--cream-dim); font-size: 0.84rem; }

.foot-base {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--gutter) 40px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-top: 1px solid var(--cream-faint);
}
.foot-made { text-transform: none; letter-spacing: 0.02em; font-size: 0.85rem; color: var(--cream); opacity: 0.62; }
.foot-made em { font-style: italic; color: var(--gold); }

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out-expo), transform 0.55s var(--ease-out-expo);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
.menu-list .dish[data-reveal].in { transition-delay: calc(var(--i, 0) * 45ms); }
.vibe-tile[data-reveal].in,
.craft-tile[data-reveal].in { transition-delay: calc(var(--i, 0) * 60ms); }
.stat[data-reveal].in { transition-delay: calc(var(--i, 0) * 70ms); }

/* ============ REDUCE MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-img { animation: none; transform: scale(1.02); }
  .marquee-track { animation: none; }
  .orb { animation: none; }
}

/* ============ SAFARI iOS address bar compensation ============ */
@supports (padding: max(0px)) {
  body { padding-bottom: env(safe-area-inset-bottom); }
}

/* ============ ACCESSIBILITY — SKIP LINK ============ */
.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 250;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  transform: translateY(-200%);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

/* ============ FOCUS RINGS (keyboard only) ============ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav-links a:focus-visible,
.owner-link:focus-visible,
.menu-foot-cta:focus-visible,
.deliver-btn:focus-visible,
.float-cta:focus-visible {
  outline-offset: 4px;
}
.float-cta:focus-visible { border-radius: 999px; }

/* ============ NAV ACTIVE SECTION ============ */
.nav-links a[aria-current="true"] {
  opacity: 1;
  color: var(--gold);
}
.nav-links a[aria-current="true"]::after {
  width: 100%;
}
.nav-links a.nav-order[aria-current="true"] { color: var(--gold); }

/* ============ PRINT STYLES ============ */
@media print {
  :root { --ink: #ffffff; --cream: #0a0a0a; }
  .grain, .scroll-progress, .cursor-dot, .float-cta,
  .marquee, .orb, .hero-scroll, .pullquote-bg img,
  .visit-bg, .deliver-img, .feature-img,
  .hero-bg, .craft-grid, .vibe-grid, .foot-hero,
  .foot-base { display: none !important; }
  body { background: #fff; color: #0a0a0a; }
  section, .foot { background: #fff !important; color: #0a0a0a !important; padding: 20px 0; }
  .dish h3, .dish-desc, .menu-title, .hero-title,
  .story-headline, .visit-title, .owner-title,
  .foot-brand h4, .foot-col p { color: #0a0a0a !important; }
  .dish-greek, .eyebrow, .dish-num, .foot-label { color: #666 !important; }
  .nav, .nav-links { display: none !important; }
  .menu { page-break-before: always; }
  a { color: inherit !important; text-decoration: underline; }
  .visit-map, .owner-image, .story-image { display: none; }
  @page { margin: 1.5cm; }
}
