/* ======================================================
   VITAL VIBES — main.css v7.0
   SGD · 세곡동 맛집
   Terracotta Oat — Oat White + Burnt Terracotta + Honey Amber
   ====================================================== */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Italianno&family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Serif+KR:wght@400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:        #7A2E12;  /* deep terracotta */
  --primary-mid:    #9A3D20;  /* mid terracotta */
  --primary-light:  #BA5030;  /* bright terracotta */
  --gold:           #D4A84B;  /* honey amber */
  --gold-light:     #E8CF8A;  /* light honey */
  --bg:             #FAF7F2;  /* oat white */
  --surface:        #F3EDE3;  /* warm linen */
  --surface-alt:    #EBE4D8;  /* deeper linen */
  --dark:           #1E1008;  /* deepest dark */
  --body:           #3D2A1A;  /* warm dark brown text */
  --muted:          #7A6050;  /* warm muted */
  --white:          #FAF5EE;  /* ivory white */
  --accent:         #BA5030;  /* terracotta bright */
  --accent-light:   #CA6040;  /* lighter terracotta */
  --accent-dim:     rgba(186,80,48,0.10);
  --border:         rgba(122,46,18,0.10);
  --border-gold:    rgba(212,168,75,0.35);
  --border-accent:  rgba(186,80,48,0.30);

  --font-display:   'Cormorant Garamond', 'Noto Serif KR', Georgia, serif;
  --font-serif:     'Cormorant Garamond', 'Noto Serif KR', Georgia, serif;
  --font-body:      'Pretendard', 'Noto Sans KR', system-ui, sans-serif;
  --font-brand:     'Cormorant Garamond', Georgia, serif;

  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.77, 0, 0.175, 1);

  --container:      1440px;
  --px:             1.5rem;
  --section-py:     5rem;
}

@media (min-width: 768px) {
  :root {
    --px:         5rem;
    --section-py: 8rem;
  }
}

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

html {
  font-size: 16px;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--white); }

::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--surface); }
::-webkit-scrollbar-thumb  { background: var(--accent); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: none; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Custom Cursor ── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  will-change: transform;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .2s, background .2s;
  will-change: transform;
}
body.cursor-hover .cursor-dot  { width: 0; height: 0; }
body.cursor-hover .cursor-ring {
  width: 64px;
  height: 64px;
  background: rgba(212,168,75,.1);
  border-color: transparent;
}
@media (hover: none), (pointer: coarse) {
  body        { cursor: auto; }
  button      { cursor: pointer; }
  .cursor-dot,
  .cursor-ring { display: none; }
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* ── Typography ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  font-weight: 400;
}
.subhead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.body-lg {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.75rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: padding .5s, background .6s, box-shadow .5s;
}
.nav.scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(122,46,18,0.08);
  border-bottom: 1px solid rgba(122,46,18,0.08);
}
.nav.scrolled .nav__logo         { color: var(--primary); }
.nav.scrolled .nav__logo:hover   { color: var(--accent); }
.nav.scrolled .nav__link         { color: rgba(122,46,18,0.7); }
.nav.scrolled .nav__link:hover   { color: var(--accent); }
.nav.scrolled .nav__hamburger span { background: rgba(122,46,18,0.7); }

.nav__logo {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.15em;
  font-style: italic;
  transition: color .3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav__logo:hover { color: var(--gold); }

.nav__left,
.nav__right {
  display: none;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .nav__left  { display: flex; }
  .nav__right { display: flex; }
}

.nav__links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .nav__links { display: flex; } }

.nav__link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 2px;
  transition: color .3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .4s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--accent-light); }

.nav__cta {
  display: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,75,0.65);
  background: transparent;
  padding: 0.7rem 1.6rem;
  border-radius: 1px;
  transition: background .3s, color .3s, border-color .3s;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .nav__cta { display: block; } }
.nav__cta:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}
@media (min-width: 768px) { .nav__hamburger { display: none; } }
.nav__hamburger span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.8);
  transition: transform .3s, opacity .3s, width .3s;
}
.nav__hamburger span:nth-child(2) { width: 70%; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  font-style: italic;
  transition: color .3s;
}
.nav__mobile a:hover { color: var(--gold); }

/* ── Hero ── */
.hero-lg {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-lg__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 10s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-lg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,16,8,0.35) 0%, rgba(30,16,8,0.92) 100%);
  z-index: 1;
}
.hero-lg__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-lg__kicker {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-lg__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8.5vw, 7.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 3rem;
  word-break: keep-all;
}
.hero-lg__rule {
  width: 1px;
  height: 4.5rem;
  background: rgba(212,168,75,0.4);
  margin: 0 auto 3rem;
}
.hero-lg__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(176,169,162,0.3);
  padding-bottom: 0.4rem;
  transition: color 0.5s, border-color 0.5s;
}
.hero-lg__cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Story Section ── */
.story-section { background: var(--bg); border-bottom: 1px solid var(--border); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 5fr 7fr; gap: 6rem; }
}
.story-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
}
.story-img:hover img { transform: scale(1.03); }
.story-eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.story-rule {
  width: 2.5rem;
  height: 1px;
  background: var(--border-gold);
  margin-bottom: 2rem;
}
.story-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 2rem;
  font-style: italic;
}
.story-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 2.1;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
}
.story-badge__line {
  width: 2rem;
  height: 1px;
  background: rgba(212,168,75,0.4);
}
.story-badge__text {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.story-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid rgba(122,46,18,0.25);
  padding-bottom: 0.3rem;
  transition: color 0.4s, border-color 0.4s;
  margin-top: 0.5rem;
}
.story-cta:hover { color: var(--accent); border-color: var(--accent); }

/* ── Dining Section ── */
.dining-section { background: var(--bg); }
.dining-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .dining-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.dining-eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.dining-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.dining-season {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.dining-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .dining-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 1024px) { .dining-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.dining-card {
  display: block;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.dining-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 1.5rem;
}
.dining-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
}
.dining-card:hover .dining-card__img-wrap img { transform: scale(1.05); }
.dining-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-dim);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.dining-card:hover .dining-card__img-wrap::after { opacity: 1; }
.dining-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.dining-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.05em;
}
.dining-card__num {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.dining-card:hover .dining-card__num { color: var(--accent-light); }
.dining-card__desc {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-top: 0.75rem;
}
.dining-more {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.dining-more a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 1rem 3rem;
  transition: border-color 0.5s, color 0.5s;
}
.dining-more a:hover { border-color: var(--accent); color: var(--accent-light); }

/* ── Space Split ── */
.space-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 50vh;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .space-split { grid-template-columns: 1fr 1fr; min-height: 70vh; }
}
.space-split__img {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  min-height: 50vw;
}
@media (min-width: 768px) { .space-split__img { min-height: auto; } }
.space-split__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.6s, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.space-split:hover .space-split__img img { opacity: 0.8; transform: scale(1.02); }
.space-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  background: var(--bg);
}
@media (min-width: 768px) { .space-split__text { padding: 5rem 4rem; } }
@media (min-width: 1200px) { .space-split__text { padding: 6rem 6rem; } }
.space-split__eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.space-split__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 2rem;
  font-style: italic;
}
.space-split__body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 2.1;
  letter-spacing: 0.02em;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.space-split__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid rgba(212,168,75,0.4);
  padding-bottom: 0.3rem;
  transition: color 0.4s, border-color 0.4s;
}
.space-split__link:hover { color: var(--accent-light); border-color: var(--accent); }

/* ── Reviews Compact ── */
.reviews-compact { background: var(--surface); }
.reviews-compact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .reviews-compact__inner { grid-template-columns: 1fr 1fr; } }
.rev-stats { display: flex; gap: 3rem; }
.rev-stat__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.rev-stat__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.rev-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.rev-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  transition: border-color 0.3s, color 0.3s;
}
.rev-tag:hover { border-color: var(--border-accent); color: var(--accent-light); }
.rev-tag__check { color: var(--gold); font-size: 0.625rem; }

/* ── FAQ v2 ── */
.faq-v2 { background: var(--bg); }
.faq-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) { .faq-v2__grid { grid-template-columns: 4fr 8fr; gap: 6rem; } }
.faq-v2__aside { position: sticky; top: 6rem; align-self: start; }
.faq-v2__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.35;
  margin: 1.5rem 0;
  font-style: italic;
}
.faq-v2__sub {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
}
.faq-v2__cta {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(212,168,75,0.4);
  padding: 0.8rem 2rem;
  transition: border-color 0.4s, color 0.4s, background 0.4s;
}
.faq-v2__cta:hover { border-color: var(--accent); color: var(--white); background: var(--accent); }
.faq-v2__list { border-top: 1px solid var(--border); }
.faq-v2__item { border-bottom: 1px solid var(--border); }
.faq-v2__q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--body);
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.faq-v2__q:hover { color: var(--accent); }
.faq-v2__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, transform 0.4s;
}
.faq-v2__item.open .faq-v2__icon {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: rotate(45deg);
  background: var(--accent-dim);
}
.faq-v2__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.faq-v2__a-inner {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 2;
  letter-spacing: 0.02em;
  padding-bottom: 1.5rem;
}

/* ── Map v2 ── */
.map-v2 { background: var(--surface); }
.map-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .map-v2__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.map-v2__embed {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--primary-mid);
}
.map-v2__embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) sepia(0.15) brightness(1.02) saturate(0.9); }
.map-info__row {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.map-info__row:first-child { padding-top: 0; }
.map-info__icon-v2 { font-size: 0.875rem; flex-shrink: 0; margin-top: 0.1rem; }
.map-info__label-v2 {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.3rem;
}
.map-info__text-v2 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}
.map-info__sub { font-size: 0.75rem; color: rgba(122,96,80,0.6); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--primary);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: var(--section-py) var(--px);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'VITAL VIBES';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-style: italic;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cta-banner__eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}
.cta-banner__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-style: italic;
  word-break: keep-all;
}
.cta-banner__sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250,245,238,0.55);
  line-height: 2;
  margin-bottom: 3rem;
  word-break: keep-all;
}
.cta-banner__btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  transition: background 0.4s, color 0.4s;
}
.cta-banner__btn:hover { background: var(--accent-light); color: var(--white); }
.cta-banner__online {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(250,245,238,0.4);
  letter-spacing: 0.1em;
}
.cta-banner__online a { color: rgba(250,245,238,0.5); transition: color 0.3s; }
.cta-banner__online a:hover { color: var(--gold); }

/* ── Section utilities ── */
.sec-eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.sec-rule-v2 {
  width: 2.5rem;
  height: 1px;
  background: var(--border-gold);
  margin-bottom: 2rem;
}
.sec-h2-v2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--primary);
  font-style: italic;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color .3s, transform .2s, box-shadow .3s;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-in-out);
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--primary { background: var(--white); color: var(--primary); }
.btn--primary::before { background: var(--gold-light); }
.btn--primary:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn--outline::before { background: rgba(255,255,255,0.08); }
.btn--dark { background: var(--primary); color: var(--white); }
.btn--dark::before { background: var(--primary-mid); }
.btn--gold { background: var(--gold); color: var(--dark); }
.btn--gold::before { background: var(--gold-light); }
.btn--gold:hover { box-shadow: 0 8px 24px rgba(212,168,75,0.4); }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
}

/* ── Floating CTA ── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateX(calc(100% + 2rem));
  transition: transform .5s var(--ease-out);
}
.float-cta.visible { transform: translateX(0); }
.float-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
}
.float-cta__btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.float-cta__btn--tel { background: var(--primary); }
.float-cta__btn--sms { background: var(--gold); color: var(--dark); }
.float-cta__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: pulseRing 2.5s ease-out infinite;
}
@media (max-width: 767px) { .float-cta { display: none !important; } }

/* ── Heading line draw ── */
.heading-line {
  display: inline-block;
  position: relative;
  padding-bottom: 0.25rem;
}
.heading-line::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease-out);
}
.heading-line.is-visible::after { transform: scaleX(1); }

/* ── Trust strip ── */
.trust-strip { background: var(--primary); overflow: hidden; }
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1.5rem var(--px);
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.trust-item__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.trust-item__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.trust-strip__divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,0.12); }
@media (max-width: 479px) {
  .trust-strip__divider { display: none; }
  .trust-strip__inner { gap: 1.5rem; }
}

/* ── Touch fallback ── */
@media (hover: none) {
  .dining-card__img-wrap::after { opacity: 0 !important; }
}

/* ── Map embed mobile ── */
@media (max-width: 767px) { .map-v2__embed { aspect-ratio: 16/10; } }

/* ── H1 line reveal ── */
.h1-line { display: block; overflow: hidden; }
.h1-line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.h1-line__inner.is-up { transform: translateY(0); }

/* ── Img badge ── */
.img-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(30,16,8,0.68) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: 0.575rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,245,238,0.9);
  z-index: 3;
  pointer-events: none;
}

/* ── map info (about page) ── */
.map-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.map-info__item:last-child { border-bottom: none; margin-bottom: 0; }
.map-info__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; color: var(--primary); }
.map-info__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.map-info__text { font-size: 0.9375rem; color: var(--body); line-height: 1.6; }
.map-embed { width: 100%; aspect-ratio: 4/3; background: var(--surface); border: 1px solid var(--border); overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }
@media (max-width: 767px) { .map-embed { aspect-ratio: 16/10; } }

/* ── CTA section (about page) ── */
.cta-section { background: var(--primary); text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: 'VITAL VIBES';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-style: italic;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cta-section .headline { color: var(--white); margin-bottom: 1rem; }
.cta-section .body-lg { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 2.5rem; }
.cta-section .cta-divider { width: 3rem; height: 1px; background: var(--gold); margin: 1.5rem auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 480px) { .cta-buttons { flex-direction: row; justify-content: center; } }

/* ── Print ── */
@media print {
  .nav, .cursor-dot, .cursor-ring, .float-cta, .back-top,
  .progress-bar, .scroll-indicator { display: none !important; }
  .hero-lg { height: auto; min-height: 0; padding: 2rem 0; }
  .hero-lg__bg { position: static; height: auto; }
  .hero-lg__overlay { display: none; }
  body { color: #000; background: #fff; cursor: auto; }
  a { color: inherit; text-decoration: underline; }
}
