/* =====================================================
   奈韻 NAYUN Brunch Studio — styles.css
   Fonts:
     --f-display : Playfair Display (標題/英文展示)
     --f-body    : Plus Jakarta Sans (UI / 短文)
     --f-tc      : Noto Sans TC (繁體中文內文)
   ===================================================== */

/* ── Design Tokens ─────────────────────────────────── */
:root {
  /* Colors — warm apricot/peach palette */
  --c-base:       #FEFAF5;   /* 主底色：暖米白 */
  --c-surface:    #F7EFE5;   /* 卡片/區塊底 */
  --c-surface-2:  #F0E5D8;   /* 深一階 */
  --c-apricot:    #EDD9C5;   /* 杏色強調 */
  --c-peach:      #E0BEA8;   /* 霧桃色 */
  --c-mocha:      #C49A78;   /* 摩卡棕（次強調） */
  --c-caramel:    #A67C55;   /* 焦糖（按鈕/hover） */
  --c-sage:       #9AB39A;   /* 鼠尾草綠（少量點綴） */

  /* Text */
  --c-heading:    #2C1A0C;   /* 深棕黑（標題） */
  --c-body:       #5A3A24;   /* 暖棕（內文） */
  --c-mid:        #8A6450;   /* 中灰棕（描述） */
  --c-muted:      #B89A88;   /* 淡文字 */
  --c-white:      #FFFFFF;

  /* Brand */
  --c-line:       #06C755;
  --c-line-dark:  #04A845;

  /* Badge colors */
  --c-badge-hot:      #D4785A;
  --c-badge-photo:    #7A9E8A;
  --c-badge-light:    #8A9BC4;
  --c-badge-seasonal: #C4966A;
  --c-badge-pop:      #C4786A;

  /* Typography */
  --f-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --f-tc:       'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;

  /* Font sizes (mobile-first, fluid) */
  --fz-xs:   0.75rem;   /* 12px */
  --fz-sm:   0.875rem;  /* 14px */
  --fz-base: 1rem;      /* 16px */
  --fz-md:   1.125rem;  /* 18px */
  --fz-lg:   1.25rem;   /* 20px */
  --fz-xl:   1.5rem;    /* 24px */
  --fz-2xl:  1.875rem;  /* 30px */
  --fz-3xl:  2.25rem;   /* 36px */
  --fz-4xl:  3rem;      /* 48px */
  --fz-5xl:  3.75rem;   /* 60px */
  --fz-6xl:  5rem;      /* 80px */

  /* Line heights */
  --lh-tight:  1.2;
  --lh-snug:   1.4;
  --lh-normal: 1.6;
  --lh-loose:  1.8;

  /* Letter spacing */
  --ls-tight:  -0.02em;
  --ls-wide:   0.08em;
  --ls-wider:  0.15em;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Border radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(90,58,36,.06);
  --shadow-sm: 0 2px 10px rgba(90,58,36,.08);
  --shadow-md: 0 4px 24px rgba(90,58,36,.10);
  --shadow-lg: 0 8px 40px rgba(90,58,36,.13);

  /* Transitions */
  --t-fast: 160ms ease;
  --t-mid:  280ms ease;
  --t-slow: 500ms ease;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-tc), var(--f-body);
  font-size: var(--fz-base);
  line-height: var(--lh-normal);
  color: var(--c-body);
  background: var(--c-base);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea {
  font: inherit;
  font-family: var(--f-tc), var(--f-body);
  border: none;
  outline: none;
  background: none;
}
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* Focus visible */
:focus-visible { outline: 2px solid var(--c-mocha); outline-offset: 3px; border-radius: var(--r-sm); }

/* ── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Utility: Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75em 1.5em;
  border-radius: var(--r-pill);
  font-family: var(--f-tc), var(--f-body);
  font-size: var(--fz-sm);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-caramel);
  color: var(--c-white);
  box-shadow: 0 3px 12px rgba(166,124,85,.35);
}
.btn--primary:hover { background: #8f6442; box-shadow: 0 5px 18px rgba(166,124,85,.45); }

.btn--outline {
  border: 1.5px solid var(--c-peach);
  color: var(--c-body);
  background: transparent;
}
.btn--outline:hover { background: var(--c-surface); border-color: var(--c-mocha); }

.btn--ghost {
  background: rgba(254,250,245,.85);
  backdrop-filter: blur(8px);
  color: var(--c-heading);
  border: 1.5px solid rgba(196,154,120,.3);
}
.btn--ghost:hover { background: var(--c-surface); }

.btn--line {
  background: var(--c-line);
  color: var(--c-white);
}
.btn--line:hover { background: var(--c-line-dark); }

.btn--text {
  color: var(--c-caramel);
  padding-inline: 0;
  font-weight: 500;
}
.btn--text:hover { color: var(--c-heading); }

.btn--sm { padding: 0.55em 1.2em; font-size: var(--fz-xs); }
.btn--lg { padding: 0.9em 2em; font-size: var(--fz-base); }
.btn--full { width: 100%; }

/* ── Utility: Typography helpers ───────────────────── */
.label-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-mocha);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(var(--fz-2xl), 4vw, var(--fz-4xl));
  font-weight: 400;
  line-height: var(--lh-tight);
  color: var(--c-heading);
  letter-spacing: var(--ls-tight);
}
.section-title em {
  font-style: italic;
  color: var(--c-caramel);
}

/* ── Utility: Badges ───────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.2em 0.7em;
  border-radius: var(--r-pill);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge--hot      { background: rgba(212,120,90,.12); color: var(--c-badge-hot); }
.badge--photo    { background: rgba(122,158,138,.12); color: var(--c-badge-photo); }
.badge--light    { background: rgba(138,155,196,.12); color: var(--c-badge-light); }
.badge--seasonal { background: rgba(196,150,106,.12); color: var(--c-badge-seasonal); }
.badge--pop      { background: rgba(196,120,106,.12); color: var(--c-badge-pop); }

/* ── Scroll reveal ─────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)), transform 0.65s ease calc(var(--delay, 0s));
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stars { color: #C9A370; font-size: var(--fz-sm); letter-spacing: 0.05em; }

/* =====================================================
   NAV
   ===================================================== */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t-mid), box-shadow var(--t-mid), backdrop-filter var(--t-mid);
}
.nav-wrap.scrolled {
  background: rgba(254,250,245,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(90,58,36,.08);
}
.nav {
  display: flex;
  align-items: center;
  height: 64px;
  gap: var(--sp-6);
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav__logo-kr {
  font-family: var(--f-tc);
  font-size: var(--fz-md);
  font-weight: 500;
  color: var(--c-heading);
  letter-spacing: 0.05em;
}
.nav__logo-en {
  font-family: var(--f-display);
  font-size: var(--fz-xs);
  font-weight: 400;
  letter-spacing: var(--ls-wider);
  color: var(--c-mocha);
  text-transform: uppercase;
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-5);
  margin-left: auto;
}
.nav__link {
  font-size: var(--fz-sm);
  font-weight: 400;
  color: var(--c-mid);
  transition: color var(--t-fast);
  letter-spacing: 0.02em;
}
.nav__link:hover { color: var(--c-heading); }
.nav__cta { display: none; align-items: center; gap: var(--sp-2); flex-shrink: 0; }
.nav__toggle {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-heading);
  transition: transform var(--t-fast);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__toggle { display: none; }
}

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-base);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: var(--fz-xl);
  color: var(--c-mid);
  padding: var(--sp-2);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}
.mobile-menu a {
  font-family: var(--f-display);
  font-size: var(--fz-xl);
  color: var(--c-heading);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 240px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100svh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--c-base);
  position: relative;
  overflow: hidden;
}

/* Subtle paper grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Blob light gradient */
.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse at 70% 30%, rgba(237,217,197,.55) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__left,
.hero__right { position: relative; z-index: 1; }

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-12) var(--gutter) var(--sp-8);
  gap: var(--sp-6);
}

.hero__badge-open {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(196,154,120,.12);
  border: 1px solid rgba(196,154,120,.3);
  border-radius: var(--r-pill);
  padding: 0.35em 0.9em;
  font-size: var(--fz-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-caramel);
  width: fit-content;
}

.hero__dot {
  width: 7px; height: 7px;
  background: #7fc47f;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.6; transform:scale(1.3); }
}

.hero__greeting {
  font-family: var(--f-body);
  font-size: var(--fz-sm);
  color: var(--c-muted);
  letter-spacing: var(--ls-wide);
  font-weight: 300;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(var(--fz-3xl), 8vw, var(--fz-6xl));
  font-weight: 400;
  line-height: var(--lh-tight);
  color: var(--c-heading);
  letter-spacing: var(--ls-tight);
}
.hero__title em {
  font-style: italic;
  color: var(--c-caramel);
}

.hero__sub {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  letter-spacing: 0.04em;
  line-height: var(--lh-snug);
}

.hero__ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fz-xs);
  color: var(--c-mid);
  background: var(--c-surface);
  border-radius: var(--r-pill);
  padding: 0.3em 0.8em;
  letter-spacing: 0.02em;
}
.hero__trust-stars { color: #C9A370; }

.hero__right {
  padding: 0 var(--gutter) var(--sp-10);
}

.hero__mosaic {
  display: grid;
  grid-template-rows: auto auto;
  gap: var(--sp-3);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero__mosaic-main img {
  width: 100%;
  height: 280px;
  border-radius: var(--r-lg);
  object-fit: cover;
}
.hero__mosaic-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.hero__mosaic-pair img {
  width: 100%;
  height: 160px;
  border-radius: var(--r-md);
  object-fit: cover;
  transition: transform var(--t-slow);
}
.hero__mosaic-pair img:hover { transform: scale(1.03); }

.hero__rating-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-6);
  margin-top: var(--sp-3);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.hero__rating-num {
  font-family: var(--f-display);
  font-size: var(--fz-3xl);
  font-weight: 700;
  color: var(--c-heading);
  line-height: 1;
}
.hero__rating-label {
  font-size: var(--fz-xs);
  color: var(--c-muted);
  letter-spacing: 0.05em;
  margin-top: var(--sp-1);
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100svh;
  }
  .hero__left { padding: 0 var(--sp-8) 0 var(--gutter); }
  .hero__right { padding: var(--sp-8) var(--gutter) var(--sp-8) 0; }
  .hero__mosaic-main img { height: 380px; }
  .hero__mosaic-pair img { height: 220px; }
  .hero__rating-badge {
    position: absolute;
    bottom: var(--sp-6); left: -var(--sp-6);
    width: 130px;
    background: rgba(254,250,245,.92);
    backdrop-filter: blur(12px);
  }
}

@media (min-width: 1024px) {
  .hero { grid-template-columns: 58% 42%; }
  .hero__left { padding: 0 var(--sp-12) 0 calc((100vw - var(--max-w)) / 2 + var(--gutter)); }
  .hero__mosaic-main img { height: 450px; }
}

/* =====================================================
   TICKER
   ===================================================== */
.ticker {
  background: var(--c-surface);
  border-top: 1px solid var(--c-apricot);
  border-bottom: 1px solid var(--c-apricot);
  overflow: hidden;
  padding-block: var(--sp-3);
}
.ticker__track {
  display: flex;
  gap: var(--sp-5);
  white-space: nowrap;
  animation: ticker-run 28s linear infinite;
  width: max-content;
  font-size: var(--fz-sm);
  color: var(--c-mid);
  letter-spacing: var(--ls-wide);
  font-family: var(--f-body);
}
.ticker__dot {
  color: var(--c-apricot);
  font-weight: 300;
}
@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation-play-state: paused; }
}

/* =====================================================
   STATS
   ===================================================== */
.stats {
  padding: var(--sp-16) 0;
  background: var(--c-surface);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-apricot);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stats__item {
  background: var(--c-surface);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}
.stats__val {
  font-family: var(--f-display);
  font-size: clamp(var(--fz-3xl), 5vw, var(--fz-5xl));
  font-weight: 700;
  color: var(--c-heading);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}
.stats__val span:last-child {
  font-size: clamp(var(--fz-xl), 3vw, var(--fz-2xl));
  font-weight: 400;
  color: var(--c-mocha);
}
.stats__item p {
  font-size: var(--fz-xs);
  color: var(--c-muted);
  letter-spacing: var(--ls-wide);
  margin-top: var(--sp-2);
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================
   FEATURES — horizontal photo-card rail
   ===================================================== */
.features { padding: var(--sp-20) 0; }
.features__head { margin-bottom: var(--sp-10); }
.features__head .section-title { margin-top: var(--sp-2); }

.features__rail-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: var(--gutter);
  padding-bottom: var(--sp-4);
  cursor: grab;
}
.features__rail-wrap::-webkit-scrollbar { display: none; }
.features__rail-wrap:active { cursor: grabbing; }

.features__rail {
  display: flex;
  gap: var(--sp-5);
  width: max-content;
  scroll-snap-type: x mandatory;
}

.feat-card {
  scroll-snap-align: start;
  flex: 0 0 260px;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feat-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.feat-card:hover .feat-card__img img { transform: scale(1.05); }

.feat-card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
}
.feat-card__body h3 {
  font-family: var(--f-tc);
  font-size: var(--fz-base);
  font-weight: 500;
  color: var(--c-heading);
  margin-bottom: var(--sp-2);
}
.feat-card__body p {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  line-height: var(--lh-snug);
}

/* =====================================================
   MENU — bento grid
   ===================================================== */
.menu { padding: var(--sp-20) 0; background: var(--c-surface-2, #F0E5D8); }
.menu__head { margin-bottom: var(--sp-8); }

/* Filter tabs */
.menu-tabs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-8);
  scroll-snap-type: x mandatory;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.tab {
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 0.5em 1.2em;
  border-radius: var(--r-pill);
  font-size: var(--fz-sm);
  font-weight: 500;
  color: var(--c-mid);
  background: var(--c-surface);
  border: 1.5px solid transparent;
  transition: all var(--t-fast);
  cursor: pointer;
  letter-spacing: 0.03em;
}
.tab:hover { color: var(--c-caramel); border-color: var(--c-peach); }
.tab.active {
  background: var(--c-caramel);
  color: var(--c-white);
  border-color: var(--c-caramel);
}

/* Bento grid */
.menu-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.menu-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid), box-shadow var(--t-mid), opacity var(--t-mid);
}
.menu-card.hidden { display: none; }
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.menu-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.menu-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.menu-card:hover .menu-card__img-wrap img { transform: scale(1.04); }

.menu-card__overlay {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
}

.menu-card__body {
  padding: var(--sp-5);
}
.menu-card__tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-3); }
.menu-card__body h3 {
  font-family: var(--f-tc);
  font-size: var(--fz-base);
  font-weight: 500;
  color: var(--c-heading);
  margin-bottom: var(--sp-1);
}
.menu-card__en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--fz-xs);
  color: var(--c-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-2);
}
.menu-card__desc {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-3);
}
.menu-card__foot {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.price {
  font-family: var(--f-display);
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--c-caramel);
}
.menu-card__note {
  font-size: var(--fz-xs);
  color: var(--c-muted);
}

/* Desktop bento layout */
@media (min-width: 640px) {
  .menu-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .menu-bento { grid-template-columns: repeat(12, 1fr); gap: var(--sp-5); }
  .menu-card         { grid-column: span 4; }
  .menu-card--featured { grid-column: span 5; grid-row: span 2; }
  .menu-card--featured .menu-card__img-wrap { aspect-ratio: 3/4; }
  .menu-card--wide   { grid-column: span 7; }
  .menu-card--wide .menu-card__img-wrap { aspect-ratio: 16/7; }
  .menu-card--tall   { grid-column: span 4; grid-row: span 2; }
  .menu-card--tall .menu-card__img-wrap { aspect-ratio: 3/5; }
}

/* =====================================================
   STORY — editorial layout
   ===================================================== */
.story { padding: var(--sp-20) 0; }

.story__pull {
  background: var(--c-heading);
  padding: var(--sp-12) 0;
  margin-bottom: var(--sp-16);
}
.pull-quote {
  font-family: var(--f-display);
  font-size: clamp(var(--fz-xl), 4vw, var(--fz-4xl));
  font-weight: 400;
  color: var(--c-surface);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}
.pull-quote em { font-style: italic; color: var(--c-apricot); }
.pull-quote p + p { margin-top: var(--sp-2); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}

.story__imgs {
  position: relative;
}
.story__img-main {
  width: 100%;
  height: 400px;
  border-radius: var(--r-xl);
  object-fit: cover;
}
.story__img-accent {
  position: absolute;
  bottom: -var(--sp-6);
  right: var(--sp-4);
  width: 140px;
  height: 175px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  display: none;
}

.story__text { display: flex; flex-direction: column; gap: var(--sp-4); justify-content: center; }
.story__text h2 { margin-bottom: var(--sp-2); }
.story__text p { color: var(--c-mid); line-height: var(--lh-loose); }
.story__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-2); }

@media (min-width: 768px) {
  .story__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .story__img-accent { display: block; }
  .story__img-main { height: 520px; }
}

/* =====================================================
   PHOTO SPOTS
   ===================================================== */
.spots { padding: var(--sp-20) 0; background: var(--c-surface); }
.spots__head { margin-bottom: var(--sp-10); }
.spots__hint {
  font-size: var(--fz-sm);
  color: var(--c-muted);
  margin-top: var(--sp-3);
  font-style: italic;
}

.spots__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.spot-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
}
.spot-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--t-slow);
  display: block;
}
.spot-card:hover img { transform: scale(1.04); }

.spot-card__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5);
  background: linear-gradient(transparent, rgba(44,26,12,.65));
  color: var(--c-white);
}
.spot-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--fz-xl);
  line-height: 1;
  opacity: .6;
  margin-bottom: var(--sp-1);
}
.spot-card__caption p {
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: var(--fz-sm);
  line-height: 1.3;
}
.spot-card__caption small {
  font-size: var(--fz-xs);
  opacity: .75;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .spots__grid {
    grid-template-columns: 1fr 1fr;
  }
  .spot-card--tall { grid-row: span 2; }
  .spot-card--tall img { height: 100%; min-height: 540px; }
  .spots__col-right { display: contents; }
}
@media (min-width: 900px) {
  .spots__grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* =====================================================
   COFFEE & DESSERT — alternating splits
   ===================================================== */
.coffee-section { padding: var(--sp-20) 0; }
.coffee-section__head { margin-bottom: var(--sp-12); }

.coffee-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid var(--c-apricot);
  margin-bottom: var(--sp-16);
}
.coffee-split:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.coffee-split__img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.coffee-split__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  justify-content: center;
}
.coffee-split__text h3 {
  font-family: var(--f-display);
  font-size: clamp(var(--fz-xl), 3vw, var(--fz-3xl));
  font-weight: 400;
  color: var(--c-heading);
  line-height: var(--lh-snug);
}
.coffee-split__text h3 em { font-style: italic; color: var(--c-caramel); }
.coffee-split__text p { color: var(--c-mid); line-height: var(--lh-loose); }

.coffee-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.coffee-list li {
  font-size: var(--fz-sm);
  color: var(--c-body);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-apricot);
  letter-spacing: 0.02em;
}
.coffee-list li:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .coffee-split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .coffee-split--img-right .coffee-split__text { order: -1; }
  .coffee-split__img img { height: 420px; }
}

/* =====================================================
   PROCESS — zigzag numbered steps
   ===================================================== */
.process { padding: var(--sp-20) 0; background: var(--c-surface); }
.process__head { margin-bottom: var(--sp-12); }

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-4);
  align-items: start;
  position: relative;
}

.step__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--fz-4xl);
  font-weight: 700;
  color: var(--c-apricot);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  flex-shrink: 0;
}

.step__img {
  display: none;
}

.step__body h3 {
  font-family: var(--f-tc);
  font-size: var(--fz-md);
  font-weight: 500;
  color: var(--c-heading);
  margin-bottom: var(--sp-2);
  margin-top: var(--sp-2);
}
.step__body p {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  line-height: var(--lh-snug);
}

@media (min-width: 640px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .step__img { display: block; }
  .step__img img {
    width: 100%; height: 180px;
    object-fit: cover;
    border-radius: var(--r-lg);
    margin-bottom: var(--sp-3);
  }
  .step__num { font-size: var(--fz-3xl); }
}

@media (min-width: 900px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================
   REVIEWS — CSS columns masonry
   ===================================================== */
.reviews { padding: var(--sp-20) 0; }
.reviews__head { margin-bottom: var(--sp-10); }

.reviews-masonry {
  columns: 1;
  column-gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.review-card {
  break-inside: avoid;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.review-card__head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-apricot);
  color: var(--c-caramel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fz-base);
  flex-shrink: 0;
}
.review-card__head strong {
  display: block;
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--c-heading);
  line-height: 1.2;
}
.review-card__platform {
  margin-left: auto;
  font-size: var(--fz-xs);
  color: var(--c-muted);
  background: var(--c-surface-2, #F0E5D8);
  padding: 0.2em 0.6em;
  border-radius: var(--r-pill);
}
.review-card p {
  font-size: var(--fz-sm);
  color: var(--c-body);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-3);
}
.review-card time {
  font-size: var(--fz-xs);
  color: var(--c-muted);
  letter-spacing: 0.04em;
}

.reviews__more { text-align: center; }

@media (min-width: 640px) { .reviews-masonry { columns: 2; } }
@media (min-width: 900px) { .reviews-masonry { columns: 3; } }

/* =====================================================
   PROMO
   ===================================================== */
.promo {
  padding: var(--sp-20) 0;
  background: var(--c-surface);
}
.promo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
.promo-card {
  background: var(--c-base);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1.5px solid var(--c-apricot);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow var(--t-mid);
}
.promo-card:hover { box-shadow: var(--shadow-sm); }
.promo-card__icon { font-size: 2rem; }
.promo-card h3 {
  font-family: var(--f-tc);
  font-size: var(--fz-md);
  font-weight: 500;
  color: var(--c-heading);
}
.promo-card p {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  line-height: var(--lh-snug);
  flex: 1;
}
.promo-card--cta {
  background: var(--c-heading);
  border-color: var(--c-heading);
  color: var(--c-surface);
}
.promo-card--cta h3 { color: var(--c-surface); }
.promo-card--cta p { color: var(--c-apricot); }

@media (min-width: 640px) { .promo__grid { grid-template-columns: repeat(2, 1fr); } }

/* =====================================================
   FAQ — large number accordion
   ===================================================== */
.faq { padding: var(--sp-20) 0; }
.faq__head { margin-bottom: var(--sp-10); }
.faq__list { display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--c-apricot);
  background: var(--c-base);
  transition: box-shadow var(--t-fast);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--c-peach); }

.faq-item__q {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  user-select: none;
  transition: background var(--t-fast);
}
.faq-item__q:hover { background: var(--c-surface); }

.faq-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--fz-xl);
  color: var(--c-apricot);
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
  line-height: 1;
}
.faq-item__q span:nth-child(2) {
  flex: 1;
  font-weight: 500;
  color: var(--c-heading);
  font-size: var(--fz-base);
}
.faq-icon {
  font-size: var(--fz-lg);
  color: var(--c-muted);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--c-caramel); }

.faq-item__a {
  padding: 0 var(--sp-6) var(--sp-5) calc(var(--sp-6) + 2.5rem + var(--sp-4));
}
.faq-item__a p {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  line-height: var(--lh-loose);
}

/* =====================================================
   LOCATION
   ===================================================== */
.location { padding: var(--sp-20) 0; background: var(--c-surface); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}
.location__info h2 { margin-bottom: var(--sp-8); }

.location-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-apricot);
}
.location-item:last-of-type { border-bottom: none; }
.location-item__icon { font-size: var(--fz-lg); flex-shrink: 0; }
.location-item strong {
  display: block;
  font-size: var(--fz-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-mocha);
  font-weight: 600;
  margin-bottom: var(--sp-1);
}
.location-item p {
  font-size: var(--fz-sm);
  color: var(--c-body);
  line-height: var(--lh-snug);
}
.location-item a { color: var(--c-caramel); }
.location__btns { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-6); }

/* Map placeholder */
.map-placeholder {
  background: var(--c-base);
  border-radius: var(--r-xl);
  border: 2px dashed var(--c-apricot);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.map-pin { font-size: 2.5rem; }
.map-placeholder__inner p {
  font-weight: 500;
  color: var(--c-heading);
  font-size: var(--fz-md);
}
.map-placeholder__inner small {
  font-size: var(--fz-xs);
  color: var(--c-muted);
}

.location__social {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.location__social p {
  font-size: var(--fz-xs);
  color: var(--c-muted);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}
.location__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-mid);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background var(--t-fast), color var(--t-fast);
}
.location__social a:hover { background: var(--c-caramel); color: var(--c-white); }

@media (min-width: 768px) {
  .location__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* =====================================================
   BOOKING FORM — reservation card aesthetic
   ===================================================== */
.booking {
  padding: var(--sp-20) 0;
  background: var(--c-heading);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(196,154,120,.15) 0%, transparent 70%);
  pointer-events: none;
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  position: relative;
  z-index: 1;
}
.booking__text .label-tag { color: var(--c-apricot); }
.booking__text h2 { color: var(--c-surface); }
.booking__text h2 em { color: var(--c-apricot); }
.booking__text p { color: rgba(240,229,216,.7); font-size: var(--fz-sm); margin-top: var(--sp-2); }
.booking__hint {
  background: rgba(196,154,120,.12);
  border: 1px solid rgba(196,154,120,.3);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-top: var(--sp-4);
}
.booking__hint p { color: var(--c-apricot); font-size: var(--fz-sm); }
.booking__hint strong { color: var(--c-surface); }

/* Form card */
.booking__form-wrap {
  background: var(--c-base);
  border-radius: var(--r-2xl, 48px);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-lg);
}

.booking-form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group label {
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-mocha);
}
.form-group label span { color: var(--c-badge-hot); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75em 1em;
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-apricot);
  background: var(--c-surface);
  color: var(--c-heading);
  font-size: var(--fz-sm);
  line-height: var(--lh-normal);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-mocha);
  box-shadow: 0 0 0 3px rgba(196,154,120,.18);
  outline: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B89A88' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-muted); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #d4785a; }

.field-error {
  font-size: var(--fz-xs);
  color: var(--c-badge-hot);
  display: none;
}
.field-error.show { display: block; }

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Success state */
.booking-success {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.booking-success__icon { font-size: 3rem; }
.booking-success h3 {
  font-family: var(--f-display);
  font-size: var(--fz-2xl);
  color: var(--c-heading);
}
.booking-success p { font-size: var(--fz-sm); color: var(--c-mid); }

@media (min-width: 768px) {
  .booking__inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--c-base);
  border-top: 1px solid var(--c-apricot);
  padding: var(--sp-16) 0 var(--sp-10);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}

.footer__logo {
  font-family: var(--f-tc);
  font-size: var(--fz-lg);
  font-weight: 500;
  color: var(--c-heading);
  margin-bottom: var(--sp-2);
}
.footer__logo span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--fz-base);
  color: var(--c-mocha);
  margin-left: var(--sp-1);
}
.footer__tagline {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  margin-bottom: var(--sp-4);
  font-style: italic;
  letter-spacing: 0.03em;
}
.footer__copy {
  font-size: var(--fz-xs);
  color: var(--c-muted);
  line-height: var(--lh-snug);
}

.footer__nav h3,
.footer__info h3 {
  font-size: var(--fz-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-mocha);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.footer__nav ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__nav a {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  transition: color var(--t-fast);
}
.footer__nav a:hover { color: var(--c-caramel); }

.footer__info p {
  font-size: var(--fz-sm);
  color: var(--c-mid);
  margin-bottom: var(--sp-2);
  line-height: var(--lh-snug);
}
.footer__info a { color: var(--c-caramel); }

.footer__social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.footer__social a {
  padding: 0.4em 0.9em;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-apricot);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-mid);
  transition: all var(--t-fast);
}
.footer__social a:hover { background: var(--c-caramel); border-color: var(--c-caramel); color: var(--c-white); }

@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }

/* =====================================================
   BACK TO TOP + MOBILE STICKY CTA
   ===================================================== */
.back-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-caramel);
  color: var(--c-white);
  font-size: var(--fz-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--t-mid), transform var(--t-mid);
  pointer-events: none;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom, 0px));
  gap: var(--sp-2);
  background: rgba(254,250,245,.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--c-apricot);
  z-index: 800;
  transform: translateY(100%);
  transition: transform var(--t-mid);
}
.mobile-cta.visible { transform: translateY(0); }

@media (min-width: 768px) {
  .mobile-cta { display: none; }
  .back-top { bottom: var(--sp-8); right: var(--sp-8); }
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */
@media (max-width: 639px) {
  .section-title { font-size: var(--fz-2xl); }
  .pull-quote { font-size: var(--fz-xl); }
  .hero__title { font-size: var(--fz-4xl); }
}

@media (min-width: 900px) {
  .features__head { padding-inline: 0; }
  .booking__form-wrap { padding: var(--sp-10); }
}

/* =====================================================
   PRINT / A11Y
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-up { opacity: 1; transform: none; }
}
