:root {
  --wine: #5b0d29;
  --burgundy: #9f073d;
  --berry: #c61f58;
  --rose: #f5bbc8;
  --blush: #fff0f3;
  --cream: #fffaf6;
  --ivory: #ffffff;
  --chocolate: #43261f;
  --sage: #647b62;
  --ink: #3f1728;
  --muted: #7d5965;
  --line: rgba(159, 7, 61, 0.16);
  --shadow: 0 18px 48px rgba(91, 13, 41, 0.14);
  --soft-shadow: 0 10px 28px rgba(91, 13, 41, 0.1);
  --radius: 8px;
  --container: 1320px;
  --hero-container: 1540px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7f8 0%, var(--cream) 42%, #fff7f0 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 104px;
  padding: 10px max(28px, calc((100vw - var(--hero-container)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 24px rgba(159, 7, 61, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 318px;
}

.brand img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(159, 7, 61, 0.16);
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand em {
  margin-top: -4px;
  font-family: "Parisienne", cursive;
  font-size: 2.38rem;
  color: var(--burgundy);
}

.brand small {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--berry);
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  color: var(--wine);
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  background: var(--burgundy);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.header-order,
.btn,
.menu-detail-btn,
.site-footer a,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-order,
.btn {
  min-height: 50px;
  border-radius: var(--radius);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-order {
  gap: 12px;
  padding: 0 24px;
  color: #fff;
  background: var(--burgundy);
  box-shadow: 0 14px 30px rgba(159, 7, 61, 0.2);
}

.header-order:hover,
.btn:hover,
.menu-detail-btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--burgundy);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 805px;
  overflow: hidden;
  border-bottom: 1px solid rgba(159, 7, 61, 0.12);
  background: #fff1f4;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 248, 249, 0.99) 0%, rgba(255, 248, 249, 0.96) 33%, rgba(255, 248, 249, 0.72) 45%, rgba(255, 248, 249, 0.16) 60%, rgba(255, 248, 249, 0) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  left: -52px;
  bottom: 210px;
  z-index: 2;
  width: 168px;
  height: 168px;
  border: 2px solid rgba(198, 31, 88, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 1fr);
  grid-template-areas:
    "copy space"
    "visit space";
  column-gap: 36px;
  row-gap: 26px;
  width: min(var(--hero-container), calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 118px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
  padding-top: 18px;
  padding-left: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow svg,
.section-kicker svg {
  color: var(--berry);
}

.hero h1 {
  margin: 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 4.95vw, 4.9rem);
  line-height: 0.94;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 span {
  white-space: nowrap;
}

.hero h1 em {
  margin-top: 8px;
  font-family: "Parisienne", cursive;
  font-size: clamp(3.65rem, 4.55vw, 4.65rem);
  font-style: normal;
  font-weight: 400;
}

.ornament {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: min(438px, 100%);
  margin: 28px 0 24px;
  color: var(--berry);
}

.ornament span {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(198, 31, 88, 0.45), transparent);
}

.hero-lead {
  max-width: 545px;
  margin: 0;
  color: #60424b;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: var(--burgundy);
  box-shadow: 0 15px 28px rgba(159, 7, 61, 0.2);
}

.btn-primary:hover {
  background: var(--wine);
}

.btn-ghost {
  color: var(--burgundy);
  border-color: rgba(159, 7, 61, 0.32);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost:hover {
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.visit-card {
  grid-area: visit;
  align-self: start;
  justify-self: start;
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 24px;
  width: min(520px, 100%);
  margin-top: 2px;
  padding: 10px;
  border: 1px solid rgba(159, 7, 61, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.visit-card img {
  height: 172px;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center;
}

.visit-card h2 {
  margin: 4px 0 18px;
  color: var(--burgundy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.24rem;
  line-height: 1.14;
}

.visit-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.92rem;
}

.visit-card li,
.location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-strip {
  position: absolute;
  right: max(28px, calc((100vw - var(--hero-container)) / 2 + 18px));
  bottom: 54px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 8px;
  width: min(910px, calc(100% - 56px));
  padding: 14px;
  border: 1px solid rgba(159, 7, 61, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.feature-strip article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
}

.feature-strip svg,
.contact-panel svg {
  flex: 0 0 auto;
  color: var(--burgundy);
}

.feature-strip article > svg {
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid rgba(159, 7, 61, 0.12);
  border-radius: 50%;
  background: #fff3f6;
}

.feature-strip h3,
.contact-panel h3,
.menu-card h3,
.cake-steps h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
}

.feature-strip h3 {
  font-size: 1rem;
}

.feature-strip p,
.contact-panel p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

section[id] {
  scroll-margin-top: 112px;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.custom-cake h2,
.about-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1.04;
}

.section-heading p:not(.section-kicker),
.custom-cake p,
.about-section p,
.contact-section p {
  margin: 0;
  color: #60424b;
  font-size: 1rem;
  line-height: 1.75;
}

.menu-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px max(24px, calc((100vw - 1680px) / 2)) 48px;
  overflow: hidden;
  border-top: 1px solid rgba(159, 7, 61, 0.08);
  border-bottom: 1px solid rgba(159, 7, 61, 0.08);
  background:
    radial-gradient(circle at 0 18%, rgba(198, 31, 88, 0.16) 0 1px, transparent 2px) 0 0 / 16px 16px,
    radial-gradient(circle at 97% 93%, rgba(198, 31, 88, 0.18) 0 1px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(115deg, rgba(255, 246, 248, 0.98) 0%, rgba(255, 239, 242, 0.94) 45%, rgba(255, 250, 246, 0.98) 100%);
}

.menu-section::before,
.menu-section::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.menu-section::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.26) 48%, rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.82), transparent 28%);
}

.menu-section::after {
  top: 18px;
  right: max(-38px, calc((100vw - 1680px) / 2 - 70px));
  width: 236px;
  height: 236px;
  border: 2px solid rgba(198, 31, 88, 0.1);
  border-radius: 50%;
  background: url("logo.png") center / cover no-repeat;
  opacity: 0.12;
}

.menu-shell {
  position: relative;
  z-index: 1;
  width: min(1680px, 100%);
  margin: 0 auto;
}

.menu-shell::before,
.menu-shell::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.menu-shell::before {
  top: 28px;
  left: 34%;
  width: 128px;
  height: 58px;
  border-top: 1px solid rgba(198, 31, 88, 0.2);
  border-left: 1px solid rgba(198, 31, 88, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.menu-shell::after {
  right: 52px;
  bottom: 124px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(198, 31, 88, 0.14);
  border-radius: 50%;
}

.menu-heading-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(320px, 460px);
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}

.menu-section .section-heading {
  gap: 10px;
  max-width: none;
  margin-bottom: 0;
}

.menu-section .section-kicker {
  margin-bottom: 20px;
  border-color: rgba(198, 31, 88, 0.16);
  color: #a04e63;
  background: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}

.menu-section .section-heading h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 4.6rem;
  letter-spacing: 0;
}

.menu-section .section-heading h2 svg {
  flex: 0 0 auto;
  color: var(--berry);
  stroke-width: 1.4;
}

.menu-section .section-heading .menu-subtitle {
  color: var(--wine);
  font-family: "Parisienne", cursive;
  font-size: 3.8rem;
  line-height: 0.96;
}

.menu-tools {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 4px;
}

.menu-search,
.menu-sort {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(198, 31, 88, 0.22);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 34px rgba(91, 13, 41, 0.05);
}

.menu-search {
  flex: 1 1 280px;
  min-width: min(280px, 100%);
}

.menu-search svg {
  margin-left: 18px;
}

.menu-search input,
.menu-sort select {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--wine);
  background: transparent;
  outline: 0;
  font-weight: 700;
}

.menu-search input {
  height: 52px;
  padding: 0 18px 0 12px;
}

.menu-search input::placeholder {
  color: rgba(63, 23, 40, 0.62);
}

.menu-sort {
  flex: 0 0 154px;
}

.menu-sort select {
  height: 52px;
  padding: 0 42px 0 22px;
  appearance: none;
  cursor: pointer;
}

.menu-sort svg {
  position: absolute;
  right: 18px;
  pointer-events: none;
}

.menu-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(198, 31, 88, 0.22);
  border-radius: 999px;
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.42);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(91, 13, 41, 0.04);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--burgundy);
  color: #fff;
  background: linear-gradient(180deg, #b00846, var(--burgundy));
  box-shadow: 0 14px 28px rgba(159, 7, 61, 0.18);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.menu-card {
  position: relative;
  display: grid;
  grid-template-rows: 214px 1fr;
  overflow: hidden;
  min-height: 0;
  border: 4px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 34px rgba(91, 13, 41, 0.09);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.menu-card.is-featured {
  border-color: rgba(255, 255, 255, 0.95);
}

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

.menu-image {
  position: relative;
  height: 214px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 246, 248, 0.96), rgba(255, 236, 241, 0.86));
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.menu-card:hover .menu-image img {
  transform: scale(1.04);
}

.menu-card-ribbon,
.menu-favorite {
  position: absolute;
  z-index: 2;
}

.menu-card-ribbon {
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #db4775, var(--berry));
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(159, 7, 61, 0.18);
}

.menu-favorite {
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(91, 13, 41, 0.1);
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.menu-favorite:hover {
  color: #fff;
  background: var(--burgundy);
  transform: translateY(-2px);
}

.menu-image-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(159, 7, 61, 0.32);
  background: linear-gradient(135deg, #fff9fa, #ffe5ec);
}

.menu-image-placeholder svg {
  width: 64px;
  height: 64px;
}

.menu-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  padding: 14px;
}

.menu-body > span {
  width: fit-content;
  color: rgba(91, 13, 41, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
}

.menu-card h3 {
  font-size: 1.18rem;
  line-height: 1.16;
}

.menu-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.menu-card-footer {
  display: grid;
  gap: 8px;
  align-self: end;
}

.menu-card-footer strong {
  color: var(--burgundy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1;
}

.menu-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(198, 31, 88, 0.26);
  border-radius: var(--radius);
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 800;
  font-family: inherit;
  box-shadow: none;
  cursor: pointer;
}

.menu-detail-btn:hover {
  color: #fff;
  background: var(--burgundy);
}

body.modal-open {
  overflow: hidden;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(63, 23, 40, 0.46);
  backdrop-filter: blur(10px);
}

.product-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1fr);
  width: min(880px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(198, 31, 88, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 247, 0.98)),
    radial-gradient(circle at 15% 10%, rgba(198, 31, 88, 0.12), transparent 32%);
  box-shadow: 0 28px 84px rgba(63, 23, 40, 0.26);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(198, 31, 88, 0.18);
  border-radius: 50%;
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(91, 13, 41, 0.12);
  cursor: pointer;
}

.product-modal-close:hover {
  color: #fff;
  background: var(--burgundy);
}

.product-modal-media {
  min-height: 430px;
  background: #fff2f5;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 44px;
}

.product-modal-category {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(198, 31, 88, 0.2);
  border-radius: 999px;
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-modal-copy h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.04;
}

.product-modal-copy > p:not(.product-modal-category) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-modal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
}

.product-modal-facts div,
.product-modal-nutrition dl div {
  padding: 14px;
  border: 1px solid rgba(198, 31, 88, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.product-modal-facts dt,
.product-modal-nutrition dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.product-modal-facts dd,
.product-modal-nutrition dd {
  margin: 0;
  color: var(--burgundy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.product-modal-nutrition {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.product-modal-nutrition > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.product-modal-nutrition h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
}

.product-modal-nutrition p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-modal-nutrition dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.product-modal-nutrition dl div {
  padding: 12px;
}

.product-modal-nutrition dd {
  font-size: 1.06rem;
  line-height: 1.1;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.menu-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 28px;
  text-align: center;
}

.menu-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 294px;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(180deg, #b00846, var(--burgundy));
  box-shadow: 0 16px 28px rgba(159, 7, 61, 0.2);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.menu-more-btn:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

.menu-actions p {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.menu-actions p svg {
  color: var(--burgundy);
}

.menu-empty {
  grid-column: 1 / -1;
  padding: 42px 20px;
  border: 1px solid rgba(159, 7, 61, 0.14);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-weight: 700;
}

.site-footer a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--burgundy);
  box-shadow: 0 10px 22px rgba(159, 7, 61, 0.18);
}

.custom-cake {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.cake-copy {
  display: grid;
  gap: 20px;
}

.cake-copy .btn {
  width: fit-content;
}

.cake-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cake-steps article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(159, 7, 61, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fff5f7);
  box-shadow: var(--soft-shadow);
}

.cake-steps span {
  color: rgba(159, 7, 61, 0.24);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.3rem;
  font-weight: 800;
}

.cake-steps h3 {
  margin-top: 16px;
  font-size: 1.35rem;
}

.cake-steps p {
  margin-top: 12px;
  font-size: 0.95rem;
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 240, 243, 0.72), rgba(255, 250, 246, 0.94)),
    repeating-linear-gradient(90deg, rgba(159, 7, 61, 0.04) 0 1px, transparent 1px 70px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.82fr 0.82fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(91, 13, 41, 0.78);
  font-weight: 800;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-grid figure:nth-child(4) img {
  object-position: 72% 88%;
}

.gallery-grid figure:nth-child(5) img {
  object-position: 92% 58%;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-media > img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 76%;
  height: 68%;
  border: 1px solid rgba(159, 7, 61, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 240, 243, 0.42)),
    repeating-linear-gradient(45deg, rgba(159, 7, 61, 0.08) 0 1px, transparent 1px 15px);
  content: "";
  z-index: -1;
}

.about-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(159, 7, 61, 0.14);
  border-radius: var(--radius);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.about-badge img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy .section-kicker,
.contact-copy .section-kicker {
  width: fit-content;
  margin-bottom: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.about-highlights article {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(159, 7, 61, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fff6f7);
  box-shadow: var(--soft-shadow);
}

.about-highlights svg {
  color: var(--burgundy);
}

.about-highlights strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
}

.about-highlights span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: stretch;
  padding-bottom: 96px;
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(159, 7, 61, 0.18);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 7, 61, 0.34);
  box-shadow: var(--soft-shadow);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(159, 7, 61, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-frame {
  overflow: hidden;
  min-height: 292px;
  border-radius: var(--radius);
  background: #fff0f3;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 292px;
  border: 0;
}

.contact-panel article {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff7f8;
}

.contact-panel h3 {
  font-size: 1.15rem;
}

.inline-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--burgundy);
  font-size: 0.88rem;
  font-weight: 800;
}

.inline-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(24px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: var(--wine);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  background: rgba(255, 255, 255, 0.16);
}

svg {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 1.8;
}

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

:focus-visible {
  outline: 3px solid rgba(198, 31, 88, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1500px) {
  .feature-strip {
    width: min(820px, calc(100% - 56px));
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  }

  .menu-card {
    grid-template-rows: 214px 1fr;
    min-height: 418px;
  }

  .menu-image {
    height: 214px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-order {
    display: none;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .site-header.nav-open .site-nav a {
    padding: 14px 10px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visit";
    padding-top: 32px;
    padding-bottom: 150px;
  }

  .hero-copy {
    max-width: 650px;
    padding-left: 0;
  }

  .visit-card {
    margin-top: 8px;
  }

  .feature-strip {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(var(--container), calc(100% - 48px));
    margin: -104px auto 32px;
  }

  .menu-heading-row {
    grid-template-columns: 1fr;
  }

  .menu-tools {
    justify-content: flex-start;
    max-width: 680px;
    padding-top: 0;
  }

  .menu-section .section-heading h2 {
    font-size: 3.7rem;
  }

  .menu-section .section-heading .menu-subtitle {
    font-size: 3.1rem;
  }

  .menu-shell::before,
  .menu-shell::after {
    display: none;
  }

  .menu-grid,
  .cake-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-cake,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 360px;
  }

  .about-media > img {
    height: 360px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 104px;
    padding: 14px 18px 12px;
    border-bottom: 0;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(159, 7, 61, 0.12);
  }

  .brand {
    order: 1;
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.06rem;
    letter-spacing: 0.16em;
  }

  .brand em {
    margin-top: -2px;
    font-size: 1.78rem;
  }

  .brand small {
    display: block;
    font-size: 0.48rem;
    letter-spacing: 0.26em;
    white-space: nowrap;
  }

  .header-order {
    order: 2;
    display: inline-flex;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    gap: 8px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .header-order svg {
    width: 20px;
    height: 20px;
  }

  .nav-toggle {
    order: 3;
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--wine);
  }

  .nav-toggle svg {
    width: 32px;
    height: 32px;
  }

  .site-header.nav-open .site-nav {
    order: 4;
    margin-top: 4px;
    border-radius: 14px;
  }

  .hero {
    min-height: 760px;
    border-bottom: 0;
    background: #fff0f3;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 249, 0.78) 30%, rgba(255, 240, 244, 0.08) 54%, rgba(255, 241, 244, 0.92) 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-visual img {
    object-position: 56% bottom;
    transform: translateY(38px) scale(1.02);
  }

  .hero-shell {
    display: block;
    width: 100%;
    min-height: 760px;
    padding: 32px 20px 38px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 16px;
    font-size: 0.72rem;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .hero .eyebrow {
    margin: 0 auto 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.14rem, 8.6vw, 3rem);
    line-height: 0.95;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero h1 em {
    margin-top: 5px;
    font-size: clamp(2.5rem, 10vw, 3.25rem);
  }

  .hero-lead {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.55;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.78);
  }

  .ornament {
    width: min(340px, 100%);
    margin: 16px 0 14px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-actions {
    align-self: stretch;
    justify-items: start;
    width: min(342px, 100%);
    margin: clamp(268px, 72vw, 330px) auto 0 0;
    gap: 14px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: space-between;
    width: auto;
    min-width: min(252px, 100%);
    min-height: 56px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 0.96rem;
  }

  .hero-actions .btn-ghost {
    min-width: min(334px, 100%);
    background: rgba(255, 255, 255, 0.74);
  }

  .visit-card {
    display: none;
  }

  .feature-strip {
    display: none;
  }

  .section {
    width: min(100% - 32px, var(--container));
    padding: 66px 0;
  }

  .menu-section {
    width: 100%;
    margin-top: -30px;
    padding: 28px 16px 42px;
    border-top: 0;
    border-radius: 26px 26px 0 0;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 250, 251, 0.98) 62%, #fff7f0 100%);
    box-shadow: 0 -14px 34px rgba(91, 13, 41, 0.06);
  }

  section[id] {
    scroll-margin-top: 86px;
  }

  .section-heading h2,
  .custom-cake h2,
  .about-section h2,
  .contact-section h2 {
    font-size: 2.3rem;
  }

  .menu-section::after {
    display: none;
  }

  .menu-heading-row {
    display: block;
    margin-bottom: 16px;
    text-align: center;
  }

  .menu-section .section-kicker {
    display: none;
  }

  .menu-section .section-heading {
    justify-items: center;
    gap: 6px;
    margin-bottom: 0;
  }

  .menu-section .section-heading h2 {
    display: block;
    font-size: 1.72rem;
    line-height: 1.08;
  }

  .menu-section .section-heading h2 svg {
    display: none;
  }

  .menu-section .section-heading .menu-subtitle {
    color: #60424b;
    font-family: "Inter", Arial, sans-serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.35;
  }

  .menu-lead,
  .menu-tools,
  .menu-filters {
    display: none;
  }

  .cake-steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-card {
    grid-template-columns: minmax(118px, 40%) 1fr;
    grid-template-rows: none;
    min-height: auto;
    overflow: hidden;
    border: 1px solid rgba(198, 31, 88, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 26px rgba(91, 13, 41, 0.08);
  }

  .menu-image {
    height: auto;
    min-height: 154px;
  }

  .menu-image img {
    height: 100%;
  }

  .menu-card-ribbon {
    display: none;
  }

  .menu-favorite {
    top: 12px;
    right: auto;
    left: 12px;
    width: 36px;
    height: 36px;
  }

  .menu-body {
    grid-template-rows: auto 1fr auto;
    gap: 7px;
    min-width: 0;
    padding: 16px 14px;
  }

  .menu-body > span {
    display: none;
  }

  .menu-card h3 {
    font-size: 1.1rem;
    line-height: 1.16;
  }

  .menu-card p {
    min-height: 0;
    font-size: 0.84rem;
    line-height: 1.42;
    -webkit-line-clamp: 2;
  }

  .menu-card-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .menu-card-footer strong {
    font-size: 1.08rem;
    line-height: 1.1;
  }

  .menu-detail-btn {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .menu-actions {
    margin-top: 24px;
  }

  .menu-more-btn {
    width: 100%;
    min-width: 0;
  }

  .product-modal {
    padding: 16px;
  }

  .product-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .product-modal-media {
    min-height: 230px;
    height: 230px;
  }

  .product-modal-copy {
    padding: 28px 18px 18px;
  }

  .product-modal-copy h2 {
    padding-right: 46px;
    font-size: 1.95rem;
  }

  .product-modal-facts {
    grid-template-columns: 1fr;
  }

  .product-modal-nutrition > div {
    display: grid;
    gap: 2px;
  }

  .product-modal-nutrition dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-modal-actions {
    display: grid;
  }

  .cake-steps article {
    min-height: auto;
  }

  .gallery-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-wide,
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .about-media {
    min-height: 300px;
  }

  .about-media > img {
    height: 300px;
  }

  .about-media::after {
    right: -8px;
    bottom: -8px;
  }

  .about-badge {
    right: 12px;
    bottom: 12px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-highlights article {
    min-height: auto;
  }

  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 14px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 240px;
    height: 240px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 96px;
    gap: 8px;
    padding: 12px 14px 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand strong {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .brand em {
    font-size: 1.42rem;
  }

  .brand small {
    max-width: 104px;
    overflow: hidden;
    font-size: 0.4rem;
    letter-spacing: 0.18em;
    text-overflow: clip;
  }

  .header-order {
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero-shell {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.55vw, 2.08rem);
  }

  .hero h1 em {
    font-size: 2.55rem;
  }

  .section-heading h2,
  .custom-cake h2,
  .about-section h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .menu-section .section-heading h2 {
    font-size: 1.48rem;
    white-space: nowrap;
  }

  .menu-section .section-heading .menu-subtitle {
    max-width: 310px;
    font-size: 0.98rem;
  }

  .menu-card {
    grid-template-columns: minmax(112px, 39%) 1fr;
  }

  .menu-body {
    padding: 14px 12px;
  }

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

  .menu-detail-btn {
    padding: 0 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 7px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 0.72rem;
  }

  .brand em {
    font-size: 1.32rem;
  }

  .brand small {
    max-width: 90px;
    font-size: 0.38rem;
    letter-spacing: 0.14em;
  }

  .header-order {
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .nav-toggle {
    width: 38px;
  }
}
