/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child Theme for Apex Dentistry & Implants
Author: Apex Dentistry & Implants
Template: hello-elementor
Version: 2.3.0
Text Domain: hello-elementor-child
*/

/* ============================================================
   APEX DENTISTRY & IMPLANTS - DESIGN SYSTEM
   ------------------------------------------------------------
   TABLE OF CONTENTS
   0.  Design tokens
   1.  Base
   2.  WP / Elementor cleanup (titles, gaps)
   3.  STICKY BEHAVIOR (header + sidebar cards, all in one place)
   4.  Parent service hero        (.apx-srvhero)
   5.  Parent overview            (.apx-ov)
   6.  Sub-services grid          (.apx-sub)
   7.  Sub-service compact hero   (.apx-minhero)
   8.  Cross-link nav bar         (.apx-xnav)
   9.  Sub-service SEO content    (.apx-subseo)
   10. FAQ                        (.apx-faq)
   11. CTA booking                (.apx-cta)
   12. Footer                     (.apx-ft)
   13. Responsive breakpoints
   ============================================================ */

/* ------------------------------------------------------------
   0. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  --gold: #C2984E;
  --gold-light: #D4AC63;
  --gold-dark: #9E7734;
  --gold-glow: rgba(194, 152, 78, 0.4);
  --gold-border: rgba(194, 152, 78, 0.3);
  --ink: #0A0A0A;
  --ink-card: #141414;
  --body: #5E5A54;
  --body-light: #B8B2A8;
  --cream: #F6F4F0;
  --cream-card: #ECE9E2;
  --white: #FFFFFF;
  --muted: #7A7570;
  --font-serif: 'Cormorant Garamond', Cormorant, Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ------------------------------------------------------------
   1. BASE
   ------------------------------------------------------------
   IMPORTANT: horizontal overflow is handled with `clip`, NOT
   `hidden`. `overflow-x: hidden` turns html/body into scroll
   containers, which silently kills EVERY position:sticky on
   the page (sidebar cards AND the header). `clip` does the
   same visual clipping (needed for the 100vw full-bleed
   sections) without creating a scroll container.
   Do not change this back to `hidden`.
   ------------------------------------------------------------ */
html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overflow-y: visible;
}

/* ------------------------------------------------------------
   2. WP / ELEMENTOR CLEANUP
   Hides default page titles and strips theme/builder gaps so
   full-bleed sections butt up against each other.
   ------------------------------------------------------------ */
.page-header,
header.page-header,
.entry-title {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}

main.site-main,
.page-content,
.elementor {
  margin: 0 !important;
  padding: 0 !important;
}

/* Header template (ID 306): zero out builder spacing */
.elementor-location-header,
.elementor-306,
.elementor-306 .e-con,
.elementor-306 .e-con-full,
.elementor-306 .elementor-widget-html {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.elementor-widget-html {
  margin-bottom: 0 !important;
}

.elementor-widget-wrap {
  padding: 0 !important;
}

/* ------------------------------------------------------------
   3. STICKY BEHAVIOR
   Everything sticky lives here. If sticky breaks again, this
   section and the overflow rule in section 1 are the only two
   places to look.
   ------------------------------------------------------------ */

/* 3a. Sticky header.
   If the header is stickied via Elementor's Motion Effects
   (Advanced > Motion Effects > Sticky: Top), Elementor applies
   inline position:fixed and this rule is harmlessly overridden.
   This CSS fallback keeps the header pinned either way. */
.elementor-location-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* 3b. Guard: an ancestor with overflow hidden/auto/scroll breaks
   sticky for its descendants. If someone toggles Overflow on a
   container in the Elementor UI, these keep sticky alive. */
.e-con:has(.apx-ov__card),
.e-con:has(.apx-subseo__sidebar),
.elementor-widget:has(.apx-ov__card),
.elementor-widget:has(.apx-subseo__sidebar) {
  overflow: visible !important;
}

/* 3c. Sidebar cards on service pages: sticky on desktop only */
@media (min-width: 1025px) {
  .apx-ov__card,
  .apx-subseo__sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

@media (max-width: 1024px) {
  .apx-ov__card,
  .apx-subseo__sidebar {
    position: static;
  }
}

/* ------------------------------------------------------------
   4. PARENT SERVICE PAGE HERO (.apx-srvhero)
   ------------------------------------------------------------ */
.apx-srvhero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 24px 40px;
  font-family: var(--font-sans);
  color: var(--white);
}
.apx-srvhero * {
  box-sizing: border-box;
}
.apx-srvhero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.apx-srvhero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.apx-srvhero__crumbs a {
  color: var(--body-light);
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.apx-srvhero__crumbs a:hover {
  color: var(--gold);
}
.apx-srvhero__sep {
  color: var(--gold-border);
}
.apx-srvhero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E0C99A;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.apx-srvhero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.apx-srvhero__h1 {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
}
.apx-srvhero__h1 em {
  color: var(--gold);
  font-style: italic;
}
.apx-srvhero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: #D4CEBF !important;
  margin: 0 0 24px;
  max-width: 600px;
}
.apx-srvhero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #B8B2A8;
  margin-bottom: 32px;
}
.apx-srvhero__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
}
.apx-srvhero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.apx-srvhero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink) !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.apx-srvhero__btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}
.apx-srvhero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.apx-srvhero__btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}
.apx-srvhero__media {
  position: relative;
}
.apx-srvhero__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
}
.apx-srvhero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.apx-srvhero__card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--white);
}
.apx-srvhero__card b {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 2px;
}
.apx-srvhero__card span {
  font-size: 12px;
  color: #B8B2A8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   5. PARENT OVERVIEW SECTION (.apx-ov)
   NOTE: sticky positioning for .apx-ov__card lives in section 3.
   ------------------------------------------------------------ */
.apx-ov {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 56px;
  align-items: start;
  font-family: var(--font-sans);
}
.apx-ov * {
  box-sizing: border-box;
}
.apx-ov__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.apx-ov__h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.16;
  margin: 0 0 24px;
  color: var(--ink);
}
.apx-ov__h2 em {
  color: var(--gold-dark);
  font-style: italic;
}
.apx-ov__lead {
  font-size: 18px;
  line-height: 1.65;
  color: #2D2A26;
  font-weight: 400;
  margin-bottom: 20px;
}
.apx-ov__article p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 18px;
}
.apx-ov__card {
  background: var(--ink);
  border-radius: 20px;
  padding: 36px 28px;
  color: var(--white);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(194, 152, 78, 0.25);
}
.apx-ov__card-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.apx-ov__card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 24px;
}
.apx-ov__card-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.apx-ov__card-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--body-light);
}
.apx-ov__card-list li strong {
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.apx-ov__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.apx-ov__card-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--gold-glow);
}

/* ------------------------------------------------------------
   6. PARENT SUB-SERVICES DIRECTORY GRID (.apx-sub)
   ------------------------------------------------------------ */
.apx-sub {
  max-width: 1240px;
  margin: 0 auto;
  font-family: var(--font-sans);
}
.apx-sub * {
  box-sizing: border-box;
}
.apx-sub__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.apx-sub__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.apx-sub__h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.14;
  margin: 0 0 16px;
  color: var(--ink);
}
.apx-sub__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}
.apx-sub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.apx-sub__card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
.apx-sub__card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 18px 40px -10px rgba(194, 152, 78, 0.2);
}
.apx-sub__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.apx-sub__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}
.apx-sub__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 24px;
  flex-grow: 1;
}
.apx-sub__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.apx-sub__card:hover .apx-sub__link {
  gap: 10px;
}

/* ------------------------------------------------------------
   7. SUB-SERVICE COMPACT HERO (.apx-minhero)
   Full-bleed via 100vw negative margins. This is why section 1
   needs overflow-x: clip on html/body.
   ------------------------------------------------------------ */
.apx-minhero {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  background: var(--ink) !important;
  padding: 44px 24px 32px !important;
  font-family: var(--font-sans);
  box-sizing: border-box !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.apx-minhero *,
.apx-minhero *::before,
.apx-minhero *::after {
  box-sizing: border-box;
}
.apx-minhero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.apx-minhero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.apx-minhero__crumbs::-webkit-scrollbar {
  display: none;
}
.apx-minhero__crumbs a {
  color: var(--body-light);
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.apx-minhero__crumbs a:hover {
  color: var(--gold);
}
.apx-minhero__sep {
  color: var(--gold-border);
  user-select: none;
}
.apx-minhero__h1 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
}
.apx-minhero__h1 em {
  color: var(--gold);
  font-style: italic;
}
.apx-minhero__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.apx-minhero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E0C99A;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.apx-minhero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ------------------------------------------------------------
   8. CROSS-LINKING NAVIGATION BAR (.apx-xnav)
   Full-bleed, same technique as .apx-minhero.
   ------------------------------------------------------------ */
.apx-xnav {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  background: #111111 !important;
  border-bottom: 1px solid rgba(194, 152, 78, 0.25);
  font-family: var(--font-sans);
  box-sizing: border-box !important;
  min-height: 62px;
  display: flex;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.apx-xnav *,
.apx-xnav *::before,
.apx-xnav *::after {
  box-sizing: border-box;
}
.apx-xnav__inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.apx-xnav__inner::-webkit-scrollbar {
  display: none;
}
.apx-xnav__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold) !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.apx-xnav__label::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
  margin-left: 6px;
}
.apx-xnav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.apx-xnav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #C8C2B8 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.apx-xnav__links a:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--gold-border) !important;
  transform: translateY(-1px);
}
.apx-xnav__links a.is-active,
.apx-xnav__links a[aria-current="page"] {
  color: #0A0A0A !important;
  background: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(194, 152, 78, 0.35);
}

/* ------------------------------------------------------------
   9. SUB-SERVICE 2-COLUMN SEO CONTENT (.apx-subseo)
   NOTE: sticky positioning for .apx-subseo__sidebar lives in
   section 3.
   ------------------------------------------------------------ */
.apx-subseo {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 56px;
  align-items: start;
  font-family: var(--font-sans);
}
.apx-subseo * {
  box-sizing: border-box;
}
.apx-subseo__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.apx-subseo__h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.18;
  margin: 36px 0 18px;
  color: var(--ink);
}
.apx-subseo__h2:first-of-type {
  margin-top: 0;
}
.apx-subseo__h2 em {
  color: var(--gold-dark);
  font-style: italic;
}
.apx-subseo__lead {
  font-size: 18px;
  line-height: 1.65;
  color: #2D2A26;
  font-weight: 400;
  margin-bottom: 20px;
}
.apx-subseo__article p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 18px;
}
.apx-subseo__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.apx-subseo__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
}
.apx-subseo__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 152, 78, 0.2);
}
.apx-subseo__list li strong {
  color: var(--ink);
}
.apx-subseo__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apx-subseo__card {
  background: var(--ink);
  border-radius: 20px;
  padding: 32px 26px;
  color: var(--white);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(194, 152, 78, 0.25);
}
.apx-subseo__card-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.apx-subseo__card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 12px;
}
.apx-subseo__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-light);
  margin: 0 0 24px;
}
.apx-subseo__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}
.apx-subseo__card-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--gold-glow);
}
.apx-subseo__card-call {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--body-light);
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.apx-subseo__card-call:hover {
  color: var(--gold);
}
.apx-subseo__hours-line {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body-light);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.apx-subseo__hours-line b {
  color: var(--white);
}

/* ------------------------------------------------------------
   10. FAQ SECTION (.apx-faq)
   ------------------------------------------------------------ */
.apx-faq {
  max-width: 1240px;
  margin: 0 auto;
  font-family: var(--font-sans);
}
.apx-faq * {
  box-sizing: border-box;
}
.apx-faq__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.apx-faq__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.apx-faq__headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.14;
  margin: 0 0 16px;
  color: var(--ink);
}
.apx-faq__headline em {
  color: var(--gold-dark);
  font-style: italic;
}
.apx-faq__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}
.apx-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}
.apx-faq__item {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s ease;
}
.apx-faq__item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  box-shadow: 0 12px 30px -10px rgba(194, 152, 78, 0.15);
}
.apx-faq__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(194, 152, 78, 0.12);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  font-style: normal;
}
.apx-faq__mark::before {
  content: '?';
}
.apx-faq__q {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.35;
}
.apx-faq__a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
}
.apx-faq__note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--body);
}
.apx-faq__note a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none !important;
}

/* ------------------------------------------------------------
   11. CTA BOOKING SECTION (.apx-cta)
   ------------------------------------------------------------ */
.apx-cta__content {
  text-align: center;
  font-family: var(--font-sans);
  color: var(--white);
}
.apx-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.apx-cta__headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--white);
}
.apx-cta__headline em {
  color: var(--gold);
  font-style: italic;
}
.apx-cta__sub {
  font-size: 17px;
  line-height: 1.65;
  color: #C8C2B8;
  max-width: 680px;
  margin: 0 auto 32px;
}
.apx-cta__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink) !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}
.apx-cta__call:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}
.apx-cta__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #B8B2A8;
  margin-bottom: 48px;
}
.apx-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.apx-cta__details {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  flex-wrap: wrap;
}
.apx-cta__detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apx-cta__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.apx-cta__link {
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.apx-cta__link:hover {
  color: var(--gold) !important;
}
.apx-cta__hours {
  color: #B8B2A8;
  font-size: 14px;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   12. GLOBAL FOOTER (.apx-ft)
   ------------------------------------------------------------ */
.apx-ft {
  background: #0A0A0A;
  color: var(--white);
  font-family: var(--font-sans);
  padding: 60px 24px 32px;
}
.apx-ft * {
  box-sizing: border-box;
}
.apx-ft__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.apx-ft__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.apx-ft__logo-img {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
}
.apx-ft__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #B8B2A8;
  margin: 0 0 16px;
}
.apx-ft__stars {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}
.apx-ft__stars span {
  letter-spacing: 2px;
}
.apx-ft__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #E0C99A;
}
.apx-ft__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.apx-ft__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.apx-ft__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.apx-ft__links li {
  margin-bottom: 12px;
}
.apx-ft__links a {
  color: #C8C2B8;
  text-decoration: none !important;
  font-size: 14px;
  transition: color 0.2s ease;
}
.apx-ft__links a:hover {
  color: var(--gold);
}
.apx-ft__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apx-ft__c-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apx-ft__c-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.apx-ft__c-item a {
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.apx-ft__c-item a:hover {
  color: var(--gold) !important;
}
.apx-ft__hours {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #B8B2A8;
}
.apx-ft__hours strong {
  color: var(--white);
}
.apx-ft__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: #7A7570;
  flex-wrap: wrap;
  gap: 16px;
}
.apx-ft__legal a {
  color: #9E9992;
  text-decoration: none !important;
  margin-left: 16px;
}
.apx-ft__legal a:hover {
  color: var(--gold);
}

/* ------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .apx-srvhero__inner,
  .apx-ov,
  .apx-subseo {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apx-ft__cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .apx-srvhero {
    padding: 10px 16px 30px;
  }
  .apx-srvhero__h1 {
    font-size: 2.2rem;
  }
  .apx-sub__grid,
  .apx-faq__grid {
    grid-template-columns: 1fr;
  }
  .apx-ft__cols {
    grid-template-columns: 1fr;
  }
  .apx-minhero {
    padding: 32px 20px 24px !important;
  }
  .apx-minhero__inner {
    padding: 0 16px;
  }
  .apx-xnav {
    min-height: 56px;
  }
  .apx-xnav__label {
    display: none;
  }
  .apx-xnav__inner {
    padding: 8px 16px;
    gap: 8px;
  }
  .apx-xnav__links a {
    padding: 7px 13px;
    font-size: 12px;
  }
}

/* 3c. STICKY SIDEBAR CARDS: FORCE MODE (desktop only)
   Handles both layouts without touching page code:
   - stretches Elementor's wrapper chain so sticky has room to travel
   - kills overflow on anything wrapping the cards
   - asserts sticky with !important to beat page-level inline styles */
@media (min-width: 1025px) {

  /* give sticky a full-height runway when the sidebar is its own widget/column */
  .e-con:has(> .elementor-widget .apx-subseo__sidebar),
  .e-con:has(> .elementor-widget .apx-ov__card),
  .elementor-widget:has(.apx-subseo__sidebar),
  .elementor-widget:has(.apx-ov__card),
  .elementor-widget:has(.apx-subseo__sidebar) > .elementor-widget-container,
  .elementor-widget:has(.apx-ov__card) > .elementor-widget-container {
    height: 100%;
    overflow: visible !important;
  }

  /* the cards themselves */
  .apx-subseo__sidebar,
  .apx-ov__card {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    align-self: start;
  }
}

@media (max-width: 1024px) {
  .apx-subseo__sidebar,
  .apx-ov__card {
    position: static !important;
  }
}

/* ------------------------------------------------------------
   HEADING FONT GUARD (Sept 2026)
   Legacy page widgets still declare Fraunces inline. This forces
   every heading-style element onto Cormorant Garamond site-wide,
   with weights matched to the homepage.
   ------------------------------------------------------------ */
.apx-cta__headline,
.apx-faq__headline,
.apx-ov__h,
.apx-sub__h,
.apx-proc__h,
.apx-fit__h,
.apx-docstrip__h,
.apx-pay__h,
.apx-fv__h,
.apx-ct__h {
  font-family: 'Cormorant Garamond', Cormorant, Georgia, serif !important;
  font-weight: 400 !important;
}
.apx-faq__q,
.apx-ov__copy h3,
.apx-sub__grid b,
.apx-proc__steps b,
.apx-pay__card b,
.apx-ct__card b,
.apx-fv__card b {
  font-family: 'Cormorant Garamond', Cormorant, Georgia, serif !important;
  font-weight: 500 !important;
}
.apx-sub__grid i,
.apx-proc__steps i,
.apx-pay__card i,
.apx-docstrip__creds b,
.apx-bio__h,
.apx-creds__h,
.apx-vals__h,
.apx-svcs__h {
  font-family: 'Cormorant Garamond', Cormorant, Georgia, serif !important;
}