
:root {
  --brand-deep: #3a0d6b;
  --brand-main: #7b2cbf;
  --brand-mid: #9d4edd;
  --brand-bright: #c77dff;
  --brand-soft: #f1e6ff;
  --brand-pale: #faf5ff;
  --dark: #12021f;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(199,125,255,0.42), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.16), transparent 24%),
    linear-gradient(90deg, #5a189a 0%, #7b2cbf 42%, #9d4edd 78%, #6b21a8 100%);
  color: #fff;
}

a { color: inherit; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-glass {
  width: 100%;
  background: rgba(18,2,31,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 12px 38px rgba(0,0,0,0.22);
  backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.15));
}

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.nav-active {
  border: 0;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 800;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-link {
  background: transparent;
  color: #f1e6ff;
}

.nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-active {
  background: #fff;
  color: var(--brand-main);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

h1 {
  font-family: Georgia, serif;
  font-size: clamp(44px, 8vw, 76px);
  line-height: 1.02;
  margin: 18px 0;
}

h2 {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0;
}

h3 { margin: 0; }

p {
  color: var(--brand-soft);
  line-height: 1.65;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 56px;
  overflow: hidden;
}

.brand-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.orb-one {
  width: 300px;
  height: 300px;
  right: 40px;
  top: 30px;
  background: var(--brand-bright);
}

.orb-two {
  width: 320px;
  height: 320px;
  left: 20px;
  bottom: 20px;
  background: var(--brand-deep);
}

.hero-copy { position: relative; z-index: 1; }

.badge,
.badge-light {
  display: inline-block;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 14px;
}

.badge {
  color: var(--brand-soft);
  background: rgba(58,13,107,0.72);
  border: 1px solid rgba(255,255,255,0.18);
}

.badge-light {
  background: #fff;
  color: var(--brand-main);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.22s ease;
}

.btn:hover { transform: scale(1.04); }

.btn-light {
  background: #fff;
  color: var(--brand-main);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  padding: 14px 24px;
}

.btn-dark {
  background: rgba(58,13,107,0.75);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 24px;
}

.btn-brand {
  background: var(--brand-main);
  color: #fff;
  padding: 14px 24px;
}

.small-btn { padding: 10px 14px; }

.mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  max-width: 620px;
}

.mini-grid div {
  border-radius: 10px;
  background: rgba(58,13,107,0.62);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px;
  color: var(--brand-soft);
}

.image-frame {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(58,13,107,0.46));
  border: 1px solid rgba(255,255,255,0.28);
  padding: 12px;
  box-shadow: 0 34px 90px rgba(0,0,0,0.30);
}

.image-crop {
  overflow: hidden;
  border-radius: 22px;
}

.main-image {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.image-zoom {
  transition: transform 0.7s ease;
}

.image-zoom:hover {
  transform: scale(1.05);
}

.service-grid,
.testimonial-grid,
.package-grid,
.gallery-grid,
.faq-grid,
.how-grid,
.featured-menu-grid {
  display: grid;
  gap: 20px;
}

.compact-grid { padding-bottom: 44px; }

.panel,
.quote-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(58,13,107,0.64));
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.20);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.panel:hover,
.quote-card:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(90,24,154,0.74));
  border-color: rgba(255,255,255,0.38);
  box-shadow: 0 30px 90px rgba(0,0,0,0.26);
}

.large-panel { padding: 30px; }

.icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.big-icon { font-size: 42px; }

.step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-main);
  font-weight: 900;
}

.quote-mark {
  color: #fff;
  font-size: 34px;
  margin: 0;
}

.section-divider {
  height: 1px;
  margin-top: 48px;
  margin-bottom: 48px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
}

.featured-menu-section {
  padding-top: 16px;
  padding-bottom: 18px;
}

.section-heading-row {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.featured-menu-card small,
.quote-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.area-section,
.location-seo-section {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 34px 20px 58px;
}

.area-grid,
.keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-grid span,
.keyword-grid span {
  background: #fff;
  color: var(--brand-main);
  border-radius: 6px;
  padding: 10px 13px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,0.14);
}

.sweet-feature {
  padding-top: 76px;
  padding-bottom: 96px;
}

.luxury-section {
  position: relative;
}

.luxury-section::before {
  content: "";
  position: absolute;
  inset: -8px 20px auto 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
}

.feature-card {
  display: grid;
  gap: 28px;
  align-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(250,245,255,0.94));
  color: var(--brand-deep);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 36px 100px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.45);
}

.feature-card p,
.feature-card h2 {
  color: var(--brand-deep);
}

.eyebrow,
.eyebrow-dark {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.eyebrow { color: var(--brand-soft); }
.eyebrow-dark { color: var(--brand-main); }

.pale-image-box,
.gallery-image-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  margin: 0 auto;
}

.contain-image {
  height: 280px;
  width: 100%;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

.page-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-header {
  max-width: 780px;
  margin-bottom: 44px;
}

.page-header h1 { margin-top: 10px; }

.section-block {
  margin-top: 64px;
}

.section-block h2 { margin-bottom: 22px; }

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.97);
  color: var(--brand-deep);
  box-shadow: 0 26px 78px rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.36);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption { padding: 20px; }

.gallery-caption span {
  display: inline-block;
  color: var(--brand-main);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.faq-item {
  background: rgba(58,13,107,0.68);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: #fff;
}

.faq-item p { margin-bottom: 0; }

.about-section {
  display: grid;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.body-copy p { color: var(--brand-soft); }

.about-highlights {
  display: grid;
  gap: 18px 34px;
  margin-top: 24px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 0 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.about-highlight-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  margin-top: 2px;
}

.about-highlight-item p {
  margin: 0;
  color: var(--brand-soft);
  font-weight: 650;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  gap: 28px;
}

.form-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(250,245,255,0.95));
  color: var(--brand-deep);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 34px 95px rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.45);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-note {
  color: rgba(58,13,107,0.72);
  font-size: 14px;
  margin-top: 14px;
}

.form-info-panel {
  margin-top: 22px;
  border-left: 4px solid var(--brand-main);
  background: var(--brand-pale);
  color: var(--brand-deep);
  border-radius: 14px;
  padding: 16px;
}

.form-info-panel p {
  color: rgba(58,13,107,0.78);
  margin-bottom: 0;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 14px;
  color: var(--brand-deep);
}

.form-step:first-child { margin-top: 0; }

.form-step span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--brand-main);
  color: #fff;
  font-weight: 900;
}

.form-grid {
  display: grid;
  gap: 18px;
}

label span {
  display: block;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(123,44,191,0.25);
  padding: 12px 14px;
  outline: none;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-main);
  box-shadow: 0 0 0 4px rgba(123,44,191,0.16);
}

.checkbox-panel {
  margin-top: 10px;
  border-radius: 18px;
  background: var(--brand-pale);
  padding: 20px;
}

.checkbox-panel p {
  color: var(--brand-deep);
  font-weight: 800;
  margin-top: 0;
}

.checkbox-grid {
  display: grid;
  gap: 12px;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--brand-deep);
  border-radius: 10px;
  padding: 12px;
}

.check-option input {
  width: 16px;
  accent-color: var(--brand-main);
}

.full-label {
  display: block;
  margin-top: 20px;
}

.contact-aside h2 { margin-top: 10px; }

.aside-note {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 24px;
  padding-top: 20px;
  color: var(--brand-soft);
}

.footer {
  background: rgba(18,2,31,0.88);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 54px;
  padding-bottom: 38px;
  backdrop-filter: blur(12px);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-copy { color: var(--brand-soft); }

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--brand-soft);
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 32px;
  padding-top: 22px;
  color: var(--brand-soft);
  font-size: 13px;
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-mini span {
  border-radius: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 800;
  text-align: center;
  font-size: 12px;
  padding: 7px 9px;
}

.sticky-quote {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: #fff;
  color: var(--brand-main);
  border: 0;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  cursor: pointer;
  text-decoration: none;
}

.mobile-bar { display: none; }

@media (min-width: 640px) {
  .mini-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .hero-section,
  .about-section {
    grid-template-columns: 1fr 1fr;
  }

  .compact-grid { grid-template-columns: repeat(4, 1fr); }
  .two-col { grid-template-columns: repeat(2, 1fr); }

  .testimonial-grid,
  .package-grid,
  .gallery-grid,
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-menu-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading-row { grid-template-columns: 1fr auto; }
  .area-section,
  .location-seo-section {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card { grid-template-columns: 1fr 1fr; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 700px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .nav-inner { flex-direction: row; align-items: center; gap: 10px; }
  .nav-links {
    width: auto;
    flex: 1;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link,
  .nav-active {
    flex: 0 0 auto;
    padding: 9px 12px;
    font-size: 14px;
  }
  .logo-img { height: 42px; }
  h1 { font-size: clamp(38px, 12vw, 52px); line-height: 1.05; }
  h2 { font-size: clamp(28px, 9vw, 38px); }
  p { font-size: 15px; }
  .hero-section { gap: 28px; padding-top: 48px; padding-bottom: 38px; }
  .main-image { height: 300px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; width: 100%; }
  .mini-grid { grid-template-columns: 1fr; }
  .panel,
  .quote-card,
  .form-card,
  .feature-card {
    padding: 22px;
    border-radius: 22px;
  }
  .service-grid,
  .testimonial-grid,
  .package-grid,
  .gallery-grid,
  .faq-grid,
  .how-grid,
  .featured-menu-grid {
    grid-template-columns: 1fr;
  }
  .area-section,
  .location-seo-section,
  .about-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .area-grid span,
  .keyword-grid span {
    width: 100%;
    text-align: center;
  }
  .pale-image-box,
  .gallery-image-wrap {
    max-width: 100%;
  }
  .contain-image { height: 240px; }
  .page-section { padding-top: 52px; padding-bottom: 58px; }
  .page-header { margin-bottom: 32px; }
  .section-block { margin-top: 44px; }
  .section-divider { margin-top: 34px; margin-bottom: 34px; }
  .section-heading-row .btn { width: 100%; }
  .form-grid,
  .checkbox-grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .sticky-quote { display: none; }
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(18,2,31,0.96);
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a {
    border: 0;
    background: transparent;
    color: #fff;
    padding: 14px 8px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
  }
  .footer { padding-bottom: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


/* 2026 platter page + softer purple background update */
body {
  background:
    radial-gradient(circle at 18% 8%, rgba(199,125,255,0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(123,44,191,0.10), transparent 26%),
    linear-gradient(180deg, #2a0f45 0%, #3a1760 34%, #f7f0ff 34%, #fff 100%);
}
.brand-orb { opacity: 0.16; }
.badge { background: rgba(58,13,107,0.46); }
.mini-grid div {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}
.image-frame {
  background: linear-gradient(145deg, rgba(255,255,255,0.20), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}
.text-link {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.feature-card .text-link,
.form-card .text-link { color: var(--brand-main); }
.fade-in-up { animation: fadeInUp 0.8s ease both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.32s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.platter-page .panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(250,245,255,0.92));
  border: 1px solid rgba(90,24,154,0.16);
  color: var(--brand-deep);
  box-shadow: 0 18px 46px rgba(58,13,107,0.12);
}
.platter-page .panel:hover {
  background: linear-gradient(145deg, #fff, #f5ebff);
  border-color: rgba(123,44,191,0.26);
  box-shadow: 0 24px 62px rgba(58,13,107,0.18);
}
.platter-page .panel p,
.platter-page .light-content-section p { color: rgba(58,13,107,0.76); }
.platter-page .hero-section p { color: var(--brand-soft); }
.platter-page h2,
.platter-page .light-content-section h3 { color: var(--brand-deep); }
.platter-page .eyebrow { color: var(--brand-main); }
.platter-page .hero-section .eyebrow { color: var(--brand-soft); }
.platter-menu-grid {
  display: grid;
  gap: 20px;
}
.platter-menu-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
.platter-menu-card .icon { font-size: 34px; }
.platter-menu-card ul {
  margin: 18px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.platter-menu-card li {
  color: #2a0f45;
  font-weight: 700;
  line-height: 1.42;
  display: flex;
  gap: 9px;
}
.platter-menu-card li::before {
  content: "✓";
  color: var(--brand-main);
  font-weight: 900;
}
.platter-menu-card small {
  display: block;
  margin-top: auto;
  color: #6b4a82;
  line-height: 1.5;
  font-weight: 800;
}
.platter-note { margin-top: 20px; }
.platter-note strong {
  display: block;
  color: var(--brand-deep);
  font-size: 20px;
  margin-bottom: 6px;
}
.platter-info-grid {
  display: grid;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 30px;
}
.platter-check-list {
  display: grid;
  gap: 10px;
}
.platter-check-list span {
  background: #fff;
  color: var(--brand-main);
  border-radius: 6px;
  padding: 10px 13px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,0.14);
}
.platter-page .section-divider {
  background: linear-gradient(90deg, transparent, rgba(90,24,154,0.22), transparent);
}
.platter-page .luxury-section h2 { color: var(--brand-deep); }
.platter-page .luxury-section p { color: #6b4a82; }
@media (min-width: 768px) {
  .platter-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .platter-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px) {
  .platter-menu-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .platter-menu-grid,
  .platter-info-grid { grid-template-columns: 1fr; }
  .platter-menu-card { min-height: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* 2026 readability + consistency pass
   Keeps the brand purple, but stops white text sitting on pale lavender sections. */
body {
  background:
    radial-gradient(circle at 18% 8%, rgba(199,125,255,0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(123,44,191,0.08), transparent 26%),
    linear-gradient(180deg, #24083f 0, #37105d 380px, #f8f2ff 760px, #ffffff 100%);
}

.nav-glass,
.footer,
.mobile-bar {
  background: rgba(18,2,31,0.96);
}

.brand-orb { opacity: 0.12; }

/* Page headers remain readable on the purple intro area. */
.hero-section,
.page-section,
.about-section {
  color: #fff;
}

.hero-section p,
.page-header p,
.about-section .body-copy p,
.contact-aside p,
.aside-note {
  color: #f1e6ff;
}

/* Sections that sit on the paler background use dark copy. */
.featured-menu-section,
.area-section,
.location-seo-section,
.testimonial-grid,
.sweet-feature,
.light-content-section {
  color: var(--brand-deep);
}

.featured-menu-section h2,
.area-section h2,
.location-seo-section h2,
.testimonial-grid h2,
.sweet-feature h2,
.light-content-section h2,
.featured-menu-section h3,
.area-section h3,
.location-seo-section h3,
.testimonial-grid h3,
.sweet-feature h3,
.light-content-section h3 {
  color: var(--brand-deep);
}

.featured-menu-section p,
.area-section p,
.location-seo-section p,
.testimonial-grid p,
.sweet-feature p,
.light-content-section p {
  color: rgba(58,13,107,0.78);
}

.featured-menu-section .eyebrow,
.area-section .eyebrow,
.location-seo-section .eyebrow,
.testimonial-grid .eyebrow,
.sweet-feature .eyebrow,
.light-content-section .eyebrow {
  color: var(--brand-main);
}

/* Light cards across content areas for consistent contrast. */
.panel,
.quote-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.97), rgba(250,245,255,0.94));
  border: 1px solid rgba(90,24,154,0.16);
  color: var(--brand-deep);
  box-shadow: 0 18px 46px rgba(58,13,107,0.13);
}

.panel:hover,
.quote-card:hover {
  background: linear-gradient(145deg, #fff, #f5ebff);
  border-color: rgba(123,44,191,0.28);
  box-shadow: 0 24px 62px rgba(58,13,107,0.18);
}

.panel p,
.quote-card p,
.featured-menu-card small,
.quote-card small {
  color: rgba(58,13,107,0.76);
}

.panel h3,
.quote-card h3 {
  color: var(--brand-deep);
}

.text-link {
  color: var(--brand-main);
}

.section-divider {
  background: linear-gradient(90deg, transparent, rgba(90,24,154,0.22), transparent);
}

.luxury-section::before {
  background: linear-gradient(90deg, transparent, rgba(90,24,154,0.20), transparent);
}

.area-grid span,
.keyword-grid span,
.platter-check-list span {
  background: #fff;
  color: var(--brand-main);
  box-shadow: 0 10px 25px rgba(58,13,107,0.12);
}

/* Keep form and feature panels clearly readable. */
.feature-card p,
.feature-card h2,
.form-card p,
.form-card h2,
.form-card h3 {
  color: var(--brand-deep);
}

/* Nav consistency with the new platter page link. */
.nav-links { gap: 8px; }
.nav-link,
.nav-active { white-space: nowrap; }


/* 2026 about/services consistency fix
   Makes Services and About use the same toned-down lavender/white background as the updated site,
   instead of the old plain purple page background. */
body.subpage-light {
  background:
    radial-gradient(circle at 14% 8%, rgba(199,125,255,0.12), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(123,44,191,0.08), transparent 24%),
    linear-gradient(180deg, #24083f 0, #24083f 86px, #f8f2ff 86px, #ffffff 100%);
  color: var(--brand-deep);
}

body.subpage-light .page-section,
body.subpage-light .about-section {
  color: var(--brand-deep);
  padding-top: 72px;
}

body.subpage-light .page-header h1,
body.subpage-light .page-header p,
body.subpage-light .page-section h1,
body.subpage-light .page-section h2,
body.subpage-light .page-section h3,
body.subpage-light .about-section h1,
body.subpage-light .about-section h2,
body.subpage-light .about-section h3 {
  color: var(--brand-deep);
}

body.subpage-light .page-header p,
body.subpage-light .page-section p,
body.subpage-light .about-section p,
body.subpage-light .about-highlight-item p {
  color: rgba(58,13,107,0.78);
}

body.subpage-light .eyebrow {
  color: var(--brand-main);
}

body.subpage-light .about-highlight-item {
  border-bottom-color: rgba(90,24,154,0.16);
}

body.subpage-light .about-highlight-icon {
  background: var(--brand-main);
  color: #fff;
}

body.subpage-light .image-frame {
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(250,245,255,0.92));
  border-color: rgba(90,24,154,0.16);
  box-shadow: 0 22px 64px rgba(58,13,107,0.16);
}

body.subpage-light .faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.97), rgba(250,245,255,0.94));
  border: 1px solid rgba(90,24,154,0.16);
  color: var(--brand-deep);
  box-shadow: 0 14px 34px rgba(58,13,107,0.10);
}

body.subpage-light .faq-item summary {
  color: var(--brand-deep);
}

body.subpage-light .faq-item p {
  color: rgba(58,13,107,0.78);
}

body.subpage-light .text-link {
  color: var(--brand-main);
}

/* 2026 final subpage gradient correction
   Services and About now match the site flow: purple header area blending into a pale white content area. */
body.subpage-light {
  background:
    radial-gradient(circle at 18% 8%, rgba(199,125,255,0.20), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.12), transparent 24%),
    linear-gradient(180deg, #24083f 0, #4b1678 300px, #7b2cbf 470px, #f8f2ff 820px, #ffffff 100%);
  color: var(--brand-deep);
}

body.subpage-light .page-section,
body.subpage-light .about-section {
  padding-top: 76px;
}

body.subpage-light .page-header .eyebrow {
  color: rgba(255,255,255,0.84);
}

body.subpage-light .page-header h1,
body.subpage-light .page-header p {
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(18,2,31,0.28);
}

body.subpage-light .section-block h2,
body.subpage-light .section-block h3,
body.subpage-light .faq-section h2,
body.subpage-light .faq-section h3 {
  color: var(--brand-deep);
  text-shadow: none;
}

body.subpage-light .section-block p,
body.subpage-light .section-block small,
body.subpage-light .faq-section p {
  color: rgba(58,13,107,0.78);
  text-shadow: none;
}

body.subpage-light .panel,
body.subpage-light .quote-card,
body.subpage-light .faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(250,245,255,0.94));
  border: 1px solid rgba(90,24,154,0.16);
  color: var(--brand-deep);
  box-shadow: 0 18px 46px rgba(58,13,107,0.14);
}

body.subpage-light .panel p,
body.subpage-light .quote-card p,
body.subpage-light .faq-item p,
body.subpage-light .about-highlight-item p {
  color: rgba(58,13,107,0.78);
}

body.subpage-light .about-highlights {
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 26px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

body.subpage-light .about-highlight-item p {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(18,2,31,0.22);
}

body.subpage-light .about-section .section-block h2 {
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(18,2,31,0.28);
}
