/* ============================================================
   Seoul Kitchen im Hafen — stylesheet
   ============================================================ */

:root{
  --ink:        #1e140f;
  --ink-soft:   #3d2c22;
  --crimson:    #a81f2d;
  --crimson-dk: #7c1420;
  --crimson-lt: #c8394a;
  --gold:       #d9a54a;
  --gold-dp:    #a97624;
  --cream:      #f6ead9;
  --paper:      #fffaf2;
  --line:       rgba(30,20,15,0.12);

  --font-display: 'Unbounded', sans-serif;
  --font-serif:   'Fraunces', serif;
  --font-body:    'Work Sans', sans-serif;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 50px -20px rgba(30,20,15,0.35);
  --shadow-tight: 0 8px 20px -10px rgba(30,20,15,0.3);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 90px; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5{ margin: 0; font-weight: 700; }
p{ margin: 0; }
section{ position: relative; }
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson-dk);
}
.eyebrow::before{
  content: "";
  width: 26px; height: 2px;
  background: var(--gold-dp);
  display: inline-block;
}

.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2{
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.section-head p{
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 52ch;
}
.section-head.centered{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--crimson);
  color: var(--paper);
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover{ background: var(--crimson-dk); box-shadow: 0 14px 28px -10px rgba(168,31,45,0.55); }
.btn-outline{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover{ background: var(--ink); color: var(--paper); }
.btn-gold{
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-tight);
}
.btn-gold:hover{ background: var(--gold-dp); }
.btn-sm{ padding: 10px 20px; font-size: 13px; }

/* ---------- Nav ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled{
  background: rgba(246,234,217,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -12px rgba(30,20,15,0.25);
  padding: 12px 0;
}
.nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.brand svg{ width: 44px; height: 44px; flex-shrink: 0; }
.brand-sub{
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--crimson-dk);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after{
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--crimson);
  transition: right .25s ease;
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a:hover::after{ right: 0; }
.nav-actions{ display: flex; align-items: center; gap: 16px; }
.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: transparent;
  align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before{ position: absolute; top: -6px; }
.nav-toggle span::after{ position: absolute; top: 6px; }
.nav-toggle.open span{ background: transparent; }
.nav-toggle.open span::before{ top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after{ top: 0; transform: rotate(-45deg); }

/* ---------- Mobile nav ---------- */
@media (max-width: 900px){
  .nav-links{
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 90;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ color: var(--cream); font-size: 22px; font-family: var(--font-display); }
  .nav-links a::after{ background: var(--gold); }
  .nav-actions .btn-primary{ display: none; }
  .nav-toggle{ display: inline-flex; z-index: 95; }
}

/* ---------- Blobs / decoration ---------- */
.blob{ position: absolute; z-index: 0; pointer-events: none; }
.grain-overlay{
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Hero ---------- */
.hero{
  padding: 168px 0 110px;
  position: relative;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-pill{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 14px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-pill svg{ width: 16px; height: 16px; color: var(--gold); }

.hero-heading{
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-desc{
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch;
}
.hero-ctas{
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-ink{
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover{ background: #000; }
.btn-ink svg{ width: 15px; height: 15px; }

.hero-stats{
  margin-top: 40px;
  display: flex;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 22px 8px;
  max-width: 480px;
}
.hero-stat{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.hero-stat:first-child{ border-left: none; }
.hero-stat-num{
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
}
.hero-stat-label{ font-size: 12px; color: var(--ink-soft); }

.hero-visual{
  position: relative;
}
.hero-photo-frame{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.hero-plate-img{
  width: 100%;
  max-width: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(30,20,15,0.3));
}

.hero-chip{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 44px -14px rgba(30,20,15,0.28);
  padding: 14px 24px 14px 14px;
  z-index: 2;
  white-space: nowrap;
}
.hero-chip-top{ top: 0; left: -34px; }
.hero-chip-bottom{ bottom: 4px; right: -30px; }

.hero-chip h5{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-chip-sub{
  display: block;
  margin-top: 1px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(30,20,15,0.55);
  letter-spacing: 0.01em;
}
.hero-chip-icon{
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-chip-icon svg{ width: 23px; height: 23px; color: var(--crimson); }
.hero-chip-avatar{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.hero-chip-stars{ display: inline-flex; gap: 1px; }
.hero-chip-stars svg{ width: 12px; height: 12px; color: var(--gold); }

@media (max-width: 980px){
  .hero{ padding-top: 140px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 76px; }
  .hero-pill, .hero-stats{ margin-left: auto; margin-right: auto; }
  .hero-copy{ text-align: center; }
  .hero-desc{ margin-left: auto; margin-right: auto; }
  .hero-ctas{ justify-content: center; }
  .hero-photo-frame{ max-width: 460px; margin: 0 auto; }
  .hero-chip-top{ top: -14px; left: 50%; transform: translateX(-80%); }
  .hero-chip-bottom{ bottom: -14px; right: 50%; transform: translateX(80%); }
}
@media (max-width: 560px){
  .hero-chip{ position: static; transform: none; margin: 14px auto 0; width: fit-content; white-space: normal; }
  .hero-photo-frame{ margin-bottom: 14px; padding: 0; }
}

/* ---------- Feature strip ---------- */
.feature-strip{
  background: var(--ink);
  padding: 26px 0;
}
.feature-strip ul{
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
  align-items: center;
}
.feature-strip li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.feature-strip svg{ width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* ---------- About ---------- */
.about{ padding: 110px 0; position: relative; }
.about .blob-c{ top: 10%; left: -180px; width: 420px; opacity: 0.35; }
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-copy p{
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 56ch;
}
.about-copy p:last-child{ margin-bottom: 0; }
.about-quote{
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border-left: 4px solid var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.about-notice{
  margin-top: 22px;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(217,165,74,0.16);
  border: 1px solid rgba(185,131,36,0.35);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.about-notice svg{ width: 20px; height: 20px; color: var(--gold-dp); flex-shrink: 0; margin-top: 2px; }

.stat-cards{
  display: grid;
  gap: 18px;
}
.stat-card{
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-tight);
  display: flex;
  align-items: center;
  gap: 18px;
}
.stat-card .icon-wrap{
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-card .icon-wrap svg{ width: 26px; height: 26px; color: var(--paper); }
.stat-card:nth-child(2) .icon-wrap{ background: var(--gold); }
.stat-card:nth-child(2) .icon-wrap svg{ color: var(--ink); }
.stat-card:nth-child(3) .icon-wrap{ background: var(--ink); }
.stat-card h4{
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 4px;
}
.stat-card p{ font-size: 13.5px; color: var(--ink-soft); }

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

/* ---------- Menu ---------- */
.menu{
  padding: 110px 0 120px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.menu .blob-d{ top: -140px; right: -120px; width: 480px; opacity: 0.14; }
.menu .blob-e{ bottom: -160px; left: -100px; width: 420px; opacity: 0.1; }
.menu .eyebrow{ color: var(--gold); }
.menu .eyebrow::before{ background: var(--gold); }
.menu .section-head h2{ color: var(--paper); }
.menu .section-head p{ color: rgba(246,234,217,0.72); }

.menu-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.menu-card{
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.menu-card .tag{
  position: absolute;
  top: 18px; left: 18px;
  background: var(--crimson);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.menu-card:nth-child(2) .tag{ background: var(--gold); color: var(--ink); }
.menu-card:nth-child(3) .tag{ background: var(--ink); color: var(--cream); }
.menu-card .plate-wrap{
  width: 100%;
  aspect-ratio: 1.3 / 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.menu-card .plate-wrap img{
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(30,20,15,0.28));
  transition: transform .35s ease;
}
.menu-card:hover .plate-wrap img{ transform: scale(1.05) rotate(-1.5deg); }
.menu-card .plate-wrap img.plate-img-sm{ width: 70%; height: 70%; }
.menu-card:hover .plate-wrap img.plate-img-sm{ transform: scale(1.1) rotate(-1.5deg); }
.menu-card h3{
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  margin-top: 12px;
}
.menu-card-num{
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dp);
  margin-left: 4px;
}
.menu-card p{
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.menu-card .price-note{
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dp);
}
.menu-foot{
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.menu-foot p{
  color: rgba(246,234,217,0.7);
  margin-bottom: 20px;
  font-size: 15px;
}

@media (max-width: 900px){
  .menu-grid{ grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ---------- Reviews ---------- */
.reviews{ padding: 100px 0 110px; background: var(--paper); }
.reviews-head{
  display: flex;
  align-items: center;
  gap: 44px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.reviews-score{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  background: var(--cream);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.reviews-number{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  color: var(--crimson);
  line-height: 1;
}
.reviews-score-meta{ display: flex; flex-direction: column; gap: 6px; }
.reviews-score-meta span{ font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.reviews-stars{ display: flex; gap: 3px; }
.reviews-stars svg{ width: 17px; height: 17px; color: var(--gold); }

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card{
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card p{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
}
.review-author{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-dp);
}
.reviews-foot{ margin-top: 42px; text-align: center; }
.reviews-foot .btn svg{ margin-right: 2px; }

@media (max-width: 900px){
  .reviews-grid{ grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .reviews-head{ justify-content: center; text-align: center; flex-direction: column; }
}

/* ---------- Order ---------- */
.order{ padding: 110px 0; }
.order-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.order-card{
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.order-card:hover{
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: var(--shadow-tight);
}
.order-card .icon-wrap{
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.order-card .icon-wrap svg{ width: 28px; height: 28px; color: var(--crimson); }
.order-card h4{ font-family: var(--font-display); font-size: 15.5px; }
.order-card span{ font-size: 12.5px; color: var(--ink-soft); }
.order-note{
  margin-top: 34px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.order-note svg{ width: 20px; height: 20px; color: var(--gold-dp); }

@media (max-width: 900px){
  .order-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .order-grid{ grid-template-columns: 1fr; }
}

/* ---------- Visit ---------- */
.visit{
  padding: 110px 0 130px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.visit .blob-f{ bottom: -180px; right: -160px; width: 520px; opacity: 0.3; }
.visit-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.visit-card{
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.visit-row{
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.visit-row:first-child{ padding-top: 0; }
.visit-row:last-child{ border-bottom: none; padding-bottom: 0; }
.visit-row svg{ width: 22px; height: 22px; color: var(--crimson); flex-shrink: 0; margin-top: 2px; }
.visit-row h4{ font-family: var(--font-display); font-size: 14.5px; margin-bottom: 4px; }
.visit-row p, .visit-row a{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.visit-row a:hover{ color: var(--crimson); }
.hours-table{ width: 100%; border-collapse: collapse; }
.hours-table td{ padding: 3px 0; font-size: 14.5px; color: var(--ink-soft); }
.hours-table td:last-child{ text-align: right; font-weight: 600; color: var(--ink); }
.badge-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.mini-badge{
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.mini-badge svg{ width: 15px; height: 15px; color: var(--gold-dp); }

.map-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
  position: relative;
  border: 6px solid var(--paper);
}
.map-wrap iframe{
  width: 100%; height: 100%; min-height: 420px;
  border: 0;
  filter: sepia(8%) saturate(92%);
}

@media (max-width: 980px){
  .visit-grid{ grid-template-columns: 1fr; }
  .map-wrap{ order: -1; }
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 30px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(246,234,217,0.14);
}
.footer-brand{ display: flex; flex-direction: column; gap: 16px; }
.footer-brand .brand{ color: var(--cream); }
.footer-brand p{ font-size: 14px; color: rgba(246,234,217,0.65); max-width: 32ch; line-height: 1.6; }
.footer-social{ display: flex; gap: 12px; margin-top: 4px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(246,234,217,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover{ background: var(--crimson); }
.footer-social svg{ width: 17px; height: 17px; }

.footer-col h5{
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span{
  font-size: 14.5px;
  color: rgba(246,234,217,0.72);
}
.footer-col a:hover{ color: var(--paper); }

.footer-bottom{
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(246,234,217,0.5);
}

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- Menu Page ---------- */
.menu-page-hero{
  padding: 150px 0 60px;
  text-align: center;
  position: relative;
}
.menu-page-hero .eyebrow{ justify-content: center; }
.menu-page-hero h1{
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  color: var(--ink);
  margin-top: 14px;
}
.menu-page-hero p{
  margin: 18px auto 0;
  max-width: 56ch;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.category-nav{
  position: sticky;
  top: 78px;
  z-index: 40;
  background: rgba(246,234,217,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin-bottom: 10px;
}
.category-nav ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.category-nav a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.category-nav a:hover{ color: var(--ink); border-color: var(--crimson); }

.dish-section{ padding: 64px 0 20px; }
.dish-section-head{
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 30px;
  scroll-margin-top: 150px;
}
.dish-section-head h2{
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--ink);
}
.dish-section-head span{
  font-size: 13.5px;
  color: var(--ink-soft);
}

.dish-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.dish-card{
  display: flex;
  gap: 16px;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 16px;
  align-items: flex-start;
  transition: box-shadow .25s ease, transform .25s ease;
}
.dish-card:hover{ box-shadow: var(--shadow-tight); transform: translateY(-2px); }
.dish-photo{
  width: 96px; height: 96px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
}
.dish-photo-placeholder{
  width: 96px; height: 96px;
  border-radius: 12px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dish-photo-placeholder svg{ width: 30px; height: 30px; color: var(--gold-dp); opacity: 0.6; }
.dish-info{ flex: 1; min-width: 0; }
.dish-name-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.dish-name{
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.3;
}
.dish-num{
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dp);
  margin-left: 5px;
}
.dish-badge{
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--crimson);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 5px;
}
.dish-desc{
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 3px;
}
.dish-price{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--crimson);
  font-size: 15px;
  margin-top: 10px;
}

.simple-section{ padding: 20px 0 70px; }
.simple-list{ max-width: 760px; }
.simple-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.simple-row:last-child{ border-bottom: none; }
.simple-row-name{ font-weight: 600; color: var(--ink); font-size: 15px; }
.simple-row-desc{ display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; font-weight: 400; }
.simple-row-price{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--crimson);
  font-size: 14.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-page-foot{
  text-align: center;
  padding: 20px 0 100px;
}
.menu-page-foot p{ color: var(--ink-soft); margin-bottom: 20px; }

@media (max-width: 700px){
  .dish-grid{ grid-template-columns: 1fr; }
  .category-nav{ top: 70px; }
  .category-nav ul{ justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 20px; margin: 0 -20px; }
}

/* ---------- Dish modal (Speisekarte) ---------- */
.dish-card{ cursor: pointer; }
.dish-card:focus-visible{ outline: 2px solid var(--crimson); outline-offset: 3px; }

.dish-modal{
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20,13,9,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.dish-modal.is-open{ opacity: 1; pointer-events: auto; }
.dish-modal-card{
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transform: translateY(18px) scale(0.97);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.dish-modal.is-open .dish-modal-card{ transform: translateY(0) scale(1); }
.dish-modal-close{
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-tight);
}
.dish-modal-media{
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
}
.dish-modal-img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.dish-modal-placeholder{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.dish-modal-placeholder svg{ width: 64px; height: 64px; color: var(--gold-dp); opacity: 0.5; }
.dish-modal-body{ padding: 26px 28px 32px; }
.dish-modal-badge{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--crimson);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.dish-modal-title-row{ display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.dish-modal-name{
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 25px;
  color: var(--ink);
  line-height: 1.25;
}
.dish-modal-num{ font-size: 13px; font-weight: 700; color: var(--gold-dp); }
.dish-modal-desc{ margin-top: 14px; font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.dish-modal-price{
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--crimson);
}

@media (max-width: 560px){
  .dish-modal{ padding: 0; align-items: flex-end; }
  .dish-modal-card{ max-width: 100%; max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Small screens general ---------- */
@media (max-width: 620px){
  .container{ padding: 0 20px; }
  .hero{ padding-top: 128px; padding-bottom: 70px; }
  .about, .menu, .order, .visit{ padding-top: 80px; padding-bottom: 80px; }
  .hero-ctas .btn{ width: 100%; }
}
