/* ============================================================
   Čajovna U zámku — styles.css (mobile-first base + desktop)
   Palette: ink + paper + bone with deep forest green accent
   ============================================================ */

:root {
  --ink: #0e120f;
  --ink-2: #1a1f1c;
  --paper: #f4f1ea;
  --bone: #e7e2d6;
  --bone-2: #ddd6c5;
  --leaf: #2f5d3a;
  --leaf-2: #244a2d;
  --moss: #5a8a5b;
  --rust: #b6603a;
  --line: rgba(14, 18, 15, 0.10);
  --line-soft: rgba(14, 18, 15, 0.06);
  --line-light: rgba(255, 255, 255, 0.10);

  --shadow-sm: 0 1px 2px rgba(14,18,15,0.05), 0 4px 14px rgba(14,18,15,0.06);
  --shadow-md: 0 2px 6px rgba(14,18,15,0.06), 0 14px 36px rgba(14,18,15,0.10);
  --shadow-lg: 0 4px 10px rgba(14,18,15,0.08), 0 28px 64px rgba(14,18,15,0.18);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --t-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container-pad: 20px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* --- Container --- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  max-width: 100%;
}

/* --- Typography --- */
.h2,
h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 5.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  color: var(--ink);
}
.h2--light { color: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--leaf);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--leaf);
  display: inline-block;
}
.eyebrow--light { color: var(--bone); }
.eyebrow--light::before { background: var(--bone); }

p { margin: 0 0 1em; }
.section__head { margin-bottom: 32px; max-width: 720px; }

/* --- Section base --- */
.section { padding: 64px 0; position: relative; }
.section--bone { background: var(--bone); }

/* --- Buttons --- */
.btn {
  --btn-bg: var(--leaf);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  min-height: 48px;
  cursor: pointer;
  transition: transform 240ms var(--t-spring), box-shadow 240ms var(--t-ease), background 200ms var(--t-ease), color 200ms var(--t-ease);
  box-shadow: 0 1px 2px rgba(14,18,15,0.10), 0 10px 22px rgba(47,93,58,0.30);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(14,18,15,0.10), 0 18px 30px rgba(47,93,58,0.34); background: var(--leaf-2); }
.btn:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(14,18,15,0.12); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: none;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.06);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.20); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: none;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }

/* --- Pills --- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  min-height: 40px;
  transition: transform 200ms var(--t-spring), background 180ms var(--t-ease), color 180ms var(--t-ease), border-color 180ms var(--t-ease);
  white-space: nowrap;
}
.pill--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.pill--ghost .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 4px rgba(90,138,91,0.18);
}
.pill--ghost.is-closed .dot { background: var(--rust); box-shadow: 0 0 0 4px rgba(182,96,58,0.18); }
.pill--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.pill--solid {
  background: var(--leaf);
  color: #fff;
  border: 1px solid var(--leaf);
}
.pill--solid:hover { background: var(--leaf-2); transform: translateY(-1px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background 260ms var(--t-ease), backdrop-filter 260ms var(--t-ease), border-color 260ms var(--t-ease), box-shadow 260ms var(--t-ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 30px rgba(14,18,15,0.06);
}
.nav:not(.is-stuck) { color: #fff; }
.nav:not(.is-stuck) .pill--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}
.nav:not(.is-stuck) .pill--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.10); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 64px;
}
.nav__links { display: none; }
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 4px;
  color: inherit;
  opacity: 0.85;
  transition: opacity 180ms var(--t-ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  transition: left 220ms var(--t-ease), right 220ms var(--t-ease);
}
.nav__links a:hover::after { left: 4px; right: 4px; }

.nav__cta {
  display: none;
  align-items: center;
  gap: 10px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand__leaf {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid currentColor;
  opacity: 0.9;
  flex-shrink: 0;
}
.nav.is-stuck .brand__leaf {
  border-color: var(--leaf);
  color: var(--leaf);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand__name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px;
  opacity: 0.75;
  color: var(--moss);
  white-space: nowrap;
}
.nav:not(.is-stuck) .brand__sub { color: #cfe6c8; opacity: 0.85; }

/* Burger */
.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 10px;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms var(--t-ease), opacity 180ms var(--t-ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 49;
  background: var(--paper);
  padding: 28px var(--container-pad) 100px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--t-ease), transform 260ms var(--t-ease);
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.drawer__nav a {
  display: block;
  padding: 16px 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__call {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: var(--leaf);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
  min-height: 52px;
  width: 100%;
  justify-content: center;
}
.drawer__addr { margin-top: 18px; color: rgba(14,18,15,0.65); font-size: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  margin-top: -200px;
  padding-top: 200px;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,18,15,0.55) 0%, rgba(14,18,15,0.30) 35%, rgba(14,18,15,0.85) 100%),
    radial-gradient(80% 70% at 70% 30%, rgba(47,93,58,0.35) 0%, rgba(14,18,15,0.0) 60%);
}
.hero__grain {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__steam {
  position: absolute;
  width: 80px;
  height: auto;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.55;
  pointer-events: none;
  display: none;
}
.steam {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: steamRise 5s linear infinite;
  transform-origin: 50% 100%;
}
.steam--b { animation-delay: 1.6s; animation-duration: 6s; }
@keyframes steamRise {
  0%   { stroke-dashoffset: 600; opacity: 0; transform: translateY(20px) scale(0.95); }
  20%  { opacity: 0.65; }
  100% { stroke-dashoffset: 0; opacity: 0; transform: translateY(-30px) scale(1.15); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  padding-top: 64px;
}
.hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  max-width: 14ch;
  color: #fff;
}
.hero__title .display { display: block; }
.hero__title .display--accent { color: #d8efce; }
.hero__title .display--accent em { font-style: italic; color: #fff; }
.hero__sub {
  max-width: 52ch;
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  margin-bottom: 26px;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

/* Hours strip */
.hero__strip {
  position: relative;
  z-index: 2;
  background: rgba(14,18,15,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.hero__strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}
.strip__cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.strip__cell:last-child { border-bottom: none; }
.strip__k {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.strip__v {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}

/* ============================================================
   PARALLAX BACKGROUND — applied to every light section
   ============================================================ */
.story,
.pillars,
.kakao,
.gallery,
.contact {
  position: relative;
  isolation: isolate;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.story::before,
.pillars::before,
.kakao::before,
.gallery::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(244,241,234,0.88) 0%, rgba(244,241,234,0.78) 50%, rgba(244,241,234,0.92) 100%);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
/* Slightly cooler/bone-tinted overlay where the original section was --bone,
   to preserve a hint of section rhythm */
.pillars::before,
.gallery::before {
  background:
    linear-gradient(180deg, rgba(231,226,214,0.90) 0%, rgba(231,226,214,0.80) 50%, rgba(231,226,214,0.93) 100%);
}

/* ============================================================
   STORY
   ============================================================ */
.story__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.story__art {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  padding: 24px 0;
}
.polaroid {
  position: relative;
  background: #fff;
  padding: 12px 12px 44px;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  transform: rotate(-2.5deg);
  max-width: 320px;
  transition: transform 400ms var(--t-spring);
}
.polaroid:hover { transform: rotate(-1.5deg) translateY(-4px); }
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}
.polaroid figcaption {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.7;
}
.polaroid--small {
  position: absolute;
  right: -4%;
  bottom: -8%;
  top: auto;
  transform: rotate(6deg);
  max-width: 150px;
  padding-bottom: 18px;
  display: none;
  z-index: 1;
}
.polaroid--small img { aspect-ratio: 3 / 4; }
.polaroid::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 18px; height: 18px;
  background: var(--rust);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.story__copy { display: flex; flex-direction: column; }
.stats {
  list-style: none;
  margin: 24px 0 0;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
}
.stats li { display: flex; flex-direction: column; gap: 2px; }
.stats__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 500;
  color: var(--leaf);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats__lab {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(14,18,15,0.65);
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
.pcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 22px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--t-spring), box-shadow 280ms var(--t-ease);
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pcard__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--bone-2);
  color: var(--leaf);
}
.pcard__h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.pcard__p {
  margin: 0;
  font-size: 15px;
  color: rgba(14,18,15,0.78);
}

/* ============================================================
   KAKAO
   ============================================================ */
.kakao__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.menu {
  list-style: none;
  margin: 6px 0 18px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.menu__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.menu__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.menu__dots {
  flex: 1;
  height: 1px;
  margin: 0 4px;
  background-image: radial-gradient(circle, rgba(14,18,15,0.35) 1px, transparent 1.6px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: bottom;
  align-self: end;
  margin-bottom: 6px;
  min-width: 24px;
}
.menu__tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 600;
  white-space: nowrap;
}
.pull {
  margin: 18px 0 0;
  padding: 22px 22px 22px 56px;
  background: var(--bone);
  border-left: 3px solid var(--leaf);
  border-radius: var(--r-md);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
  position: relative;
}
.pull::before {
  content: "“";
  position: absolute;
  left: 18px; top: 4px;
  font-size: 3.4rem;
  font-style: normal;
  color: var(--leaf);
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1;
}
.ftmark {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 8px;
  border: 1.5px solid var(--leaf);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--leaf);
  vertical-align: middle;
}

.kakao__art {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}
.frame {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bone);
}
.frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 600ms var(--t-ease);
}
.frame:hover img { transform: scale(1.03); }
.frame--lg img { aspect-ratio: 16 / 10; }
.frame--sm img { aspect-ratio: 16 / 10; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  gap: 8px;
}
.gitem {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bone);
  cursor: zoom-in;
}
.gitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 600ms var(--t-ease), filter 400ms var(--t-ease);
}
.gitem:hover img { transform: scale(1.05); filter: saturate(1.1) contrast(1.05); }
/* On mobile, no spans — keep clean 2-col tile */
.gitem--tall, .gitem--wide { grid-row: auto; grid-column: auto; }

/* ============================================================
   EVENT
   ============================================================ */
.event {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.event__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(47,93,58,0.45) 0%, transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(47,93,58,0.30) 0%, transparent 70%),
    var(--ink);
}
.event__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.event__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.event__art {
  margin: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.event__art img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.event__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 10px;
  background: var(--leaf);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.event__copy { color: rgba(244,241,234,0.85); }
.event__copy p { font-size: clamp(15px, 1.4vw, 17px); }
.event__date {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0 22px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
}
.datebox {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: var(--leaf);
  color: #fff;
  border-radius: 14px;
  line-height: 1;
}
.datebox__d {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.datebox__m {
  font-size: 10px;
  letter-spacing: 0.22em;
  margin-top: 4px;
  opacity: 0.85;
}
.event__meta {
  list-style: none;
  margin: 0; padding: 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--paper);
}
.event__meta strong { color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
.contact__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.cardh {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.hours th, .hours td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
}
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: rgba(14,18,15,0.85); }
.hours .closed { color: var(--rust); font-style: italic; }
.hours tr.is-today {
  background: linear-gradient(90deg, rgba(47,93,58,0.10) 0%, rgba(47,93,58,0.02) 100%);
}
.hours tr.is-today th {
  color: var(--leaf);
  font-weight: 700;
  position: relative;
  padding-left: 14px;
}
.hours tr.is-today th::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 18px;
  margin-top: -9px;
  border-radius: 2px;
  background: var(--leaf);
}
.hours tr.is-today td { color: var(--leaf); font-weight: 700; }

.addr { font-size: 15px; line-height: 1.6; margin: 0; }
.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--leaf);
  letter-spacing: -0.01em;
  margin: 4px 0 0;
}
.contact__phone:hover { text-decoration: underline; text-underline-offset: 4px; }

.socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  background: var(--bone);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  transition: background 200ms var(--t-ease), transform 200ms var(--t-spring);
}
.socials a:hover { background: var(--leaf); color: #fff; transform: translateY(-2px); }
.socials a span { display: none; }

.contact__map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-md);
  background: var(--bone);
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact__maplink {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  padding: 10px 14px;
  background: rgba(14,18,15,0.85);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: transform 200ms var(--t-spring), background 200ms var(--t-ease);
}
.contact__maplink:hover { transform: translateY(-2px); background: var(--leaf); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(244,241,234,0.85);
  padding: 56px 0 110px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.brand--footer { color: var(--paper); }
.brand--footer .brand__leaf { border-color: var(--paper); color: var(--paper); }
.brand--footer .brand__sub { color: var(--moss); }

.footer__tag {
  margin-top: 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(244,241,234,0.7);
}
.footer__h {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 14px;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer__col a { transition: color 180ms var(--t-ease); }
.footer__col a:hover { color: var(--moss); }

.socials--light a {
  background: rgba(255,255,255,0.06);
  color: var(--paper);
  width: 40px; height: 40px;
  padding: 0;
  display: inline-grid;
  place-items: center;
}
.socials--light a:hover { background: var(--leaf); color: #fff; }

.footer__btm {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(244,241,234,0.6);
}
.ftnote em {
  font-style: normal;
  font-weight: 700;
  color: var(--moss);
  letter-spacing: 0.16em;
}

/* ============================================================
   STICKY MOBILE CALLBAR
   ============================================================ */
.callbar {
  position: fixed;
  left: 16px; right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--leaf);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  min-height: 52px;
  box-shadow: 0 4px 12px rgba(14,18,15,0.18), 0 18px 40px rgba(47,93,58,0.40);
  transition: transform 200ms var(--t-spring), background 200ms var(--t-ease);
}
.callbar:hover { background: var(--leaf-2); transform: translateY(-2px); }
.callbar:active { transform: translateY(0); }

/* ============================================================
   CURSOR HALO (desktop only)
   ============================================================ */
.cursor-halo {
  position: fixed;
  top: 0; left: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  background: radial-gradient(circle, rgba(90,138,91,0.55) 0%, rgba(90,138,91,0.0) 70%);
  transform: translate(-50%, -50%) scale(1);
  transition: transform 220ms var(--t-spring), opacity 200ms var(--t-ease), background 220ms var(--t-ease);
  opacity: 0;
  mix-blend-mode: screen;
}
.cursor-halo.is-active { opacity: 1; }
.cursor-halo.is-hover { transform: translate(-50%, -50%) scale(2.2); background: radial-gradient(circle, rgba(216,239,206,0.55) 0%, rgba(216,239,206,0.0) 70%); }

/* ============================================================
   FADE-UP — JS adds .fade-init to data-fade items, then .is-visible
   when intersected. If JS is off, items stay fully visible.
   ============================================================ */
[data-fade].fade-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--t-ease), transform 700ms var(--t-ease);
  will-change: opacity, transform;
}
[data-fade].fade-init.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.001ms !important; }
  [data-fade].fade-init { opacity: 1; transform: none; }
}
