:root {
  --ink: #2d211b;
  --muted: #75665c;
  --cream: #fff8ef;
  --paper: #fffdf8;
  --blush: #eac3b0;
  --berry: #9c3f4b;
  --sage: #879077;
  --line: rgba(45, 33, 27, 0.14);
  --shadow: 0 22px 70px rgba(55, 35, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 22px;
  right: clamp(20px, 5vw, 72px);
  left: clamp(20px, 5vw, 72px);
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(45, 33, 27, 0.24);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(30, 21, 17, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(45, 33, 27, 0.12);
  box-shadow: 0 4px 16px rgba(45, 33, 27, 0.14);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.main-nav a:hover {
  color: var(--paper);
  background: rgba(255, 253, 248, 0.1);
}

.main-nav a.active {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.18);
}

.nav-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 999px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(130px, 13vw, 180px) clamp(20px, 5vw, 72px) clamp(84px, 10vw, 140px);
  color: var(--paper);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(30, 21, 17, 0.86) 0%, rgba(30, 21, 17, 0.62) 43%, rgba(30, 21, 17, 0.14) 100%),
    linear-gradient(0deg, rgba(30, 21, 17, 0.48), transparent 45%);
}

.hero-content {
  max-width: 740px;
}

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

.hero .eyebrow {
  color: #f3c8a7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.02;
}

.hero-title-last {
  display: block;
  margin-top: 0.09em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-lead {
  max-width: 600px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--paper);
}

.button.ghost {
  border: 1px solid rgba(255, 253, 248, 0.48);
  color: var(--paper);
}

.section {
  scroll-margin-top: 96px;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.intro,
.offer,
.portfolio,
.order-guide,
.reviews,
.contact {
  position: relative;
  border-top: 14px solid #f0e4d9;
  box-shadow: inset 0 1px rgba(45, 33, 27, 0.08);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  background: var(--cream);
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.offer {
  background:
    linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
    radial-gradient(circle at 12% 8%, rgba(234, 195, 176, 0.42), transparent 28%),
    var(--paper);
}

.offer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(30px, 6vw, 80px);
  margin-bottom: 42px;
}

.offer-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.offer-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.offer-tab {
  min-height: 46px;
  flex: 1 0 max-content;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.offer-tab:hover {
  color: var(--berry);
}

.offer-tab.active {
  color: var(--paper);
  background: var(--berry);
  box-shadow: 0 8px 22px rgba(156, 63, 75, 0.22);
}

.offer-panel {
  animation: offer-panel-in 260ms ease;
}

.offer-panel[hidden] {
  display: none;
}

#offer-tables,
#offer-portions {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(55, 35, 25, 0.08);
}

@keyframes offer-panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 18px;
}

.offer-block,
.cake-table-wrap {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(55, 35, 25, 0.08);
}

.offer-label {
  display: block;
  margin-bottom: 22px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-label.second {
  margin-top: 34px;
}

.offer-panel-intro {
  max-width: 850px;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.offer-panel-intro.standalone-intro {
  max-width: none;
  margin-bottom: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(55, 35, 25, 0.08);
}

#offer-tables .offer-panel-intro.standalone-intro,
#offer-portions .offer-panel-intro.standalone-intro {
  max-width: 850px;
  margin-bottom: 30px;
  padding: 0 0 28px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-panel-intro h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.offer-panel-intro p {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.flavor-list article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(55, 35, 25, 0.07);
}

.flavor-list h3,
.menu-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.flavor-list p,
.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.price-block {
  background: var(--ink);
  color: var(--paper);
}

.price-block .offer-label {
  color: #f3c8a7;
}

.price-list {
  display: grid;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.price-list span {
  color: rgba(255, 253, 248, 0.7);
  font-size: 14px;
}

.price-list strong {
  flex: 0 0 auto;
  color: #f3c8a7;
}

.price-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.classic-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

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

.classic-card,
.occasion-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(55, 35, 25, 0.07);
}

.classic-card {
  display: flex;
  flex-direction: column;
}

.occasion-card {
  background: var(--paper);
}

.occasion-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr);
  gap: 12px 24px;
}

.occasion-card-featured .occasion-card-head,
.occasion-card-featured > p {
  grid-column: 1;
}

.occasion-card-featured .decor-note {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
}

.classic-card h3,
.occasion-card h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.classic-card p,
.occasion-card p,
.soft-note-block p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.classic-card p:last-child,
.occasion-card p:last-child,
.soft-note-block p:last-child {
  margin-bottom: 0;
}

.classic-card strong {
  display: inline-flex;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--berry);
  background: rgba(156, 63, 75, 0.055);
  font-size: 12px;
}

.classic-price-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 126px;
  line-height: 1.35;
}

.classic-price-list span {
  display: inline-flex;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  white-space: nowrap;
}

.classic-price-list b {
  font: inherit;
  font-weight: 900;
}

.occasion-card strong {
  flex: 0 0 auto;
  color: var(--berry);
  font-size: 15px;
  line-height: 1.45;
  text-align: right;
}

.occasion-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.occasion-card-head h3 {
  margin-bottom: 0;
}

.occasion-price-list {
  display: grid;
  gap: 3px;
  min-width: 150px;
}

.occasion-price-list span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.occasion-price-list em,
.occasion-price-list b {
  font: inherit;
}

.occasion-card ul,
.menu-card ul {
  margin: 0 0 12px 18px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.occasion-card li,
.menu-card li {
  margin-bottom: 5px;
}

.occasion-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.soft-note-block {
  align-self: start;
  background: var(--paper);
}

.decor-note {
  margin-top: 0;
  padding: 20px 22px;
  border-left: 3px solid var(--berry);
  border-radius: 0 8px 8px 0;
  background: rgba(156, 63, 75, 0.045);
}

.decor-note h3 {
  margin-bottom: 12px;
  color: var(--berry);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.decor-note p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.decor-note p:last-child {
  margin-bottom: 0;
}

.sweet-table-copy {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.offer-placeholder {
  max-width: 820px;
  min-height: 260px;
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 239, 0.9)),
    radial-gradient(circle at 92% 10%, rgba(234, 195, 176, 0.36), transparent 30%);
  box-shadow: 0 16px 50px rgba(55, 35, 25, 0.08);
}

.offer-placeholder h3 {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.offer-placeholder p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.offer-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 248, 239, 0.88)),
    radial-gradient(circle at 8% 0%, rgba(234, 195, 176, 0.32), transparent 34%);
  box-shadow: 0 16px 50px rgba(55, 35, 25, 0.08);
}

#offer-tables .offer-menu-grid,
#offer-portions .offer-menu-grid {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(55, 35, 25, 0.07);
}

.menu-card > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.menu-card h3 {
  margin: 0;
}

.menu-card strong {
  flex: 0 0 auto;
  color: var(--berry);
  font-size: 14px;
}

.cake-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cake-table {
  overflow: hidden;
  border: 1px solid rgba(45, 33, 27, 0.22);
  border-radius: 8px;
}

.cake-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 120px 120px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(45, 33, 27, 0.22);
  background: #fffaf2;
}

.cake-row:last-child {
  border-bottom: 0;
}

.cake-row > * {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 14px 18px;
}

.cake-row > * + * {
  justify-content: center;
  border-left: 1px solid rgba(45, 33, 27, 0.22);
}

.cake-head {
  color: var(--paper);
  background: var(--berry);
}

.cake-wide {
  grid-template-columns: minmax(260px, 1fr) 240px;
}

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

.offer-note {
  max-width: 720px;
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--berry);
  color: var(--muted);
  background: var(--cream);
  line-height: 1.65;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
}

.offer-footer p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.6;
}

.button.offer-button {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--paper);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 310px;
  gap: 18px;
}

.portfolio {
  background: #fffaf5;
}

.portfolio-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.gallery-cluster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 248, 238, 0.88)),
    radial-gradient(circle at 7% 0%, rgba(234, 195, 176, 0.32), transparent 34%);
  box-shadow: 0 18px 48px rgba(55, 35, 25, 0.08);
}

.cluster-heading {
  grid-column: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
}

.cluster-meta {
  display: block;
  flex: 0 0 auto;
  margin-left: 2px;
  padding: 7px 10px;
  border: 1px solid rgba(176, 68, 86, 0.16);
  border-radius: 999px;
  color: var(--berry);
  background: rgba(176, 68, 86, 0.06);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cluster-heading h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 0.98;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 16px 38px rgba(55, 35, 25, 0.11);
  cursor: zoom-in;
}

.gallery-cluster:not(.is-expanded) .gallery-item {
  border: 5px solid rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 34px rgba(55, 35, 25, 0.12);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.is-extra {
  display: none;
}

.gallery-cluster.is-expanded .gallery-item.is-extra {
  display: grid;
}

.cluster-gallery {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-cluster:not(.is-expanded) .cluster-gallery {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.96fr) minmax(0, 0.96fr);
  grid-auto-rows: clamp(210px, 22vw, 310px);
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(45, 33, 27, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.64);
}

.single-gallery {
  grid-template-columns: 1fr;
}

.portions-cluster {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-cluster:not(.is-expanded) .gallery-item.wide,
.gallery-cluster:not(.is-expanded) .gallery-item.large {
  grid-column: span 1;
  grid-row: auto;
}

.single-gallery .gallery-item.wide {
  grid-column: span 1;
  grid-row: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.gallery-more {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  min-width: 170px;
  margin-top: 0;
  padding: 12px 20px;
  border: 1px solid rgba(176, 68, 86, 0.28);
  border-radius: 999px;
  color: var(--berry);
  background: rgba(255, 253, 248, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gallery-more:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 68, 86, 0.44);
  background: #fffdf8;
}

.gallery-collapse {
  display: none;
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 92px;
  margin-top: 4px;
  padding: 10px 28px 12px;
  border: 1px solid rgba(176, 68, 86, 0.28);
  border-radius: 12px;
  color: var(--berry);
  background: rgba(255, 253, 248, 0.84);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gallery-cluster.is-expanded .gallery-collapse {
  display: block;
}

.gallery-collapse:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 68, 86, 0.44);
  background: #fffdf8;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(22, 15, 12, 0.88);
  backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
  display: none;
}

.lightbox-content {
  width: min(1120px, 100%);
  max-height: 88vh;
  display: grid;
  gap: 14px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  justify-self: center;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-content figcaption {
  justify-self: center;
  max-width: 760px;
  color: rgba(255, 253, 248, 0.78);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 253, 248, 0.1);
  font: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 253, 248, 0.18);
  transform: translateY(-1px);
}

.order-guide {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background:
    radial-gradient(circle at 92% 10%, rgba(234, 195, 176, 0.18), transparent 24%),
    var(--cream);
}

.order-guide .section-heading {
  margin-bottom: 24px;
}

.order-guide .section-heading h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 0.98;
}

.order-guide-panel {
  max-width: 1060px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(55, 35, 25, 0.07);
}

.order-guide-main {
  display: block;
}

.order-guide-main p {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.order-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.order-timeline article {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.order-timeline span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.32;
}

.order-timeline strong {
  display: block;
  color: var(--berry);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.order-timeline em {
  display: block;
  margin-top: -6px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.delivery-note {
  max-width: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 2px solid var(--berry);
  color: var(--muted);
  background: #fff8ef;
  font-size: 14px;
  line-height: 1.55;
}

.reviews {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  border-top-color: #ead9cd;
  background: var(--ink);
  box-shadow: inset 0 1px rgba(45, 33, 27, 0.08), 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
  color: var(--paper);
}

.reviews::before,
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: 0;
  pointer-events: none;
}

.reviews::before {
  background: var(--ink);
}

.contact::before {
  background: var(--cream);
}

.reviews > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.reviews .eyebrow {
  color: #f3c8a7;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

figure {
  margin: 0;
}

.review-grid figure {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
}

blockquote {
  position: relative;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

figcaption {
  color: rgba(255, 253, 248, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.button.reviews-button {
  border: 1px solid rgba(255, 253, 248, 0.34);
  color: var(--paper);
  background: rgba(255, 253, 248, 0.08);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button.reviews-button:hover {
  border-color: rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.14);
  transform: translateY(-2px);
}

.contact {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  border-top-color: #e4d3c7;
  background: var(--cream);
  box-shadow: inset 0 1px rgba(45, 33, 27, 0.08), 0 0 0 100vmax var(--cream);
  clip-path: inset(0 -100vmax);
}

.contact-panel,
.map-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 5vw, 68px);
  padding: clamp(34px, 5vw, 64px);
  background: var(--paper);
}

.contact-copy p {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-list a {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-list a:hover {
  border-color: rgba(156, 63, 75, 0.55);
  transform: translateY(-2px);
}

.contact-list span,
.map-link span,
.map-link em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  display: block;
  margin-top: 6px;
  line-height: 1.35;
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #f4eadf;
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(0.94);
}

.map-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(45, 33, 27, 0.48), transparent);
  pointer-events: none;
}

.map-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: block;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.46);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 48px rgba(45, 33, 27, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.map-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.96);
}

.map-link strong {
  display: block;
  max-width: 280px;
  margin: 10px 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 0.96;
}

.map-link em {
  color: var(--berry);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(156, 63, 75, 0.24);
  border-radius: 999px;
  color: var(--berry);
  background: rgba(156, 63, 75, 0.08);
  box-shadow: 0 10px 28px rgba(45, 33, 27, 0.08);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-footer a:hover {
  color: var(--paper);
  background: var(--berry);
  box-shadow: 0 14px 32px rgba(45, 33, 27, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 22px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro,
  .contact,
  .contact-panel,
  .offer-heading,
  .offer-layout,
  .classic-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .portfolio-groups {
    grid-template-columns: 1fr;
  }

  .cluster-gallery,
  .portions-cluster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    top: 12px;
    right: 10px;
    left: 10px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    padding: 7px 10px;
    border-radius: 18px;
    transition: transform 240ms ease, box-shadow 180ms ease;
    will-change: transform;
  }

  .site-header.header-hidden {
    transform: translateY(calc(-100% - 16px));
  }

  .nav-cta {
    display: none;
  }

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

  .main-nav {
    order: initial;
    grid-column: auto;
    min-width: 0;
    justify-content: flex-start;
    gap: 2px;
    padding-bottom: 0;
    font-size: 12px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    padding: 7px 8px;
  }

  .hero {
    min-height: 810px;
    align-items: start;
    padding-top: 124px;
    padding-bottom: 80px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(30, 21, 17, 0.82), rgba(30, 21, 17, 0.52)),
      linear-gradient(0deg, rgba(30, 21, 17, 0.64), transparent 50%);
  }

  h1 {
    font-size: 46px;
    line-height: 1.08;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
  }

  .hero-title-last {
    margin-top: 0.14em;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 38px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .reviews,
  .contact {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .reviews > .section-heading,
  .reviews > .review-grid,
  .reviews > .reviews-action {
    margin-right: 18px;
    margin-left: 18px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .intro .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.5;
  }

  .intro h2 {
    max-width: 330px;
    font-size: 38px;
    line-height: 1.02;
  }

  .intro-copy {
    font-size: 14px;
    line-height: 1.65;
  }

  .intro-copy p {
    margin-bottom: 14px;
  }

  .order-guide {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .order-guide .section-heading {
    margin-bottom: 18px;
  }

  .order-guide .section-heading h2 {
    font-size: 34px;
    line-height: 1;
  }

  .order-guide-panel {
    padding: 18px;
  }

  .order-guide-main p {
    max-width: none;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .order-timeline {
    gap: 8px;
  }

  .order-timeline article {
    min-height: 96px;
    padding: 13px;
  }

  .order-timeline span,
  .order-timeline em {
    font-size: 13px;
  }

  .order-timeline strong {
    font-size: 18px;
  }

  .delivery-note {
    margin-top: 16px;
    padding: 13px 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 10px;
  }

  .portfolio-groups {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-cluster {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .cluster-heading {
    grid-column: 1;
    position: static;
    gap: 10px;
    padding-bottom: 10px;
    min-width: 0;
  }

  .cluster-meta {
    margin-right: 6px;
    font-size: 9px;
  }

  .cluster-heading h3 {
    font-size: 27px;
  }

  .cluster-gallery,
  .portions-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 8px;
  }

  .gallery-cluster:not(.is-expanded) .cluster-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
    padding: 6px;
  }

  .gallery-cluster:not(.is-expanded) .gallery-item:nth-child(3) {
    display: none;
  }

  .gallery-more {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    min-width: 0;
    padding: 9px 13px;
    font-size: 10px;
  }

  .gallery-collapse {
    min-width: 82px;
    padding: 9px 22px 11px;
    font-size: 20px;
  }

  .single-gallery {
    grid-template-columns: 1fr;
  }

  .cluster-gallery .gallery-item.wide,
  .cluster-gallery .gallery-item.large,
  .single-gallery .gallery-item.wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .flavor-list,
  .offer-menu-grid,
  .portions-grid,
  .classic-cards,
  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .offer-heading h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .offer-heading > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .offer-panel-intro {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .offer-panel-intro.standalone-intro {
    margin-bottom: 12px;
    padding: 18px;
  }

  .offer-panel-intro h3 {
    font-size: 24px;
    line-height: 1.08;
  }

  .offer-panel-intro p {
    font-size: 13px;
    line-height: 1.58;
  }

  .offer-block,
  .cake-table-wrap {
    padding: 18px;
  }

  #offer-tables,
  #offer-portions {
    padding: 18px;
  }

  #offer-tables .offer-panel-intro.standalone-intro,
  #offer-portions .offer-panel-intro.standalone-intro {
    margin-bottom: 18px;
    padding: 0 0 18px;
  }

  .flavor-list article {
    min-height: 135px;
    padding: 16px;
  }

  .flavor-list h3,
  .menu-card h3 {
    font-size: 20px;
  }

  .flavor-list p,
  .menu-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .menu-card {
    min-height: 160px;
    padding: 16px;
  }

  .offer-menu-grid {
    gap: 10px;
    padding: 10px;
  }

  #offer-tables .offer-menu-grid,
  #offer-portions .offer-menu-grid {
    padding: 0;
  }

  .classic-card,
  .occasion-card {
    min-height: 170px;
    padding: 16px;
  }

  .classic-card h3,
  .occasion-card h3 {
    font-size: 20px;
  }

  .classic-card p,
  .occasion-card p,
  .soft-note-block p {
    font-size: 12px;
    line-height: 1.45;
  }

  .classic-card strong {
    margin-top: auto;
    padding: 7px 10px;
    font-size: 10px;
    line-height: 1.25;
  }

  .classic-price-list {
    min-width: 92px;
    gap: 3px;
    border-radius: 8px;
  }

  .classic-price-list span {
    gap: 6px;
  }

  .occasion-card strong {
    margin-bottom: 0;
    font-size: 10px;
    line-height: 1.35;
  }

  .occasion-card-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .occasion-price-list {
    min-width: 104px;
    gap: 2px;
  }

  .occasion-card ul,
  .menu-card ul {
    margin-left: 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .occasion-card span {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .decor-note {
    grid-column: 1 / -1;
  }

  .decor-note h3 {
    font-size: 22px;
  }

  .decor-note p,
  .sweet-table-copy {
    font-size: 12px;
    line-height: 1.5;
  }

  #offer-kids .occasion-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #offer-kids .offer-block {
    padding-right: 10px;
    padding-left: 10px;
  }

  #offer-kids .occasion-card {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(82px, 0.64fr) minmax(0, 1.36fr);
    gap: 8px 12px;
    padding: 14px;
  }

  #offer-kids .occasion-card-featured {
    grid-column: auto;
  }

  #offer-kids .occasion-card-head {
    display: block;
    grid-column: 1;
    grid-row: 1 / span 3;
    margin-bottom: 0;
  }

  #offer-kids .occasion-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 0.98;
  }

  #offer-kids .occasion-card p,
  #offer-kids .occasion-card ul {
    grid-column: 2;
    margin-bottom: 0;
  }

  #offer-kids .occasion-card p + p,
  #offer-kids .occasion-card ul + p {
    margin-top: 4px;
  }

  #offer-kids .occasion-card ul {
    margin-left: 13px;
    padding-left: 0;
  }

  #offer-kids .occasion-card strong {
    display: block;
    text-align: left;
  }

  #offer-kids .occasion-price-list {
    min-width: 0;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 10.5px;
    line-height: 1.25;
  }

  #offer-kids .occasion-price-list span {
    display: block;
  }

  #offer-kids .occasion-price-list em,
  #offer-kids .occasion-price-list b {
    display: block;
  }

  #offer-kids .occasion-price-list b {
    margin-top: 1px;
    color: var(--berry);
    font-weight: 900;
  }

  #offer-kids .decor-note {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 4px;
    padding: 12px 13px;
    border-left-width: 2px;
    border-radius: 8px;
  }

  #offer-kids .decor-note h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  #offer-kids .decor-note p {
    margin-bottom: 3px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  #offer-kids .soft-note-block {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  #offer-kids .soft-note-block .occasion-card-head {
    display: flex;
    grid-column: 1 / -1;
    grid-row: auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .offer-placeholder {
    min-height: 210px;
    padding: 24px 18px;
  }

  .offer-placeholder h3 {
    font-size: 30px;
  }

  .offer-placeholder p {
    font-size: 13px;
    line-height: 1.55;
  }

  .menu-card > div {
    display: block;
    margin-bottom: 12px;
  }

  .menu-card strong {
    display: block;
    margin-top: 7px;
    font-size: 12px;
  }

  .offer-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    margin-right: 0;
    margin-left: 0;
    padding: 6px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 8px;
  }

  .offer-tab {
    min-width: 0;
    min-height: 38px;
    padding: 0 6px;
    font-size: 12px;
    line-height: 1.2;
    white-space: normal;
  }

  .cake-table {
    overflow: hidden;
  }

  .cake-row {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 66px 66px;
    min-height: 52px;
    font-size: 11px;
  }

  .cake-row > * {
    padding: 10px 8px;
  }

  .cake-wide {
    grid-template-columns: minmax(0, 1fr) 132px;
  }

  .offer-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button.offer-button {
    width: 100%;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .cluster-gallery .gallery-item.large,
  .cluster-gallery .gallery-item.wide,
  .single-gallery .gallery-item.wide {
    grid-column: span 1;
    grid-row: auto;
  }

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

  .review-grid figure {
    min-height: 172px;
    padding: 16px;
  }

  .review-grid figure:last-child {
    grid-column: 1 / -1;
    min-height: 128px;
  }

  blockquote {
    font-size: 22px;
    line-height: 1.1;
  }

  figcaption {
    font-size: 12px;
  }

  .reviews-action {
    margin-top: 22px;
  }

  .contact {
    gap: 0;
  }

  .contact-panel {
    gap: 20px;
    padding: 34px 18px 24px;
    border-radius: 0;
    box-shadow: none;
  }

  .contact-copy p {
    max-width: none;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.58;
  }

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

  .contact-list a {
    padding: 13px;
  }

  .contact-list a:first-child {
    grid-column: 1 / -1;
  }

  .contact-list strong {
    overflow-wrap: anywhere;
    font-size: 13px;
  }

  .map-card {
    min-height: 300px;
    border-radius: 0;
    box-shadow: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer a {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }
}
