:root {
  --ink: #211714;
  --muted: #6d5c55;
  --cream: #fff8ee;
  --paper: #ffffff;
  --blush: #f6c3b5;
  --berry: #9e3145;
  --cocoa: #5a3429;
  --mint: #d9ebe1;
  --gold: #d9973f;
  --line: rgba(33, 23, 20, 0.14);
  --shadow: 0 24px 80px rgba(48, 28, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body:not(.is-ready) {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 248, 238, 0.94);
  box-shadow: 0 10px 28px rgba(54, 34, 26, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.mini-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  object-fit: cover;
  background: #446fd1;
}

body.is-ready .site-header .brand-logo {
  animation: logoRollIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  border-color: rgba(33, 23, 20, 0.16);
}

.brand-logo.large {
  width: 72px;
  height: 72px;
  border-color: rgba(33, 23, 20, 0.16);
}

.brand-name {
  font-size: 17px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(158, 49, 69, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 240, 189, 0.34), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(246, 195, 181, 0.38), transparent 26%),
    linear-gradient(180deg, #fbefe4 0%, #fff8ee 100%);
}

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

.hero-image {
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
}

body.is-ready .hero-image {
  animation: heroBloom 1400ms ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(33, 23, 20, 0.78), rgba(33, 23, 20, 0.36) 48%, rgba(33, 23, 20, 0.08)),
    linear-gradient(0deg, rgba(33, 23, 20, 0.34), rgba(33, 23, 20, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 92px) clamp(18px, 7vw, 92px);
  color: #fff;
}

body.is-ready .hero .eyebrow {
  animation: riseIn 520ms ease-out 260ms both;
}

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

.hero .eyebrow {
  color: #ffd9cf;
}

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

h1,
h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.96;
}

h1 {
  max-width: 720px;
  font-size: clamp(52px, 8vw, 104px);
}

.fade-reveal {
  max-width: 720px;
}

body.is-ready .fade-reveal {
  animation: riseIn 520ms ease-out 120ms both;
}

h2 {
  max-width: 780px;
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

body.is-ready .hero-copy {
  animation: riseIn 520ms ease-out 240ms both;
}

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

body.is-ready .hero-actions {
  animation: riseIn 520ms ease-out 360ms both;
}

@keyframes logoRollIn {
  from {
    opacity: 0;
    transform: translateX(-28px) rotate(-170deg) scale(0.78);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
  }
}

@keyframes heroBloom {
  from {
    opacity: 0.72;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--berry);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button.wide {
  width: 100%;
}

section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--paper);
}

.section-heading {
  width: min(1080px, 100%);
  margin: 0 auto 34px;
}

.section-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.menu-list,
.occasion-pills,
.order-section {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.order-copy p,
.order-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(217, 151, 63, 0.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(246, 195, 181, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    var(--cream);
}

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

.menu-section::before {
  inset: 48px auto auto -70px;
  width: 220px;
  height: 220px;
  border: 18px solid rgba(158, 49, 69, 0.08);
  border-radius: 50%;
}

.menu-section::after {
  inset: auto 4% 56px auto;
  width: 140px;
  height: 140px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(217, 235, 225, 0.56), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-note {
  width: min(1080px, 100%);
  margin: -8px auto 18px;
  border: 1px solid rgba(158, 49, 69, 0.18);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(48, 28, 20, 0.06);
}

.menu-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--berry);
  font-size: 15px;
}

.menu-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-dropdown,
.menu-single {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(48, 28, 20, 0.06);
  overflow: hidden;
}

.menu-dropdown summary,
.menu-single {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.menu-single {
  grid-template-columns: 1fr;
  cursor: default;
}

.menu-dropdown summary::-webkit-details-marker {
  display: none;
}

.menu-dropdown summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--berry);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.menu-dropdown[open] summary::after {
  content: "-";
}

.keto-menu {
  border-color: rgba(68, 111, 209, 0.28);
  background: rgba(217, 235, 225, 0.58);
}

.keto-menu summary::after {
  background: #446fd1;
}

.keto-menu b {
  color: #244f49;
  background: rgba(255, 255, 255, 0.76);
}

.menu-dropdown summary span,
.menu-single span {
  display: grid;
  gap: 6px;
}

.menu-dropdown strong,
.menu-single strong {
  font-size: 20px;
}

.menu-dropdown small,
.menu-single small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.menu-dropdown b {
  justify-self: end;
  min-width: 92px;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--berry);
  background: var(--cream);
  text-align: center;
  font-size: 13px;
}

.menu-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 20px 22px 22px 72px;
  list-style: disc;
}

.menu-options.compact {
  grid-template-columns: 1fr;
}

.menu-options li {
  padding: 2px 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.menu-options li::marker {
  color: var(--berry);
}

.menu-options em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.occasions {
  position: relative;
  overflow: hidden;
}

.occasions::before {
  position: absolute;
  inset: auto -12vw -28vw auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(217, 151, 63, 0.14);
  content: "";
}

.occasions::after {
  position: absolute;
  inset: 28px auto auto 4%;
  width: 160px;
  height: 160px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(246, 195, 181, 0.28), rgba(255, 255, 255, 0)),
    rgba(255, 248, 238, 0.5);
  transform: rotate(-14deg);
  content: "";
}

.occasion-pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.occasion-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(158, 49, 69, 0.2);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--berry);
  background: rgba(255, 248, 238, 0.84);
  box-shadow: 0 12px 28px rgba(48, 28, 20, 0.07);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.occasion-pill:hover,
.occasion-pill:focus-visible,
.occasion-pill.is-active {
  transform: translateY(-2px);
  border-color: rgba(158, 49, 69, 0.45);
  color: #fff;
  background: var(--berry);
}

.gallery {
  position: relative;
  background:
    radial-gradient(circle at 84% 8%, rgba(246, 195, 181, 0.28), transparent 28%),
    radial-gradient(circle at 10% 70%, rgba(217, 235, 225, 0.36), transparent 24%),
    var(--cream);
  overflow: hidden;
}

.gallery::before {
  inset: 56px auto auto 5%;
  width: 170px;
  height: 170px;
  border: 16px solid rgba(217, 151, 63, 0.12);
  border-radius: 50%;
}

.gallery::after {
  inset: auto 6% 42px auto;
  width: 200px;
  height: 88px;
  border-radius: 999px;
  background: rgba(158, 49, 69, 0.08);
}

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

.portfolio-slider-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.portfolio-rotator {
  --portfolio-size: min(78vw, 470px);
  width: var(--portfolio-size);
  height: var(--portfolio-size);
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(48, 28, 20, 0.18);
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  transform: rotate(-90deg);
  background: #fff;
}

.portfolio-rotator::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  display: flex;
  flex-direction: column;
}

.portfolio-slide {
  width: var(--portfolio-size);
  height: var(--portfolio-size);
  flex: 0 0 var(--portfolio-size);
  scroll-snap-align: start;
  transform: rotate(90deg);
  transform-origin: center center;
}

.portfolio-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--cocoa);
}

.portfolio-link::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(33, 23, 20, 0.66), rgba(33, 23, 20, 0.08) 54%);
  content: "";
}

.portfolio-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.portfolio-link:hover img,
.portfolio-link:focus-visible img {
  transform: scale(1.04);
}

.portfolio-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 40px);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.portfolio-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin: 22px auto 0;
  border: 1px solid rgba(33, 23, 20, 0.08);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(48, 28, 20, 0.08);
}

.portfolio-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(158, 49, 69, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.portfolio-dot:hover,
.portfolio-dot:focus-visible,
.portfolio-dot.is-active {
  transform: scale(1.16);
  background: var(--berry);
}

.order-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 240, 189, 0.36), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(246, 195, 181, 0.26), transparent 22%),
    linear-gradient(145deg, #fffdf8, #f8ece6);
  box-shadow: 0 26px 64px rgba(72, 38, 24, 0.08);
}

.order-section::before {
  inset: 24px auto auto -42px;
  width: 180px;
  height: 180px;
  border: 18px solid rgba(68, 111, 209, 0.08);
  border-radius: 50%;
}

.order-section::after {
  inset: auto -40px 24px auto;
  width: 170px;
  height: 170px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(217, 235, 225, 0.5), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
}

.order-copy,
.order-panel {
  position: relative;
  z-index: 1;
}

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

.order-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.order-showpiece {
  width: min(100%, 420px);
  margin-top: 6px;
  border: 1px solid rgba(158, 49, 69, 0.12);
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 238, 0.94)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(48, 28, 20, 0.1);
}

.order-showpiece img {
  width: 100%;
  height: auto;
}

.mini-logo {
  margin-bottom: 24px;
}

.order-actions {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.order-group {
  display: grid;
  gap: 9px;
}

.order-group span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.contact-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(158, 49, 69, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--berry);
  background: rgba(158, 49, 69, 0.08);
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.contact-pill:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--berry);
}

.phone-link {
  display: inline-flex;
  min-height: 34px;
  border: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--berry);
  background: transparent;
  font-size: 20px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}

.phone-link:hover,
.phone-link:focus-visible,
.phone-link.is-copied {
  color: #fff;
  background: var(--berry);
}

.social-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.social-links a:hover,
.footer-links a:hover {
  border-color: rgba(158, 49, 69, 0.36);
  color: var(--berry);
  background: rgba(158, 49, 69, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  font-weight: 700;
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    display: none;
    width: min(260px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    color: var(--ink);
    background: rgba(255, 248, 238, 0.98);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(33, 23, 20, 0.76), rgba(33, 23, 20, 0.12)),
      linear-gradient(90deg, rgba(33, 23, 20, 0.68), rgba(33, 23, 20, 0.18));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 42px;
  }

  .order-section {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .menu-section::before,
  .menu-section::after,
  .occasions::after,
  .gallery::before,
  .gallery::after,
  .order-section::before,
  .order-section::after {
    opacity: 0.6;
  }

  .order-showpiece {
    width: 100%;
  }

  .occasion-pill {
    min-height: 44px;
    padding: 0 15px;
  }

  .menu-dropdown summary,
  .menu-single {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px;
  }

  .menu-dropdown b {
    justify-self: start;
    grid-column: 1;
    grid-row: 2;
    width: max-content;
  }

  .menu-dropdown summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .menu-options {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .portfolio-rotator {
    --portfolio-size: min(84vw, 380px);
  }

  .portfolio-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }

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

@media (max-width: 460px) {
  .occasion-pills {
    align-items: stretch;
    flex-direction: column;
  }

  .occasion-pill {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  body:not(.is-ready) {
    overflow: auto;
  }

}
