#cust-root { min-height: 100vh; }

main {
  position: relative;
  z-index: 1;
}

/* Prevent hidden radios from blocking clicks across the page */
.cust-choice,
.cust-tip-btn,
.cust-gift-design,
.cust-gift-amount,
.cust-gift-delivery {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.cust-sr-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
}

.cust-choice {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  background: var(--ink-800);
  border: 1px solid var(--line);
  color: var(--cream);
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.cust-choice:hover {
  border-color: var(--ink-600);
}

.cust-choice:has(input:checked) {
  background: var(--gold-glow);
  border-color: var(--gold-600);
  box-shadow: var(--gold-ring);
}

.cust-tip-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  background: var(--ink-800);
  color: var(--cream-2);
  border: 1px solid var(--line);
  transition: background .2s, color .2s, border-color .2s;
}

.cust-tip-btn:hover {
  border-color: var(--gold-700);
  color: var(--gold-400);
}

.cust-tip-btn:has(input:checked) {
  background: var(--gold-600);
  color: #211405;
  border-color: var(--gold-600);
}

.cust-gift-design {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: var(--ink-800);
  border: 2px solid var(--line);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.cust-gift-design:hover {
  border-color: var(--ink-600);
  background: var(--ink-750);
}

.cust-gift-design:has(input:checked) {
  border-color: var(--brand-400);
  box-shadow: var(--gold-ring);
  background: var(--ink-750);
}

.cust-gift-designs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.cust-gift-design__card {
  display: block;
  width: 100%;
  aspect-ratio: 1.6;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 6px 18px rgba(0, 0, 0, .28);
  position: relative;
  overflow: hidden;
}

.cust-gift-design__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, .12), transparent 48%);
  pointer-events: none;
}

.cust-gift-design__card::after {
  content: "";
}

.cust-gift-design:has(input:checked) .cust-gift-design__card {
  outline: 2px solid rgba(255, 255, 255, .75);
  outline-offset: 2px;
}

.cust-gift-design__name {
  font-weight: 600;
  font-size: 13px;
  color: var(--cream);
  line-height: 1.25;
}

.cust-gift-design__sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
  margin-top: -2px;
}

.cust-field-label {
  font-size: 13px;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 12px;
}

.cust-gift-redeem {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cust-gift-code-box {
  background: var(--ink-800);
  border: 2px dashed var(--brand-600);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
}

.cust-gift-code-box__label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.cust-gift-code-box__code {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold-400);
  line-height: 1.1;
}

.cust-gift-amount {
  padding: 13px 0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--serif);
  text-align: center;
  background: var(--ink-800);
  border: 1px solid var(--line);
}

.cust-gift-amount:has(input:checked) {
  background: var(--gold-glow);
  border-color: var(--gold-600);
  color: var(--gold-400);
}

.cust-gift-delivery {
  flex: 1;
  border-radius: 7px;
  padding: 11px 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  background: var(--ink-800);
  border: 1px solid transparent;
}

.cust-gift-delivery:has(input:checked) {
  background: var(--gold-600);
  color: #211405;
  border-color: var(--gold-600);
}

.cust-pick {
  position: relative;
  cursor: pointer;
  background: var(--ink-800);
  border: 1px solid var(--line);
  transition: border-color .2s, background .2s, color .2s;
}

.cust-pick:hover {
  border-color: var(--gold-700);
}

.cust-pick:has(input:checked) {
  background: var(--gold-glow);
  border-color: var(--gold-600);
  color: var(--gold-400);
}

.cust-burger { display: none; }

.cust-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.cust-page-head {
  padding-top: 130px;
  padding-bottom: 8px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cust-page-head__title {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
}

.cust-page-head__lead {
  color: var(--sand);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 18px;
}

.cust-card {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.cust-inp {
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--cream);
  font-size: var(--field-font);
  font-family: var(--sans);
  outline: none;
  width: 100%;
  min-height: var(--field-height);
  box-sizing: border-box;
  line-height: 1.35;
}

.cust-inp:focus { border-color: var(--brand-600); }

select.cust-inp {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-color: var(--ink-800);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

textarea.cust-inp {
  min-height: 96px;
  resize: vertical;
}

.cust-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cust-field span {
  font-size: 13px;
  color: var(--sand);
  font-weight: 600;
}

.cust-field.full { grid-column: 1 / -1; }

/* header */
#cust-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s, box-shadow .3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}

#cust-header.solid {
  background: rgba(13, 10, 8, .88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

#cust-header .cust-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cust-navlinks {
  display: flex;
  gap: 4px;
  align-items: center;
}

.cust-navlinks a {
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--cream-2);
  text-decoration: none;
  transition: color .2s, background .2s;
  cursor: pointer;
}

.cust-navlinks a:hover,
.cust-navlinks a.active {
  color: var(--gold-400);
  background: rgba(200, 133, 47, .08);
}

.cust-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#cust-cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--cream);
}

#cust-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--spice-600);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  font-family: var(--sans);
}

.cust-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 1100px) {
  .cust-account-label { display: none; }
}

/* mobile nav */
#cust-mobile-scrim {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  display: none;
}

#cust-mobile-scrim.open { display: block; }

#cust-mobile-sheet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: var(--ink-750);
  border-left: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#cust-mobile-sheet a {
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-soft);
  padding: 15px 4px;
  font-size: 18px;
  font-family: var(--serif);
  color: var(--cream);
  text-decoration: none;
}

#cust-mobile-sheet a.active { color: var(--gold-400); }

/* cart drawer */
#cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

#cart-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

#cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}

#cart-drawer.open #cart-drawer-backdrop { opacity: 1; }

#cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--ink-750);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.3, .8, .3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 60px rgba(0, 0, 0, .5);
}

#cart-drawer.open #cart-drawer-panel { transform: none; }

.cust-qty-btn {
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 7px 9px;
  display: grid;
  place-items: center;
}

/* home */
.cust-hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 78px;
}

.cust-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 56px;
}

.cust-hero-eyebrow { margin-bottom: 16px; }

.cust-hero-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -.01em;
}

.cust-hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 520px;
  margin-top: 18px;
}

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

.cust-hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.cust-hero-stat-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
  flex-shrink: 0;
}

.cust-hero-bg {
  position: absolute;
  inset: 0;
  border: none;
  border-radius: 0;
}

.cust-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 10, 8, .94) 0%, rgba(13, 10, 8, .7) 45%, rgba(13, 10, 8, .35) 100%);
}

.cust-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 80% 110%, var(--brand-glow), transparent 60%);
}

.cust-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink-850);
}

.cust-marquee-track {
  display: flex;
  width: max-content;
  animation: marq 32s linear infinite;
}

.cust-marquee-row {
  display: flex;
  gap: 52px;
  padding-right: 52px;
  flex-shrink: 0;
}

.cust-marquee-word {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--faint);
  display: inline-flex;
  align-items: center;
  gap: 52px;
  text-decoration: none;
  transition: color .2s;
}

.cust-marquee-word:hover { color: var(--brand-400); }

@keyframes marq { to { transform: translateX(-50%); } }

.cust-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.cust-dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cust-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px 56px;
  align-items: start;
}

.cust-band__eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.cust-band__body {
  grid-column: 1;
  grid-row: 2;
}

.cust-band__action {
  grid-column: 1;
  grid-row: 3;
}

.cust-band__media {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  display: block;
  width: 100%;
}

.cust-band__media .cust-img-frame,
.cust-band__media .ph-img,
.cust-band__media .ph {
  width: 100%;
  border-radius: 18px;
}

.cust-band--reverse .cust-band__eyebrow,
.cust-band--reverse .cust-band__body,
.cust-band--reverse .cust-band__action {
  grid-column: 2;
}

.cust-band--reverse .cust-band__media {
  grid-column: 1;
}
.cust-cater-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.cust-rev-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.cust-rev-grid::-webkit-scrollbar { display: none; }

.cust-rev-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.cust-rev-wrap--no-nav {
  grid-template-columns: minmax(0, 1fr);
}

.cust-rev-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ink-700);
  color: var(--cream-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cust-rev-nav:hover {
  border-color: var(--brand-600);
  color: var(--brand-400);
}

.cust-rev-grid > .cust-review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  scroll-snap-align: start;
}
.cust-order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cust-order-grid > div { align-items: stretch; }
.cust-checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.cust-checkout-page {
  padding: 120px 32px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.cust-checkout-back { margin-bottom: 22px; }

.cust-checkout-title {
  font-size: 44px;
  margin-bottom: 28px;
}

.cust-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--ink-800);
  font-size: 13.5px;
  color: var(--sand);
}

.cust-payment-badge.live {
  border-color: var(--leaf-600);
  background: rgba(79, 125, 68, .12);
}

.cust-checkout-error {
  padding: 14px 18px;
  margin-bottom: 18px;
  border-color: var(--spice-600);
  color: var(--spice-400);
}

.cust-checkout-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cust-choice-row {
  display: flex;
  gap: 12px;
}

.cust-choice-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cust-choice-sub {
  font-size: 13px;
  color: var(--muted);
}

.cust-card-heading {
  font-size: 22px;
  margin-bottom: 18px;
}

.cust-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cust-checkout-summary {
  position: sticky;
  top: 100px;
}

.cust-summary-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cust-summary-item {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.cust-summary-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cust-summary-item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14.5px;
  color: var(--cream-2);
  margin-bottom: 8px;
}

.cust-summary-item-name {
  font-weight: 600;
  line-height: 1.35;
}

.cust-summary-item-price {
  color: var(--gold-400);
  font-weight: 600;
  flex-shrink: 0;
}

.cust-summary-item-desc {
  margin: -2px 0 8px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}

.cust-summary-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cust-summary-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.cust-summary-qty-val {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--cream);
}

.cust-summary-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}

.cust-summary-remove:hover {
  color: var(--spice-400);
  background: rgba(156, 59, 37, .12);
}

.cust-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  gap: 10px;
  color: var(--cream-2);
}

.cust-summary-qty {
  color: var(--gold-500);
  font-weight: 700;
}

.cust-summary-tips {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cust-summary-tips-label {
  font-size: 13px;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 10px;
}

.cust-tip-row {
  display: flex;
  gap: 8px;
}

.cust-summary-totals {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
  color: var(--sand);
}

.cust-summary-row {
  display: flex;
  justify-content: space-between;
}

.cust-summary-row span:last-child {
  color: var(--cream-2);
}

.cust-summary-note {
  font-size: 13px;
  color: var(--leaf-500);
  line-height: 1.5;
  padding: 8px 0 4px;
}

.cust-summary-grand {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cust-summary-grand span:last-child {
  color: var(--gold-400);
}

.cust-checkout-submit {
  width: 100%;
  justify-content: center;
}

.cust-click-card:not(.cust-dish-card) {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.cust-click-card:not(.cust-dish-card):hover {
  transform: translateY(-3px);
  border-color: var(--brand-700);
  box-shadow: var(--shadow-2);
}

.cust-hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--sand);
  text-decoration: none;
  transition: color .2s;
}

.cust-hero-stat:hover { color: var(--brand-400); }

.cust-hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}

.cust-hero-scroll:hover { color: var(--brand-400); }

.cust-gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 14px;
}

.cust-gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  min-height: 180px;
  height: 100%;
}

.cust-gallery-tile.large { grid-row: 1 / 3; }

.cust-gallery-tile img,
.cust-gallery-tile-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.cust-gallery-tile:hover img,
.cust-gallery-tile-btn:hover img { transform: scale(1.04); }

.cust-gallery-cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--brand-700);
}

.cust-gallery-tile-btn {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--ink-700);
}

.cust-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(120% 120% at 90% 0%, rgba(126, 178, 161, .3), rgba(20, 34, 49, .24) 55%, rgba(15, 20, 26, .9) 100%),
    linear-gradient(170deg, rgba(134, 188, 173, .42), rgba(25, 45, 65, .88));
  border: 1px solid rgba(194, 232, 222, .24);
  border-radius: 26px;
  padding: 24px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.cust-review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.cust-review-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cust-review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  background: rgba(10, 18, 24, .5);
  border: 1px solid rgba(191, 229, 220, .24);
  color: #dff5ea;
  flex-shrink: 0;
}

.cust-review-card__name {
  font-size: 20px;
  font-family: var(--serif);
  line-height: 1;
  margin-bottom: 4px;
  color: #ecfff8;
}

.cust-review-card__body {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(231, 247, 242, .95);
  margin: 0 0 18px;
  flex: 1;
}

.cust-review-card__foot {
  margin-top: auto;
  min-height: 18px;
}

.cust-review-card__meta {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(210, 237, 228, .78);
  font-weight: 700;
  white-space: nowrap;
}

.cust-quick-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cust-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px;
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--cream-2);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: border-color .2s, transform .2s, color .2s;
}

.cust-quick-link:hover {
  border-color: var(--brand-600);
  color: var(--brand-400);
  transform: translateY(-2px);
}

.cust-tab {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--sans);
  text-decoration: none;
  background: var(--ink-700);
  color: var(--cream-2);
  border: 1px solid var(--line);
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.cust-gallery-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin: 40px 0 36px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  min-width: 0;
}

.cust-gallery-tabs::-webkit-scrollbar {
  display: none;
}

.cust-gallery-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 110px;
  min-width: 0;
}

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

.cust-gallery-grid .cust-gallery-tile-btn {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 200px;
  min-width: 0;
}

.cust-gallery-grid .cust-gallery-ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.cust-tab:hover { border-color: var(--brand-700); color: var(--brand-400); }

.cust-tab.active {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
}

.cust-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(8px);
  place-items: center;
  padding: 40px;
}

.cust-lightbox.open { display: grid; }

.cust-lightbox-inner {
  position: relative;
  width: min(900px, 90vw);
  max-height: 85vh;
}

.cust-lightbox-inner img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.cust-lightbox-inner button {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

#cust-footer a:hover { color: var(--brand-400) !important; }
.cust-reserve-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.cust-reserve-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 32px 110px;
}

.cust-reserve-section {
  margin-bottom: 24px;
}

.cust-reserve-section--last {
  margin-bottom: 0;
}

.cust-reserve-label {
  font-size: 13px;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 12px;
}

.cust-reserve-party {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
}

.cust-reserve-party__btn {
  min-width: 0;
  height: 48px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: grid;
  place-items: center;
  color: var(--cream);
}

.cust-reserve-party__btn--wide {
  grid-column: span 1;
}

.cust-reserve-dates {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.cust-reserve-dates::-webkit-scrollbar {
  display: none;
}

.cust-reserve-date {
  flex-shrink: 0;
  width: 68px;
  padding: 12px 0;
  border-radius: 12px;
  text-align: center;
  scroll-snap-align: start;
}

.cust-reserve-date__weekday {
  display: block;
  font-size: 11px;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cust-reserve-date__day {
  display: block;
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
}

.cust-reserve-date__month {
  display: block;
  font-size: 11px;
  opacity: .7;
}

.cust-reserve-times {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.cust-reserve-time {
  padding: 12px 8px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.cust-reserve-details__title {
  font-size: 24px;
  margin-bottom: 6px;
}

.cust-reserve-details__hint {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.cust-reserve-details__fields {
  display: grid;
  gap: 14px;
}

.cust-reserve-details__fields textarea.cust-inp {
  min-height: 70px;
  resize: vertical;
}

.cust-reserve-details .cust-inp {
  background: var(--ink-750);
  border-color: var(--ink-600);
}

.cust-reserve-details__submit {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}
.cust-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cust-contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 32px 110px;
}

.cust-contact-success {
  text-align: center;
  margin-bottom: 28px;
  border-color: var(--gold-700);
}

.cust-contact-success p {
  margin-top: 12px;
  color: var(--cream-2);
}

.cust-contact-success__hint {
  margin-top: 8px !important;
  color: var(--muted);
  font-size: 14px;
}

.cust-contact-success__hint a {
  color: var(--gold-400);
}

.cust-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.cust-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cust-contact-card {
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.cust-contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--brand-glow);
  border: 1px solid var(--brand-700);
  display: grid;
  place-items: center;
  color: var(--brand-400);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.cust-contact-card__title {
  font-size: 19px;
  margin-bottom: 8px;
}

.cust-contact-card__line {
  color: var(--cream-2);
  font-size: 14.5px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.cust-contact-card__line--muted {
  color: var(--muted);
}

.cust-contact-form h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.cust-contact-form__fields {
  display: grid;
  gap: 14px;
}

.cust-contact-form__fields textarea.cust-inp {
  min-height: 120px;
  resize: vertical;
}

.cust-contact-form__submit {
  margin-top: 18px;
}

.cust-contact-form .cust-inp {
  background: var(--ink-750);
  border-color: var(--ink-600);
}

.cust-contact-map {
  margin-top: 24px;
}

.cust-map-embed {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-800);
  width: 100%;
}

.cust-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cust-map-embed__link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 12, 10, .88);
  border: 1px solid var(--line);
  color: var(--cream-2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color .15s, color .15s;
}

.cust-map-embed__link:hover {
  color: var(--gold-400);
  border-color: var(--gold-700);
}
.cust-promo {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  min-height: 240px;
}

.cust-promo--reverse .cust-promo-media {
  order: 2;
}

.cust-promo--reverse .cust-promo-body {
  order: 1;
}

.cust-promo-media {
  position: relative;
  min-height: 100%;
  align-self: stretch;
  overflow: hidden;
  background: var(--ink-800);
}

.cust-promo-media .cust-img-frame,
.cust-promo-media .ph,
.cust-promo-media .ph-img,
.cust-promo-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: none;
  border-radius: 0;
  object-fit: cover;
}

.cust-promo-media .cust-img {
  border: none;
}

.cust-promo-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cust-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.cust-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  min-width: 0;
}

.cust-about-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 32px 110px;
  min-width: 0;
}

.cust-about-block {
  margin-bottom: 90px;
}

.cust-about-block--heading {
  text-align: center;
  margin-bottom: 44px;
}

.cust-about-block--team {
  margin-bottom: 80px;
}

.cust-about-story p {
  font-family: var(--font-family);
  font-size: var(--font-body-size);
  line-height: var(--font-line-body);
  color: var(--sand);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}

.cust-about-hero .cust-img-frame {
  width: 100%;
  max-width: 100%;
}

.cust-about-stat-num {
  font-family: var(--serif);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 600;
  color: var(--brand-400);
  line-height: 1;
}

.cust-about-stat-label {
  color: var(--sand);
  font-size: 14.5px;
  margin-top: 10px;
  line-height: 1.35;
}

.cust-about-cta {
  text-align: center;
  padding: 56px 28px;
  background: var(--ink-850);
}

.cust-about-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cust-stat-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; text-align: center; min-width: 0; }
.cust-val-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; min-width: 0; }
.cust-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; min-width: 0; }
.cust-gift-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }

.cust-form-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 44px 32px 110px;
}

.cust-split-sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}

.cust-gift-preview {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1.6;
  box-shadow: var(--shadow-3);
  border: 1px solid rgba(255, 255, 255, .12);
}

.cust-gift-preview__logo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: .22;
  mix-blend-mode: multiply;
  filter: saturate(.85) contrast(1.05);
  pointer-events: none;
  user-select: none;
}

.cust-gift-preview__surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  box-sizing: border-box;
}

.cust-gift-preview__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  pointer-events: none;
  z-index: -1;
}

.cust-gift-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.cust-gift-preview__mark {
  flex-shrink: 0;
  opacity: .9;
}

.cust-gift-preview__brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.cust-gift-preview__tag {
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: .85;
}

.cust-gift-preview__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  opacity: .8;
}

.cust-gift-preview__amount {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 600;
  line-height: 1;
  margin-top: 4px;
}

.cust-dish-card {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.cust-dish-card-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  flex: 1 1 auto;
}

.cust-dish-card-main:hover .cust-dish-card-title {
  color: var(--cream);
}

.cust-dish-card-media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: var(--ink-800);
}

.cust-dish-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 10, 10, .75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--brand-700);
  color: var(--brand-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}

.cust-dish-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 22px 22px 0;
}

.cust-dish-card-action {
  margin-top: 16px;
  padding: 0 22px 22px;
}

.cust-dish-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.cust-dish-card-title {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cust-dish-card-price {
  color: var(--brand-400);
  font-weight: 600;
  font-family: var(--serif);
  font-size: 21px;
  flex-shrink: 0;
}

.cust-dish-card-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 8px 0 0;
  min-height: 44px;
}

.cust-dish-card-btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  display: inline-flex;
}

.cust-dish-card-media .cust-img-frame {
  position: absolute;
  inset: 0;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
}

.cust-menu-item-img.cust-img-frame {
  width: 96px;
  height: 96px;
  min-width: 96px;
  min-height: 96px;
  max-width: 96px;
  max-height: 96px;
  position: relative;
}

.cust-cart-item-img.cust-img-frame {
  width: 62px;
  height: 62px;
  min-width: 62px;
  min-height: 62px;
  max-width: 62px;
  max-height: 62px;
  position: relative;
}

.cust-dish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-color: var(--brand-700);
}

.cust-menu-sticky {
  position: sticky;
  top: 78px;
  z-index: 40;
  background: rgba(13, 10, 8, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  margin-top: 36px;
}

.cust-hub-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 32px 90px;
}

.cust-hub-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.cust-hub-card {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.cust-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: var(--ink-600);
}

.cust-flash {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 350;
  background: var(--ink-700);
  border: 1px solid var(--gold-700);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: var(--shadow-2);
  max-width: min(420px, calc(100vw - 48px));
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .cust-flash {
    top: auto;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

@media (max-width: 1080px) {
  .cust-navlinks { display: none !important; }
  .cust-reserve-btn { display: none !important; }
  .cust-burger { display: grid !important; }
}

@media (max-width: 860px) {
  .cust-story-grid, .cust-cater-grid, .cust-rev-grid,
  .cust-order-grid, .cust-checkout-grid, .cust-reserve-grid, .cust-pkg-grid,
  .cust-contact-grid, .cust-promo, .cust-foot-grid,
  .cust-about-hero, .cust-val-grid, .cust-gift-grid { grid-template-columns: 1fr !important; }
  .cust-contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cust-reserve-party { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .cust-team-grid, .cust-stat-band { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .cust-about-wrap {
    padding: 32px 20px 72px;
  }
  .cust-about-block {
    margin-bottom: 56px;
  }
  .cust-about-block--team {
    margin-bottom: 48px;
  }
  .cust-about-hero {
    gap: 28px;
  }
  .cust-about-hero .cust-img-frame {
    height: 280px !important;
    min-height: 280px !important;
  }
  .cust-about-cta {
    padding: 40px 22px;
  }
  .cust-band {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .cust-band__eyebrow,
  .cust-band__body,
  .cust-band__action,
  .cust-band__media,
  .cust-band--reverse .cust-band__eyebrow,
  .cust-band--reverse .cust-band__body,
  .cust-band--reverse .cust-band__action,
  .cust-band--reverse .cust-band__media {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }
  .cust-band__media .ph,
  .cust-band__media .cust-img-frame,
  .cust-band__media .ph-img {
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    border-radius: 18px;
  }
  .cust-band__action {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .cust-band__action .btn {
    margin-inline: auto;
  }
  .cust-dish-grid {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding-bottom: 6px;
    scrollbar-width: none;
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .cust-dish-grid::-webkit-scrollbar { display: none; }
  .cust-dish-grid > .cust-dish-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .cust-dish-grid > .cust-dish-card .cust-dish-card-main {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }
  .cust-dish-grid > .cust-dish-card .cust-dish-card-media {
    width: 100% !important;
    height: 180px;
  }
  .cust-dish-grid > .cust-dish-card .cust-dish-card-media .cust-img-frame {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }
  .cust-dish-grid > .cust-dish-card .cust-dish-card-body {
    width: 100%;
  }
  .cust-dish-grid > .cust-dish-card .cust-dish-card-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .cust-dish-grid > .cust-dish-card .cust-dish-card-title {
    font-size: 19px;
  }
  .cust-dish-grid > .cust-dish-card .cust-dish-card-price {
    font-size: 19px;
  }
  .cust-cater-grid, .cust-rev-grid { gap: 18px !important; }
  .cust-rev-grid > .cust-review-card {
    flex-basis: calc((100% - 18px) / 2);
    min-width: calc((100% - 18px) / 2);
  }
  .cust-hub-grid2 { grid-template-columns: 1fr; }
  .cust-choice-row { flex-direction: column; }
  .cust-form-grid { grid-template-columns: 1fr; }
  .cust-gift-designs { grid-template-columns: 1fr; }
  .cust-checkout-summary { position: static; }
  .cust-split-sticky { position: static; top: auto; }
  .cust-gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cust-gallery-tile.large { grid-row: auto; grid-column: 1 / -1; }
  .cust-quick-links { grid-template-columns: repeat(2, 1fr); }
  .cust-promo { grid-template-columns: 1fr; }
  .cust-promo--reverse .cust-promo-media,
  .cust-promo--reverse .cust-promo-body { order: initial; }
  .cust-promo-media { min-height: 220px; }
}

@media (max-width: 600px) {
  .cust-section, .cust-pad { padding-left: 20px !important; padding-right: 20px !important; }
  .cust-page-head {
    padding-top: 96px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cust-page-head__lead {
    font-size: 15px;
    margin-top: 14px;
  }

  .cust-page-head--contact {
    padding-bottom: 4px;
  }

  .cust-page-head--reserve {
    padding-bottom: 4px;
  }

  .cust-reserve-wrap {
    padding: 8px 20px 72px;
  }

  .cust-reserve-booking,
  .cust-reserve-details {
    padding: 20px;
  }

  .cust-reserve-party {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .cust-reserve-dates {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cust-reserve-date {
    width: 72px;
  }

  .cust-reserve-times {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cust-reserve-time {
    font-size: 13px;
    padding: 12px 4px;
  }

  .cust-reserve-details__title {
    font-size: 20px;
  }

  .cust-reserve-grid {
    gap: 20px;
  }

  #cust-header .cust-inner {
    height: 68px;
    gap: 10px;
  }

  .cust-header-actions {
    gap: 8px;
  }

  .cust-header-actions .btn-gold.btn-sm,
  .cust-header-actions .cust-account-btn {
    display: none;
  }
  .cust-about-wrap {
    padding: 24px 16px 64px;
  }
  .cust-about-block {
    margin-bottom: 48px;
  }
  .cust-about-block--heading {
    margin-bottom: 32px;
  }
  .cust-about-block--team {
    margin-bottom: 40px;
  }
  .cust-team-grid {
    grid-template-columns: 1fr !important;
  }
  .cust-stat-band {
    gap: 16px;
  }
  .cust-about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cust-about-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cust-gallery-page {
    padding: 0 16px 64px;
  }

  .cust-gallery-tabs {
    margin: 28px 0 24px;
  }

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

  .cust-dish-grid {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #cust-header .cust-inner { padding: 0 20px; }
  .cust-hero-inner { padding: 0 20px 44px; }
  .cust-hero-actions { margin-top: 22px; }
  .cust-hero-stats { margin-top: 22px; gap: 12px; }
  .cust-hero-stat-divider { display: none; }
  .cust-rev-wrap { grid-template-columns: 1fr; }
  .cust-rev-nav { display: none; }
  .cust-rev-grid > .cust-review-card {
    flex-basis: 100%;
    min-width: 100%;
  }

  .cust-contact-wrap {
    padding: 24px 20px 72px;
  }

  .cust-contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cust-contact-grid {
    gap: 20px;
  }

  .cust-contact-card {
    padding: 20px;
  }

  .cust-contact-card__title {
    font-size: 17px;
  }

  .cust-contact-card__line {
    font-size: 14px;
  }

  .cust-contact-form h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .cust-contact-map {
    margin-top: 20px;
  }

  .cust-contact-map.cust-map-embed {
    height: 280px !important;
  }
}
