/* ============================================================
   Home page
   ============================================================ */

/* ----- HERO ------------------------------------------------- */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-height));
  min-height: 640px;
  max-height: 880px;
  color: var(--cream);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 1; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: brightness(0.7) saturate(0.85) contrast(1.05);
}
.hero__media-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(31,27,22,0.45) 0%, rgba(31,27,22,0.1) 35%, rgba(31,27,22,0.55) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(31,27,22,0.45) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero__eyebrow {
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 32px;
}
.hero__mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  color: var(--cream);
  flex-shrink: 0;
}
.hero__mark svg { width: 84px; height: 84px; display: block; }
.hero__title {
  font-size: clamp(72px, 12vw, 140px);
  margin: 0 0 8px;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.hero__subtitle {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--cream);
  opacity: 0.9;
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}
.hero__lead {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.85;
}
.hero__cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__cta .btn--primary {
  background: var(--cream);
  color: var(--ink);
}
.hero__cta .btn--primary:hover { background: var(--cream-deep); }
.btn--ghost-on-dark {
  border-color: rgba(244, 236, 218, 0.5);
  color: var(--cream);
}
.btn--ghost-on-dark:hover {
  background: rgba(244, 236, 218, 0.08);
  border-color: var(--cream);
}
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: rgba(244, 236, 218, 0.4);
  overflow: hidden;
}
.hero__scroll span {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 20px;
  background: var(--cream);
  animation: scroll-dot 2.4s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(140%); }
  100% { transform: translateY(140%); }
}

/* ----- SECTION HEAD ----------------------------------------- */
.section__head { text-align: center; margin-bottom: 56px; }
.section__head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; text-align: left;
}
.section__title {
  font-size: clamp(40px, 5vw, 62px);
  margin: 12px 0 0;
}
.section__lead {
  max-width: 560px;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 20px 0 32px;
}

/* ----- PHILOSOPHY ------------------------------------------- */
.section--philo { background: var(--cream); }
.philo {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.philo__item {
  padding: 40px 28px 44px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 16px;
}
.philo__item:last-child { border-right: none; }
.philo__num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.philo__h {
  font-size: 28px;
  margin: 0;
  color: var(--ink);
}
.philo__item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .philo { grid-template-columns: repeat(2, 1fr); }
  .philo__item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .philo__item:nth-child(2n) { border-right: none; }
  .philo__item:nth-last-child(-n+1):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 540px) {
  .philo { grid-template-columns: 1fr; }
  .philo__item { border-right: none; }
}

/* ----- MENU TEASER ------------------------------------------ */
.section--menu { background: var(--cream-soft); }
.menu-teaser {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.menu-teaser__left .section__title { margin-top: 12px; }
.menu-teaser__list { list-style: none; padding: 0; margin: 0; }
.menu-teaser__list li {
  display: flex; align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
}
.menu-teaser__list li:first-child { border-top: 1px solid var(--line); }
.menu-teaser__list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--ink-faint);
  position: relative;
  top: -4px;
}
.menu-teaser__list .price {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}
.menu-teaser__caption {
  margin-top: 24px;
  text-align: right;
  color: var(--ink-muted);
  font-size: 17px;
}

@media (max-width: 880px) {
  .menu-teaser { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- LOCAL ------------------------------------------------ */
.section--local { background: var(--cream); padding-bottom: 120px; }
.local {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.local__media {
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
}
.local__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.local__media--a { aspect-ratio: 3 / 4; transform: translateY(-20px); }
.local__media--b { aspect-ratio: 3 / 4; transform: translateY(20px); }
.local__copy { padding: 0 8px; }
.local__copy .section__title { font-size: clamp(36px, 4vw, 52px); margin-top: 8px; }
.local__copy p {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.local__address {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 28px 0 28px;
  font-size: 14px;
  color: var(--ink);
}
.local__address svg { width: 16px; height: 16px; color: var(--bronze); }

@media (max-width: 960px) {
  .local { grid-template-columns: 1fr; }
  .local__media--a, .local__media--b { transform: none; max-width: 480px; margin: 0 auto; }
  .local__copy { text-align: left; max-width: 600px; margin: 0 auto; }
}

/* ----- EVENTS ----------------------------------------------- */
.section--events { background: var(--cream-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease);
}
.event-card:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.event-card__date {
  flex-shrink: 0;
  text-align: center;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  font-family: var(--font-display);
  min-width: 64px;
}
.event-card__day { display: block; font-size: 30px; line-height: 1; color: var(--ink); }
.event-card__month {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.event-card__body { flex: 1; }
.event-card__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 8px;
}
.event-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.15;
}
.event-card__meta { margin: 0; font-size: 14px; color: var(--ink-muted); }

@media (max-width: 880px) {
  .events-grid { grid-template-columns: 1fr; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
}

/* ----- BOOK ------------------------------------------------- */
.section--book {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.book__inner { max-width: 660px; margin: 0 auto; }
.book__inner .eyebrow { color: var(--bronze-soft); opacity: 1; }
.book__title { color: var(--cream); margin: 12px 0 20px; font-size: clamp(40px, 5vw, 62px); }
.book__body { color: var(--cream); opacity: 0.75; font-size: 17px; margin: 0 0 36px; }
.book__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.book__inner .btn--primary { background: var(--cream); color: var(--ink); }
.book__inner .btn--primary:hover { background: var(--cream-deep); }
.book__hours {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid rgba(244,236,218,0.18);
  padding-top: 28px;
}
.book__hours > div { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.book__hours strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
}
.book__hours span:not([data-i18n="footer.closed"]) {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.book__hours span[data-i18n="footer.closed"] {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream);
  opacity: 0.6;
  font-size: 18px;
}

@media (max-width: 540px) {
  .book__hours { flex-wrap: wrap; gap: 24px 32px; }
}
