/* ============================================================
   TYCO MYKONOS — Editorial Luxury Design System
   Palette: warm cream / black / beige / earthy clay (NO gold UI)
   Type: Fraunces (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  /* Surfaces — white base */
  --cream:      #FCFCFA;
  --cream-2:    #F4F4EF;
  --sand:       #ECECE5;
  --white:      #FFFFFF;

  /* Ink -> navy */
  --ink:        #15243C;
  --ink-2:      #1D3354;
  --muted:      #6E7689;
  --muted-2:    #9AA0AD;

  /* Accent -> logo gold / navy prices */
  --clay:       #D4B838;
  --clay-deep:  #15243C;

  /* Lines */
  --line:       rgba(21, 36, 60, 0.18);
  --line-soft:  rgba(21, 36, 60, 0.10);
  --line-light: rgba(252, 252, 250, 0.18);

  /* Type */
  --display: 'Chivo', Georgia, serif;
  --sans:    'Krub', system-ui, sans-serif;

  /* Motion */
  --ease:     cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Rhythm */
  --pad-x: clamp(1.25rem, 5vw, 6rem);
  --maxw:  1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--clay); color: var(--white); }

/* ---------- Film grain (fixed, non-interactive) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 4; 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='160' height='160'%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");
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.9rem;
}

h1, h2, h3 { font-family: var(--display); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; }
.tyco-pop { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.2,0.7,0.2,1), transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
.tyco-pop.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .tyco-pop { opacity: 1; transform: none; transition: none; } }
.display-xl { font-size: clamp(2.6rem, 7vw, 4.5rem); }
.display-lg { font-size: clamp(2.4rem, 5vw, 3.4rem); }
.display-md { font-size: clamp(1.875rem, 3.2vw, 2.4rem); }

/* Menu nav links/burger navy (match the index nav) */
.nav .nav-links a { color: #15243C !important; }
.nav .burger span { background: #15243C; }
.footer { background: #15243C; }

/* Buttons -> logo gold */
.btn { background: #D4B838 !important; color: #15243C !important; }
.btn:hover { background: #E4C84A !important; }
.btn .ico { background: rgba(21,36,60,0.12) !important; }
.btn .ico svg { color: #15243C; }

/* Language toggle (menu page) */
.lang-toggle { background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; color: inherit; display: inline-flex; align-items: center; gap: 0.3rem; padding: 0; }
.lang-toggle [data-lang] { opacity: 0.45; transition: opacity 0.3s ease; }
.lang-toggle [data-lang].is-active { opacity: 1; }
.lang-toggle .lang-sep { opacity: 0.35; }
.lang-toggle--ov { color: var(--cream); font-size: 1.05rem; margin-top: 1.2rem; }
.italic { font-style: italic; }
.serif { font-family: var(--display); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.35rem); color: var(--ink-2); line-height: 1.7; font-weight: 300; }
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
section { position: relative; }
.section-pad { padding-block: clamp(5rem, 12vw, 11rem); }

/* ---------- Buttons (nested island CTA) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.7rem;
  border-radius: 2px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  transition: background 0.4s var(--ease), gap 0.4s var(--ease);
}
.btn .ico { display: inline-flex; align-items: center; }
.btn .ico svg { width: 0.8rem; height: 0.8rem; }
.btn:hover { background: var(--clay-deep); gap: 0.85rem; }
.btn:active { transform: scale(0.985); }

.btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--cream); box-shadow: inset 0 0 0 1px var(--ink); }

.btn.light { background: var(--cream); color: var(--ink); }
.btn.light:hover { background: var(--white); }

.textlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), gap 0.4s var(--ease);
}
.textlink:hover { border-color: var(--ink); gap: 0.8rem; }

/* ============================================================
   NAV — centered logo, split links (editorial / minimalist)
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: clamp(1.1rem, 2.4vw, 1.9rem) clamp(1.25rem, 4vw, 3.2rem);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-top: 0.8rem; padding-bottom: 0.8rem;
}

.wordmark { justify-self: center; display: flex; align-items: center; line-height: 0; }
.wordmark img {
  height: clamp(4.4rem, 7vw, 6rem); width: auto; border-radius: 50%; display: block;
  transition: height 0.5s var(--ease);
}
.nav.scrolled .wordmark img { height: 3rem; }

.nav-links { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }
.nav-links.left { justify-self: start; }
.nav-links.right { justify-self: end; }
.nav-links a {
  position: relative; font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-2); transition: color 0.4s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav.hero-dark:not(.scrolled) .nav-links a { color: var(--cream); }
.nav.hero-dark:not(.scrolled) .burger span { background: var(--cream); }

.burger { display: none; width: 2.4rem; height: 2.4rem; position: absolute; right: clamp(1.25rem, 4vw, 3.2rem); top: 50%; margin-top: -1.2rem; }
.burger span {
  position: absolute; left: 50%; width: 1.1rem; height: 1.5px; background: var(--ink);
  transform: translateX(-50%); transition: transform 0.5s var(--ease), opacity 0.3s var(--ease), background 0.5s var(--ease);
}
.burger span:nth-child(1) { top: 0.85rem; }
.burger span:nth-child(2) { top: 1.25rem; }
body.menu-open .burger span:nth-child(1) { top: 1.05rem; transform: translateX(-50%) rotate(45deg); background: var(--cream); }
body.menu-open .burger span:nth-child(2) { top: 1.05rem; transform: translateX(-50%) rotate(-45deg); background: var(--cream); }

/* Mobile overlay */
.nav-overlay {
  position: fixed; inset: 0; z-index: 25;
  background: rgba(23,19,14,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0.4rem;
  opacity: 0; visibility: hidden; transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
body.menu-open .nav-overlay { opacity: 1; visibility: visible; }
.nav-overlay a {
  font-family: var(--display); font-size: clamp(2.2rem, 9vw, 3.4rem); color: var(--cream);
  letter-spacing: -0.01em; opacity: 0; transform: translateY(2.5rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
body.menu-open .nav-overlay a { opacity: 1; transform: translateY(0); }
body.menu-open .nav-overlay a:nth-child(1) { transition-delay: 0.12s; }
body.menu-open .nav-overlay a:nth-child(2) { transition-delay: 0.18s; }
body.menu-open .nav-overlay a:nth-child(3) { transition-delay: 0.24s; }
body.menu-open .nav-overlay a:nth-child(4) { transition-delay: 0.30s; }
.nav-overlay .ov-foot {
  position: absolute; bottom: 3rem; font-family: var(--sans); font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,14,0.5) 0%, rgba(23,19,14,0) 30%, rgba(23,19,14,0.1) 58%, rgba(23,19,14,0.82) 100%);
}
.hero-content { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(3.5rem, 8vw, 7rem); color: var(--cream); }
.hero h1 { margin: 0 0 1.6rem; max-width: 14ch; color: var(--white); }
.hero-sub { max-width: 44ch; font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 300; line-height: 1.7; color: rgba(251,248,242,0.85); }
.hero-link {
  display: inline-flex; align-items: center; gap: 0.65rem; margin-top: 2.3rem;
  color: var(--cream); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding-bottom: 0.5rem; border-bottom: 1px solid rgba(251,248,242,0.45);
  transition: border-color 0.4s var(--ease), gap 0.4s var(--ease);
}
.hero-link svg { width: 0.85rem; height: 0.85rem; }
.hero-link:hover { gap: 0.95rem; border-color: var(--cream); }

/* ============================================================
   VIBE — editorial split
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.split.flip .split-media { order: -1; }
.split-text h2 { margin: 0 0 1.8rem; }
.split-text .lead { margin-bottom: 2.4rem; }
.feature-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
  border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line);
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-2);
}
.chip .d { width: 5px; height: 5px; border-radius: 999px; background: var(--clay); }

/* Editorial media frame (square) */
.frame { position: relative; }
.frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.frame.wide img { aspect-ratio: 3/2; }
.frame .tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
  padding: 0.5rem 0.9rem; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(23,19,14,0.6); color: var(--cream); backdrop-filter: blur(6px);
}

/* ============================================================
   MENU HIGHLIGHTS — double-bezel cards
   ============================================================ */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head h2 { max-width: 20ch; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.card { position: relative; }
.card-media { overflow: hidden; aspect-ratio: 3/4; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.1rem 0 0; border-top: 1px solid var(--ink); margin-top: 1rem; }
.card-body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem; }
.card-name { font-family: var(--display); font-size: 1.35rem; letter-spacing: -0.02em; }
.card-price { font-size: 0.85rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.card-note { margin-top: 0.45rem; font-size: 0.76rem; color: var(--muted); letter-spacing: 0.02em; }

/* ============================================================
   GALLERY — asymmetrical bento
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(8rem, 14vw, 13rem); gap: 1rem; }
.bento figure { position: relative; overflow: hidden; background: var(--sand); }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.bento figure:hover img { transform: scale(1.06); }
.b-a { grid-column: span 5; grid-row: span 2; }
.b-b { grid-column: span 4; grid-row: span 1; }
.b-c { grid-column: span 3; grid-row: span 2; }
.b-d { grid-column: span 4; grid-row: span 1; }
.b-quote {
  grid-column: span 4; grid-row: span 1; display: flex; flex-direction: column; justify-content: center;
  padding: 2rem; background: var(--ink); color: var(--cream);
}
.b-quote .q { font-family: var(--display); font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1.1; }
.b-quote .q em { font-style: italic; color: var(--sand); }
.b-quote .s { margin-top: 0.8rem; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-2); }
.b-e { grid-column: span 5; grid-row: span 1; }
.b-f { grid-column: span 3; grid-row: span 1; }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--cream-2); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: stretch; }
.visit-info h2 { margin: 0 0 2.4rem; }
.info-list { display: grid; gap: 1.4rem; margin-bottom: 2.6rem; }
.info-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line-soft); }
.info-item .k { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay-deep); padding-top: 0.2rem; }
.info-item .v { font-family: var(--display); font-size: 1.25rem; line-height: 1.3; }
.info-item .v small { display: block; font-family: var(--sans); font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; letter-spacing: 0.02em; }
.map-frame { position: relative; min-height: 22rem; background: var(--sand); }
.map-frame iframe { width: 100%; height: 100%; min-height: 21rem; border: 0; filter: grayscale(0.35) sepia(0.12) contrast(1.02); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta { text-align: center; }
.insta h2 { margin: 0 auto 1.4rem; max-width: 18ch; }
.insta .lead { max-width: 44ch; margin: 0 auto 2.6rem; }
.insta-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; margin-bottom: 2.8rem; }
.insta-strip figure { overflow: hidden; aspect-ratio: 1; background: var(--sand); }
.insta-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.insta-strip figure:hover img { transform: scale(1.07); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news { background: var(--sand); }
.news-card {
  max-width: 760px; margin-inline: auto; text-align: center;
}
.news h2 { margin: 0 0 1.4rem; }
.news .lead { max-width: 40ch; margin: 0 auto 2.4rem; }
.news-form {
  display: flex; gap: 0.5rem; padding: 0; border-radius: 2px;
  max-width: 480px; margin-inline: auto;
}
.news-form input { box-shadow: inset 0 0 0 1px var(--line); border-radius: 2px; }
.news-form input {
  flex: 1; border: none; background: var(--white); padding: 1rem 1.3rem;
  font-family: var(--sans); font-size: 0.9rem; color: var(--ink); outline: none;
}
.news-form input::placeholder { color: var(--muted-2); }
.news-note { margin-top: 1.1rem; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer .logo-img { width: 3.4rem; height: 3.4rem; border-radius: 999px; margin-bottom: 1.4rem; }
.footer .brandline { font-family: var(--display); font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1.15; max-width: 16ch; }
.footer .brandline em { font-style: italic; color: var(--sand); }
.footer h4 { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.3rem; }
.footer ul { list-style: none; display: grid; gap: 0.8rem; }
.footer ul a, .footer ul li { font-size: 0.92rem; color: rgba(251,248,242,0.8); transition: color 0.4s var(--ease); }
.footer ul a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 2rem; }
.footer-bottom span { font-size: 0.74rem; letter-spacing: 0.04em; color: var(--muted-2); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(2.4rem); filter: blur(6px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  * { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .insta-strip figure:nth-child(4), .insta-strip figure:nth-child(5) { display: none; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav { grid-template-columns: 1fr; justify-items: center; }
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .split.flip .split-media { order: 0; }
  .visit-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 9rem; }
  .b-a { grid-column: span 6; grid-row: span 2; }
  .b-b, .b-d, .b-e, .b-quote { grid-column: span 6; grid-row: span 1; }
  .b-c, .b-f { grid-column: span 3; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .insta-strip { grid-template-columns: repeat(2, 1fr); }
  .insta-strip figure:nth-child(3) { display: none; }
  .news-form { flex-direction: column; gap: 0.7rem; }
  .news-form input { background: var(--white); border-radius: 2px; box-shadow: inset 0 0 0 1px var(--line); }
  .news-form .btn { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-actions { gap: 0.9rem 1rem; }
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page { background: var(--cream); }
.menu-hero { padding-top: clamp(8rem, 15vw, 12rem); padding-bottom: clamp(2rem, 5vw, 4rem); text-align: center; }
.menu-hero h1 { margin: 0; }
.menu-hero .lead { max-width: 48ch; margin: 1.4rem auto 0; }
.menu-hero .menu-meta { margin-top: 2rem; display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }

.menu-jump { position: sticky; top: 4.6rem; z-index: 20; padding-block: 0.85rem; background: rgba(246,241,231,0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: inset 0 -1px 0 var(--line-soft), inset 0 1px 0 var(--line-soft); }
.menu-jump-inner { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.menu-jump-inner::-webkit-scrollbar { display: none; }
.menu-jump a {
  white-space: nowrap; flex-shrink: 0; padding: 0.45rem 1rem; border-radius: 999px;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.03em; color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--line); transition: background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.menu-jump a:hover { background: var(--ink); color: var(--cream); box-shadow: none; }

.menu-section { padding-block: clamp(2.6rem, 5vw, 4.2rem); border-top: 1px solid var(--line-soft); scroll-margin-top: 4.5rem; }
.menu-cat-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1.4rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.menu-cat-head h2 { line-height: 1; }
.menu-cat-head .sub { font-size: 0.82rem; color: var(--muted); font-style: italic; max-width: 34ch; text-align: right; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 5rem); }
.menu-list.single { grid-template-columns: 1fr; max-width: 720px; }
.menu-list.tri { grid-template-columns: repeat(3, 1fr); gap: 0 clamp(1.5rem, 4vw, 4rem); }

.m-item { padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); }
.m-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.m-name { font-family: var(--display); font-size: 1.12rem; letter-spacing: -0.01em; }
.m-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); margin: 0 0.3rem; min-width: 1rem; }
.m-price { font-weight: 600; font-size: 0.88rem; color: var(--clay-deep); white-space: nowrap; }
.m-desc { font-size: 0.77rem; color: var(--muted); margin-top: 0.3rem; letter-spacing: 0.01em; max-width: 42ch; }
.m-tags { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); margin-top: 0.35rem; }

.menu-foot-note { margin-top: 1.6rem; font-size: 0.78rem; color: var(--muted); font-style: italic; }

@media (max-width: 760px) {
  .menu-list, .menu-list.tri { grid-template-columns: 1fr; }
  .menu-cat-head .sub { text-align: left; }
}
