/* ============================================================
   STYLE.CSS — Goehring Dental Group, Implants. Cosmetic. General Dentistry
   Single stylesheet for all pages.
   Sections: Tokens · Reset · Topbar · Header · Nav ·
             Footer · Home · Sitemap
============================================================ */


/* ===========================================================
   1. DESIGN TOKENS
=========================================================== */
:root {
  --ink: #142C2B;
  --ink-soft: #3F5450;
  --paper: #FBF9F4;
  --paper-raised: #FFFFFF;
  --line: #E4DED2;
  --line-strong: #D2CAB8;

  --teal: #001d4c;
  --teal-soft: #193e7b;
  --coral: #D85B40;
  --coral-soft: #FBE9E3;
  --blue: #33647F;
  --blue-soft: #E5EDF1;
  --sage: #56805F;
  --sage-soft: #E7EFE5;
  --gold: #B57F2E;
  --gold-soft: #F3E9D6;
  --slate: #54636A;
  --slate-soft: #E9EBEC;
  --purple: #6B4F8A;
  --purple-soft: #EDE8F3;
  --gray: #8E938E;
  --gray-soft: #EEEEEA;

  --radius: 10px;
  --shadow: 0 1px 2px rgba(20, 44, 43, .04), 0 8px 24px rgba(20, 44, 43, .06);
  --header-h: 72px;
}


/* ===========================================================
   2. RESET
=========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Override height:100% set by page inline styles — sticky needs body to be taller than viewport */
html,
body {
  height: auto !important;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Jost', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Global container */
.gd-cont {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--coral-soft);
  color: var(--ink);
}


/* ===========================================================
   SHARED UTILITY CLASSES (from original design)
=========================================================== */
.vc-cont {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.vc-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.vc-eyebrow {
  font: 500 12px/1.4 'Jost', sans-serif;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.vc-nav {
  font: 400 13px/1 'Jost', sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #001d4c;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.vc-nav:hover {
  color: #bf9a5b;
}

.vc-btn-gold {
  font: 500 12.5px/1 'Jost', sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  background: #BF9A5B;
  border: none;
  border-radius: 2px;
  padding: 15px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background .18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.vc-btn-gold:hover {
  background: #cdac6f;
  color: #001d4c;
}

.vc-btn-out {
  font: 500 12.5px/1 'Jost', sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #F3EEE3;
  background: transparent;
  border: 1px solid rgba(243, 238, 227, .5);
  border-radius: 2px;
  padding: 15px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background .18s ease, border-color .18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.vc-btn-out:hover {
  background: rgba(243, 238, 227, .1);
  border-color: #F3EEE3;
  color: #F3EEE3;
}


/* ===========================================================
   3. TOP BAR (original dark green design)
=========================================================== */
.gd-topbar {
  background: #0b172a;
  color: rgb(205, 214, 204);
}

.gd-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  font: 400 11.5px/1 Jost, sans-serif;
  letter-spacing: 0.6px;
}

.gd-topbar-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gd-topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.gd-topbar-hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.gd-topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
}

.gd-topbar-phone:hover {
  color: #E7C989;
}



/* ===========================================================
   4. MAIN HEADER (original dark-green nav design)
=========================================================== */
.gd-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fffbf3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.page-content {
  padding-top: 0;
}

.gd-header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}


/* ===========================================================
   5. LOGO
=========================================================== */
.gd-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.gd-logo-img {
  height: 55px;
  width: auto;
  display: block;
}


/* ===========================================================
   6. DESKTOP NAV + DROPDOWNS
=========================================================== */
.gd-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.gd-nav-item {
  position: relative;
}

.gd-nav-item .vc-nav {
  padding: 6px 10px;
}

.gd-nav-item .vc-nav.gd-active {
  color: #bf9a5b;
}

.gd-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #001d4c;
  border: 1px solid rgba(191, 154, 91, 0.25);
  border-radius: 3px;
  min-width: 200px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  z-index: 200;
}

.gd-dropdown.gd-dropdown--wide {
  min-width: 240px;
}

.gd-nav-item:hover .gd-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gd-dropdown a {
  display: block;
  padding: 10px 18px;
  font: 400 12px/1 Jost, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(243, 238, 227, 0.75);
  text-decoration: none;
  transition: color .12s, background .12s;
}

.gd-dropdown__group-block {
  grid-column: 1 / -1;
  position: relative;
}

.gd-dropdown__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E7C989;
  cursor: default;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2px;
  user-select: none;
}

.gd-group-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #E7C989;
  transform: rotate(90deg);
}

.gd-dropdown__sub-list {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 220px;
  background: #001d4c;
  border-left: 2px solid rgba(231, 201, 137, 0.25);
  box-shadow: 6px 4px 20px rgba(0, 0, 0, 0.35);
  border-radius: 0 4px 4px 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.gd-dropdown__group-block:hover .gd-dropdown__sub-list,
.gd-dropdown__group-block.is-active .gd-dropdown__sub-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.gd-dropdown__group-block:hover .gd-group-arrow,
.gd-dropdown__group-block.is-active .gd-group-arrow {
  transform: rotate(0deg);
}

.gd-dropdown__sub-item {
  padding: 10px 18px !important;
  display: block;
}

.gd-dropdown a:hover {
  color: #E7C989;
  background: rgba(191, 154, 91, 0.08);
}

.gd-dropdown a.gd-dd-active {
  color: #E7C989;
  background: rgba(191, 154, 91, 0.12);
  font-weight: 500;
}

.gd-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}


/* ===========================================================
   7. HAMBURGER & MOBILE NAV
=========================================================== */
.gd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.gd-hamburger span {
  display: block;
  width: 24px;
  height: 2.4px;
  background: #001d4c;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.gd-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gd-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.gd-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay behind drawer */
.gd-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 198;
  backdrop-filter: blur(2px);
}

.gd-mobile-overlay.open {
  display: block;
}

/* Drawer — slides in from right */
.gd-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 90vw;
  background: #fff;
  z-index: 199;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}

.gd-mobile-nav.open {
  transform: translateX(0);
}

/* Drawer header */
.gd-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #E8E8E4;
}

.gd-mobile-nav-logo {
  height: 36px;
  width: auto;
  display: block;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(90deg) brightness(0.3);
}

.gd-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #142C2B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gd-mobile-close:hover {
  color: #BF9A5B;
}

/* Nav links */
.gd-mobile-nav-body {
  flex: 1;
  padding: 8px 0;
}

.gd-mobile-item {
  border-bottom: 1px solid #F0EDE6;
}

.gd-mobile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  cursor: pointer;
  text-decoration: none;
}

.gd-mobile-row-label {
  display: block;
  padding: 16px 0;
  font: 400 14px/1 Jost, sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1B2A24;
  text-decoration: none;
}

.gd-mobile-row-label.gd-active {
  color: #BF9A5B;
}

.gd-mobile-chevron {
  color: #888;
  transition: transform .22s ease;
  flex-shrink: 0;
}

.gd-mobile-item.open .gd-mobile-chevron {
  transform: rotate(180deg);
}

/* Accordion sub-menu */
.gd-mobile-sub-menu {
  display: none;
  background: #F8F6F1;
  padding: 4px 0;
}

.gd-mobile-item.open .gd-mobile-sub-menu {
  display: block;
}

.gd-mobile-sub-menu a {
  display: block;
  padding: 13px 24px 13px 32px;
  font: 400 13px/1 Jost, sans-serif;
  letter-spacing: 0.8px;
  color: #3F5450;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  transition: color .15s, background .15s;
}

.gd-mobile-sub-menu a:last-child {
  border-bottom: none;
}

.gd-mobile-sub-menu a:hover {
  color: #BF9A5B;
  background: #F0EBE0;
}

/* Mobile group (nested accordion inside sub-menu) */
.gd-mobile-group {
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.gd-mobile-group:last-child {
  border-bottom: none;
}

.gd-mobile-group-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 12px 32px;
  cursor: pointer;
}

.gd-mobile-group-label {
  font: 600 11px/1 Jost, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
}

.gd-mobile-group-chevron {
  color: var(--gold);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.gd-mobile-group.open .gd-mobile-group-chevron {
  transform: rotate(180deg);
}

.gd-mobile-group-items {
  display: none;
  background: #F2EFE8;
}

.gd-mobile-group.open .gd-mobile-group-items {
  display: block;
}

.gd-mobile-group-items a {
  display: block;
  padding: 11px 24px 11px 44px;
  font: 400 12.5px/1 Jost, sans-serif;
  letter-spacing: 0.6px;
  color: #3F5450;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  transition: color .15s, background .15s;
}

.gd-mobile-group-items a:last-child {
  border-bottom: none;
}

.gd-mobile-group-items a:hover {
  color: #BF9A5B;
  background: #EBE5D8;
}

/* Drawer footer */
.gd-mobile-nav-foot {
  padding: 20px 24px;
  border-top: 1px solid #E8E8E4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gd-mobile-cta-btn {
  display: block;
  text-align: center;
  padding: 15px 24px;
  background: #BF9A5B;
  color: #001d4c !important;
  font: 500 13px/1 Jost, sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background .18s ease;
}

.gd-mobile-cta-btn:hover {
  background: #cdac6f;
}

.gd-mobile-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 400 14px/1 Jost, sans-serif;
  color: #3F5450 !important;
  text-decoration: none;
  letter-spacing: 0.4px;
}

.gd-mobile-phone-link:hover {
  color: #BF9A5B !important;
}

.gd-mobile-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-top: 1px solid #F0EDE6;
  margin-top: auto;
}

.gd-mobile-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font: 300 12px/1.5 Jost, sans-serif;
  color: #7A8A80;
  text-decoration: none;
}

.gd-mobile-info-row svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.gd-mobile-info-row:hover {
  color: #BF9A5B;
}

/* Page content wrapper */
.page-content {
  min-height: 60vh;
}


/* ===========================================================
   (Deprecated inline placeholder comment block)
   — Fully inline-styled in footer.php; only vc-* and
     .vc-cont helpers needed here.
=========================================================== */

/* ===========================================================
   8. FOOTER (original dark-green 3-col design)
 =========================================================== */
.gd-footer {
  background: #001d4c;
  color: rgb(205, 214, 204);
  padding: 72px 0 32px;
}

.gd-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 52px;
}


.gd-footer-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.gd-footer-col-left {
  text-align: left;
}

.gd-footer-col-center {
  text-align: center;
  align-items: center;
}

.gd-footer-col-right {
  text-align: right;
  align-items: flex-end;
}

.gd-footer-logo {
  height: 66px;
  width: auto;
  display: inline-block;
  margin-bottom: 14px;
}

.gd-footer-tagline {
  font-style: italic;
  font-size: 19px;
  color: rgb(167, 182, 169);
  margin-bottom: 22px;
}

.gd-footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.gd-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(191, 154, 91, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BF9A5B;
  text-decoration: none;
  transition: all 0.18s ease;
}

.gd-footer-social-link:hover {
  background: rgba(191, 154, 91, 0.08);
  border-color: #BF9A5B;
}

.gd-footer-bottom {
  border-top: 1px solid rgba(191, 154, 91, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gd-footer-copy {
  font: 300 12px/1.4 'Jost', sans-serif;
  letter-spacing: 0.6px;
  color: #fff;
}

.gd-footer-links {
  display: flex;
  gap: 24px;
}

.gd-footer-link {
  font: 300 12px/1.4 'Jost', sans-serif;
  letter-spacing: 0.6px;
  color: #fff;
  text-decoration: none;
  transition: color 0.15s ease;
}

.gd-footer-link:hover {
  color: #E7C989;
}

.gd-footer .vc-cont a:hover {
    color: #bf9a5b !important;
}

/* ===========================================================
   9. HOME PAGE
=========================================================== */

/* Shared typography helpers */
.hp-eyebrow-gold {
  color: rgb(191, 154, 91);
  margin-bottom: 18px;
}

.hp-eyebrow-cream {
  color: rgb(231, 201, 137);
  margin-bottom: 18px;
}

.hp-italic-gold {
  font-style: italic;
  color: rgb(231, 201, 137);
}

.hp-italic-gold2 {
  font-style: italic;
  color: rgb(191, 154, 91);
}

.hp-h2-dark {
  font-weight: 500;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.4px;
  color: #001d4c;
  margin: 0 0 24px;
  text-wrap: balance;
}

.hp-h2-light {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.06;
  color: rgb(243, 238, 227);
  margin: 0;
}

.hp-body-dark {
  font: 300 17px/1.75 Jost, sans-serif;
  color: rgb(92, 88, 73);
  margin: 0 0 20px;
  max-width: 420px;
}

.hp-section-head-center {
  text-align: center;
  margin-bottom: 48px;
}

.hp-center-action {
  text-align: center;
  margin-top: 44px;
}

.vc-arrow {
  font: 400 13px/1 Jost, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #001d4c;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  text-decoration: none;
  transition: gap .15s;
}

.vc-arrow:hover {
  gap: 12px;
}

.vc-btn-outdark {
  font: 500 12.5px/1 Jost, sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #001d4c;
  background: transparent;
  border: 1px solid rgba(27, 58, 43, .35);
  border-radius: 2px;
  padding: 14px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.vc-btn-outdark:hover {
  background: #001d4c;
  color: rgb(243, 238, 227);
  border-color: #001d4c;
}

.vc-field {
  width: 100%;
  font: 400 14px/1.4 Jost, sans-serif;
  color: #33322C;
  background: #fff;
  border: 1px solid #ddd6c6;
  border-radius: 3px;
  padding: 12px 14px;
  box-sizing: border-box;
  outline: none;
  transition: border-color .15s ease;
}

.vc-field:focus {
  border-color: #BF9A5B;
}

.vc-svc {
  cursor: pointer;
  transition: opacity .15s;
}

.vc-svc:hover {
  opacity: 0.9;
}

.vc-teamcard {
  transition: transform .2s, box-shadow .2s;
}

.vc-teamcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(27, 58, 43, .18);
}

/* PAGE WRAPPER */
.hp-page {
  background: rgb(243, 238, 227);
  overflow: hidden;
}

/* HERO */
.hp-hero {
  position: relative;
  overflow: hidden;
}

.hp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  border: none;
}

iframe.hp-hero-bg {
  object-fit: initial;
  object-position: initial;
  pointer-events: none;
  inset: auto;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgb(0 29 76 / 76%) 0%, rgb(22 40 69 / 31%) 60%, rgba(18, 40, 26, .22) 70%, rgba(18, 40, 26, .05) 100%);
  pointer-events: none;
}

.hp-hero-content {
  position: relative;
  z-index: 2;
}

.hp-hero-text {
  max-width: 600px;
  padding-top: 118px;
  padding-bottom: 150px;
}

.hp-hero-h1 {
  font-weight: 500;
  font-size: 76px;
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: rgb(246, 241, 230);
  margin: 0 0 24px;
  text-wrap: balance;
}

.hp-hero-sub {
  font: 300 18px/1.7 Jost, sans-serif;
  color: rgb(228, 230, 221);
  margin: 0 0 38px;
  max-width: 470px;
}

.hp-hero-actions {
  display: flex;
  gap: 14px;
}

/* TRUST BAR */
.hp-trust {
  background: rgb(243, 238, 227);
  border-bottom: 1px solid rgb(228, 220, 202);
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 40px;
}

.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 26px;
}

.hp-trust-item--border {
  border-right: 1px solid rgb(224, 216, 197);
}

.hp-trust-label {
  font: 500 13px/1.3 Jost, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgb(51, 50, 44);
}

.hp-trust-sub {
  font-style: italic;
  font-size: 15px;
  color: rgb(111, 106, 93);
  margin-top: 3px;
}

/* EXPERIENCE */
.hp-exp {
  background: rgb(243, 238, 227);
  position: relative;
}

.hp-exp-deco {
  position: absolute;
  right: 0;
  top: 40px;
  width: 280px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}

.hp-exp-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  padding: 96px 40px;
}

.hp-exp-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: rgba(27, 58, 43, .14) 0 30px 50px;
}

.hp-exp-img {
  width: 100%;
  aspect-ratio: 16/10;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
}

iframe.hp-exp-img {
  object-fit: initial;
  object-position: initial;
  border: none;
  aspect-ratio: 16.3 / 9;
}

/* SERVICES */
.hp-svc-section {
  background: #001d4c;
  position: relative;
}

.hp-svc-wrap {
  padding: 80px 40px;
}

.hp-svc-main-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.hp-svc-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

/* Feature card */
.hp-svc-feature {
  background: #0b172a;
  border-radius: 6px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.hp-svc-feature-bg {
  position: absolute;
  right: -10px;
  top: 10px;
  font-size: 150px;
  font-weight: 600;
  color: rgba(191, 154, 91, .08);
  line-height: 1;
  pointer-events: none;
}

.hp-svc-icon--lg {
  width: 58px;
  height: 58px;
  border-radius: 9999px;
  border: 1px solid rgba(243, 238, 227, .25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-svc-feature-body {
  position: relative;
}

.hp-svc-feature-title {
  font-weight: 500;
  font-size: 46px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(243, 238, 227);
  margin: 0 0 14px;
}

.hp-svc-desc {
  font: 300 15px/1.6 Jost, sans-serif;
  color: rgb(185, 198, 187);
  margin: 0 0 22px;
  max-width: 280px;
}

.hp-svc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(243, 238, 227, .3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(231, 201, 137);
}

/* Small cards */
.hp-svc-small-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hp-svc-card {
  border-radius: 6px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hp-svc-card--mid {
  background: #0b172a;
}

.hp-svc-card--dark {
  background: #0b172a;
}

.hp-svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid rgba(243, 238, 227, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-svc-card-body {
  flex: 1;
}

.hp-svc-card-title {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(243, 238, 227);
}

.hp-svc-card-sub {
  font: 300 14px/1.5 Jost, sans-serif;
  color: rgb(167, 182, 169);
  margin-top: 2px;
}

/* DOCTORS */
.hp-doctors {
  background: rgb(243, 238, 227);
}

.hp-doctors-wrap {
  padding: 96px 40px;
}

.hp-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.hp-teamcard {
  border-radius: 6px;
  overflow: hidden;
  background: rgb(255, 255, 255);
  box-shadow: rgba(27, 58, 43, .1) 0 14px 30px;
}

.hp-teamcard-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.hp-teamcard-info {
  background: #001d4c;
  padding: 24px 20px 30px;
  text-align: center;
}

.hp-teamcard-name {
  font: 500 16px/1.3 Jost, sans-serif;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgb(243, 238, 227);
}

.hp-teamcard-role {
  font-style: italic;
  font-size: 20px;
  color: #fff;
  margin: 6px 0 0;
}

/* SPECIALS */
.hp-specials {
  background: #001d4c;
  position: relative;
  overflow: hidden;
}

.hp-specials-deco {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: auto;
  opacity: 0.32;
  pointer-events: none;
}

.hp-specials-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 40px;
}

.hp-specials-h2 {
  font-weight: 500;
  font-size: 46px;
  line-height: 1.08;
  color: rgb(243, 238, 227);
  margin: 0;
}

/* REVIEWS */
.hp-reviews {
  background: rgb(243, 238, 227);
}

.hp-reviews-wrap {
  padding: 96px 40px;
  text-align: center;
}

.hp-reviews-intro {
  font: 300 17px/1.7 Jost, sans-serif;
  color: rgb(92, 88, 73);
  margin: 0 auto 52px;
  max-width: 620px;
}

/* Patient Stories */
.hp-stories {
  margin-bottom: 100px;
}

.hp-stories-heading {
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 28px;
}

.hp-stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.hp-stories-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.hp-stories-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Slider wrapper */
.hp-review-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* Clip wrapper — hides cards outside the visible track */
.hp-review-track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.hp-review-slider {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.hp-review-card {
  background: #fff;
  border: 1px solid rgb(230, 221, 202);
  border-radius: 6px;
  padding: 30px;
  box-shadow: rgba(27, 58, 43, .06) 0 10px 24px;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hp-review-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgb(230, 221, 202);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.hp-review-arrow:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.hp-review-arrow:disabled {
  opacity: .35;
  cursor: default;
}

/* Dots */
.hp-review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.hp-review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgb(200, 192, 178);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.hp-review-dot.active {
  background: var(--ink);
  transform: scale(1.3);
}

.hp-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hp-stars {
  display: flex;
  gap: 2px;
}

/* Quote body with 4-line clamp + scroll */
.hp-review-body {
  flex: 1;
  min-height: 0;
}

.hp-review-quote-wrap {
  overflow-y: hidden;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, .2) transparent;
}

.hp-review-quote-wrap::-webkit-scrollbar {
  width: 4px;
}

.hp-review-quote-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .2);
  border-radius: 4px;
}

.hp-review-quote-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.hp-review-quote {
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: rgb(51, 50, 44);
  margin: 0 0 8px;
}

.hp-review-readmore {
  background: none;
  border: none;
  padding: 0;
  font: 600 12px/1 Jost, sans-serif;
  letter-spacing: .5px;
  color: var(--gold, #B57F2E);
  cursor: pointer;
  margin-bottom: 16px;
  display: block;
}

.hp-review-readmore:hover {
  text-decoration: underline;
}

.hp-review-author {
  font: 500 13px/1.3 Jost, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #001d4c;
  margin-top: auto;
  padding-top: 12px;
}

.hp-review-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

/* CONTACT */
.hp-contact {
  position: relative;
}

.hp-contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 40, 26, .55) 0%, rgba(18, 40, 26, .35) 45%, rgba(18, 40, 26, .72) 100%);
  pointer-events: none;
}

.hp-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 1.05fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
}

.hp-contact-form-card {
  background: rgb(243, 238, 227);
  border-radius: 6px;
  padding: 38px 36px;
  box-shadow: rgba(0, 0, 0, .28) 0 30px 60px;
}

.hp-contact-h3 {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
  color: #001d4c;
  margin: 0 0 24px;
}

.hp-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hp-form-label {
  display: block;
  font: 500 11px/1 Jost, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgb(111, 106, 93);
  margin-bottom: 7px;
}

.hp-form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font: 300 12px/1.5 Jost, sans-serif;
  color: rgb(111, 106, 93);
}

.hp-form-checkbox {
  margin-top: 2px;
  accent-color: #001d4c;
}

.hp-form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 26px;
}

.hp-consent-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0;
}

.hp-form-consent {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  font: 300 12px/1.65 Jost, sans-serif;
  color: rgb(111, 106, 93);
  cursor: pointer;
}

.hp-form-consent span {
  padding-top: 1px;
}

.hp-form-consent strong {
  font-weight: 500;
  color: rgb(72, 68, 55);
}

.hp-form-checkbox {
  flex-shrink: 0;
  margin-top: 3px;
  width: 15px;
  height: 15px;
  accent-color: #BF9A5B;
  cursor: pointer;
}

.hp-form-feedback {
  padding: 12px 16px;
  border-radius: 4px;
  font: 400 14px/1.5 Jost, sans-serif;
}

.hp-form-feedback--ok {
  background: #e6f4ea;
  color: #1e6b38;
  border: 1px solid #a8d5b5;
}

.hp-form-feedback--err {
  background: #fdecea;
  color: #922b21;
  border: 1px solid #f5a9a3;
}

.hp-contact-right {
  padding-left: 20px;
}

.hp-contact-h2 {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.5px;
  color: rgb(246, 241, 230);
  margin: 0 0 22px;
  text-wrap: balance;
}

.hp-contact-body {
  font: 300 18px/1.7 Jost, sans-serif;
  color: rgb(228, 230, 221);
  margin: 0 0 30px;
  max-width: 420px;
}

.hp-contact-call {
  font: 400 15px/1.5 Jost, sans-serif;
  letter-spacing: 0.5px;
  color: rgb(205, 214, 204);
  margin: 0 0 22px;
}

.hp-contact-phone {
  color: rgb(231, 201, 137);
  font-weight: 500;
  text-decoration: none;
}

/* MAP */
.hp-map {
  background: #0b172a;
}

.hp-map-wrap {
  padding: 64px 40px;
}

.hp-map-container {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(191, 154, 91, .25);
}

.hp-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

.hp-map-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgb(243, 238, 227);
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, .25) 0 16px 30px;
  padding: 20px 24px;
  max-width: 320px;
}

.hp-map-card-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.hp-map-name {
  font-size: 17px;
  color: #001d4c;
}



.hp-map-address {
  font: 300 13.5px/1.5 Jost, sans-serif;
  color: rgb(92, 88, 73);
}

/* ===========================================================
   10. SITEMAP PAGE
=========================================================== */
.sitemap-intro {
  font: 400 16px/1.6 Jost, sans-serif;
  color: var(--ink-soft, #5a6b69);
  margin: 0 0 48px;
  max-width: 60ch;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.sitemap-category {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  overflow: hidden;
}

.sitemap-category__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  background: var(--ink, #142C2B);
}

.sitemap-category__icon {
  color: var(--gold, #BF9A5B);
  flex-shrink: 0;
  display: flex;
}

.sitemap-category__title {
  font: 600 13px/1 Jost, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.sitemap-category__links {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.sitemap-category__item {
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.sitemap-category__item:last-child {
  border-bottom: none;
}

.sitemap-category__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font: 400 13.5px/1.4 Jost, sans-serif;
  color: var(--ink, #142C2B);
  text-decoration: none;
  transition: color .15s, background .15s;
}

.sitemap-category__link:hover {
  color: var(--gold, #BF9A5B);
  background: rgba(191, 154, 91, .06);
}

.sitemap-category__arrow {
  flex-shrink: 0;
  color: var(--gold, #BF9A5B);
  opacity: .7;
  transition: opacity .15s, transform .15s;
}

.sitemap-category__link:hover .sitemap-category__arrow {
  opacity: 1;
  transform: translateX(3px);
}

.sitemap-category__ext {
  flex-shrink: 0;
  margin-left: auto;
  opacity: .4;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  display: block;
}

.stat-label {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* Legend */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px 7px 10px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s, transform .1s;
}

.chip:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chip .count {
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink);
  font-weight: 500;
}

/* Toolbar */
.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  background: var(--paper-raised);
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}

.search input:focus {
  border-color: var(--teal);
}

.search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--ink-soft);
  pointer-events: none;
}

.btn {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-raised);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}

.btn:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

/* Tree */
.tree {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: background .12s;
}

.section-head:hover {
  background: rgba(20, 44, 43, .015);
}

.section-head .toggle {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: transform .18s;
}

.section-card.expanded .section-head .toggle {
  transform: rotate(90deg);
}

.section-card.leaf-only .section-head .toggle {
  visibility: hidden;
}

.section-head .label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  flex: 1;
  min-width: 0;
}

.section-head .path {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
  display: none;
}

.section-head .badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

.section-body {
  display: none;
  padding: 4px 18px 16px;
  border-top: 1px solid var(--line);
}

.section-card.expanded .section-body {
  display: block;
}

/* Nodes */
ul.node-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.node-list ul.node-list {
  margin-left: 18px;
  border-left: 1px dashed var(--line-strong);
}

.node {
  position: relative;
}

.node-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: background .12s;
}

.node-row:hover {
  background: var(--paper);
}

.node-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 1px;
  background: var(--line-strong);
}

.node-row .ntoggle {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: transform .18s;
}

.node.expanded>.node-row .ntoggle {
  transform: rotate(90deg);
}

.node-row .ntoggle.empty {
  visibility: hidden;
}

.node-row .ntitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.node-row .nurl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-soft);
  display: none;
  flex-shrink: 0;
}

.node>.node-list {
  display: none;
}

.node.expanded>.node-list {
  display: block;
}

.node-row.hit .ntitle {
  color: var(--coral);
}

.node-row.dim,
.section-card.dim {
  opacity: .32;
}

/* Detail panel */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(20, 44, 43, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  z-index: 40;
}

.scrim.show {
  opacity: 1;
  pointer-events: auto;
}

.panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 88vw);
  background: var(--paper-raised);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 32px rgba(20, 44, 43, .10);
  transform: translateX(100%);
  transition: transform .22s;
  z-index: 41;
  padding: 28px 24px;
  overflow-y: auto;
}

.panel.show {
  transform: translateX(0);
}

.panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
}

.panel-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}

.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 36px 18px 0;
  line-height: 1.2;
}

.panel-field {
  margin-bottom: 18px;
}

.panel-field-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.panel-url-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 10px 10px 12px;
}

.panel-url-box .u {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink);
  word-break: break-all;
  flex: 1;
}

.copy-btn {
  flex-shrink: 0;
  border: none;
  background: var(--teal-soft);
  color: var(--teal);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 9px;
  border-radius: 5px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #d6e8e3;
}

.panel-breadcrumb {
  font-size: 13px;
  color: var(--ink-soft);
}

.panel-breadcrumb b {
  color: var(--ink);
  font-weight: 600;
}

.panel-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage);
}

.panel-status .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.sitemap-footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.sitemap-footer .mono {
  font-family: 'JetBrains Mono', monospace;
}

.bg_color {
  background-color: #fff !important;

}

/* ===========================================================
   11. RESPONSIVE
=========================================================== */
@media (min-width: 600px) {
  .section-head .path {
    display: block;
  }
}

@media (min-width: 680px) {
  .node-row .nurl {
    display: block;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (min-width: 1300px) and (max-width: 1360px) {
  nav.gd-nav .gd-nav-item:first-child {
    display: none;
  }
}

/* gd-* header switches to mobile drawer at 1200px */
@media (max-width: 1300px) {
  .gd-nav {
    display: none;
  }

  .gd-header-actions {
    display: none;
  }

  .gd-hamburger {
    display: flex;
  }
}

@media (min-width: 1301px) {
  .gd-hamburger {
    display: none;
  }

  .gd-mobile-overlay {
    display: none !important;
  }

  .gd-mobile-nav {
    transform: translateX(100%) !important;
  }
}

@media (max-width: 768px) {

  .hp-hero {
    line-height: 0;
  }

  .hp-hero-bg {
    position: static;
  }

  iframe.hp-hero-bg {
    width: 100%;
    height: auto;
    min-width: initial;
    min-height: initial;
    top: auto;
    left: auto;
    transform: none;
    aspect-ratio: 16 / 9;
  }

  .hp-hero-overlay {
    display: none;
  }

  .vc-cont.hp-hero-content {
    background: #001d4c;
  }

  .split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    padding: 56px 20px 64px;
  }

  .section {
    padding: 52px 20px;
  }

  .split-inner {
    padding: 52px 20px;
  }
}

@media (max-width: 600px) {
  .svc-card {

    padding: 32px 20px !important;

  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .topbar {
    font-size: 11.5px;
    padding: 6px 16px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .trust-bar-inner {
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .sitemap-wrap {
    padding: 32px 16px 60px;
  }
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .hp-trust .hp-trust-item:nth-child(odd) {
    border-right: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 0 16px;
  }

  .footer-cta-band .footer-inner {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===========================================================
   12. PRINT
=========================================================== */
@media print {

  .toolbar,
  .legend {
    display: none;
  }

  .section-body {
    display: block !important;
  }

  .node-list {
    display: block !important;
  }
}


/* ===========================================================
   13. ANIMATIONS
=========================================================== */

/* --- Keyframes --- */
@keyframes gd-fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gd-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes gd-fade-left {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gd-fade-right {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gd-scale-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Scroll-reveal base (elements start hidden, JS adds .gd-visible) --- */
.gd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22, .68, 0, 1.2), transform 0.65s cubic-bezier(.22, .68, 0, 1.2);
}

.gd-reveal.gd-visible {
  opacity: 1;
  transform: translateY(0);
}

.gd-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(.22, .68, 0, 1.2), transform 0.65s cubic-bezier(.22, .68, 0, 1.2);
}

.gd-reveal-left.gd-visible {
  opacity: 1;
  transform: translateX(0);
}

.gd-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s cubic-bezier(.22, .68, 0, 1.2), transform 0.65s cubic-bezier(.22, .68, 0, 1.2);
}

.gd-reveal-right.gd-visible {
  opacity: 1;
  transform: translateX(0);
}

.gd-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(.22, .68, 0, 1.2), transform 0.6s cubic-bezier(.22, .68, 0, 1.2);
}

.gd-reveal-scale.gd-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for child items */
.gd-stagger>*:nth-child(1) {
  transition-delay: 0s;
}

.gd-stagger>*:nth-child(2) {
  transition-delay: 0.1s;
}

.gd-stagger>*:nth-child(3) {
  transition-delay: 0.2s;
}

.gd-stagger>*:nth-child(4) {
  transition-delay: 0.3s;
}

.gd-stagger>*:nth-child(5) {
  transition-delay: 0.4s;
}

.gd-stagger>*:nth-child(6) {
  transition-delay: 0.5s;
}

/* --- Hero load animation (no JS needed) --- */
.hp-hero-text .hp-eyebrow-cream {
  animation: gd-fade-up 0.7s cubic-bezier(.22, .68, 0, 1.2) 0.1s both;
}

.hp-hero-h1 {
  animation: gd-fade-up 0.8s cubic-bezier(.22, .68, 0, 1.2) 0.25s both;
}

.hp-hero-sub {
  animation: gd-fade-up 0.7s cubic-bezier(.22, .68, 0, 1.2) 0.4s both;
}

.hp-hero-actions {
  animation: gd-fade-up 0.7s cubic-bezier(.22, .68, 0, 1.2) 0.55s both;
}

/* --- Hover lifts --- */
.hp-svc-card,
.hp-svc-feature {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

.hp-svc-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.hp-doctor-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(27, 58, 43, .14);
}

.hp-review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 58, 43, .1);
}

/* --- Button pulse on hover --- */
.vc-btn-gold {
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.vc-btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(191, 154, 91, .35);
}

.vc-btn-out {
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}

.vc-btn-out:hover {
  transform: translateY(-1px);
}

/* --- Logo hover --- */
.gd-logo-img {
  transition: opacity 0.2s ease;
}

.gd-logo:hover .gd-logo-img {
  opacity: 0.85;
}

.hp-map-card-title svg {
  height: 30px;
  width: 30px;
}

div#hp-review-dots {
  display: none;
}

.hp-review-actions.gd-reveal.gd-visible {
  margin-top: 40px;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {

  .gd-reveal,
  .gd-reveal-left,
  .gd-reveal-right,
  .gd-reveal-scale,
  .hp-hero-text .hp-eyebrow-cream,
  .hp-hero-h1,
  .hp-hero-sub,
  .hp-hero-actions {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}


/* ===========================================================
   12. Goehring Dental Group, Implants. Cosmetic. General Dentistry HOMEPAGE RESPONSIVE STYLING
   =========================================================== */
@media (max-width: 1024px) {
  .ab-img-col.gd-reveal-left.gd-visible {
    order: 1;
  }

  .ab-text-col.gd-reveal-right.gd-visible {
    order: 2;
  }

  /* Hero Section */
  .hp-hero-text {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .hp-hero-h1 {
    font-size: 56px;
  }

  .gd-reveal-left.gd-visible {
    order: 1;
  }

  /* Experience Section */
  .hp-exp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 40px;
  }

  .hp-exp-deco {
    display: none;
  }

  .hp-body-dark {
    max-width: 100%;
  }

  /* Services Section */
  .hp-svc-main-grid {
    grid-template-columns: 1fr;
  }

  .hp-svc-bottom-grid {
    grid-template-columns: 1fr;
  }

  .hp-svc-feature {
    min-height: auto;
    padding: 36px 30px;
    gap: 30px;
  }

  /* Team Section */
  .hp-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Specials Banner */
  .hp-specials-inner {
    padding: 56px 40px;
  }

  .hp-specials-h2 {
    font-size: 38px;
  }

  /* Reviews Section */
  .hp-review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  /* Contact Section */
  .hp-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 40px;
  }

  .hp-contact-right {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .hp-stories {
    margin-bottom: 50px !important;
  }
}

@media (max-width: 768px) {
  .hp-map-card-title svg {
    height: 20px;
    width: 18px;
  }

  .gd-footer-col-center {
    order: 1;
  }

  .gd-footer-col-left {
    order: 2;
  }

  .gd-footer-col-right {
    order: 3;
  }

  /* Global responsiveness helpers */
  .vc-cont {
    padding: 0 20px;
  }

  /* Hero Section */
  .hp-hero-text {
    padding-top: 50px;
    padding-bottom: 50px;

  }

  .hp-hero-h1 {
    font-size: 42px;
  }


  /* Trust Bar Section */
  .hp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 20px;
    gap: 24px 0;
  }

  .hp-trust-item {
    padding: 0 16px;
    border-right: none !important;
  }

  .hp-trust-item:nth-child(odd) {
    border-right: 1px solid rgb(224, 216, 197) !important;
  }

  /* Experience Section */
  .hp-exp-grid {
    padding: 48px 20px;
  }

  .hp-h2-dark {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .hp-body-dark {
    font-size: 16px;
  }

  /* Services Section */
  .hp-svc-wrap {
    padding: 56px 20px;
  }

  .hp-h2-light {
    font-size: 34px;
  }

  .hp-svc-feature-title {
    font-size: 34px;
  }

  /* Team Section */
  .hp-doctors-wrap {
    padding: 56px 20px;
  }

  .hp-team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  /* Specials Banner */
  .hp-specials-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 48px 20px;
  }

  .hp-specials-h2 {
    font-size: 30px;
  }

  /* Reviews Section */
  .hp-reviews-wrap {
    padding: 56px 20px;
  }

  .hp-stories-grid {
    grid-template-columns: 1fr;
  }

  .hp-review-card {
    flex: 0 0 100%;
  }

  .hp-review-quote {
    font-size: 17px;
  }

  /* Move arrows below the track on mobile */
  .hp-review-slider-wrap {
    flex-wrap: wrap;
    gap: 16px 12px;
    justify-content: center;
  }

  .hp-review-track {
    order: 1;
    flex: 0 0 100%;
    width: 100%;
  }

  .hp-review-arrow {
    order: 2;
  }

  .hp-review-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
  }

  .hp-review-actions .vc-btn-gold,
  .hp-review-actions .vc-btn-outdark {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Contact Section */
  .hp-contact-grid {
    padding: 48px 20px;
  }

  .hp-contact-h2 {
    font-size: 36px;
  }

  .hp-contact-body {
    font-size: 16px;
  }

  /* Map Section */
  .hp-map-wrap {
    padding: 40px 20px;
  }

  .hp-map-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hp-map-iframe {
    min-height: 300px;
  }

  .hp-map-card {
    position: static;
    max-width: 100%;
    border-radius: 0 0 6px 6px;
    border-top: 1px solid rgba(191, 154, 91, .25);
  }

  /* Footer Section */
  .gd-footer {
    padding: 48px 0 32px;
  }

  .gd-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
    text-align: center;
  }

  .gd-footer-col-left,
  .gd-footer-col-right {
    text-align: center;
    align-items: center;
  }

  .gd-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .gd-footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .vc-btn-gold {
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hero Section */
  .hp-hero-h1 {
    font-size: 32px;
  }

  .hp-review-actions .vc-btn-gold,
  .hp-review-actions .vc-btn-outdark {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center;
  }


  .hp-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hp-hero-actions .vc-btn-gold,
  .hp-hero-actions .vc-btn-out {
    justify-content: center;
  }

  /* Trust Bar Section */
  .hp-trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hp-trust-item {
    border-right: none !important;
  }

  /* Services Section */
  .hp-svc-card {
    padding: 20px;
    gap: 16px;
  }

  .hp-svc-card-title {
    font-size: 20px;
  }

  /* Contact Section */
  .hp-contact-form-card {
    padding: 30px 20px;
  }

  .hp-form-row {
    grid-template-columns: 1fr;
  }

  .hp-contact-h2 {
    font-size: 28px;
  }
}

@media (max-width: 360px) {
  .vc-cont {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hp-contact-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hp-contact-form-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hp-form-submit {
    padding-left: 16px;
    padding-right: 16px;
    white-space: normal;
    text-align: center;
  }
}

/* ===========================================================
   15. CONTACT PAGE
=========================================================== */

/* Hero */
.cp-hero {
  background: linear-gradient(135deg, #0a1e2e 0%, #0e2d4a 60%, #0f3860 100%);
  padding: 60px 0 52px;
}

.cp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.cp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 400 13px/1 'Jost', sans-serif;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 18px;
}

.cp-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.cp-breadcrumb a:hover {
  color: #fff;
}

.cp-hero-title {
  font: 700 42px/1.1 'Cormorant Garamond', serif;
  color: #fff;
  letter-spacing: -.5px;
}

/* Layout */
.cp-main {
  background: var(--paper);
  padding: 72px 0 96px;
}

.cp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

/* Intro */
.cp-intro {
  font: 300 15px/1.75 'Jost', sans-serif;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

/* Form */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cp-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-field label {
  font: 500 13px/1 'Jost', sans-serif;
  color: var(--ink);
  letter-spacing: .02em;
}

.cp-req {
  color: #c0392b;
}

.cp-field input,
.cp-field textarea,
.cp-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font: 300 14px/1 'Jost', sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s;
}

.cp-field input:focus,
.cp-field textarea:focus,
.cp-field select:focus {
  border-color: var(--teal);
}

.cp-field textarea {
  resize: vertical;
  line-height: 1.6;
}

/* Consent */
.cp-consent-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-consent {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  font: 300 12px/1.65 'Jost', sans-serif;
  color: var(--ink-soft);
  cursor: pointer;
}

.cp-checkbox {
  accent-color: var(--teal);
  margin-top: 2px;
}

/* Feedback */
.cp-feedback {
  padding: 12px 16px;
  border-radius: 6px;
  font: 400 14px/1.5 'Jost', sans-serif;
}

.cp-feedback--ok {
  background: #e6f4ea;
  color: #1e6b38;
  border: 1px solid #a8d5b5;
}

.cp-feedback--err {
  background: #fdecea;
  color: #922b21;
  border: 1px solid #f5a9a3;
}

/* Submit button */
.cp-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #0a1e2e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font: 500 14px/1 'Jost', sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
}

.cp-submit-btn:hover:not(:disabled) {
  background: #0e2d4a;
}

.cp-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* Info card */
.cp-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 28px 0;
  overflow: hidden;
}

.cp-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cp-info-row:first-child {
  padding-top: 4px;
}

.cp-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.cp-info-label {
  font: 600 10px/1 'Jost', sans-serif;
  letter-spacing: .1em;
  color: var(--gray);
  margin-bottom: 8px;
}

.cp-info-value {
  font: 400 15px/1.55 'Jost', sans-serif;
  color: var(--ink);
  text-decoration: none;
}

a.cp-info-value:hover {
  color: var(--teal);
}

/* Hours table */
.cp-hours-table {
  border-collapse: collapse;
  width: 100%;
}

.cp-hours-table td {
  font: 300 13px/1.7 'Jost', sans-serif;
  color: var(--ink-soft);
  padding: 0;
}

.cp-hours-table td:first-child {
  width: 110px;
  color: var(--ink);
  font-weight: 500;
}

/* Directions */
.cp-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
  padding: 14px;
  background: #0a1e2e;
  color: #fff;
  border-radius: 8px;
  font: 500 14px/1 'Jost', sans-serif;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s;
}

.cp-directions-btn:hover {
  background: #0e2d4a;
}

/* Map */
.cp-map {
  margin: 0 -28px;
}

.cp-map iframe {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .cp-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cp-info-col {
    order: -1;
  }
}

@media (max-width: 600px) {
  .cp-hero-title {
    font-size: 32px;
  }

  .cp-row-2 {
    grid-template-columns: 1fr;
  }

  .cp-main {
    padding: 48px 0 64px;
  }

  .cp-wrap {
    padding: 0 20px;
  }
}


/* ===========================================================
   15b. CONTACT PAGE — new form layout
=========================================================== */

.contact-page-grid {
  display: grid;
  display: flex;
  gap: 40px;
  align-items: start;
}

.contact-side {
  position: sticky;
  top: 100px;
}

.contact-page-intro {
  font: 300 17px/1.75 'Jost', sans-serif;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-rows {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font: 500 13px/1 'Jost', sans-serif;
  color: var(--ink);
  letter-spacing: .02em;
}

.req {
  color: #c0392b;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line-strong, #ccc);
  border-radius: 6px;
  font: 300 14px/1 'Jost', sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal, #001d4c);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.form-radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 400 14px/1 'Jost', sans-serif;
  color: var(--ink);
  cursor: pointer;
}

.disclaimer-msg {
  margin-top: 8px;
}

.form-checkbox {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--teal, #001d4c);
}

.form-checkbox label:first-of-type {
  font: 300 15px/1.65 'Jost', sans-serif;
  color: var(--ink-soft);
}

.disclaimer-msg p {
  font: 300 12px/1.6 'Jost', sans-serif;
  color: var(--ink-soft);
  margin-top: 8px;
}

.disclaimer-msg p a {
  color: var(--teal, #001d4c);
}

.form-submit {
  margin-top: 8px;
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.contact-submit-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.label1 {
  font: 400 12px/1 'Jost', sans-serif;
  color: #c0392b;
  margin-top: 2px;
}

/* Success / Error banners */
.contact-success,
.contact-error {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.contact-success {
  background: #e6f4ea;
  border: 1px solid #a8d5b5;
}

.contact-error {
  background: #fdecea;
  border: 1px solid #f5a9a3;
}

.contact-success h3,
.contact-error h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.contact-success p,
.contact-error p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.btn-spinner[hidden] {
  display: none !important;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

.contact_page_details_blk {
  max-width: 780px;
  width: 100%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Right sidebar */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--paper, #f8f6f1);
  border: 1px solid var(--line, #e5e1d8);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line, #e5e1d8);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper, #f8f6f1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #001d4c;
}

.contact-row__label {
  font: 600 10px/1 'Jost', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray, #888);
  margin-bottom: 6px;
}

.contact-row__value,
.contact-phone {
  font: 400 15px/1.55 'Jost', sans-serif;
  color: var(--ink);
  text-decoration: none;
}

.contact-phone:hover,
.visit-info-value:hover {
  color: #001d4c;
}

.visit-info-value {
  font: 400 14px/1.6 'Jost', sans-serif;
  color: var(--ink);
  text-decoration: none;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font: 300 14px / 1.7 'Jost', sans-serif;
  color: #0d1413;
  gap: 16px;
}

.hours-row--closed {
  color: #aaa;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  margin-top: 20px;
  text-decoration: none;
}

.contact-map-embed iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 10px;
  display: block;
}

.contact-directions {
  font: 300 13px/1.7 'Jost', sans-serif;
  color: var(--ink-soft);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .contact_page_details_blk {
    max-width: 100%;
    width: 100%;
  }

  .contact-page-grid {

    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   16. LEGAL PAGES (Privacy Policy & Terms & Conditions)
=========================================================== */

/* Hero */
.legal-hero {
  background: #0b172a;
  padding: 64px 0 56px;
  text-align: center;
}

.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 400 13px/1 'Jost', sans-serif;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px;
}

.legal-breadcrumb a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  color: #fff;
}

.legal-hero-title {
  font: 700 44px/1.1 'Cormorant Garamond', serif;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 32px;
}

.legal-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #BF9A5B;
  color: #fff;
  border-radius: 6px;
  font: 500 14px/1 'Jost', sans-serif;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s;
}

.legal-btn-primary:hover {
  background: #a8843e;
}

.legal-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
  border-radius: 6px;
  font: 500 14px/1 'Jost', sans-serif;
  letter-spacing: .04em;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.legal-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* Layout */
.legal-main {
  background: var(--paper);
  padding: 72px 0 96px;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

/* TOC sidebar */
.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 20px 24px;
}

.legal-toc-head {
  font: 600 11px/1 'Jost', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc ul li a {
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  font: 400 13px/1.4 'Jost', sans-serif;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.legal-toc ul li a:hover {
  background: var(--teal-soft);
  color: var(--teal);
}

/* Article body */
.legal-body {
  min-width: 0;
}

.legal-updated {
  font: 300 13px/1 'Jost', sans-serif;
  color: var(--gray);
  margin-bottom: 32px;
}

.legal-body p {
  font: 300 15px/1.8 'Jost', sans-serif;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.legal-body h2 {
  font: 700 24px/1.2 'Cormorant Garamond', serif;
  color: var(--ink);
  margin: 40px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.legal-body h2:first-of-type {
  margin-top: 24px;
}

.legal-body h3 {
  font: 600 15px/1.3 'Jost', sans-serif;
  color: var(--ink);
  margin: 24px 0 8px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-body ul li {
  font: 300 15px/1.7 'Jost', sans-serif;
  color: var(--ink-soft);
}

.legal-body a {
  color: var(--tmeal, var(--teal));
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--ink);
}

/* Responsive */
@media (max-width: 900px) {
  .legal-wrap {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 600px) {
  .legal-hero-title {
    font-size: 32px;
  }

  .legal-main {
    padding: 48px 0 64px;
  }

  .legal-wrap {
    padding: 0 20px;
    gap: 32px;
  }
}

/* ===========================================================
   17. INNER PAGE HERO (shared across About, Services, etc.)
=========================================================== */
.inner-hero {
  background: #0b172a;
  padding: 64px 0 56px;
  text-align: center;
}

.inner-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 400 13px/1 'Jost', sans-serif;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.inner-breadcrumb a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
}

.inner-breadcrumb a:hover {
  color: #fff;
}

.inner-hero-title {
  font: 700 44px/1.15 'Cormorant Garamond', serif;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}

.inner-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px;
  line-height: 1.6;
}

.inner-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .inner-hero-title {
    font-size: 30px;
  }

  .inner-hero {
    padding: 48px 0 44px;
  }
}


/* ===========================================================
   18. ABOUT PAGE
=========================================================== */

/* Intro section */
.ab-intro {
  background: var(--paper);
  padding: 80px 0;
}

.ab-intro-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image column */
.ab-img-col {
  position: relative;
}

.ab-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  background: #0b172a;
  border-radius: 4px;
  opacity: .08;
  z-index: 0;
}

.ab-img-frame {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(20, 44, 43, .14);
}

.ab-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  object-position: bottom;
}

.ab-img-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

.ab-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: #0b172a;
  color: #fff;
  border-radius: 8px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.ab-badge-num {
  display: block;
  font: 700 32px/1 'Cormorant Garamond', serif;
}

.ab-badge-label {
  display: block;
  font: 400 12px/1.5 'Jost', sans-serif;
  opacity: .85;
  margin-top: 4px;
}

/* Text column */
.ab-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-eyebrow {
  font: 600 11px/1 'Jost', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0b172a;
  margin-bottom: 14px;
}

.ab-eyebrow--light {
  color: rgba(255, 255, 255, .7);
}

.ab-heading {
  font: 700 36px/1.2 'Cormorant Garamond', serif;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -.3px;
}

.ab-body {
  font: 300 17px/1.8 'Jost', sans-serif;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.ab-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font: 500 13px/1 'Jost', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0b172a;
  text-decoration: none;
  border-bottom: 1.5px solid #0b172a;
  padding-bottom: 3px;
  transition: opacity .18s;
  align-self: flex-start;
}

.ab-cta-link:hover {
  opacity: .8;
}

/* Trust / features section */
.ab-trust {
  background: #0b172a;
  padding: 80px 0;
}

.ab-trust-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.ab-trust-intro {
  text-align: center;
  margin-bottom: 56px;
}

.ab-trust-intro .ab-heading {
  color: #fff;
}

.ab-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ab-feature-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 28px 28px 32px;
  transition: background .2s;
}

.ab-feature-card:hover {
  background: rgba(255, 255, 255, .11);
}

.ab-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(191, 154, 91, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BF9A5B;
  margin-bottom: 16px;
}

.ab-feature-title {
  font: 600 16px/1.3 'Jost', sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

.ab-feature-desc {
  font: 300 14px/1.75 'Jost', sans-serif;
  color: rgba(255, 255, 255, .72);
}

.ab-trust-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 56px;
}


.padd_class {
  padding: 80px 40px;
}

.contact_page_details_blk {

  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--line, #e5e1d8);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

/* Responsive */
@media (max-width: 900px) {
  .ab-intro-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }



  .ab-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .padd_class {
    padding: 50px 0px;
  }

  .ab-intro {
    padding: 50px 0;
  }

  .ab-trust {
    padding: 50px 0;
  }
}

@media (max-width: 600px) {
  .contact-row {
    flex-wrap: wrap;
  }

  .contact_page_details_blk {
    padding: 40px 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06)
  }

  .ab-img-frame img {

    height: auto;
  }

  .ab-intro-wrap {
    padding: 0 20px;
  }

  .ab-trust-wrap {
    padding: 0 20px;
  }

  .ab-heading {
    font-size: 28px;
  }
}

/* ===================================================
   Section 19 — Doctor Profile (meet-our-dentists)
   =================================================== */
.section-pad {
  padding-top: 80px;
  padding-bottom: 80px;
}

.side_padd_class {
  padding: 80px 40px;

}

.content_section {
  background: #fff;
}

@media (max-width: 991px) {
  .section-pad {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .side_padd_class {
    padding: 50px 20px;
  }

}

.dr-profile {
  background: #fff;
  border-top: 1px solid #eae8e3;
}

.dr-profile--alt {
  background: #f8f6f1;
}

.dr-profile .gd-cont {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .dr-profile .gd-cont {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.dr-profile__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.dr-profile__grid--flip {
  grid-template-columns: 1fr 380px;
}

.dr-profile__grid--flip .dr-profile__img-wrap {
  order: 2;
}

.dr-profile__grid--flip .dr-profile__body {
  order: 1;
}

.dr-profile__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.dr-profile__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.dr-profile__img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #001d4c;
  padding: 14px 18px;
  backdrop-filter: blur(4px);
}

.dr-profile__img-badge-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.dr-profile__img-badge-role {
  color: rgba(255, 255, 255, .75);
  font-size: 0.82rem;
  margin-top: 2px;
}

.dr-profile__body {
  padding-top: 8px;
}

.dr-profile__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2e1a;
  margin: 6px 0 4px;
  line-height: 1.2;
}

.dr-profile__role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #465c80;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}

.dr-profile__bio p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.dr-expertise {
  margin-top: 24px;
  background: #f0ede6;
  border-radius: 10px;
  padding: 20px 24px;
}

.dr-expertise__heading {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #001d4c;
  margin-bottom: 12px;
}

.dr-expertise__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.dr-expertise__list li {
  font-size: 0.9rem;
  color: #333;
  padding-left: 18px;
  position: relative;
}

.dr-expertise__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #001d4c;
  font-weight: 700;
}

@media (max-width: 900px) {

  .dr-profile__grid,
  .dr-profile__grid--flip {
    grid-template-columns: 1fr;
  }

  .dr-profile__grid--flip .dr-profile__img-wrap,
  .dr-profile__grid--flip .dr-profile__body {
    order: unset;
  }

  .dr-profile__img-wrap img {
    height: 300px;
  }

  .dr-expertise__list {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   Section 20 — Team Cards (meet-the-team)
   =================================================== */
.team-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  transition: transform .22s ease, box-shadow .22s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e8e4db;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-card__info {
  padding: 16px 18px 20px;
}

.team-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a2e1a;
  margin-bottom: 3px;
}

.team-card__role {
  font-size: 0.78rem;
  color: #465c80;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
  line-height: 1.35;
}

.team-card__bio-btn {
  background: none;
  border: 1px solid #001d4c;
  color: #001d4c;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.team-card__bio-btn:hover {
  background: #001d4c;
  color: #fff;
}

/* Bio Modal */
.bio-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1200;
}

.bio-modal-backdrop.is-open {
  display: block;
}

.bio-modal-wrap {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1201;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bio-modal-wrap.is-open {
  display: flex;
}

.bio-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  display: flex;
  gap: 24px;
}

.bio-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f0ede6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: background .18s;
}

.bio-modal__close:hover {
  background: #e0dcd5;
}

.bio-modal__photo {
  flex-shrink: 0;
}

.bio-modal__photo img {
  width: 220px;
  height: 290px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}

.bio-modal__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2e1a;
  margin: 0 0 4px;
}

.bio-modal__role {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #465c80;
  margin-bottom: 16px;
}

.bio-modal__bio p {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .bio-modal {
    flex-direction: column;
    padding: 28px 20px;
  }

  .bio-modal__photo img {
    width: 80px;
    height: 104px;
  }

  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ===================================================
   Section 21 — Promotions Page Custom Styles
   =================================================== */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 36px;

}

.promo-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.25, .8, .25, 1), box-shadow .3s cubic-bezier(.25, .8, .25, 1), border-color .3s;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(20, 44, 43, .08);
  border-color: var(--line-strong);
}

.promo-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gold-soft);
}

.promo-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25, .8, .25, 1);
  object-position: bottom;
}

.promo-card:hover .promo-card__image-wrap img {
  transform: scale(1.06);
}

.promo-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: .02em;
  box-shadow: 0 4px 10px rgba(216, 91, 64, .25);
  z-index: 2;
}

.promo-card__content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.promo-card__tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  display: inline-block;
}

.promo-card__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}

.promo-card__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.promo-card__footer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: auto;
}

.promo-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color .2s ease;
}

.promo-card__btn svg {
  transition: transform .2s ease;
}

.promo-card__btn:hover {
  color: var(--ink);
}

.promo-card__btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .promo-card__title {
    font-size: 1.45rem;
  }
}

/* ===================================================
   Section 22 — Promotion Detail Custom Pages
   =================================================== */
.promo-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.promo-detail-left {
  display: flex;
  flex-direction: column;
}

.promo-detail-right {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 120px !important;
  z-index: 10;
  align-self: start !important;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.promo-detail-right.gd-visible {
  transform: none !important;
}

.promo-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(20, 44, 43, .1);
  margin-bottom: 32px;
  max-width: 520px;
  width: 100%;
}

.promo-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.promo-bullets li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.promo-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F6F66' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain;
  filter: brightness(0) saturate(100%) invert(5%) sepia(77%) saturate(4967%) hue-rotate(207deg) brightness(97%) contrast(101%);
}

.promo-offer-box {
  background: var(--gold-soft);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
}

.promo-offer-box__title {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gold);
  margin-bottom: 6px;
}

.promo-offer-box__value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

@media (max-width: 900px) {
  .promo-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .promo-detail-right {
    position: static !important;
    align-self: auto !important;
    padding: 30px 24px;
  }
}

/* ── Section 21: Service Pages ── */

/* Service option cards */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card {
  background: #f8f6f1;
  border-radius: 10px;
  padding: 32px;
  border: 1px solid rgba(34, 70, 47, .08);
}

.svc-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(34, 70, 47, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001d4c;
  margin-bottom: 16px;
}

.svc-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a2e1a;
  margin-bottom: 10px;
}

.svc-card__desc {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

.svc-card__list {
  margin: 12px 0 0 0;
  padding-left: 18px;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
}

.svc-card__list li+li {
  margin-top: 4px;
}

/* FAQ accordion */
.svc-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-faq__item {
  border-bottom: 1px solid rgba(34, 70, 47, .12);
}

.svc-faq__item:first-child {
  border-top: 1px solid rgba(34, 70, 47, .12);
}

.svc-faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1a2e1a;
  text-align: left;
}

.svc-faq__chevron {
  flex-shrink: 0;
  color: #001d4c;
  transition: transform .25s ease;
}

.svc-faq__item.is-open .svc-faq__chevron {
  transform: rotate(180deg);
}

.svc-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0, 1, 0, 1);
}

.svc-faq__item.is-open .svc-faq__body {
  max-height: 400px;
  transition: max-height .45s cubic-bezier(1, 0, 1, 0);
}

.svc-faq__body p {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
  padding-bottom: 20px;
  margin: 0;
}

/* Approach two-column */
.svc-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-approach__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-approach__list li {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: #444;
  padding-left: 20px;
  position: relative;
}

.svc-approach__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bf9a5b;
}

/* Condition tags */
.svc-condition-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.svc-condition-tag {
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  color: #fff;
  background: rgb(0 29 76);
  border: 1px solid rgba(34, 70, 47, .15);
  border-radius: 4px;
  padding: 6px 12px;
  line-height: 1.4;
}

/* Flipped ab-intro variant */
.ab-intro--flip .ab-intro-wrap {
  direction: rtl;
}

.ab-intro--flip .ab-intro-wrap>* {
  direction: ltr;
}

/* Responsive */
@media (max-width: 768px) {
  .svc-cards-grid {
    grid-template-columns: 1fr;
  }

  .svc-approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}