:root {
  --ink: #172331;
  --muted: #66727f;
  --cream: #fff8ec;
  --paper: #ffffff;
  --frost: #eaf8ff;
  --mint: #88d8b0;
  --berry: #e96185;
  --blue: #3488b8;
  --chocolate: #4f332b;
  --shadow: 0 18px 50px rgba(23, 35, 49, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 35, 49, 0.08);
  background: rgba(255, 248, 236, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--berry), var(--blue));
  box-shadow: 0 10px 24px rgba(233, 97, 133, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  color: #334253;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(52, 136, 184, 0.12);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 35, 49, 0.12);
  border-radius: 8px;
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: #435267;
  font-size: 1.17rem;
}

.hero-actions,
.party-copy + .button {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--berry);
  box-shadow: 0 14px 30px rgba(233, 97, 133, 0.22);
}

.button.secondary {
  margin-left: 10px;
  color: var(--ink);
  border-color: rgba(23, 35, 49, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.demo-note,
.small-note,
.tag-key {
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-note {
  margin-top: 18px;
}

.hero-visual {
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-visual img {
  width: 100%;
  height: min(620px, 62svh);
  object-fit: cover;
}

.quick-info {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 49, 0.08);
  border-radius: var(--radius);
  background: rgba(23, 35, 49, 0.08);
  box-shadow: 0 12px 36px rgba(23, 35, 49, 0.08);
}

.quick-info article {
  padding: 20px;
  background: #fff;
}

.quick-info span,
.specials span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 5px;
  font-size: 1.12rem;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.intro-grid,
.flavor-grid,
.menu-list,
.specials,
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-grid article,
.flavor-card,
.menu-list article,
.specials article,
.visit-grid article {
  padding: 22px;
  border: 1px solid rgba(23, 35, 49, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(23, 35, 49, 0.06);
}

.intro-grid p,
.flavor-card p,
.menu-list p,
.specials p,
.visit-grid p {
  color: #4e5d6d;
}

.flavor-grid {
  grid-template-columns: repeat(4, 1fr);
}

.flavor-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.tags span {
  padding: 5px 8px;
  color: var(--blue);
  border-radius: 999px;
  background: var(--frost);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-section {
  padding-bottom: 12px;
}

.menu-list {
  grid-template-columns: repeat(4, 1fr);
}

.specials-section {
  width: 100%;
  max-width: none;
  margin-top: 76px;
  padding: 78px max(16px, calc((100% - 1120px) / 2));
  background: #fff;
}

.parties-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 0;
  padding-bottom: 0;
}

.party-copy {
  max-width: 720px;
}

.visit-section {
  padding-bottom: 88px;
}

.visit-grid a {
  color: var(--blue);
  font-weight: 850;
}

.site-footer {
  padding: 30px 16px 94px;
  color: #425060;
  text-align: center;
  background: #fff;
  border-top: 1px solid rgba(23, 35, 49, 0.08);
}

.site-footer p {
  margin: 4px 0;
}

.mobile-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  background: var(--berry);
  box-shadow: 0 16px 40px rgba(23, 35, 49, 0.28);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid rgba(23, 35, 49, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4.2rem);
  }

  .hero-visual img {
    height: 360px;
  }

  .quick-info,
  .intro-grid,
  .flavor-grid,
  .menu-list,
  .specials,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .parties-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call {
    display: flex;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .flavor-grid,
  .menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .brand span:last-child {
    max-width: 190px;
  }

  .button {
    width: 100%;
  }

  .button.secondary {
    margin: 10px 0 0;
  }

  .quick-info article,
  .intro-grid article,
  .flavor-card,
  .menu-list article,
  .specials article,
  .visit-grid article {
    padding: 18px;
  }
}
