:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #3f1832;
  --muted: #7b5570;
  --tomato: #ff6c8a;
  --marigold: #ffb236;
  --guava: #ffd3de;
  --leaf: #4ca86d;
  --berry: #d54b94;
  --line: rgba(63, 24, 50, 0.1);
  --shadow: 0 25px 70px rgba(179, 68, 126, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 222, 0.55), transparent 26%),
    radial-gradient(circle at right 12%, rgba(255, 178, 54, 0.14), transparent 18%),
    linear-gradient(180deg, #fffdfd, #fff9fc 44%, #ffffff);
}

body::before {
  content: none;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
  position: relative;
}

.hero,
.feature-strip,
.today-section,
.menu-section,
.signature-section,
.meet-section,
.banner-callout,
.visit-section,
.footer {
  position: relative;
  overflow: clip;
}

.hero {
  padding: 24px;
  border: 1px solid rgba(213, 75, 148, 0.1);
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(124, 77, 104, 0.08);
}

.hero::after {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 240px;
  height: 240px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 108, 138, 0.12), transparent 70%);
}

.hero::before {
  position: absolute;
  left: -40px;
  bottom: -36px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 178, 54, 0.14), transparent 72%);
}

.topbar,
.hero-grid,
.feature-strip,
.menu-grid,
.story-layout,
.meet-card,
.visit-grid {
  display: grid;
  gap: 20px;
}

.topbar {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--berry), var(--tomato));
  color: #fff8ee;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong,
.hero h1,
.section-heading h2,
.plate-card h2,
.banner-callout h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links {
  display: inline-flex;
  justify-content: center;
  gap: 24px;
}

.nav-links a,
.footer span,
.section-heading p,
.hero-text,
.hero-points,
.menu-card p,
.story-card p,
.visit-card p,
.plate-card p,
.floating-review span {
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--berry), var(--marigold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  margin-top: 48px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--berry);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
}

.hero-text {
  max-width: 580px;
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.menu-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button,
.menu-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.menu-filter:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--berry), var(--tomato));
  color: #fff8ef;
  box-shadow: 0 18px 35px rgba(213, 75, 148, 0.26);
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 50%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.button-secondary,
.menu-filter,
.button-ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(107, 74, 65, 0.16);
  color: var(--ink);
}

.button-ghost {
  min-height: 44px;
}

.language-toggle {
  min-width: 68px;
  cursor: pointer;
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--marigold));
}

.hero-panel {
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.plate-card,
.stats-card,
.floating-review,
.menu-card,
.story-card,
.visit-card,
.payment-option,
.feature-strip article,
.banner-callout {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.plate-card,
.floating-review,
.menu-card,
.story-card,
.visit-card,
.payment-option,
.feature-strip article,
.banner-callout {
  border: 1px solid rgba(63, 24, 50, 0.08);
}

.plate-card {
  min-height: 280px;
  padding: 28px;
}

.sunrise {
  background:
    radial-gradient(circle at top left, rgba(255, 236, 180, 0.75), transparent 34%),
    linear-gradient(180deg, rgba(255, 132, 173, 0.96), rgba(214, 75, 148, 0.95));
  color: #fff9ef;
}

.plate-card p,
.plate-label {
  color: rgba(255, 249, 239, 0.86);
}

.plate-label,
.menu-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plate-label {
  background: rgba(255, 255, 255, 0.18);
}

.plate-card h2,
.banner-callout h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.plate-card p {
  max-width: 28ch;
  line-height: 1.45;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  background: rgba(255, 252, 253, 0.9);
  border: 1px solid rgba(213, 75, 148, 0.12);
}

.stats-card div {
  display: grid;
  gap: 6px;
  text-align: center;
}

.stats-card strong {
  font-size: 1.8rem;
}

.floating-review {
  padding: 18px 22px;
  margin-left: 48px;
  background: rgba(255, 255, 255, 0.96);
}

.floating-review p {
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.45;
}

.feature-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.feature-strip article,
.menu-card,
.story-card,
.visit-card {
  padding: 24px;
  background: #ffffff;
  backdrop-filter: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-strip article::after,
.menu-card::after,
.visit-card::after,
.payment-option::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 222, 0.78), transparent 68%);
  pointer-events: none;
}

.feature-strip article:hover,
.menu-card:hover,
.visit-card:hover,
.payment-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(179, 68, 126, 0.18);
}

.feature-strip span,
.visit-card h3,
.story-card h3,
.menu-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

.feature-strip p,
.menu-card p,
.story-card p,
.visit-card p {
  line-height: 1.65;
}

.menu-section,
.signature-section,
.meet-section,
.payment-section,
.today-section,
.visit-section {
  margin-top: 72px;
}

.payment-section-top {
  margin-top: 36px;
}

.meet-card {
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(63, 24, 50, 0.08);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(124, 77, 104, 0.08);
}

.meet-portrait {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 108, 138, 0.16), transparent 40%),
    linear-gradient(180deg, #fff6fa, #ffffff);
  border: 1px solid rgba(213, 75, 148, 0.12);
  align-content: center;
}

.meet-badge {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--berry), var(--tomato));
  color: #ffffff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3rem;
  box-shadow: 0 18px 35px rgba(213, 75, 148, 0.2);
}

.meet-portrait p,
.meet-copy p {
  color: var(--muted);
}

.meet-photo {
  display: block;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(63, 24, 50, 0.08);
  box-shadow: 0 18px 35px rgba(124, 77, 104, 0.08);
  background: #ffffff;
}

.meet-copy {
  max-width: 640px;
}

.meet-copy h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.meet-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 6px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--berry), rgba(255, 178, 54, 0.8));
}

.section-heading p:last-child {
  margin-top: 16px;
  line-height: 1.7;
}

.menu-controls {
  margin-top: 26px;
}

.today-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.today-note,
.today-empty {
  color: var(--muted);
}

.today-status {
  margin-top: 16px;
}

.today-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.today-grid .menu-card {
  min-height: 100%;
}

.owner-panel {
  display: grid;
  gap: 18px;
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(63, 24, 50, 0.08);
  background: linear-gradient(180deg, #fff9fc, #ffffff);
  box-shadow: var(--shadow);
}

.owner-panel-copy h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.owner-panel-copy p {
  margin: 0;
  color: var(--muted);
}

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.owner-item-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.owner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(63, 24, 50, 0.08);
  background: #ffffff;
}

.owner-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--berry);
}

.owner-item span {
  font-weight: 600;
}

.menu-filter {
  cursor: pointer;
}

.menu-filter.is-active {
  background: var(--berry);
  border-color: var(--berry);
  color: #fff8ee;
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.menu-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 0;
}

.menu-card-media {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(63, 24, 50, 0.08);
  background: #fffafc;
  aspect-ratio: 4 / 4.5;
}

.menu-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.03);
}

.menu-card strong {
  font-size: 1.2rem;
  margin-top: auto;
}

.menu-tag {
  background: rgba(213, 75, 148, 0.12);
  color: var(--berry);
}

.menu-card-text::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.9;
  border-radius: 20px;
  border: 1px solid rgba(63, 24, 50, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 205, 0.78), transparent 42%),
    linear-gradient(135deg, #fff7fb, #fff0f7);
}

.menu-card.is-hidden {
  display: none;
}

.story-layout {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.story-card {
  min-height: 230px;
}

.warm {
  background: #ffffff;
}

.clay {
  background: #ffffff;
}

.leaf {
  background: #ffffff;
}

.banner-callout {
  display: grid;
  gap: 16px;
  justify-items: start;
  margin-top: 72px;
  padding: 32px;
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(125deg, var(--berry), #ff8a48);
  color: #fff8ee;
}

.banner-callout .eyebrow {
  color: rgba(255, 248, 238, 0.76);
}

.visit-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.visit-card {
  min-height: 190px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.payment-option {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(63, 24, 50, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.payment-heading {
  max-width: 680px;
}

.payment-option-copy {
  display: grid;
  gap: 8px;
}

.payment-option h3 {
  margin: 0;
  font-size: 1.2rem;
}

.payment-option p,
.payment-note,
.payment-qr-placeholder {
  color: var(--muted);
}

.admin-hero {
  margin-bottom: 0;
}

.admin-grid {
  align-items: start;
}

.admin-section {
  margin-top: 72px;
}

.admin-shell {
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(63, 24, 50, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.admin-form {
  display: grid;
  gap: 16px;
  max-width: 420px;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field span {
  font-weight: 700;
}

.admin-field input {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(63, 24, 50, 0.14);
  font: inherit;
}

.admin-status {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.admin-shell-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.admin-shell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(63, 24, 50, 0.08);
  background: linear-gradient(180deg, #fff9fc, #ffffff);
}

.admin-item input {
  width: 20px;
  height: 20px;
  accent-color: var(--berry);
}

.admin-item-body {
  display: grid;
  gap: 4px;
}

.admin-item-body strong {
  font-size: 1rem;
}

.admin-item-body span {
  color: var(--muted);
  font-size: 0.92rem;
}

.payment-note {
  margin: 0;
  margin-top: 16px;
}

.payment-qr-code,
.payment-qr-placeholder {
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 24px;
  border: 1px solid rgba(63, 24, 50, 0.08);
  background: #fffafc;
}

.payment-qr-code {
  display: block;
}

.payment-qr-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  font-weight: 600;
}

.footer-owner-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.contact-stats {
  grid-template-columns: repeat(3, 1fr);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 42px;
  padding: 0 8px;
}

.footer p {
  margin: 0;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .topbar,
  .hero-grid,
  .feature-strip,
  .story-layout,
  .meet-card,
  .visit-grid,
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .today-grid,
  .owner-item-list,
  .admin-item-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .topbar-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-grid {
    margin-top: 36px;
  }

  .menu-grid,
  .story-layout,
  .visit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-option {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 18px, 100%);
    padding-top: 10px;
  }

  .hero {
    padding: 18px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .topbar,
  .hero-grid,
  .feature-strip,
  .today-grid,
  .story-layout,
  .meet-card,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .admin-item-grid,
  .admin-shell-head {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .floating-review {
    margin-left: 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .menu-controls {
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .menu-controls::-webkit-scrollbar {
    display: none;
  }

  .menu-filter {
    width: auto;
    flex: 0 0 auto;
    min-width: max-content;
    padding: 12px 16px;
  }

  .menu-card {
    padding: 16px;
    gap: 10px;
  }

  .menu-card h3,
  .menu-card strong {
    font-size: 1rem;
  }

  .menu-card p {
    display: none;
  }

  .menu-card-media,
  .menu-card-text::before {
    border-radius: 16px;
    aspect-ratio: 1 / 1;
  }

  .today-toolbar,
  .owner-item-list {
    grid-template-columns: 1fr;
  }

  .today-toolbar {
    display: grid;
    justify-items: start;
  }

  .admin-shell {
    padding: 18px;
  }

  .admin-shell-head,
  .admin-shell-actions {
    display: grid;
    justify-content: stretch;
  }

  .owner-panel {
    padding: 18px;
  }

  .owner-item-list {
    display: grid;
    gap: 10px;
  }

  .footer {
    padding-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
