*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* Theme: #F3B8C4 + #C1687A */
  --blush: #f3b8c4;
  --petal: #f3b8c4;
  --rose: #c1687a;
  --dusty: #c1687a;
  --deep: #c1687a;

  --ink: #c1687a;
  --ink-soft: #c1687a;
  --ivory: #f3b8c4;
  --ivory-deep: #f3b8c4;
  --champagne: #c1687a;
  --champagne-deep: #c1687a;
  --white: #fff5f7;
  --line: rgba(193, 104, 122, 0.18);
  --shadow: 0 24px 60px rgba(193, 104, 122, 0.14);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* aliases used across older rules */
  --cream: var(--ivory);
  --cream-dark: var(--ivory-deep);
  --brown: var(--ink);
  --brown-soft: var(--ink-soft);
  --accent: var(--champagne-deep);
  --accent-hover: #a85568;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse at top, rgba(193, 104, 122, 0.16), transparent 48%),
    radial-gradient(ellipse at bottom right, rgba(243, 184, 196, 0.55), transparent 42%),
    var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--champagne-deep);
}

/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 184, 196, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
  color: var(--ink);
}

.logo img {
  display: block;
  height: clamp(2.75rem, 5.5vw, 3.5rem);
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo:hover {
  text-decoration: none;
  color: var(--champagne-deep);
}

@media (max-width: 520px) {
  .logo-text {
    font-size: 1.05rem;
    max-width: 8.5rem;
    white-space: normal;
    line-height: 1.15;
  }
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--ink);
}

.nav-dropdown-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 120;
}

.nav-dropdown-menu[hidden] {
  display: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  letter-spacing: 0.1em;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(193, 104, 122, 0.08);
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(193, 104, 122, 0.28);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(193, 104, 122, 0.06);
}

.btn-primary {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 248, 250, 0.7);
}

.btn-light:hover {
  background: var(--white);
  color: var(--deep);
  border-color: var(--white);
}

.btn-whatsapp,
.btn-instagram,
.btn-tiktok {
  background: var(--white);
  color: var(--deep);
  border-color: rgba(255, 248, 250, 0.9);
}

.btn-whatsapp:hover,
.btn-instagram:hover,
.btn-tiktok:hover {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--deep);
}

.btn-lg {
  padding: 0.9rem 1.7rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  order: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0.85rem;
    padding-top: 0.75rem;
    display: none;
  }

  .nav-actions {
    order: 4;
    width: 100%;
    flex-direction: column;
    margin-left: 0;
    gap: 0.55rem;
    padding-bottom: 0.35rem;
    display: none;
  }

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

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 0.75rem;
  }

  .nav-dropdown-menu a {
    padding: 0.45rem 0;
  }
}

/* Hero / slideshow */
.hero {
  position: relative;
}

.slideshow {
  position: relative;
  min-height: min(88vh, 760px);
  overflow: hidden;
  background: var(--deep);
}

[data-slideshow-slides] {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s ease-out;
  filter: saturate(0.92) contrast(1.05);
}

.slide.is-active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(193, 104, 122, 0.72) 0%,
    rgba(193, 104, 122, 0.4) 48%,
    rgba(243, 184, 196, 0.12) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(5rem, 14vh, 8rem) 1.5rem;
  min-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--petal);
  margin: 0 0 1.1rem;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 1.1rem;
  max-width: 14ch;
  letter-spacing: -0.01em;
}

.slide-content h1.brand-title {
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 400;
  max-width: none;
  letter-spacing: 0;
}

.lede {
  font-size: 1.05rem;
  max-width: 34ch;
  margin: 0 0 2rem;
  color: rgba(255, 248, 250, 0.9);
  font-weight: 400;
}

.slideshow-controls {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}

.slideshow-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 248, 250, 0.45);
  background: rgba(193, 104, 122, 0.4);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}

.slideshow-btn:hover {
  background: rgba(193, 104, 122, 0.55);
  border-color: var(--petal);
}

.slideshow-dots {
  position: absolute;
  bottom: 2.15rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}

.slideshow-dots button {
  width: 28px;
  height: 2px;
  border-radius: 0;
  border: none;
  padding: 0;
  background: rgba(255, 248, 250, 0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.slideshow-dots button[aria-selected="true"] {
  background: var(--petal);
  transform: scaleX(1.15);
}

/* Sections */
.section {
  padding: 5.5rem 1.5rem;
}

.section-alt {
  background: linear-gradient(180deg, var(--ivory-deep), var(--ivory));
}

#why-us {
  background: #ffffff;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 500;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}

.section-intro {
  margin: 0 0 2.5rem;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
  font-weight: 500;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 700px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.about-accent {
  min-height: 360px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.about-who {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(243, 184, 196, 0.35), transparent 48%),
    var(--blush);
}

.about-who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.about-who-copy {
  position: relative;
  z-index: 2;
}

.about-who-copy .eyebrow {
  color: var(--dusty);
}

.about-who-copy h2 {
  margin-top: 0.25rem;
}

.about-who-copy p {
  color: var(--ink-soft);
  max-width: 48ch;
}

.about-mission-label {
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--deep);
}

.about-mission {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--deep);
  max-width: 42ch;
  margin-top: 0;
}

.about-signoff {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep);
  line-height: 1.5;
}

.about-who-copy .page-hero-actions {
  margin-top: 1.5rem;
}

.about-who-photo {
  position: relative;
  min-height: min(82vh, 880px);
  background-color: transparent;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* Soft dissolve into the blush page — no hard frame */
  -webkit-mask-image: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 12%,
    #000 28%,
    #000 78%,
    rgba(0, 0, 0, 0.75) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 12%,
    #000 28%,
    #000 78%,
    rgba(0, 0, 0, 0.75) 92%,
    transparent 100%
  );
}

.about-who-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--blush) 0%,
      rgba(243, 184, 196, 0.72) 14%,
      rgba(243, 184, 196, 0.2) 32%,
      transparent 48%
    ),
    linear-gradient(
      to top,
      var(--blush) 0%,
      rgba(243, 184, 196, 0.55) 10%,
      transparent 26%
    ),
    linear-gradient(
      to bottom,
      var(--blush) 0%,
      rgba(243, 184, 196, 0.35) 8%,
      transparent 20%
    ),
    radial-gradient(
      ellipse at 68% 42%,
      rgba(243, 184, 196, 0.28),
      transparent 58%
    );
}

@media (max-width: 900px) {
  .about-who-grid {
    grid-template-columns: 1fr;
  }

  .about-who-photo {
    min-height: min(68vh, 640px);
    order: -1;
    -webkit-mask-image: linear-gradient(
      to top,
      transparent 0%,
      #000 18%,
      #000 82%,
      rgba(0, 0, 0, 0.7) 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to top,
      transparent 0%,
      #000 18%,
      #000 82%,
      rgba(0, 0, 0, 0.7) 94%,
      transparent 100%
    );
  }

  .about-who-photo::after {
    background:
      linear-gradient(
        to top,
        var(--blush) 0%,
        rgba(243, 184, 196, 0.75) 14%,
        transparent 38%
      ),
      linear-gradient(
        to bottom,
        var(--blush) 0%,
        rgba(243, 184, 196, 0.4) 10%,
        transparent 24%
      ),
      radial-gradient(
        ellipse at 50% 40%,
        rgba(243, 184, 196, 0.22),
        transparent 60%
      );
  }
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
  transition: transform 0.7s ease;
}

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

.gallery-item figcaption {
  padding: 1rem 1.1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.gallery-item-wide {
  grid-column: 1 / -1;
}

.gallery-item-wide img {
  height: 360px;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img,
  .gallery-item-wide img {
    height: 260px;
  }
}

.cta-band {
  background: var(--deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(243, 184, 196, 0.28), transparent 42%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.4rem;
  color: var(--white);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 248, 250, 0.78);
}

.cta-band .btn-primary {
  background: var(--petal);
  color: var(--deep);
  border-color: var(--petal);
}

.cta-band .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--deep);
}

.cta-invite {
  background: var(--deep);
  color: var(--white);
  text-align: center;
  padding: clamp(4.5rem, 12vw, 7rem) 1.5rem;
}

.cta-invite-inner {
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-invite h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cta-invite p {
  margin: 0 0 2rem;
  color: rgba(255, 248, 250, 0.88);
  font-size: 1.05rem;
  max-width: 34ch;
}

.btn-cta-invite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 16rem);
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  background: var(--petal);
  color: var(--deep);
  border: 1px solid var(--petal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-cta-invite:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--deep);
  text-decoration: none;
}

.menu-header {
  margin-bottom: 2rem;
}

.food-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.food-menu-col {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem;
  box-shadow: none;
}

.food-menu-col-alt {
  background: linear-gradient(160deg, #f3ebe0, #faf6f0);
}

.food-menu-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.food-menu-col .food-menu-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--champagne);
  margin: 0.85rem 0 1.25rem;
}

.menu-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}

.menu-price-list li span:last-child {
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--champagne-deep);
}

.menu-note {
  margin: 1.15rem 0 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-style: italic;
}

.finger-foods-table-wrap {
  overflow-x: auto;
}

.finger-foods-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.finger-foods-table th,
.finger-foods-table td {
  padding: 0.75rem 0.35rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.finger-foods-table th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 500;
}

.finger-foods-table td:nth-child(2),
.finger-foods-table td:nth-child(3),
.finger-foods-table th:nth-child(2),
.finger-foods-table th:nth-child(3) {
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
  color: var(--champagne-deep);
}

.finger-foods-table th:nth-child(2),
.finger-foods-table th:nth-child(3) {
  color: var(--ink-soft);
}

.menu-cta {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 800px) {
  .food-menu {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(193, 104, 122, 0.2);
  background: var(--deep);
  color: rgba(255, 248, 250, 0.85);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

.footer-inner strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
}

.footer-contact {
  width: 100%;
}

.footer-contact-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petal);
}

.footer-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.footer-phones a {
  color: var(--petal);
  text-decoration: none;
}

.footer-phones a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.footer-contact .footer-socials .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.muted {
  color: rgba(193, 104, 122, 0.62);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.site-footer .muted {
  color: rgba(255, 248, 250, 0.58);
}

/* Order page */
.page-order {
  padding: 3.5rem 1.5rem 5rem;
}

.order-page-inner {
  max-width: 980px;
}

.order-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.order-choice-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.order-choice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(168, 135, 85, 0.45);
  text-decoration: none;
  color: inherit;
}

.order-choice-card h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0;
}

.order-choice-card p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  flex: 1;
}

.order-choice-card .btn {
  align-self: flex-start;
  margin-top: 0.75rem;
  pointer-events: none;
}

.order-price-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  margin-bottom: 2.5rem;
}

.order-price-preview .food-menu-title {
  margin-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .order-choice-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .order-choice-grid {
    grid-template-columns: 1fr;
  }
}

.order-page-header {
  margin-bottom: 2.5rem;
}

.order-eyebrow {
  color: var(--champagne-deep);
  margin-bottom: 0.65rem;
}

.order-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.order-lede {
  margin: 0;
  max-width: 48ch;
  color: var(--ink-soft);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 820px) {
  .order-layout {
    grid-template-columns: 1fr;
  }
}

.order-builder-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 1.15rem;
}

.order-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-line {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: none;
}

.order-line-fields {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(100px, 120px);
  gap: 1rem 1.25rem;
  min-width: 0;
}

.order-line-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.order-line-actions[hidden] {
  display: none !important;
}

.order-line-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.7rem 1.35rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid rgba(193, 104, 122, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.order-line-remove:hover {
  color: #8b2e2e;
  background: rgba(139, 46, 46, 0.05);
  border-color: rgba(139, 46, 46, 0.35);
}

.order-line-remove[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .order-line-fields {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .order-field-qty {
    max-width: 140px;
  }

  .order-line-actions {
    justify-content: stretch;
  }

  .order-line-remove {
    width: 100%;
    min-width: 0;
  }
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.order-field-qty {
  max-width: 90px;
}

.order-field select,
.order-field input {
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.7rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
}

.order-field select:focus,
.order-field input:focus {
  outline: 1px solid var(--champagne-deep);
  outline-offset: 2px;
}

.add-pastry-btn {
  margin-top: 1.1rem;
  width: fit-content;
}

.order-contact-label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.order-phone {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  resize: none;
  max-width: 320px;
}

.order-phone:focus {
  outline: 1px solid var(--champagne-deep);
  outline-offset: 2px;
}

.order-notes-label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1.75rem;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.order-notes {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  resize: vertical;
  min-height: 4.5rem;
}

.order-notes:focus {
  outline: 1px solid var(--champagne-deep);
  outline-offset: 2px;
}

.order-summary-card {
  position: sticky;
  top: 5.5rem;
  background: var(--deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: none;
}

.order-summary-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--white);
}

.order-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 248, 250, 0.14);
  font-size: 0.94rem;
}

.order-summary-item:last-child {
  border-bottom: none;
}

.order-summary-item-main {
  font-weight: 500;
}

.order-summary-item-meta {
  color: rgba(255, 248, 250, 0.65);
  font-size: 0.88rem;
}

.order-summary-empty {
  margin: 0 0 1rem;
  color: rgba(255, 248, 250, 0.65);
  font-size: 0.94rem;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1rem 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(243, 184, 196, 0.55);
  font-size: 1rem;
}

.order-summary-total strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--petal);
}

.order-submit {
  width: 100%;
  margin-top: 0.35rem;
  background: var(--petal);
  color: var(--deep);
  border-color: var(--petal);
}

.order-submit:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--deep);
}

.order-footnote {
  margin: 0.95rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 248, 250, 0.58);
  line-height: 1.5;
}

.order-footnote a {
  color: var(--petal);
}

.order-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  max-width: min(90vw, 400px);
  padding: 0.95rem 1.3rem;
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid rgba(193, 104, 122, 0.35);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  z-index: 200;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.order-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nav-actions .btn[aria-current="page"] {
  box-shadow: inset 0 0 0 1px var(--champagne);
}

/* Owner / shop orders dashboard */
.page-owner {
  padding: 3.5rem 1.5rem 5rem;
}

.owner-inner {
  max-width: 760px;
}

.owner-login {
  max-width: 420px;
  margin: 0 auto;
  padding: 2rem 0;
}

.owner-login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.owner-login-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.owner-login-form input {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.owner-login-form input:focus {
  outline: 1px solid var(--champagne-deep);
  outline-offset: 2px;
}

.owner-login-error {
  margin: 0;
  color: #8b2e2e;
  font-size: 0.9rem;
}

.owner-login-form .btn {
  width: fit-content;
}

.owner-dashboard[hidden],
.owner-login[hidden] {
  display: none !important;
}

.owner-inner-wide {
  max-width: 960px;
}

.owner-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.owner-tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.owner-tab.is-active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.owner-panel[hidden] {
  display: none !important;
}

.owner-panel-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.owner-panel-intro {
  margin: 0 0 1.25rem;
}

.admin-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  resize: vertical;
}

.admin-form label.admin-check {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
}

.admin-form label.admin-check input {
  width: auto;
  padding: 0;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-preview {
  max-width: 220px;
}

.admin-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.admin-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.admin-filter .btn.is-active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.admin-products-list,
.admin-gallery-list {
  display: grid;
  gap: 1rem;
}

.admin-product-card,
.admin-gallery-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-product-media,
.admin-gallery-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.admin-product-body h3,
.admin-gallery-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.admin-product-meta {
  margin: 0 0 0.35rem;
  color: var(--champagne-deep);
  font-weight: 500;
}

.admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-slideshow {
  position: relative;
  margin-top: 1.5rem;
  background: var(--deep);
  overflow: hidden;
  min-height: min(62vh, 520px);
}

.product-slideshow-viewport {
  position: relative;
  min-height: min(62vh, 520px);
}

.product-slideshow-track {
  position: absolute;
  inset: 0;
}

.product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.product-slide-media {
  position: absolute;
  inset: 0;
}

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

.product-slide-media.product-card-media-empty {
  background: rgba(193, 104, 122, 0.25);
  color: var(--white);
}

.product-slide-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.35rem 4.5rem;
  background: linear-gradient(to top, rgba(193, 104, 122, 0.88), transparent);
  color: var(--white);
}

.product-slide-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.product-slide-body p {
  margin: 0;
  color: var(--petal);
  font-weight: 500;
  font-size: 1.05rem;
}

.product-slideshow-controls {
  position: absolute;
  bottom: 1.15rem;
  right: 1.15rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.product-slideshow .slideshow-btn {
  background: rgba(193, 104, 122, 0.45);
  color: var(--white);
  border-color: rgba(255, 248, 250, 0.4);
}

.product-slideshow .slideshow-btn:hover {
  background: rgba(193, 104, 122, 0.55);
  border-color: var(--petal);
}

.product-slideshow-dots {
  position: absolute;
  bottom: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.product-slideshow-dots button {
  width: 28px;
  height: 2px;
  border: none;
  padding: 0;
  background: rgba(255, 248, 250, 0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.product-slideshow-dots button[aria-selected="true"] {
  background: var(--petal);
  transform: scaleX(1.15);
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory);
}

.product-card-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8e0d4;
}

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

.product-card-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  min-height: 160px;
}

.product-card-body {
  padding: 0.75rem 0.85rem 0.9rem;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

.product-card-body p {
  margin: 0;
  color: var(--champagne-deep);
  font-weight: 500;
}

@media (max-width: 600px) {
  .admin-product-card,
  .admin-gallery-card {
    grid-template-columns: 1fr;
  }

  .admin-product-media,
  .admin-gallery-card img {
    width: 100%;
    height: 180px;
  }
}

.owner-page-header {
  margin-bottom: 2.25rem;
}

.owner-eyebrow {
  color: var(--champagne-deep);
  margin-bottom: 0.65rem;
}

.owner-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 500;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.owner-lede {
  margin: 0 0 1.35rem;
  max-width: 48ch;
  color: var(--ink-soft);
}

.owner-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.owner-danger {
  color: #8b2e2e;
  border-color: rgba(139, 46, 46, 0.35);
}

.owner-danger:hover {
  background: rgba(139, 46, 46, 0.06);
  border-color: #8b2e2e;
}

.owner-hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.owner-empty {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem;
  text-align: center;
  border: 1px dashed var(--line);
  box-shadow: none;
}

.owner-empty p {
  margin: 0 0 0.5rem;
}

.owner-empty p:last-child {
  margin-bottom: 0;
}

.owner-empty[hidden] {
  display: none !important;
}

.owner-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.owner-order-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 1.5rem 1.45rem 1.25rem;
  border: 1px solid var(--line);
}

.owner-order-head {
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.owner-order-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.25rem;
  font-weight: 500;
}

.owner-order-id {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.owner-order-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.owner-order-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.5rem 0;
  font-size: 0.96rem;
  border-bottom: 1px solid rgba(193, 104, 122, 0.06);
}

.owner-order-line:last-child {
  border-bottom: none;
}

.owner-order-line-main {
  font-weight: 500;
}

.owner-order-line-meta {
  color: var(--champagne-deep);
  white-space: nowrap;
}

.owner-order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(193, 104, 122, 0.45);
  font-size: 1.02rem;
}

.owner-order-total strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--champagne-deep);
}

.owner-order-phone {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.owner-order-phone a {
  color: var(--champagne-deep);
  text-decoration: none;
  font-weight: 500;
}

.owner-order-phone a:hover {
  text-decoration: underline;
}

.owner-order-notes {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.owner-order-notes-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.owner-order-notes p {
  margin: 0;
  font-size: 0.95rem;
}

.owner-order-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.68rem;
}

/* Contact page */
.page-hero {
  padding: clamp(3.5rem, 10vh, 5.5rem) 0 2.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  margin: 0.35rem 0 0.85rem;
  line-height: 1.1;
}

.page-lede {
  max-width: 38ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.enquiry-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.form-second-title {
  margin-top: 3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-dl {
  margin: 1.25rem 0 1.5rem;
}

.contact-dl > div {
  margin-bottom: 1.15rem;
}

.contact-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.contact-dl dd {
  margin: 0;
}

.map-embed {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}

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

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* —— PDF template layout —— */
.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.68rem;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-top: 0.35rem;
}

.section-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cta-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.5rem;
  z-index: 4;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  pointer-events: none;
}

.hero-tagline {
  max-width: 34ch;
  margin: 0 0 1.1rem;
  color: rgba(255, 248, 250, 0.92);
  font-size: 1.05rem;
}

.hero-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  pointer-events: auto;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(193, 104, 122, 0.16);
  color: inherit;
}

.service-card-media {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0;
  color: var(--deep);
}

.service-card-body p {
  margin: 0;
  color: var(--ink-soft);
  flex: 1;
}

.service-card-body .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-grid li {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.why-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 0.35rem;
}

.why-grid span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.why-points {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
  display: grid;
  gap: 0.85rem;
  counter-reset: why-point;
}

.why-points li {
  position: relative;
  padding: 0.15rem 0 0.15rem 2.35rem;
  color: var(--ink-soft);
  line-height: 1.55;
  counter-increment: why-point;
}

.why-points li::before {
  content: counter(why-point) ".";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--deep);
  line-height: 1.4;
}

.why-points strong {
  color: var(--deep);
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--deep);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-row-compact {
  margin: 1.25rem 0 0.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.meet-preview .about-who-photo {
  min-height: min(60vh, 560px);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.two-col-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--deep);
}

.faq-list p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.narrow-form {
  max-width: 36rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand .footer-logo {
  margin-bottom: 0.75rem;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-brand p {
  margin: 0.35rem 0;
  color: rgba(255, 248, 250, 0.78);
}

.footer-hours {
  margin-top: 1rem !important;
  font-size: 0.9rem;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petal);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: rgba(255, 248, 250, 0.82);
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer .footer-phones {
  margin-top: 1rem;
}

.site-footer .footer-phones a {
  color: var(--petal);
}

.btn-social-light {
  background: transparent;
  color: rgba(255, 248, 250, 0.9);
  border-color: rgba(255, 248, 250, 0.35);
}

.btn-social-light:hover {
  background: rgba(255, 248, 250, 0.12);
  color: var(--white);
  border-color: rgba(255, 248, 250, 0.55);
}

.footer-copy {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(243, 184, 196, 0.25);
}

@media (max-width: 900px) {
  .service-card-grid,
  .why-grid,
  .testimonial-grid,
  .values-grid,
  .two-col-info,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-bar {
    bottom: 4.5rem;
  }

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

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery slideshow */
.gallery-slideshow {
  min-height: min(72vh, 640px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--deep);
  overflow: hidden;
}

.gallery-slideshow-preview {
  min-height: min(58vh, 520px);
}

.gallery-slide-overlay {
  background: linear-gradient(
    to top,
    rgba(193, 104, 122, 0.72) 0%,
    rgba(193, 104, 122, 0.15) 42%,
    transparent 70%
  );
}

.gallery-slide-content {
  min-height: inherit;
  justify-content: flex-end;
  padding: 2rem 1.5rem 4.5rem;
}

.gallery-slide-caption {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--white);
  max-width: 28ch;
}

.gallery-slideshow .slideshow-controls {
  bottom: 1.25rem;
  right: 1rem;
}

.gallery-slideshow .slideshow-dots {
  bottom: 1.45rem;
  left: 1rem;
  right: auto;
  transform: none;
}

/* —— Mobile / small-device adaptability —— */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 900px) {
  .about-who-grid,
  .meet-preview {
    grid-template-columns: 1fr;
  }

  .about-who-photo {
    min-height: min(58vh, 480px);
    order: -1;
  }

  .page-hero {
    padding: 2.5rem 0 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-lede {
    max-width: none;
  }

  .page-hero-actions,
  .hero-cta-actions,
  .cta-actions,
  .section-actions,
  .social-row {
    width: 100%;
  }

  .page-hero-actions .btn,
  .hero-cta-actions .btn,
  .cta-actions .btn,
  .section-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .cta-band .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .service-card-media {
    min-height: 180px;
  }

  .gallery-slideshow {
    min-height: min(62vh, 520px);
  }

  .gallery-slideshow-preview {
    min-height: min(48vh, 400px);
  }

  .slideshow {
    min-height: min(78vh, 640px);
  }

  .slide-content {
    min-height: min(78vh, 640px);
    padding: clamp(3.5rem, 10vh, 5rem) 1.15rem 7rem;
  }

  .hero-cta-bar {
    bottom: 3.75rem;
    padding: 0 1.15rem;
  }

  .hero-tagline {
    font-size: 0.98rem;
  }

  .slideshow-controls {
    bottom: 1.15rem;
    right: 1rem;
  }

  .footer-logo .logo-text {
    font-size: 1.1rem;
  }

  .footer-socials .btn {
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: center;
  }

  .enquiry-form {
    max-width: none;
  }

  .contact-dl dd a {
    word-break: break-word;
  }

  .map-embed iframe {
    height: 220px;
  }

  .product-slideshow {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.55rem 1rem;
    gap: 0.65rem;
  }

  .logo img {
    height: 2.5rem;
  }

  .logo-text {
    font-size: 1.05rem;
    max-width: 7.5rem;
    white-space: normal;
    line-height: 1.1;
  }

  .nav-actions .btn-ghost {
    order: 2;
  }

  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .order-choice-grid,
  .order-choice-grid-3 {
    grid-template-columns: 1fr;
  }

  .food-menu,
  .finger-foods-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .finger-foods-table {
    min-width: 520px;
  }
}

@media (max-width: 480px) {
  .btn,
  .btn-lg,
  .btn-sm {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-actions .btn {
    width: 100%;
  }

  .slideshow-btn {
    width: 42px;
    height: 42px;
  }

  .gallery-slide-content {
    padding: 1.25rem 1rem 4.25rem;
  }

  .testimonial p {
    font-size: 1.1rem;
  }

  .footer-socials .btn {
    flex: 1 1 100%;
  }
}
