@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700&display=swap");

:root {
  --cream: #fff8e9;
  --purple-logo: #a587be;
  --yellow: #ffe477;
  --ink: #2c2930;
  --muted: #6b6570;
  --line: rgba(44, 41, 48, 0.16);
  --brand-font: "Baloo 2", "Cooper Black", "Cooper Std Black", "Arial Rounded MT Bold", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: var(--brand-font);
  color: var(--ink);
  background: var(--purple-logo);
  width: 100%;
  overflow-x: hidden;
  font-weight: 500;
}
a { color: inherit; }
button { font: inherit; }
img, iframe { max-width: 100%; }
main { overflow-x: hidden; }

.floating-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: fixed;
  z-index: 30;
  top: 18px;
  right: 18px;
  min-height: 44px;
  border: 1px solid rgba(44, 41, 48, .2);
  border-radius: 999px;
  background: rgba(255, 248, 233, .92);
  color: var(--ink);
  padding: 0 18px;
  font-weight: 700;
  letter-spacing: 0;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100svh + min(900px, 88vw));
  display: block;
  overflow-x: hidden;
  overflow-y: visible;
  padding: clamp(22px, 4vw, 48px);
  background: var(--purple-logo);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100svh;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 232, 126, .18), transparent 22rem),
    radial-gradient(circle at 88% 22%, rgba(255, 248, 233, .16), transparent 20rem);
}
.hero-logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 43svh;
  width: min(620px, 62vw);
  height: auto;
  translate: -50% -50%;
  filter: drop-shadow(0 22px 48px rgba(48, 29, 66, .16));
}
.hero-plate {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: calc(100svh - clamp(70px, 8vw, 115px));
  width: min(980px, 92vw);
  max-width: 100vw;
  translate: -50% 0;
  border-radius: 50%;
  filter: drop-shadow(0 -16px 56px rgba(48, 29, 66, .2));
}

.daily-section {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .9fr);
  align-items: end;
  gap: clamp(24px, 6vw, 86px);
  padding: clamp(24px, 5vw, 68px) clamp(18px, 7vw, 96px) 0;
  background: var(--purple-logo);
  overflow: hidden;
}
.daily-copy {
  align-self: start;
  justify-self: center;
  width: min(560px, 100%);
  min-width: 0;
  padding-top: clamp(10px, 2vw, 30px);
  padding-bottom: clamp(34px, 5vw, 78px);
}
.daily-copy h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--brand-font);
  font-size: clamp(4rem, 10vw, 9.2rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 22px 52px rgba(48, 29, 66, .14);
  max-width: 100%;
  overflow: visible;
}
.daily-hours {
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  color: var(--yellow);
  font-family: var(--brand-font);
  font-size: clamp(1.45rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}
.daily-table {
  align-self: end;
  justify-self: center;
  width: min(690px, 92vw);
  height: auto;
  max-width: 92vw;
  margin-bottom: -8px;
  filter: drop-shadow(0 34px 76px rgba(48, 29, 66, .18));
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--cream);
  color: var(--ink);
}
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--purple-logo);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.site-footer p, .site-footer a {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: .98rem;
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand strong { display: block; margin-bottom: 6px; font-size: 1.18rem; }
.footer-mark {
  display: grid !important;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-logo);
  color: var(--cream) !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
}
.social-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icon-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1.7px solid var(--purple-logo);
  border-radius: 999px;
  color: var(--purple-logo);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.social-icon-link:hover {
  background: var(--purple-logo);
  color: var(--cream);
  transform: translateY(-2px);
}
.social-icon-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-map {
  grid-column: 1 / -1;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(165, 135, 190, .28);
  border-radius: 26px;
  background: white;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.menu-page {
  min-height: 100svh;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
}
.menu-page-main {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  padding: clamp(66px, 7vw, 92px) clamp(12px, 3vw, 34px) clamp(16px, 3vw, 28px);
}
.menu-page-close {
  position: fixed;
  z-index: 10;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  padding: 0 16px;
  font-weight: 700;
  text-decoration: none;
}
.menu-page-pdf {
  width: 100%;
  height: calc(100svh - 126px);
  min-height: 0;
  border: 0;
  border-radius: 18px;
  background: white;
}
.menu-page-pdf-link {
  justify-self: center;
  color: var(--purple-logo);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: underline;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .hero { min-height: calc(100svh + 108vw); }
  .hero-logo { top: 43svh; width: min(620px, 78vw); }
  .hero-plate { top: calc(100svh - 72px); width: min(100vw, 620px); }
  .daily-section, .site-footer { grid-template-columns: 1fr; }
  .daily-section { min-height: 84svh; text-align: center; gap: 0; padding-top: 22px; }
  .daily-copy { justify-self: center; padding-top: 0; padding-bottom: 0; text-align: center; }
  .daily-table { justify-self: center; width: min(540px, 92vw); max-width: 92vw; margin-top: 6px; }
  .site-footer { gap: 26px; }
}

@media (max-width: 520px) {
  .hero { padding: 18px; min-height: calc(100svh + 112vw); }
  .hero-logo { top: 43svh; width: 88vw; }
  .hero-plate { top: calc(100svh - 52px); width: min(100vw, 460px); }
  .daily-section { padding: 10px 16px 0; min-height: 76svh; justify-items: center; overflow-x: hidden; gap: 0; }
  .daily-copy { width: 100%; max-width: calc(100vw - 40px); justify-self: center; text-align: center; }
  .daily-copy h2 { display: grid; gap: .04em; justify-items: center; font-size: clamp(2.8rem, 13.2vw, 4.5rem); line-height: .92; text-align: center; max-width: 100%; letter-spacing: 0; }
  .daily-copy h2 span { display: block; max-width: 100%; }
  .daily-hours { text-align: center; }
  .daily-table { width: min(430px, 90vw); max-width: 90vw; translate: 0 16px; justify-self: center; margin-top: 8px; }
  .floating-menu-link { top: 12px; right: max(14px, env(safe-area-inset-right)); max-width: calc(100vw - 28px); min-height: 40px; padding-inline: 14px; }
  .footer-map iframe { height: 300px; }
}