:root {
  --cream: #fff9f5;
  --cream-2: #fff2ec;
  --soft-pink: #f6ddd9;
  --blush: #eec4c3;
  --rose: #b76f7a;
  --rose-dark: #874f5b;
  --ink: #2d2422;
  --muted: #776764;
  --line: #eadbd6;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(94, 54, 59, 0.14);
  --soft-shadow: 0 16px 48px rgba(80, 44, 47, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 3%, rgba(246, 221, 217, .72), transparent 32%),
    linear-gradient(180deg, var(--cream), var(--cream-2));
  color: var(--ink);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 245, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .85rem; min-width: max-content; }
.brand img, .footer-brand img { width: 64px; height: 64px; border-radius: 999px; object-fit: cover; box-shadow: 0 10px 24px rgba(94,54,59,.16); border: 1px solid rgba(255,255,255,.78); }
.brand strong, .footer strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.72rem; line-height: 1; }
.brand small { font-size: .72rem; letter-spacing: .24rem; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 1.55rem; align-items: center; color: var(--muted); font-weight: 700; }
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta { padding: .75rem 1.1rem; border-radius: 999px; background: var(--ink); color: white; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.8rem; color: var(--ink); }

.hero { display: grid; grid-template-columns: 1.02fr .98fr; gap: 4.2rem; align-items: center; padding: 5rem 0 6rem; }
.eyebrow { margin-bottom: 1rem; color: var(--rose-dark); font-size: .78rem; font-weight: 800; letter-spacing: .22rem; text-transform: uppercase; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; color: var(--ink); }
.hero h1 { max-width: 11ch; font-size: clamp(3.25rem, 6.2vw, 6.15rem); line-height: .98; letter-spacing: -.035em; }
.lead { max-width: 600px; margin-top: 1.7rem; color: var(--muted); font-size: 1.12rem; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.payment-copy .hero-actions { margin-top: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 1rem 1.35rem; font-weight: 800; border: 1px solid transparent; cursor: pointer; }
.primary { background: var(--ink); color: white; }
.secondary { background: white; border-color: var(--line); color: var(--ink); }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.trust-row span, .pill, .payment-points span { display: inline-flex; align-items: center; width: max-content; max-width: 100%; padding: .55rem .8rem; border-radius: 999px; border: 1px solid var(--line); background: white; color: var(--muted); font-size: .86rem; font-weight: 700; }
.hero-visual { position: relative; overflow: hidden; min-height: 610px; border-radius: 2.4rem; background: var(--soft-pink); box-shadow: var(--shadow); }
.hero-visual img { width: 100%; height: 610px; object-fit: cover; }
.hero-badge { position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; padding: 1.25rem; border-radius: 1.45rem; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.8); backdrop-filter: blur(14px); }
.hero-badge strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.8rem; line-height: 1.1; }
.hero-badge span { color: var(--muted); }

.section { padding: 6.5rem 0; }
.section-soft { padding: 6.25rem 0; background: linear-gradient(135deg, #fff, #f7dedb); }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: end; }
.intro h2, .section-heading h2, .payment h2, .booking-card h2 { font-size: clamp(2.6rem, 4.7vw, 4.35rem); line-height: 1.06; letter-spacing: -.028em; }
.provider h2 { max-width: 12ch; font-size: clamp(2.7rem, 4.6vw, 4.4rem); line-height: 1.04; letter-spacing: -.028em; }
.intro-grid p:last-child, .section-heading p, .provider p, .payment p, .booking-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
.center { max-width: 900px; margin: 0 auto; text-align: center; }
.section-heading p { max-width: 680px; margin: .85rem auto 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; margin-top: 3.2rem; }
.service-card { display: flex; flex-direction: column; overflow: hidden; padding: 1.1rem; border-radius: 1.75rem; border: 1px solid var(--line); background: rgba(255,255,255,.84); box-shadow: var(--soft-shadow); transition: .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(80, 44, 47, 0.11); }
.service-card img { width: 100%; height: 238px; object-fit: cover; border-radius: 1.3rem; background: var(--soft-pink); }
.service-content { display: flex; flex-direction: column; align-items: flex-start; padding: 1.35rem .25rem .25rem; }
.service-content .pill { margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .6rem; font-size: 2rem; line-height: 1.08; }
.service-card p, .service-card li { color: var(--muted); }
.service-card ul { margin: 1rem 0 0 1.1rem; }
.wide-card { grid-column: span 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.6rem; align-items: stretch; }
.wide-card img { height: 100%; min-height: 355px; }
.wide-card .service-content { justify-content: center; padding: 1rem .4rem; }

.provider-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 4rem; align-items: center; }
.provider-grid::before { content: ""; position: absolute; right: -2rem; top: -1rem; width: 260px; height: 260px; background: url("assets/everpure-logo.jpg") center / contain no-repeat; opacity: .055; pointer-events: none; }
.provider-photo-wrap { border-radius: 2rem; padding: .8rem; background: linear-gradient(135deg, white, var(--soft-pink)); box-shadow: var(--shadow); }
.provider-photo { width: 100%; border-radius: 1.5rem; }
.credential-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.credential-grid div, .steps div { padding: 1.45rem; border-radius: 1.45rem; border: 1px solid var(--line); background: white; }
.credential-grid strong { display: block; margin-bottom: .25rem; }
.credential-grid span { color: var(--muted); font-size: .92rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; margin-top: 3.2rem; }
.steps span { color: var(--rose); font-weight: 900; }
.steps h3 { margin: .65rem 0 .55rem; font-size: 2rem; line-height: 1.1; }
.steps p { color: var(--muted); }

.payment.section-soft { padding: 9rem 0; }
.payment-grid { display: grid; grid-template-columns: minmax(0, 1fr) 560px; gap: 7.5rem; align-items: center; }
.payment-copy { max-width: 660px; }
.payment-copy h2 { margin-bottom: 2.4rem; }
.payment-copy > p:not(.eyebrow) { max-width: 625px; margin-bottom: 2.1rem; line-height: 1.95; }
.payment-points { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 0; margin-bottom: 2.05rem; }
.payment-card { padding: 2.35rem; border-radius: 2rem; border: 1px solid rgba(255,255,255,.82); background: linear-gradient(135deg, #ffdbe7, #f6c5d4); box-shadow: var(--shadow); }
.payment-card img { width: 100%; border-radius: 1.45rem; background: white; }

.booking-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.2rem; padding: 2.35rem; border-radius: 2.25rem; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
.booking-copy h2 { margin-bottom: 1rem; }
.booking-copy p { max-width: 430px; }
.contact-list { display: grid; gap: .75rem; margin-top: 1.6rem; color: var(--muted); font-weight: 800; }
.booking-form { display: grid; gap: .95rem; }
.booking-form label { color: var(--ink); font-weight: 800; }
input, select { width: 100%; margin-top: .35rem; padding: .95rem; border: 1px solid var(--line); border-radius: .95rem; background: #fffaf7; color: var(--ink); font: inherit; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
.full { width: 100%; border: 0; margin-top: .35rem; }

.footer { padding: 3rem 0; background: var(--ink); color: white; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer p, .footer span { display: block; color: #d8cbc7; margin-top: .4rem; }
.footer-contact { text-align: right; font-weight: 700; }

@media (max-width: 950px) {
  .nav { height: 78px; }
  .brand img, .footer-brand img { width: 54px; height: 54px; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem 4%; background: #fff9f5; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .hero, .intro-grid, .provider-grid, .payment-grid, .booking-card { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 4.5rem; gap: 2.8rem; }
  .hero h1 { font-size: clamp(3rem, 12vw, 4.6rem); }
  .hero-visual, .hero-visual img { min-height: 430px; height: 430px; }
  .section, .section-soft { padding: 4.5rem 0; }
  .service-grid { grid-template-columns: 1fr; }
  .wide-card { grid-column: auto; grid-template-columns: 1fr; }
  .wide-card img { min-height: auto; height: 238px; }
  .provider-grid::before { display: none; }
  .credential-grid, .steps, .two-col { grid-template-columns: 1fr; }
  .payment.section-soft { padding: 5.4rem 0; }
  .payment-grid { gap: 3.4rem; }
  .payment-copy h2 { margin-bottom: 1.8rem; }
  .payment-copy > p:not(.eyebrow) { margin-bottom: 1.8rem; }
  .payment-points { margin-bottom: 1.7rem; }
  .payment-card { padding: 1.35rem; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero h1 { max-width: 11ch; }
  .hero-visual, .hero-visual img { height: 360px; min-height: 360px; }
  .hero-badge { left: 1rem; right: 1rem; bottom: 1rem; }
  .service-card img, .wide-card img { height: 210px; }
  .service-content { padding-top: 1.2rem; }
  .booking-card { padding: 1.25rem; }
}

/* QR financing card adjustments */
.payment-financing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.85rem;
  padding: 2.7rem;
  text-align: center;
}

.payment-methods {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.45rem;
  padding: 1.35rem 1.25rem;
  border-radius: 1.35rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 14px 34px rgba(94,54,59,.08);
}

.payment-methods span,
.payment-methods img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-weight: 900;
  line-height: 1;
}

.payment-logo {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
}

.visa-logo { color: #153f91; font-size: 1.6rem; font-style: italic; letter-spacing: -.04em; }
.apple-pay-logo { height: 48px; min-height: 0; }
.paypal-logo { color: #123f88; font-size: 1.62rem; letter-spacing: -.055em; }

.mastercard-logo { position: relative; min-width: 92px; gap: 0; flex-direction: column; }
.mastercard-logo i { position: absolute; top: 0; width: 31px; height: 31px; border-radius: 50%; }
.mastercard-logo i:first-child { left: 20px; background: #eb001b; }
.mastercard-logo i:nth-child(2) { left: 42px; background: #f79e1b; mix-blend-mode: multiply; }
.mastercard-logo small { margin-top: 32px; color: #3b302d; font-size: .62rem; font-weight: 700; text-transform: lowercase; letter-spacing: -.02em; }

.qr-block {
  width: min(100%, 310px);
  padding: 1.05rem;
  border-radius: 1.35rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(94,54,59,.10);
}

.qr-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: .9rem;
  background: white;
}

.qr-copy h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: .45rem;
}

.qr-copy p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.65;
}

.financing-providers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: .2rem;
}

.cherry-logo, .patientfi-logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.cherry-logo { color: #e9186d; }
.patientfi-logo { color: #24aabc; }
.provider-divider { width: 1px; height: 26px; background: rgba(135,79,91,.35); }

@media (max-width: 950px) {
  .payment-financing-card { padding: 1.55rem; }
  .payment-methods { gap: .9rem; padding: 1.05rem .75rem; }
  .apple-pay-logo { height: 42px; }
  .qr-block { width: min(100%, 260px); }
}


/* Final payment section corrections: keep logos aligned and QR fully visible */
.payment-financing-card {
  gap: 2rem;
  padding: 2.8rem;
  overflow: visible;
}

.payment-methods {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 470px;
  padding: 1.25rem 1.65rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.96);
}

.payment-methods span,
.payment-methods img {
  min-height: 0;
  flex: 0 0 auto;
}

.visa-logo { font-size: 1.45rem; }
.mastercard-logo { min-width: 74px; height: 42px; }
.mastercard-logo i { top: 0; width: 28px; height: 28px; }
.mastercard-logo i:first-child { left: 14px; }
.mastercard-logo i:nth-child(2) { left: 34px; }
.mastercard-logo small { margin-top: 30px; font-size: .54rem; }

.apple-pay-logo {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .22rem;
  height: 36px;
  min-height: 36px !important;
  padding: 0 .65rem;
  border-radius: .32rem;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.apple-pay-logo .apple-symbol {
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-1px);
}

.paypal-logo { font-size: 1.48rem; }

.qr-block {
  width: min(100%, 300px);
  padding: 1rem;
  overflow: visible;
}

.qr-image {
  width: 100%;
  height: auto !important;
  aspect-ratio: auto;
  object-fit: contain !important;
  object-position: center;
  display: block;
  border-radius: .7rem;
}

@media (max-width: 640px) {
  .payment-methods {
    flex-wrap: wrap;
    max-width: 100%;
    gap: 1.1rem 1.4rem;
  }
  .qr-block { width: min(100%, 270px); }
}


/* Payment section hard fix: correct Apple Pay image, single logo row, uncropped QR */
.payment-financing-card {
  overflow: visible !important;
}

.payment-methods {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.7rem !important;
  width: 100% !important;
  max-width: 500px !important;
  padding: 1.2rem 1.5rem !important;
  border-radius: 1.25rem !important;
  background: rgba(255,255,255,.96) !important;
  overflow: visible !important;
}

.payment-methods span,
.payment-methods img {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  line-height: 1 !important;
}

.payment-logo.apple-pay-logo,
.payment-methods img.apple-pay-logo {
  display: block !important;
  height: 42px !important;
  width: auto !important;
  max-width: 78px !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.qr-block {
  width: min(100%, 315px) !important;
  height: auto !important;
  padding: 1rem !important;
  border-radius: 1.35rem !important;
  background: #fff !important;
  overflow: visible !important;
}

.qr-block img.qr-image,
.qr-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: .8rem !important;
  background: #fff !important;
}

@media (max-width: 640px) {
  .payment-methods {
    flex-wrap: wrap !important;
    gap: 1rem 1.25rem !important;
  }
  .payment-logo.apple-pay-logo,
  .payment-methods img.apple-pay-logo {
    height: 38px !important;
    max-width: 72px !important;
  }
  .qr-block { width: min(100%, 290px) !important; }
}


/* Financing link/accessibility update */
.qr-financing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  background: var(--espresso);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(43, 33, 29, .14);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.qr-financing-link:hover {
  transform: translateY(-2px);
  background: #3b2d28;
  box-shadow: 0 18px 34px rgba(43, 33, 29, .18);
}

.qr-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-copy p {
  max-width: 310px !important;
}

.qr-block {
  overflow: visible !important;
  aspect-ratio: auto !important;
}

.qr-image {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* FINAL OVERRIDE: financing pre-qualify button must be high-contrast by default */
.payment-financing-card .qr-copy .qr-financing-link,
a.qr-financing-link,
.qr-financing-link:link,
.qr-financing-link:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 1.15rem !important;
  padding: 0.95rem 1.45rem !important;
  border-radius: 999px !important;
  background: #2d2422 !important;
  background-color: #2d2422 !important;
  color: #ffffff !important;
  border: 1px solid #2d2422 !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(45, 36, 34, 0.22) !important;
  opacity: 1 !important;
  filter: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease !important;
}

.payment-financing-card .qr-copy .qr-financing-link:hover,
a.qr-financing-link:hover,
.payment-financing-card .qr-copy .qr-financing-link:focus-visible,
a.qr-financing-link:focus-visible {
  background: #43312b !important;
  background-color: #43312b !important;
  border-color: #43312b !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 36px rgba(45, 36, 34, 0.28) !important;
}

/* Full services page luxury layout */
.services-hero {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 4rem;
  align-items: center;
  padding: 5.4rem 0 6.2rem;
}

.services-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.services-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
  padding: 1rem;
  background: linear-gradient(135deg, white, var(--soft-pink));
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}

.services-hero-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1.55rem;
}

.services-hero-card div {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 1.25rem;
  border-radius: 1.35rem;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(14px);
}

.services-hero-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  line-height: 1.1;
}

.services-hero-card span {
  display: block;
  margin-top: .35rem;
  color: var(--muted);
}

.menu-category {
  margin-top: 5rem;
}

.menu-category-heading {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: end;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.menu-category-heading h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  line-height: 1.02;
}

.menu-category-heading p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 1.6rem;
}

.menu-card {
  min-height: 220px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background: rgba(255,255,255,.86);
  box-shadow: var(--soft-shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(80, 44, 47, .11);
}

.menu-card h3 {
  margin-bottom: .55rem;
  font-size: 1.85rem;
  line-height: 1.08;
}

.menu-card p,
.menu-card li {
  color: var(--muted);
}

.menu-card ul {
  margin: 1rem 0 0 1.1rem;
}

.menu-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.3rem;
  align-items: center;
  min-height: 320px;
}

.menu-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  border-radius: 1.15rem;
  background: var(--soft-pink);
}

.service-page-cta {
  margin-top: 5.5rem;
  padding: 3rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(246,221,217,.74), transparent 28%),
    linear-gradient(135deg, white, #fff2ec);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.service-page-cta h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 1.04;
}

.service-page-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: .9rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.service-page-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 950px) {
  .services-hero,
  .menu-category-heading,
  .menu-card.featured {
    grid-template-columns: 1fr;
  }

  .services-hero {
    gap: 2.5rem;
    padding: 3.8rem 0 4.5rem;
  }

  .services-hero-card img {
    height: 420px;
  }

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

  .menu-card.featured {
    grid-column: auto;
  }

  .menu-category {
    margin-top: 4rem;
  }
}

@media (max-width: 520px) {
  .services-hero-card img {
    height: 340px;
  }

  .services-hero-card div {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
  }

  .menu-card,
  .service-page-cta {
    padding: 1.25rem;
  }

  .menu-card.featured img {
    min-height: 230px;
  }
}


/* Mobile services page fix: stop featured cards from turning into giant cropped image monsters */
@media (max-width: 950px) {
  .services-hero-card {
    position: relative;
  }

  .menu-card.featured {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    min-height: auto !important;
    padding: 1.1rem !important;
  }

  .menu-card.featured img {
    width: 100% !important;
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 1.15rem !important;
    margin-bottom: 1.15rem !important;
  }

  .menu-card.featured > div {
    position: static !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .menu-card.featured .pill {
    margin-bottom: .85rem !important;
  }

  .menu-card.featured h3 {
    margin-bottom: .6rem !important;
    font-size: clamp(1.75rem, 8vw, 2.35rem) !important;
    line-height: 1.05 !important;
  }

  .menu-card.featured p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }

  .menu-card.featured ul {
    margin-top: 1rem !important;
  }
}

@media (max-width: 520px) {
  .menu-card-grid {
    gap: 1rem !important;
  }

  .menu-card.featured,
  .menu-card {
    border-radius: 1.35rem !important;
  }

  .menu-card.featured img {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
  }

  .menu-card.featured h3,
  .menu-card h3 {
    font-size: clamp(1.65rem, 8vw, 2.15rem) !important;
  }

  .menu-category-heading {
    gap: 1rem !important;
  }
}


/* Lexi requested content/design updates */
.trust-row a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.trust-row a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.provider-copy p + p {
  margin-top: 1rem;
}

.payment-list span::before {
  content: "✓";
  margin-right: .45rem;
  color: var(--rose-dark);
  font-weight: 900;
}

.before-after-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 950px) {
  .wide-card {
    display: flex !important;
    flex-direction: column !important;
  }

  .wide-card img {
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .wide-card .service-content {
    padding: 1.25rem .25rem .25rem !important;
  }

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

  .trust-row a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .wide-card img {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
  }
}

/* Services page requested simplification */
.services-hero-simple {
  grid-template-columns: 1fr !important;
  max-width: 980px;
  padding-bottom: 4.5rem;
  text-align: center;
}

.services-hero-simple h1 {
  max-width: none;
  margin-inline: auto;
}

.services-hero-simple .lead {
  margin-left: auto;
  margin-right: auto;
}

.services-sublead {
  margin-top: 1rem !important;
}

.center-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.compact-menu-grid .menu-card {
  min-height: 185px;
}

.service-page-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 950px) {
  .services-hero-simple {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .services-hero-simple .hero-actions,
  .center-actions {
    justify-content: center;
  }

  .services-hero-simple .btn,
  .center-actions .btn,
  .service-page-cta .btn {
    width: 100%;
  }
}


/* Requested cleanup: services page no numbering and cleaner hero */
.services-hero-simple {
  max-width: 920px;
}

.service-menu .section-heading.center {
  margin-bottom: 1rem;
}

.menu-category-heading {
  grid-template-columns: 1fr !important;
  gap: .75rem !important;
}

.menu-category-heading > div {
  max-width: 820px;
}

.menu-category-heading h2 {
  margin-bottom: .45rem;
}

.before-after-section {
  scroll-margin-top: 110px;
}


/* Final hero location card fix: card below image and smaller CBXLA text */
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-media .hero-visual {
  overflow: hidden;
}

.hero-media .hero-badge {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 1.45rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.hero-media .hero-badge > strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.hero-media .hero-badge > span {
  display: block;
  color: var(--muted);
}

.location-inside {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .75rem;
  color: var(--rose);
  font-family: Inter, system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.location-inside svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: currentColor;
}

.location-copy {
  display: inline;
  color: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.location-prefix {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.location-inside strong {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
  letter-spacing: -.01em;
}

.form-note {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 520px) {
  .hero-media .hero-badge {
    padding: 1.1rem;
  }

  .location-inside {
    font-size: .86rem;
    white-space: nowrap;
  }
}


/* Backend booking form fixes */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.booking-form textarea {
  display: block;
  width: 100%;
  margin-top: .35rem;
  padding: .95rem;
  border: 1px solid var(--line);
  border-radius: .95rem;
  background: #fffaf7;
  color: var(--ink);
  font: inherit;
  resize: vertical;
  min-height: 118px;
}

.form-note {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: .75rem;
  padding: .9rem 1rem;
  border-radius: .95rem;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.success {
  display: block;
  background: #f2fbf5;
  color: #245c38;
  border: 1px solid #bfe8ca;
}

.form-status.error {
  display: block;
  background: #fff2f2;
  color: #8a2e2e;
  border: 1px solid #f0c5c5;
}

/* Ensure location pin never turns into a giant cursed triangle */
.location-inside svg {
  width: 13px !important;
  height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  flex: 0 0 13px !important;
  display: inline-block !important;
  overflow: visible !important;
}






/* Full mobile hamburger menu redesign */
@media (max-width:950px){
  .nav{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    position:relative!important;
    z-index:2000!important;
  }

  .nav-toggle{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:44px!important;
    height:44px!important;
    padding:0!important;
    margin:0!important;
    border:1px solid var(--line)!important;
    border-radius:999px!important;
    background:#fffaf7!important;
    color:var(--ink)!important;
    font-size:1.65rem!important;
    line-height:1!important;
    cursor:pointer!important;
    box-shadow:0 10px 22px rgba(43,33,29,.08)!important;
  }

  .nav-links{
    display:none!important;
    position:absolute!important;
    top:78px!important;
    left:0!important;
    right:0!important;
    width:100%!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:0!important;
    padding:1.2rem!important;
    background:#fff9f5!important;
    border:1px solid var(--line)!important;
    border-left:0!important;
    border-right:0!important;
    box-shadow:0 24px 48px rgba(43,33,29,.16)!important;
    z-index:1999!important;
  }

  .nav-links.open{
    display:flex!important;
  }

  .nav-links a:not(.nav-cta):not(.nav-phone){
    display:block!important;
    padding:.9rem .25rem!important;
    color:var(--ink)!important;
    font-weight:800!important;
    border-bottom:1px solid rgba(135,79,91,.14)!important;
  }

  .nav-links .nav-cta{
    order:50!important;
    display:block!important;
    width:100%!important;
    margin:1.15rem 0 1rem!important;
    padding:1rem 1.1rem!important;
    border-radius:999px!important;
    background:var(--ink)!important;
    color:#fff!important;
    text-align:center!important;
    font-weight:900!important;
    box-shadow:0 16px 32px rgba(43,33,29,.14)!important;
  }

  .nav-links .nav-phone{
    order:98!important;
    display:block!important;
    margin-top:.35rem!important;
    padding:1.1rem .25rem .25rem!important;
    border-top:1px solid var(--line)!important;
    color:var(--ink)!important;
    font-size:1.05rem!important;
    font-weight:900!important;
    text-decoration:none!important;
  }

  .nav-links .nav-phone small{
    display:block!important;
    margin-top:.3rem!important;
    color:var(--muted)!important;
    font-size:.82rem!important;
    font-weight:800!important;
  }

  .nav-links .nav-location{
    order:99!important;
    display:block!important;
    margin-top:.8rem!important;
    padding:.15rem .25rem .35rem!important;
    color:var(--muted)!important;
    font-size:.96rem!important;
    font-weight:800!important;
  }
}



/* Polished mobile menu contact footer, no emoji icons */
@media (max-width:950px){
  .nav-links .nav-phone,
  .nav-links .nav-location{
    letter-spacing: 0 !important;
  }

  .nav-links .nav-phone{
    margin-top: .55rem !important;
    padding: 1.15rem 0 .2rem !important;
    border-top: 1px solid var(--line) !important;
  }

  .nav-links .nav-phone .nav-label,
  .nav-links .nav-location .nav-label{
    display:block !important;
    margin-bottom:.35rem !important;
    color:var(--muted) !important;
    font-size:.72rem !important;
    font-weight:900 !important;
    letter-spacing:.18rem !important;
    text-transform:uppercase !important;
  }

  .nav-links .nav-phone strong,
  .nav-links .nav-location strong{
    display:block !important;
    color:var(--ink) !important;
    font-size:1.02rem !important;
    font-weight:900 !important;
  }

  .nav-links .nav-phone small{
    display:block !important;
    margin-top:.28rem !important;
    color:var(--muted) !important;
    font-size:.86rem !important;
    font-weight:700 !important;
  }

  .nav-links .nav-location{
    margin-top:.9rem !important;
    padding:.7rem 0 0 !important;
    color:var(--ink) !important;
  }
}



/* Full address link in mobile menu */
@media (max-width:950px){
  .nav-links a.nav-location{
    order:99!important;
    display:block!important;
    margin-top:.9rem!important;
    padding:.95rem 0 0!important;
    border-top:1px solid rgba(135,79,91,.14)!important;
    text-decoration:none!important;
  }

  .nav-links a.nav-location .nav-label{
    display:block!important;
    margin-bottom:.35rem!important;
    color:var(--muted)!important;
    font-size:.72rem!important;
    font-weight:900!important;
    letter-spacing:.18rem!important;
    text-transform:uppercase!important;
  }

  .nav-links a.nav-location strong{
    display:block!important;
    color:var(--ink)!important;
    font-size:1.02rem!important;
    font-weight:900!important;
  }

  .nav-links a.nav-location small{
    display:block!important;
    margin-top:.28rem!important;
    color:var(--muted)!important;
    font-size:.86rem!important;
    font-weight:700!important;
  }
}



/* Hide mobile-only menu contact items on desktop */
@media (min-width:951px){
  .nav-links .nav-phone,
  .nav-links .nav-location{
    display:none!important;
  }
}



/* Homepage featured results slideshow */
.featured-results-slider {
  position: relative;
  max-width: 980px;
  margin: 2.75rem auto 0;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 60px rgba(43, 33, 29, .10);
}

.featured-results-track {
  position: relative;
  overflow: hidden;
  border-radius: 1.45rem;
  background: #fffaf7;
  aspect-ratio: 16 / 10;
}

.featured-result-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.featured-result-slide.active {
  opacity: 1;
  visibility: visible;
}

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

.featured-results-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 247, .94);
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 32px rgba(43, 33, 29, .12);
}

.featured-results-prev { left: -1rem; }
.featured-results-next { right: -1rem; }

.featured-results-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.1rem;
}

.featured-results-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(43, 33, 29, .25);
  cursor: pointer;
}

.featured-results-dots button.active {
  width: 26px;
  background: var(--ink);
}

@media (max-width: 720px) {
  .featured-results-slider {
    margin-top: 2rem;
    padding: .7rem;
    border-radius: 1.35rem;
  }

  .featured-results-track {
    border-radius: 1rem;
    aspect-ratio: 4 / 5;
  }

  .featured-results-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .featured-results-prev { left: .3rem; }
  .featured-results-next { right: .3rem; }
}



/* Homepage featured slideshow mobile scaling fix */
.featured-results-slider {
  width: 100%;
  box-sizing: border-box;
}

.featured-results-track {
  width: 100%;
}

.featured-result-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff9f5;
}

@media (max-width: 720px) {
  .before-after-section .section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    line-height: 1.05;
  }

  .before-after-section .section-heading p:not(.eyebrow) {
    font-size: .98rem;
    line-height: 1.7;
  }

  .featured-results-slider {
    width: 100%;
    max-width: 100%;
    margin-top: 1.65rem;
    padding: .55rem;
    border-radius: 1.25rem;
    overflow: visible;
  }

  .featured-results-track {
    aspect-ratio: 3 / 4;
    border-radius: 1rem;
  }

  .featured-result-slide img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
  }

  .featured-results-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.65rem;
  }

  .featured-results-prev {
    left: .65rem;
  }

  .featured-results-next {
    right: .65rem;
  }

  .featured-results-dots {
    margin-top: .85rem;
    gap: .48rem;
  }
}

@media (max-width: 430px) {
  .featured-results-track {
    aspect-ratio: 9 / 12;
  }

  .featured-results-slider {
    padding: .45rem;
  }
}
