:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/* ============================================================
   Bring Your Own Bottle (BYOL) popup
   ============================================================ */
.byol-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.byol-modal-overlay.byol-open {
  opacity: 1;
}

.byol-modal-overlay.byol-closing {
  opacity: 0;
}

.byol-modal {
  position: relative;
  max-width: min(92vw, 30rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.25s ease;
}

.byol-modal-overlay.byol-open .byol-modal {
  transform: scale(1);
}

.byol-modal__img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.byol-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.byol-close:hover {
  background: var(--main-color, #dd9932);
  color: #fff;
  transform: rotate(90deg);
}

.byol-modal__cta {
  margin-top: 1rem;
  padding: 0.65rem 1.6rem;
  background-color: #C69E55;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.375rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.byol-modal__cta:hover {
  background-color: #b0873f;
  transform: translateY(-2px);
}

/* ============================================================
   Reservation page — inline poster banner + embedded form
   ============================================================ */
.byol-banner {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem 0;
  background: #fff;
}

.byol-banner__link {
  display: block;
  width: 100%;
  max-width: 32rem;
  line-height: 0;
}

.byol-banner__img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.byol-banner__link:hover .byol-banner__img {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.reservation-section {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1rem clamp(3rem, 7vw, 5rem);
}

.reservation-intro {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.reservation-intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.reservation-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4e4b66;
  max-width: 40rem;
  margin: 0 auto;
}

.reservation-intro a {
  color: #C69E55;
  font-weight: 700;
  text-decoration: underline;
}

.reservation-form-wrapper {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.reservation-iframe {
  width: 100%;
  min-height: 900px;
  border: 0;
  display: block;
}

@media screen and (max-width: 600px) {
  .reservation-iframe {
    min-height: 1050px;
  }
}

/* ============================================================
   Catering page — info section
   ============================================================ */
.catering-info {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1rem 0;
  text-align: center;
}

.catering-info__intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.catering-info__intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4e4b66;
  max-width: 44rem;
  margin: 0 auto;
}

.catering-features {
  list-style: none;
  padding: 0;
  margin: clamp(1.75rem, 4vw, 2.75rem) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  max-width: 52rem;
}

.catering-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  color: #1a1a1a;
}

.catering-features li i {
  font-size: 1.75rem;
  color: #C69E55;
}

.catering-minimum {
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  background: #fff7ea;
  border: 1px solid #f0d9a8;
  border-radius: 2rem;
  color: #7a5a1e;
  font-size: 1rem;
}

.catering-minimum i {
  color: #C69E55;
}

/* ============================================================
   Bulk Sweets page
   ============================================================ */
.bulk-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.bulk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #C69E55;
  color: #fff;
  font-weight: 700;
  border-radius: 2rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(198, 158, 85, 0.35);
}

.sweets-pricing {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem 0;
}

.sweets-pricing__title {
  text-align: center;
  font-size: clamp(1.6rem, 3.6vw, 2.25rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
}

.sweets-list {
  list-style: none;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.sweets-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed #e5e5e5;
}

.sweets-row:last-child {
  border-bottom: none;
}

.sweets-name {
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}

.sweets-dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted #cbb78e;
  transform: translateY(-3px);
}

.sweets-price {
  font-weight: 700;
  color: #C69E55;
  white-space: nowrap;
}

.sweets-note {
  max-width: 46rem;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: #8a8a8a;
  font-style: italic;
}

.bulk-order {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1rem clamp(3rem, 7vw, 5rem);
}

.bulk-order__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.bulk-order__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.bulk-order__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.bulk-order__card i {
  font-size: 1.75rem;
  color: #C69E55;
}

.bulk-order__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a8a8a;
  font-weight: 700;
}

.bulk-order__value {
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

/* ============================================================
   Rewards page
   Palette: gold #C69E55 / #dd9932 (primary accent),
            red #D1232A (site CTA), dark #1a1a1a
   ============================================================ */
.rw {
  --rw-gold: #C69E55;
  --rw-gold-dark: #b0873f;
  --rw-gold-deep: #8a6a2f;
  --rw-tint: #fff7ea;
  --rw-tint-soft: #fffdf9;
  --rw-ink: #1a1a1a;
  --rw-muted: #6f6a63;
  --rw-border: #eee4cf;
}

/* ---- Hero ---- */
.rw-hero {
  text-align: center;
  padding: clamp(3rem, 7vw, 5.25rem) 1rem clamp(2.75rem, 6vw, 4.25rem);
  background: linear-gradient(180deg, var(--rw-tint-soft) 0%, var(--rw-tint) 100%);
  border-bottom: 3px solid var(--rw-gold);
}

.rw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.15rem;
  margin-bottom: clamp(1rem, 3vw, 1.6rem);
  background: #fff;
  border: 1px solid var(--rw-border);
  border-radius: 2rem;
  color: var(--rw-gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(198, 158, 85, 0.12);
}

.rw-badge i {
  color: var(--rw-gold);
}

.rw-hero__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.16;
  color: var(--rw-ink);
  max-width: 46rem;
  margin: 0 auto 1rem;
}

.rw-accent {
  color: var(--rw-gold);
}

.rw-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: var(--rw-muted);
  max-width: 34rem;
  margin: 0 auto clamp(1.5rem, 4vw, 2.25rem);
}

/* ---- Buttons (gold-filled, on brand) ---- */
.rw-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--rw-gold) 0%, #dd9932 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  border-radius: 0.6rem;
  box-shadow: 0 6px 18px rgba(198, 158, 85, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rw-btn:hover {
  background: linear-gradient(135deg, var(--rw-gold-dark) 0%, #c98a24 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(198, 158, 85, 0.45);
}

.rw-fineprint {
  max-width: 46rem;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  padding: 0.9rem 1.25rem;
  text-align: left;
  background: #fffdf7;
  border-left: 4px solid var(--rw-gold);
  border-radius: 0.4rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #8c8577;
}

/* ---- Generic section scaffolding ---- */
.rw-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3rem, 6.5vw, 4.75rem) 1rem;
  text-align: center;
}

.rw-section--tint {
  max-width: none;
  background: linear-gradient(180deg, var(--rw-tint) 0%, var(--rw-tint-soft) 100%);
}

.rw-topper {
  display: inline-block;
  padding: 0.35rem 1rem;
  margin-bottom: 0.9rem;
  background: #fff;
  border: 1px solid var(--rw-border);
  border-radius: 2rem;
  color: var(--rw-gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rw-heading {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 800;
  color: var(--rw-ink);
  line-height: 1.2;
  margin: 0 auto 0.6rem;
  max-width: 40rem;
}

.rw-subheading {
  font-size: 1.02rem;
  color: var(--rw-muted);
  margin: 0 auto clamp(2rem, 4.5vw, 3rem);
  max-width: 34rem;
}

/* ---- How It Works / Reward Details cards ---- */
.rw-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
}

.rw-card {
  flex: 1 1 15rem;
  max-width: 20rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 2.25rem 1.5rem 2rem;
  background: #fff;
  border: 1px solid var(--rw-border);
  border-top: 4px solid var(--rw-gold);
  border-radius: 0.9rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.rw-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.4rem;
  border-radius: 50%;
  background: var(--rw-tint);
  color: var(--rw-gold);
  font-size: 1.4rem;
}

.rw-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rw-ink);
}

.rw-card__value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--rw-gold);
  line-height: 1.1;
}

.rw-card__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--rw-muted);
}

.rw-arrow {
  display: flex;
  align-items: center;
  color: var(--rw-gold);
  font-size: 1.4rem;
}

@media screen and (max-width: 780px) {
  .rw-arrow {
    transform: rotate(90deg);
  }
}

/* ---- See the Math ---- */
.rw-math {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.85rem;
  margin: 0 auto;
  max-width: 60rem;
}

.rw-math__card {
  flex: 0 1 9.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  padding: 1.15rem 1rem;
  background: #fff;
  border: 1px solid var(--rw-border);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.rw-math__card--result {
  background: var(--rw-tint);
  border-color: #e7cf9f;
}

.rw-math__card--redeem {
  flex: 0 1 12rem;
  background: linear-gradient(135deg, var(--rw-gold) 0%, #dd9932 100%);
  border: none;
  box-shadow: 0 8px 22px rgba(198, 158, 85, 0.4);
}

.rw-math__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--rw-ink);
  line-height: 1.05;
}

.rw-math__card--result .rw-math__num {
  color: var(--rw-gold-deep);
}

.rw-math__redeem-amt {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
}

.rw-math__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rw-muted);
}

.rw-math__card--redeem .rw-math__label {
  color: rgba(255, 255, 255, 0.9);
}

.rw-math__op {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rw-gold);
}

.rw-math__redeem-icon {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.rw-math__note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  padding: 0.8rem 1.4rem;
  background: #fffdf7;
  border: 1px solid var(--rw-border);
  border-radius: 2rem;
  font-size: 0.98rem;
  color: #5c564c;
}

.rw-math__note i {
  color: var(--rw-gold);
}

.rw-math__note strong {
  color: var(--rw-gold-deep);
}

/* ---- Closing CTA band ---- */
.rw-cta {
  background: linear-gradient(135deg, #c69e55 0%, #dd9932 55%, #b0873f 100%);
  text-align: center;
  padding: clamp(3.25rem, 7vw, 5rem) 1rem;
}

.rw-cta__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.rw-cta__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
  margin: 0 auto 1.25rem;
}

.rw-cta__contact {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 1.75rem;
}

.rw-cta__contact a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.rw-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2.1rem;
  background: #fff;
  color: var(--rw-gold-deep);
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  border-radius: 0.6rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rw-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Home hero — Rewards CTA button */
#home-hero .cs-button-rewards {
  background: linear-gradient(135deg, #c69e55 0%, #dd9932 100%);
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}
