/* ============================================================================
   DR LAKANI DENTAL CARE — "Botanical Luxe" theme
   Deep forest green + brass gold on warm cream. Elegant Cormorant serif display
   with gold italic accents; Jost for eyebrows, nav, buttons & body.
   ============================================================================ */


:root {
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* forest greens */
  --g900: #011936;  /* #123327 old color */
  --g800: #011936;  /* #19412f old color */ 
  --g750: #1e4a37;
  --g700: #465362; /* #275540 old color */
  --g600: #072850; /* #356450 */
  --g500: #072850;  /*  #4a7860 old color */

  /* brass gold */
  --gold: #C8A25A; /* c3a25c old color */
  --gold-deep: #a9843c;
  --gold-soft: #C8A25A;  /* dcc38b */
  --gold-line: #cbb277;

  /* warm neutrals */
  --cream: #f4efe3;
  --cream-2: #efe7d6;
  --paper: #fcf9f2;
  --ink: #23271f;
  --ink-soft: #545548;
  --ink-mute: #8a8a77;
  --line: #e2d9c6;
  --line-soft: #ece4d4;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-1: 0 1px 2px rgba(20, 40, 30, 0.05);
  --shadow-2: 0 20px 24px -12px rgba(18, 51, 39, 0.14), 0 6px 12px -6px rgba(18, 51, 39, 0.1);
  --shadow-3: 0 40px 48px -20px rgba(18, 51, 39, 0.28), 0 12px 20px -10px rgba(18, 51, 39, 0.16);

  --maxw: 1480px;
  --gutter: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--gold-deep);
  text-decoration: none;
  transition: color .16s ease;
}

a:hover {
  color: var(--g700);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (max-width: 640px) {
  :root {
    --gutter: 22px;
  }
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--gold-deep);
}

.eyebrow.on-dark {
  color: var(--gold-soft);
}

.serif {
  font-family: var(--serif);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0.1px;
}

.display {
  font-size: clamp(46px, 6.4vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.5px;
}

.h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.02;
}

.h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
}

.accent-i {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.on-dark,
.on-dark h1,
.on-dark h2,
.on-dark h3 {
  color: #f6f2e8;
}

.on-dark .accent-i {
  color: var(--gold-soft);
}

.lead {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink-soft);
  font-weight: 400;
}

.on-dark .lead {
  color: #d5dbcf;
}

.muted {
  color: var(--ink-mute);
}

.exp-copy h2.h2 {
  margin-bottom: 20px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1.8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}

.btn svg {
  width: 15px;
  height: 15px;
}

.btn-gold {
  background: var(--gold);
  color: #23271f;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold-deep);
    border-color: var(--gold-deep);
}

.btn-green {
  background: var(--g800);
  color: #f6f2e8;
}

.btn-green:hover {
  background: var(--g700);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-outline-cream {
  background: transparent;
  color: #f6f2e8;
  border-color: rgba(246, 242, 232, 0.5);
}

.btn-outline-cream:hover {
  background: #f6f2e8;
  color: var(--g800);
  border-color: #f6f2e8;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #23271f;
}

.btn:active {
  transform: translateY(1px);
}

.textlink {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.textlink svg {
  width: 16px;
  height: 16px;
  transition: transform .18s ease;
}

.textlink:hover {
  color: var(--g700);
}

.textlink:hover svg {
  transform: translateX(4px);
}

/* ---------- section scaffold ---------- */
.section {
  padding: clamp(72px, 9vw, 128px) 0;
  position: relative;
}

.section.cream2 {
  background: var(--cream-2);
}

.section.video-sec {
  background: #FFFFFF;
}

.section.green {
  background: var(--g800);
}

.section.green-deep {
  background: var(--g900);
}

.section-head {
  max-width: 720px;
}

.section-head.center {
  margin: 0 auto;
  text-align: center;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.section-head .h2 {
  margin-bottom: 20px;
}

/* botanical flourish */
.botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.botanical svg {
  display: block;
}

.botanical path,
.botanical circle,
.botanical ellipse {
  stroke: var(--gold-line);
  fill: none;
  stroke-width: 1.1;
}

.on-dark .botanical path,
.green .botanical path,
.green-deep .botanical path,
.on-dark .botanical circle,
.on-dark .botanical ellipse {
  stroke: var(--gold);
  opacity: 0.9;
}

.reviews-grid article.rev.reveal span.read-toggle {
    cursor: pointer;
}

/* small entrance */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
  }

  .reveal.in {
    opacity: 1;
    transform: none;
  }
}

/* ============================ COMPONENTS ============================ */

/* ---- brand lockup ---- */
.lockup {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.lockup .mark {
    height: auto;
    width: 100%;
    max-width: 300px;
}

.lockup .lk-txt {
  display: flex;
  flex-direction: column;
}

.lockup .lk-txt .n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: 0.4px;
  color: var(--g800);
}

.lockup .lk-txt .s {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* ---- utility bar ---- */
.utility {
  background: var(--g900);
  color: #c3cdbf;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 1px;
}

.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  gap: 20px;
  text-transform: uppercase;
}

.utility .u-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.utility .u-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
}

.utility .u-right {
  display: flex;
  gap: 24px;
}

.utility a {
  color: #dfe6da;
}

.utility a:hover {
  color: var(--gold-soft);
}

@media (max-width: 900px) {
  .utility .u-item.addr {
    display: none;
  }
}

@media (max-width: 620px) {
  .utility {
    display: none;
  }
  /*.lockup .mark {*/
  /*  height: 100px;*/
  /*}*/
}

/* ---- nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 239, 227, 0.9);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: var(--gold-deep);
}

.nav-links a svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform .2s;
}

/* ── Desktop dropdown ──────────────────────────────────────────────────────── */
.nav-drop-wrap {
  position: relative;
}

.nav-drop-wrap:hover>.nav-drop-trigger svg,
.nav-drop-wrap:focus-within>.nav-drop-trigger svg {
  transform: rotate(180deg);
}

.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
  white-space: nowrap;
}

.nav-drop-wrap:hover .nav-drop,
.nav-drop-wrap:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-drop a {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: .3px;
  color: var(--ink-soft);
  padding: 9px 20px;
  border-radius: 0;
  transition: background .14s, color .14s;
}

.nav-drop a:hover {
  background: var(--cream);
  color: var(--g800);
}

/* wide two-column dropdown for services */
.nav-drop--wide {
  min-width: 280px;
  left: 0;
  transform: translateY(6px);
}

.nav-drop-wrap:hover .nav-drop--wide,
.nav-drop-wrap:focus-within .nav-drop--wide {
  transform: translateY(0);
}

.nav-drop-group {
  padding: 6px 0;
}

.nav-drop-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 6px 20px 4px;
}

.nav-drop-divider {
  height: 1px;
  background: var(--line-soft);
  margin: 4px 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .payonline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink);
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
}

.nav-cta .payonline:hover {
  border-color: var(--ink);
}

/* hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--ink);
}

/* ---- mobile menu overlay — Botanical Luxe theme ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--g900);
  /* deep forest green */
  z-index: 200;
  flex-direction: column;
  overflow: hidden;
  max-width: 340px;
  right: 0;
  left: auto;
  width: 100%;
}

.mobile-menu.open {
  display: flex;
}

/* ---- menu header ---- */
.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(220, 195, 139, 0.18);
  flex-shrink: 0;
}

.mm-header .lockup {
  gap: 12px;
}

.mm-header .lockup .mark {
    height: auto;
    width: 100%;
    max-width: 220px;
    filter: brightness(50);
}

.mm-header .lockup .n {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #f6f2e8;
  letter-spacing: 0.3px;
}

.mm-header .lockup .s {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 3px;
}

.mm-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(220, 195, 139, 0.35);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .18s, border-color .18s;
}

.mm-close:hover {
  background: rgba(220, 195, 139, 0.12);
  border-color: var(--gold-soft);
}

.mm-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-soft);
}

/* ---- nav list (scrollable) ---- */
.mm-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mm-item {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #e8ede4;
  text-decoration: none;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* reset button defaults */
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color .18s, background .18s;
}

.mm-item:hover {
  color: var(--gold-soft);
  background: rgba(220, 195, 139, 0.07);
}

/* accordion: open state */
.mm-has-sub[aria-expanded="true"] {
  color: var(--gold-soft);
  background: rgba(220, 195, 139, 0.1);
}

.mm-has-sub[aria-expanded="true"] .mm-chevron {
  transform: rotate(180deg);
  stroke: var(--gold-soft);
}

.mm-chevron {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: rgba(232, 237, 228, 0.5);
  transition: transform .22s ease, stroke .18s;
}

/* ---- sub-items ---- */
.mm-sub {
  background: rgba(0, 0, 0, 0.2);
}

.mm-sub-item {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #b8c4b2;
  display: block;
  padding: 14px 24px 14px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: color .16s, background .16s;
}

.mm-sub-item:hover {
  color: var(--gold-soft);
  background: rgba(220, 195, 139, 0.07);
}

/* ---- divider between plain links ---- */
.mm-divider {
  height: 1px;
  background: rgba(220, 195, 139, 0.18);
  margin: 8px 24px;
}

/* ---- footer CTA ---- */
.mm-footer {
  padding: 22px 24px;
  border-top: 1px solid rgba(220, 195, 139, 0.18);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  flex-shrink: 0;
  background: var(--g800);
}

.mm-btn-appt {
  background: var(--gold);
  color: #23271f;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  text-align: center;
  display: block;
  text-decoration: none;
  transition: background .18s, color .18s;
}

.mm-btn-appt:hover {
  background: var(--gold-deep);
  color: #fff;
}

.mm-phone {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #b8c4b2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  transition: color .16s;
}

.mm-phone svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-soft);
  flex-shrink: 0;
}

.mm-phone:hover {
  color: var(--gold-soft);
}

/* ---- breakpoints ---- */

@media only screen and (min-width: 1301px) and (max-width: 1400px) {
  .home_menu {
    display: none !important;
  }
}

@media (max-width: 1300px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  header.nav .nav-cta {
    margin-right: 0;
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .nav-cta .payonline {
    display: none;
  }
}

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
}

.hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 25, 54, 0.92) 0%, rgba(1, 25, 54, 0.72) 34%, rgba(1, 25, 54, 0.28) 62%, rgba(1, 25, 54, 0.12) 100%); /* linear-gradient(90deg, rgba(18, 51, 39, 0.92) 0%, rgba(18, 51, 39, 0.72) 34%, rgba(18, 51, 39, 0.28) 62%, rgba(18, 51, 39, 0.12) 100%); old color */
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.wrap.hero_container {
  max-width: 1820px;
  width: 100%;
  margin-right: 0;
}

.hero .eyebrow {
  color: var(--gold-soft);
  display: block;
  margin-bottom: 22px;
}

.hero h1 {
  color: #f8f5ec;
  max-width: 15ch;
  margin-bottom: 26px;
}

.hero p.lead {
  color: #dbe2d6;
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- feature strip ---- */
.features {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 26px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: none;
}

.feature .ic {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.feature .ic svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold-deep);
  stroke-width: 1.4;
  fill: none;
}

.feature b {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--ink);
}

.feature span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mute);
}

@media (max-width: 820px) {
  .features .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2) {
    border-right: none;
  }

  .feature:nth-child(1),
  .feature:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 460px) {
  .features .grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* ---- experience ---- */
.exp-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.exp-copy p.lead {
  margin-bottom: 18px;
}

.exp-copy .textlink {
  margin-top: 14px;
}

.exp-media {
  position: relative;
}

.exp-media .frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  aspect-ratio: 4/3;
}

.exp-media .frame.home-video {
    aspect-ratio: 5.5/3;
}

.exp-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-media .tag {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: var(--g800);
  color: #f6f2e8;
  border-radius: var(--radius-md);
  padding: 15px;
  box-shadow: var(--shadow-3);
  max-width: 200px;
}

.exp-media .tag b {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--gold-soft);
  display: block;
  line-height: 1;
}

.exp-media .tag span {
  font-family: var(--sans);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #cdd6c9;
}

@media (max-width: 860px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-media {
    max-width: 560px;
  }
}

/* ---- services (asymmetric blocks) ---- */
.svc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.svc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}

.blk {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--g700);
  color: #eef2ea;
  padding: 34px;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  transition: background .2s ease, transform .2s ease;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  border: none;
}

.blk:hover {
  background: var(--g600);
  transform: translateY(-3px);
  color: #eef2ea;
}

.blk .ic {
  width: 34px;
  height: 34px;
  margin-bottom: auto;
}

.blk .ic svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold-soft);
  stroke-width: 1.3;
  fill: none;
}

.blk h3 {
  color: #f6f2e8;
  font-size: 28px;
  margin-top: 22px;
}

.blk p {
  font-family: var(--sans);
  font-size: 16px;
  color: #c6d0c2;
  margin-top: 12px;
}

.blk .arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s;
}

.blk .arrow svg {
  width: 18px;
  height: 18px;
  stroke: #f6f2e8;
  transition: transform .2s;
}

.blk:hover .arrow {
  background: var(--gold);
  border-color: var(--gold);
}

.blk:hover .arrow svg {
  stroke: #23271f;
  transform: translate(2px, -2px);
}

.blk.feature {
  grid-row: span 2;
  background: var(--g900);
  justify-content: flex-end;
  border: 1px solid var(--gold);
}

.blk.feature .ic {
  margin-bottom: 0;
}

.blk.feature h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 18px;
}

.blk.feature p {
  font-size: 16px;
  max-width: max-content;
}

.blk.gold {
  background: var(--gold);
  color: #23271f;
}

.blk.gold h3 {
  color: #23271f;
}

.blk.gold p {
  color: #5a4c26;
}

.blk.gold .ic svg {
  stroke: var(--g800);
}

.blk.gold .arrow {
  border-color: rgba(35, 39, 31, 0.3);
}

.blk.gold .arrow svg {
  stroke: #23271f;
}

.blk.gold:hover {
  color: #23271f;
}

.blk.gold:hover .arrow {
  background: var(--g800);
  border-color: var(--g800);
}

.blk.gold:hover .arrow svg {
  stroke: var(--gold-soft);
}

.blk.wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  min-height: 0;
}

.blk.wide .ic {
  margin: 0;
  flex-shrink: 0;
}

.blk.wide .txt h3 {
  margin-top: 0;
}

.blk.wide .txt p {
  margin-top: 12px;
}

@media (max-width: 860px) {
  .svc-bento {
    grid-template-columns: 1fr 1fr;
  }

  .blk.feature {
    grid-row: auto;
    grid-column: span 2;
    min-height: 220px;
  }

  .blk.wide {
    grid-column: span 2;
  }

  .svc-bento>.blk:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .svc-bento {
    grid-template-columns: 1fr;
  }

  .blk.feature,
  .blk.wide,
  .svc-bento>.blk:last-child {
    grid-column: span 1;
  }

  .blk.wide {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- meet dr lakani ---- */
.meet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.meet-photo {
  position: relative;
}

.meet-photo .frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  aspect-ratio: 4/5;
  border: 6px solid var(--paper);
}

.meet-photo .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.meet-photo .ring {
  position: absolute;
  inset: -18px -18px auto auto;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  z-index: -1;
}

.meet-copy .sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 34px;
  color: var(--gold-deep);
  margin: 8px 0 22px;
}

.meet-copy p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 56ch;
}

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  margin: 28px 0 34px;
}

.cred {
  display: flex;
  gap: 13px;
}

.cred svg {
  width: 28px;
  height: 30px;
  stroke: var(--gold-deep);
  stroke-width: 1.4;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.cred b {
  font-family: var(--sans);
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.cred span {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-mute);
}

@media (max-width: 820px) {
  .meet-grid {
    grid-template-columns: 1fr;
  }

  .meet-photo {
    max-width: 420px;
  }

  .creds {
    grid-template-columns: 1fr;
  }
}

/* ---- smile gallery ---- */
.gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.gcard {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-2);
}

.gcard .ph {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.gcard .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gcard:hover .ph img {
  transform: scale(1.04);
}

.gcard .cap {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gcard .cap b {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 600;
}

.gcard .cap span {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--gold-deep);
}

@media (max-width: 760px) {
  .gal {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gal {
    grid-template-columns: 1fr;
  }
}

/* ---- specials band ---- */
.specials {
  background: var(--g800);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 96px) 0;
}

.specials .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.specials .eyebrow {
  color: var(--gold-soft);
  display: block;
  margin-bottom: 12px;
}

.specials h2 {
  color: #f6f2e8;
  font-size: clamp(32px, 4vw, 52px);
}

.specials .wrap .btn-gold:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 700px) {
  .specials .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- comparison ---- */
.compare {
  margin-top: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.compare table {
  width: 100%;
  border-collapse: collapse;
}

.compare th,
.compare td {
  text-align: left;
  padding: 20px 28px;
}

.compare thead th {
  vertical-align: bottom;
  border-bottom: 1px solid var(--line);
}

.compare thead .feat {
  width: 46%;
}

.compare thead .col {
  width: 27%;
  text-align: center;
}

.compare thead .col.us {
  background: var(--g800);
}

.compare .ch-name {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  font-weight: 600;
}

.compare .col.us .ch-name {
  color: var(--gold-soft);
}

.compare .ch-sub {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink-mute);
  margin-top: 4px;
}

.compare .col.us .ch-sub {
  color: #a9b6a5;
}

.compare tbody td {
  border-top: 1px solid var(--line-soft);
  font-family: var(--sans);
  font-size: 14.5px;
}

.compare tbody td.feat {
  color: var(--ink);
  font-weight: 500;
}

.compare tbody td.col {
  text-align: center;
}

.compare tbody td.col.us {
  background: rgba(25, 65, 47, 0.05);
}

.compare .yes,
.compare .no {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.compare .yes {
  background: rgba(25, 65, 47, 0.1);
}

.compare .yes svg {
  width: 16px;
  height: 16px;
  stroke: var(--g700);
}

.compare .no {
  background: rgba(0, 0, 0, 0.05);
}

.compare .no svg {
  width: 14px;
  height: 14px;
  stroke: var(--ink-mute);
}

.compare .part {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-mute);
}

@media (max-width: 680px) {

  .compare th,
  .compare td {
    padding: 14px 14px;
  }

  .compare .ch-name {
    font-size: 16px;
  }

  .compare tbody td {
    font-size: 13px;
  }
}

/* ---- reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.rev {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-1);
}

.rev .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.rev .stars svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
}

.rev p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 20px;
  display: -webkit-box;
    -webkit-line-clamp: 4; /* Show 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rev p.expanded {
    overflow: auto;
}

.rev .by {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 15px;
}

.rev .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--g700);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.rev .by b {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  display: block;
  font-weight: 600;
}

.rev .by span.av {
    color: #fff !important;
}

.rev .by span {
  font-family: var(--sans);
  font-size: 11.5px;
  color: #222;
}

@media (max-width: 820px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ---- request + contact ---- */
.contact {
  background: var(--g900);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--shadow-3);
}

.form-card .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.form-card h3 {
  margin-bottom: 22px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--g600);
  box-shadow: 0 0 0 3px rgba(53, 100, 80, 0.14);
}

.field.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field.row>div {
  display: flex;
  flex-direction: column;
}

.form-note {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-mute);
  margin: 6px 0 18px;
}

.contact-right {
  color: #dbe2d6;
}

.contact-right .eyebrow {
  color: var(--gold-soft);
  display: block;
  margin-bottom: 16px;
}

.contact-right h2 {
  margin-bottom: 20px;
}

.contact-right .lead {
  margin-bottom: 30px;
}

.office-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-2);
  aspect-ratio: 16/10;
}

.office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cblock {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cblock:last-child {
  border-bottom: none;
}

.cblock .ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(220, 195, 139, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cblock .ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-soft);
  stroke-width: 1.5;
  fill: none;
}

.cblock h4 {
  font-family: var(--sans);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.cblock p,
.cblock a {
  font-family: var(--sans);
  font-size: 17px;
  color: #e4eadf;
  line-height: 1.5;
}

.cblock a.big {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  overflow-wrap: anywhere;
}

.cblock a:hover {
  color: var(--gold-soft);
}

.hours {
  width: 100%;
}

.hours td {
  font-family: var(--sans);
  font-size: 17px;
  padding: 3px 0;
  color: #d2dacd;
}

.hours td:last-child {
  text-align: right;
  color: #fff;
}

.hours tr.off td:last-child {
  color: #93a08c;
}

.map {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) sepia(0.1);
}


/*------------- disclaimer msg -----------*/
.disclaimer-msg {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.disclaimer-msg p,
.disclaimer-msg a,
.disclaimer-msg label {
    margin: 0;
    font-size: 11px;
    color: #888;
}
 
.disclaimer-msg a {
    color: #123327;
    text-decoration: none;
}
.disclaimer-msg a:hover {
    color: #373843;
    text-decoration: none;
}
.form-checkbox {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}
.form-checkbox input {
    margin: 0px 8px 0 0;
    height: 20px !important;
    width: 18px !important;
}
.form-checkbox label,
.disclaimer-msg p {
    max-width: calc(100% - 26px);
    width: 100%;
    margin-left: auto;
    margin-bottom: 0;
}
.form-checkbox label.label1 {
    bottom: -18px;
}
@media only screen and (max-width: 1199.99px) {
    .disclaimer-msg {
        margin: 0 0 15px;
    }
}
@media only screen and (min-width: 1200px) {
    .disclaimer-msg {
        margin: 30px 0 0;
    }
    .disclaimer-msg:not(:first-child) {
        margin: 22px 0 0;
    }
}

/*--------------*/
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- footer ---- */
.foot {
  background: var(--g900);
  color: #a8b4a1;
  border-top: 1px solid rgba(220, 195, 139, 0.18);
  padding: 72px 0 30px;
  text-align: center;
}

.foot .fbadge {
  width: 100%;
  max-width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-2);
}

.foot .fbadge img {
  height: 150px;
  width: 100%;
}

.foot .fword {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.foot .ftag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: #d9e0d2;
  margin: 22px 0 26px;
}

.foot .fnav {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.foot .fnav a {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #cdd6c9;
}

.foot .fnav a:hover {
  color: var(--gold-soft);
}

.foot .socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.foot .socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(220, 195, 139, 0.3);
  display: grid;
  place-items: center;
}

.foot .socials a:hover {
  background: rgba(220, 195, 139, 0.12);
}

.foot .socials svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold-soft);
  fill: none;
}

.foot .fcols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.foot .fcols h5 {
  font-family: var(--sans);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.foot .fcols p,
.foot .fcols a {
  font-family: var(--sans);
  font-size: 17px;
  color: #bcc6b5;
  line-height: 1.7;
  display: block;
}

.foot .fcols a {
  margin-bottom: 5px;
}

.foot .fcols a:last-child {
  margin-bottom: 0 !important;
}

.foot .fcols a:hover {
  color: var(--gold-soft);
}

.foot .fbot {
  font-family: var(--sans);
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.4px;
}

.footer__bottom-text a:hover {
    color: #fff;
}

@media (max-width: 620px) {
  .foot .fcols {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ---- form success message ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--g700);
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-success p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-mute);
}

/* =============================================================================
   SUBPAGE STYLES — Botanical Luxe
   All class names below match existing subpage HTML; do not rename them.
   =========================================================================== */

/* ── Breadcrumb ─────────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 20px;
  justify-content: center;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  opacity: .6;
}

/* ── Page Hero ──────────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--g900);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(184, 152, 90, .08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
    width: 100%;
    text-align: center;
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
    margin-bottom: 20px !important;
    max-width: 710px;
    margin: auto;
    width: 100%;
}

.page-hero-lead {
  font-family: var(--sans);
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, .8);
  max-width: 620px;
  line-height: 1.65;
    margin-bottom: 32px !important;
    margin: auto;
    width: 100%;
}

.contact-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  justify-content: center;
}

/*------------------------------------------------------------------------------
Full Section
------------------------------------------------------------------------------*/

section.full_content_section {
  padding: 80px 0;
}

.full_content_section .sp-pricing-head {
  width: 100%;
  margin: auto;
  max-width: 100%;
  text-align: center;
}

.full_content_section .sp-pricing-head .hero-actions {
  margin-top: 50px;
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  section.full_content_section {
    padding: 50px 0;
  }
}


/* ── Zigzag (sp-zz) sections ─────────────────────────────────────────────────── */
.sp-zz-section {
  padding: 80px 0;
  background: var(--cream);
}

.sp-zz-section--soft {
  background: var(--cream-2);
}

.sp-zz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sp-zz-inner--flip .sp-zz-media {
  order: 2;
}

.sp-zz-inner--flip .sp-zz-body {
  order: 1;
}

.sp-zz-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.sp-zz-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.sp-zz-body {
  padding: 8px 0;
}

.sp-zz-body h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--g900);
  margin: 0 0 20px;
  line-height: 1.2;
}

.sp-zz-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--g800);
  margin: 24px 0 8px;
}

.sp-zz-body ul li,
.sp-zz-body p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px;
}

.sp-zz-body ul {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 20px;
  padding-left: 20px;
}

.sp-zz-body li {
  margin-bottom: 8px;
}

.sp-zz-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 14px;
}

.sp-zz-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.sp-zz-cta-note {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
}

@media (max-width: 768px) {
  .sp-zz-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .sp-zz-media {
    width: 100%;
    height: 100%;
  }

  .sp-zz-body {
    width: 100%;
    padding-bottom: 0;
  }

  .sp-zz-inner--flip .sp-zz-media {
    order: 0;
  }

  .sp-zz-inner--flip .sp-zz-body {
    order: 0;
  }

  .sp-zz-media img {
    height: 260px;
  }

  header.nav .nav-cta {
    display: none;
  }
  .video-sec .exp-copy.reveal{
      order: 2;
  }
  .video-sec .exp-media.reveal{
      order: 1;
      max-width: 100%;
  }
}

/* ── Band / CTA strip ────────────────────────────────────────────────────────── */
.band {
  padding: 64px 0;
}

.band .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.band .inner>div:first-child {
  flex: 1 1 400px;
}

.band .inner>div.actions {
  flex-shrink: 0;
}

.band .inner h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: inherit;
  margin: 0 0 20px;
}

.band .inner p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 28px;
}

.band .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.band.section {
  background: var(--cream-2);
  color: #fff;
}

.band.section.green {
  background: var(--g800);
  color: #fff;
}

.band.section.green-deep {
  background: var(--g900);
  color: #fff;
}

.band.section.cream2 {
  background: var(--cream-2);
  color: var(--ink);
}

.band.section.sp-zz-section--soft {
  background: var(--cream-2);
  color: var(--ink);
}

/* Button aliases used in subpages */
.btn-primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}

.btn-light:hover,
.btn-light-hover:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--g800);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s;
}

.btn-ghost:hover {
  border-color: var(--g700);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 15px;
}

.btn-285 {
  min-width: 285px;
  text-align: center;
}

.phone-lg {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--g900);
  text-decoration: none;
  letter-spacing: .01em;
}

.phone-lg:hover {
  color: var(--gold-deep);
}

.band.section .phone-lg {
  color: rgba(255, 255, 255, 0.85);
}

.band.section .phone-lg svg {
  stroke: currentColor;
}

.band.section .phone-lg:hover {
  color: var(--gold-soft);
}

/* ── FAQ accordion (sp-faq) ──────────────────────────────────────────────────── */
.sp-faq {
  background: var(--paper);
  padding: 80px 0;
}

.sp-faq-head {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
  margin: auto;
}

.sp-faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.sp-faq-item {
  border-bottom: 1px solid #c3baa7;
}

.sp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}

.sp-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--g700);
  transition: transform .25s;
}

.sp-faq-item.open .sp-faq-icon {
  transform: rotate(45deg);
}

.sp-faq-a {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 0 0 20px;
  display: none;
}

.sp-faq-item.open .sp-faq-a {
  display: block;
}

/* ── About — Team Grid ─────────────────────────────────────────────────────────── */
.about-team-section {
  background: var(--cream);
  padding: 80px 0;
}

.about-team-head {
  text-align: center;
  width: 100%;
  margin: auto;
}

.about-team-intro {
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow .25s, transform .25s;
}

.team-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-3px);
}

.team-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: flex;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-body {
  padding: 24px;
}

.team-card-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  color: var(--g900);
  margin: 0 0 10px;
}

.team-card-title {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 12px;
}

.team-card-bio {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* ── About — Reviews ───────────────────────────────────────────────────────────── */
.about-reviews {
  background: var(--cream-2);
  padding: 80px 0;
}

.rev-tabs {
  display: flex;
  gap: 8px;
  justify-content: left;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rev-tab {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  gap: 5px;
}

.rev-tab--active,
.rev-tab:hover {
  background: var(--g800);
  color: #fff;
  border-color: var(--g800);
}

.rev-panel--hidden {
  display: none !important;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.rev-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rev-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g700);
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rev-avatar--yelp {
  background: #d32323;
}

.rev-meta {
  flex: 1;
}

.rev-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 2px;
}

.rev-source {
  font-family: var(--sans);
  display: flex;
  color: var(--ink-mute);
  margin: 0;
}

.rev-source svg {
  width: 30px;
  height: 30px;
}

.rev-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 25px;
}

.rev-body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.72;
  margin: 0;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: none;
}

.rev-body--expanded {
  overflow: auto;
}

.rev-read-more {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g700);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-align: left;
}


/* ── About — Photo Gallery ──────────────────────────────────────────────────────── */
.about-gallery {
  background: var(--paper);
  padding: 80px 0;
}

.about-gallery-head {
  text-align: center;
  margin-bottom: 40px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.about-photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.about-photo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.about-photo-item:hover img {
  transform: scale(1.04);
}

/* ── Lightbox ───────────────────────────────────────────────────────────────────── */
.glb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
}

.glb.open {
  display: flex;
}

.glb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
}

.glb-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.glb-count {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

.glb-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
  display: flex;
}

.glb-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.glb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 64px;
}

.glb-stage img {
  max-width: 100%;
  max-height: 450px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.homepage_gallery_box div#glbBadges {
    display: flex;
    gap: 10px;
    color: #fff;
    justify-content: center;
    margin-top: 5px;
}

.glb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  transition: background .2s;
}

.glb-arrow:hover {
  background: rgba(255, 255, 255, .25);
}

.glb-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.glb-prev {
  left: 16px;
}

.glb-next {
  right: 16px;
}

.homepage_gallery_box .glb-footer {
  padding: 10px 10px 15px;
}

.homepage_gallery_box .glb-footer .glb-cap {
    font-family: var(--sans);
    display: flex;
    justify-content: center;
    color: #fff;
    gap: 10px;
    font-size: 15px;
    line-height: normal;
}
 

/* ── Contact Page ───────────────────────────────────────────────────────────────── */
.contact-page {
  background: var(--cream);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter);
}

@media (max-width: 860px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
}

.info-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--g900);
  margin: 0 0 20px;
}

.info-practice-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}

.info-address {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 4px;
}

.info-note {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-mute);
  margin: 4px 0 0;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-day {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

.hours-sep {
  color: var(--line);
  margin: 0 6px;
}

.hours-time {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
}

.hours-closed {
  color: var(--ink-mute);
  font-style: italic;
}

.contact-form-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--g900);
  margin: 0 0 28px;
}

.appt-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-1);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-input,
.form-textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--g700);
  box-shadow: 0 0 0 3px rgba(42, 78, 60, .1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.check-input {
  width: 16px;
  height: 16px;
  accent-color: var(--g700);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.form-legal-links a {
  color: var(--g700);
}

.form-error {
  font-family: var(--sans);
  font-size: 12px;
  color: #c0392b;
  margin-top: 2px;
  display: none;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

/* ── Services page extras ──────────────────────────────────────────────────────── */
.faqs_main_section_blk {
  background: var(--cream-2);
}

/* ── For Patients page ──────────────────────────────────────────────────────────── */
.pat-section {
  background: var(--cream);
  padding: 72px 0;
}

/* Two-column grid: left = downloads + hours, right = upload form */
.pat-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (max-width: 860px) {
  .pat-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Left column */
.pat-downloads {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pat-dl-head {
  margin-bottom: 4px;
}

.pat-dl-head h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--g900);
  margin: 0 0 8px;
}

.pat-dl-head p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.6;
}

.pat-dl-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s;
}

.pat-dl-card:hover {
  box-shadow: var(--shadow-2);
}

.pat-dl-icon {
  width: 36px;
  height: 36px;
  stroke: var(--g700);
  fill: none;
}

.pat-dl-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--g700);
  fill: none;
}

.pat-dl-info h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}

.pat-dl-info p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-mute);
  margin: 0 0 10px;
  line-height: 1.6;
}

.pat-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: underline;
}

.pat-dl-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-deep);
}

.pat-hours-section .wrap {
  padding: 0 !important;
}

.pat-dl-btn:hover {
  color: var(--g800);
}

/* Hours block inside left column */
.pat-hours-section {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 24px;
}

.pat-hours-head {
  margin-bottom: 16px;
}

.pat-hours-head h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--g900);
  margin: 0;
}

.pat-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.pat-hours-table td {
  font-family: var(--sans);
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
}

.pat-hours-table tr:last-child td {
  border-bottom: none;
}

.pat-hours-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.pat-hours-table .closed td {
  color: var(--ink-mute);
}

/* Right column: upload box */
.pat-upload-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-1);
}

.pat-upload-box h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--g900);
  margin: 0 0 10px;
}

.pat-upload-box>p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.65;
  margin: 0 0 28px;
}

.pat-upload-form {
  display: flex;
  flex-direction: column;
}

.pat-file-zone {
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.pat-file-zone:hover,
.pat-file-zone.drag-over {
  border-color: var(--g700);
  background: rgba(42, 78, 60, .04);
}

.pat-file-zone-icon {
  width: 40px;
  height: 40px;
  stroke: var(--g700);
  margin: 0 auto 12px;
}

.pat-file-name {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 8px;
}

.pat-thankyou {
  text-align: center;
  padding: 40px 24px;
}

.pat-ty-icon {
  width: 48px;
  height: 48px;
  stroke: var(--g700);
  margin: 0 auto 16px;
}

.pat-ty-icon svg {
    fill: var(--g900);
    border: 1px solid var(--g900);
    border-radius: 30px;
}
 

.pat-ty-msg {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.pat-ty-book,
.pat-ty-call {
  display: inline-block;
  margin: 6px;
}

.pat-ty-contact {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 16px;
}

.pat-form-error {
  font-family: var(--sans);
  font-size: 13px;
  color: #c0392b;
  margin-top: 8px;
  display: none;
}

/* ── Process steps (sp-steps) ───────────────────────────────────────────────────── */
.sp-steps {
  background: var(--paper);
  padding: 80px 0;
}

.sp-steps-head {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  padding: 0 var(--gutter);
}

.sp-steps-head .h2 {
  color: var(--g900);
}

.sp-step-list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sp-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}

.sp-step:first-child {
  border-top: 1px solid var(--line-soft);
}

.sp-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--g900);
  color: #fff;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sp-step-body h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}

.sp-step-body p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.65;
}

/* Misc subpage classes used in single-tooth and other implant pages */
.sp-pricing-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--gutter);
}

.sp-pricing-head .h2 {
  color: var(--g900);
  margin-bottom: 16px;
}

.sp-pricing-head .lead {
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: flex;
  background: transparent;
  color: var(--g800);
  border: 1px solid var(--g700);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}

.btn-secondary:hover {
  background: var(--g800);
  color: #fff;
}

.full_content_section {
  background: var(--cream-2);
}

/* ── Legal pages (Privacy / Terms) ──────────────────────────────────────────────── */
.legal-section {
  background: var(--cream);
  padding: 72px 0 96px;
}

.legal-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-content .section-title,
.legal-content .h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--g900);
  margin: 40px 0 12px;
  line-height: 1.25;
}

.legal-content .section-desc {
  margin-bottom: 20px;
}

.legal-content h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--g800);
  margin: 28px 0 8px;
}

.legal-content a {
  color: var(--g700);
}

.legal-content a:hover {
  color: var(--gold-deep);
}

.common-listing {
  padding-left: 20px;
  margin: 0 0 16px;
}

.common-listing li {
  margin-bottom: 8px;
}

/* ── Sitemap ─────────────────────────────────────────────────────────────────────── */
.eleventh_main_sec,
.section_padding {
  background: var(--cream);
  padding: 72px 0;
}

.eleventh_main_container,
.same_container_1440,
.container.mxw-1024 {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.same_sec1 h2,
.content-section h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--g900);
  margin: 0 0 32px;
}

.site-map-menu-blk {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

ul#site-map-menu {
    width: fit-content;
}

.site-map-menu h3,
.sitemap-sub-menu h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--g800);
  margin: 0 0 12px;
}

.site-map-menu ul,
.sitemap-sub-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 20px;
}

ul.sitemap-sub-menu {
    margin-top: 10px;
}

.site-map-menu li,
.sitemap-sub-menu li {
  margin-bottom: 8px;
}

.site-map-menu a,
.sitemap-sub-menu a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g700);
  text-decoration: none;
}

.site-map-menu a:hover,
.sitemap-sub-menu a:hover {
  color: var(--gold-deep);
  text-decoration: underline;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.col-md-6 {
  flex: 1 1 calc(50% - 12px);
  min-width: 220px;
}

@media (max-width: 991px) {
    .eleventh_main_sec, .section_padding {
        padding: 50px 0;
    }
}

/* ── 404 page ────────────────────────────────────────────────────────────────────── */
.error-404 {
  background: var(--cream);
  /*min-height: calc(100vh - 180px);*/
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.error-404-wrap {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.error-404-number {
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 400;
  color: var(--g900);
  line-height: 1;
  margin: 0 0 20px;
  opacity: .15;
}
 
.wrap.error-404-wrap h1 {
    margin-bottom: 20px;
}
 
.error-404-lead {
  font-family: var(--sans);
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-soft);
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.error-404-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.error-404-links a.btn.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_content_wrap_blk section:nth-child(odd):not(.band) {
  background: var(--cream);
}

.page_content_wrap_blk section:nth-child(even):not(.band) {
  background: #e8eef5; /* old color #f6fffc */
}

.full_content_section p.lead {
  max-width: 980px;
}

/*-------------------*/

.last_sec_left_side_col {
  flex: unset !important;
  max-width: 700px;
  width: 100%;
}

.last_sec_left_side_col p {
  margin-bottom: 0 !important;
}

.last_section_btn_blk {
  max-width: 290px;
  width: 100%;
}

.last_sec_left_side_col h2,
.last_sec_left_side_col p {
  color: var(--ink) !important;
}

.last_section_btn_blk a.btn.btn-ghost {
  width: 100%;
  max-width: 290px;
  color: var(--gold);
  text-align: center;
  text-transform: capitalize;
  border-color: var(--gold);
}

.last_section_btn_blk a.btn.btn-light {
  width: 100%;
  max-width: 290px;
  text-align: center;
  background: var(--gold);
  border-color: var(--gold);
}

.last_section_btn_blk a.btn.btn-ghost:hover {
  background-color: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.last_section_btn_blk a.btn.btn-light:hover {
  background-color: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Same-day implants: case-type card grid ──────────────────────────────── */
.differentiate_section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.differentiate_sec_container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sp-two-col-text-left h2,
.sp-two-col-text-right h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}

.sp-two-col-text-left>p,
.sp-two-col-text-right>p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  line-height: 1.65;
}

/* 3-column card grid (dental_diff_sec) */
.dental_diff_sec .sp-two-col-text-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dental_diff_sec .sp-two-col-text-left ul li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding: 0 20px 24px;
}

.dental_diff_sec .sp-two-col-text-left ul li img {
  display: block;
  width: 100%;
  margin: 0px 0 20px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: var(--cream-2);
}

.dental_diff_sec .sp-two-col-text-left ul li strong {
  display: block;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

/* "Who is a candidate" text section */
.sp-two-col-text-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-two-col-text-right ul li {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.sp-two-col-text-right ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 768px) {
  .dental_diff_sec .sp-two-col-text-left ul {
    grid-template-columns: 1fr;
  }
}

/* ── Pricing cards (sp-pricing) ──────────────────────────────────────────── */
.sp-pricing {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--cream);
}

.sp-pricing .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sp-pricing-head {
  text-align: center;
  margin-bottom: 48px;
}

.sp-pricing-head .h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 25px;
}

.sp-pricing-head .lead {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.sp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.sp-price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-price-card--featured {
  border-color: var(--g700);
  border-width: 2px;
  box-shadow: var(--shadow-2);
}

.sp-price-card-header {
  margin-bottom: 20px;
}

.sp-price-label {
  display: block;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

.sp-price-badge {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.sp-price-amount {
  font-family: var(--sans);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.sp-price-amount span {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}

.sp-price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-price-includes li {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.sp-price-note {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-muted, var(--ink-soft));
  opacity: .75;
  margin: 20px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.sp-price-card .btn-primary {
  display: block;
  text-align: center;
  background: var(--g900);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 13px 20px;
  margin-top: auto;
}

.sp-price-card .btn-primary:hover {
  background: var(--g700);
}

@media (max-width: 900px) {
  .sp-price-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}


/*-------------*/
/* ============================================================
   COMPREHENSIVE RESPONSIVE FIXES
   ============================================================ */

/* ── Band CTA strip: stack on small screens ────────────────── */
@media (max-width: 700px) {
  .band .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .band .inner>div.actions {
    width: 100%;
  }

  .band .actions {
    flex-direction: column;
    width: 100%;
  }

  .band .actions .btn-light,
  .band .actions .btn-gold,
  .band .actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .band .phone-lg {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* ── hero-actions: stack on very small screens ─────────────── */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    text-align: center;
    display: block;
  }
}

/* ── Intro / full_content_section: fix padding on mobile ───── */
@media (max-width: 600px) {

  .sp-pricing-head,
  .full_content_section .sp-pricing-head {
    padding: 40px var(--gutter);
  }

  .sp-pricing-head .h2,
  .full_content_section .sp-pricing-head .h2 {
    font-size: clamp(22px, 5vw, 32px);
  }
}

/* ── sp-steps: reduce gap on mobile ───────────────────────── */
@media (max-width: 600px) {
  .sp-step {
    gap: 18px;
    padding: 20px 0;
  }

  .sp-step-num {
    width: 40px;
    height: 40px;
    font-size: 15px;
    flex-shrink: 0;
  }
}

/* ── Pricing cards: stack on mobile ───────────────────────── */
@media (max-width: 700px) {
  .sp-price-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ── Same-day card grid: stack on mobile ──────────────────── */
@media (max-width: 640px) {
  .dental_diff_sec .sp-two-col-text-left ul {
    grid-template-columns: 1fr;
  }

  .dental_diff_sec .sp-two-col-text-left ul li img {
    aspect-ratio: 16 / 9;
  }
}

/* ── Pat grid (for-patients): already at 860px, add table fix */
@media (max-width: 600px) {
  .pat-hours-table {
    width: 100%;
  }

  .pat-hours-section {
    overflow-x: auto;
  }

  .pat-section .wrap {
    padding: 0;
  }

  .pat-grid {
    padding: 0 var(--gutter);
  }
}

/* ── Page hero: tighten on mobile ─────────────────────────── */
@media (max-width: 600px) {
  .page-hero {
    padding: clamp(40px, 8vw, 64px) 0;
  }

  .page-hero-title {
    font-size: clamp(26px, 6vw, 40px);
  }
}

/* ── Nav: hide nav-cta entirely below 768px ───────────────── */
/* (already set in earlier rule — confirm nav-cta also hides at 768px) */
@media (max-width: 768px) {
  header.nav .nav-cta {
    display: none;
  }
}

/* ── Tablet: nav-cta shrink between 768-1100px ────────────── */
@media (min-width: 769px) and (max-width: 1100px) {
  header.nav .nav-cta {
    display: flex;
    gap: 8px;
  }

  .nav-cta .payonline {
    display: none;
  }

  .nav-cta .btn-gold {
    font-size: 11px;
    padding: 10px 16px;
  }
}

/* ── FAQ: full-width on mobile ─────────────────────────────── */
@media (max-width: 600px) {
  .sp-faq-q {
    font-size: 15px;
    padding: 16px 0;
  }

  .sp-faq-a {
    padding-bottom: 16px;
  }
}

/* ── Legal pages: padding on mobile ──────────────────────── */
@media (max-width: 600px) {
  .legal-content {
    padding: 0 var(--gutter);
  }
}

/* ── Zigzag sections: fix image height on mobile ──────────── */
@media (max-width: 600px) {
  .sp-zz-section {
    padding: clamp(40px, 8vw, 64px) 0;
  }

  .sp-zz-inner {
    padding: 0 var(--gutter);
  }

  .pat-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .pat-upload-box {
    width: 100%;
  }

  .pat-file-zone input#pat_file {
    width: 100%;
    text-wrap-mode: wrap;
  }

  .pat-upload-box {
    padding: 30px 20px;
  }
}

/* ── sp-two-col-text (same-day candidate section) mobile ──── */
@media (max-width: 640px) {
  .differentiate_section {
    padding: clamp(40px, 8vw, 64px) 0;
  }
}


@media (max-width: 710px) {

  .team-grid,
  .rev-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .contact-cta a.btn.btn-light.btn-light-hover.btn-lg {
    width: 100%;
    text-transform: capitalize;
    text-align: center;
  }

  .btn.btn-primary {
    width: 100%;
    text-align: center;
  }

  .last_section_btn_blk,
  .last_section_btn_blk a {
    max-width: 100% !important;
  }
    .wrap.contact-grid {
        display: flex;
        flex-wrap: wrap;
    }
    .hero .wrap.hero_container .actions a {
        width: 100%;
    }
    .contact-right .cblock .hours td {
        display: flex;
    }
    .contact-right .cblock .hours tr:not(:last-child) {
        margin-bottom: 10px;
        display: block;
    }
}

.pat-upload-form button#patFormSubmit {
  display: flex;
  margin-top: 40px;
}

/* ── Comparison table (implant-supported dentures) ───────────────────────── */
.sp-compare-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.sp-compare-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sp-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.sp-compare-table thead tr th {
  background: var(--cream-2);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.sp-compare-table thead tr th:first-child {
  text-align: left;
  width: 220px;
  background: var(--paper);
}

.sp-compare-table tbody tr td {
  padding: 16px 20px;
  color: var(--ink-soft);
  text-align: center;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 16px;
}

.sp-compare-table thead th:not(:last-child),
.sp-compare-table tbody td:not(:last-child) {
  border-right: 1px solid #d3d3d377;
}

.sp-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.sp-compare-table tbody tr:nth-child(even) td {
  background: var(--cream);
}

.sp-compare-table .sp-compare-label {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 640px) {


  .sp-compare-table {
    min-width: 520px;
  }

  .sp-compare-table-wrap {
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  }
}


.appt-form button#contact-submit {
    margin-top: 40px;
}


/*----------*/

.team_doctor_grid .team-card {
    display: flex;
    width: 100%;
}

.team_doctor_grid {
    display: block;
    margin-bottom: 80px;
}

.team_doctor_grid .team-card .team-card-img {
    width: 100%;
    max-width: 600px;
    height: 340px;
}

.team_doctor_grid .team-card .team-card-body {
    width: 100%;
}



/*------------Homepage VIdeo Section------------*/

.main_video_sec {
    padding: 80px 20px;
    background-color: #fff
}

.main_video_container {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.main_video_container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.main_video_row {
    width: 100%;
}

.main_video_col {
    width: 100%;
}

.main_video_module {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.main_video_module video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
}

/* Play/Pause Icon Overlay */
.video_controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.video_controls:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play_pause_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    opacity: 0.7;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video_controls:hover .play_pause_icon {
    opacity: 1;
    transform: scale(1.1);
}

.play_pause_icon.playing {
    opacity: 0;
}

/* Progress Bar */
.progress_bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #ff6b6b;
    transition: width 0.1s linear;
    z-index: 20;
}



@media (max-width: 600px) {
    .play_pause_icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .main_video_sec {
        padding: 50px 20px;
    }
}

/* ============================================================
   HERO BANNER — Vimeo Video
   ≥ 992px : video fills hero as full-bleed background
   ≤ 991px : video stacked above content (normal embed)
   New rules appended — no existing lines modified.
   ============================================================ */

/* ── Desktop ≥ 992px : background video ─────────────────────── */
@media (min-width: 992px) {

  /* Video sits between the static image (z-index:0) and content (z-index:1) */
  .hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }

  /* Dark gradient overlay so text stays readable */
  .hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:  linear-gradient(90deg, rgba(1, 25, 54, 0.92) 0%, rgba(1, 25, 54, 0.72) 34%, rgba(1, 25, 54, 0.28) 62%, rgba(1, 25, 54, 0.12) 100%); /* linear-gradient(
      90deg,
      rgba(18, 51, 39, 0.88) 0%,
      rgba(18, 51, 39, 0.65) 36%,
      rgba(18, 51, 39, 0.28) 62%,
      rgba(18, 51, 39, 0.08) 100%
    ); old color */
  }

  /* Embed wrapper fills the hero absolutely */
  .hero-video-embed {
    position: absolute;
    inset: 0;
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    background: #011936; /* #0e2a1f old color */
    overflow: hidden;
  }

  /* Scale iframe to cover full hero (16:9 aspect) */
  .hero-video-embed iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* wider than viewport, taller than hero — whichever hits first covers */
    width: 100vw;
    height: 56.25vw;      /* 16:9 at full viewport width  */
    min-height: 100%;
    min-width: 177.78vh;  /* 16:9 at full viewport height */
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 0;
  }

  /* Content sits above the video layer */
  .wrap.hero_container {
    position: relative;
    z-index: 2;
    display: block;
  }

  .hero-content {
    max-width: 660px;
  }
}

/* ── Mobile & Tablet ≤ 991px : stacked embed ─────────────────── */
@media (max-width: 991px) {

  /* Hero becomes a plain block — no min-height constraint */
  .hero {
    min-height: auto;
    display: block;
  }

  /* Hide static background image; video replaces it visually */
  /*.hero .bg {*/
  /*  display: none;*/
  /*}*/
  
  .hero .bg{
      z-index: 2;
  }
  .hero .bg img{
      display: none;
  }

  /* Video is in normal document flow, full-width */
  .hero-video {
    /*position: relative;*/
    /*width: 100%;*/
    /*z-index: auto;*/
    position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
  }

  /* Responsive 16:9 iframe box */
  .hero-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: #011936;
  }

  .hero-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    min-width: auto;
    min-height: auto;
    border: 0;
    border-radius: 0;
  }

  /* Content block below the video */
  .wrap.hero_container {
    /*display: block;*/
    /*position: relative;*/
    /*z-index: auto;*/
    /*padding-top: 32px;*/
    /*padding-bottom: 40px;*/
    /*background: linear-gradient(*/
    /*  180deg,*/
    /*  rgba(18, 51, 39, 1) 0%,*/
    /*  rgba(25, 65, 47, 1) 100%*/
    /*);*/
        position: relative;
        z-index: 2;
        display: block;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

    .hero .eyebrow,
    .hero h1,
    .hero p.lead {
        text-align: left;
        max-width: 100%;
    }
    .hero-content .actions {
        justify-content: left !important;
    }
    
    .team_doctor_grid .team-card {
        flex-wrap: wrap;
    }
    .team_doctor_grid .team-card .team-card-img{
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 768.98px){
    .hero{
        min-height: 423px;
    }
}

@media only screen and (max-width: 575.98px){
    .hero-video-embed{
        height:100%;
    }
    .hero-video-embed iframe{
        scale: 1.5;
    }
    .hero .bg::after{
        background: linear-gradient(90deg, rgba(1, 25, 54, 0.92) 0%, rgba(1, 25, 54, 0.72) 34%, rgba(1, 25, 54, 0.28) 62%, rgba(1, 25, 54, 0.12) 100%) /* linear-gradient(90deg, rgba(18, 51, 39, 0.92) 0%, rgba(18, 51, 39, 0.72) 34%, rgba(18, 51, 39, 0.28) 101%, rgba(18, 51, 39, 0.12) 100%) old color */
    }
}

/* ── Small mobile ≤ 480px ──────────────────────────────────────── */
@media (max-width: 480px) {
  .wrap.hero_container {
    padding-top: 24px;
    padding-bottom: 30px;
  }
  .hero-video-embed iframe{
        scale: 1.8;
    }
}

@media only screen and (max-width: 425.98px){
    .hero-video-embed iframe
 {
        scale: 2;
    }
}

@media (max-width: 375px) {
  .hero-video-embed {
    padding-bottom: 54.6% !important;
  }
  .hero-video-embed iframe{
        scale: 2.5;
    }
}

@media (max-width: 325px) {
  .hero-video-embed iframe{
        scale: 3.5;
    }
}

/*----------------------*/

.before_after_gallery_sec div#galTabs.tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 50px;
}

.before_after_gallery_sec div#galTabs.tabs .tab {
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 5px;
  border: 1px solid var(--gold-deep);
  background: #fff;
  color: #222;
  cursor: pointer;
  transition: all .15s;
}

.before_after_gallery_sec div#galTabs.tabs .tab:hover {
  border-color: var(--gold-deep);
}

.before_after_gallery_sec div#galTabs.tabs .tab.active {
  background: var(--gold-deep);
  color: #fff;
  border-color: var(--gold-deep);
}

.before_after_gallery_sec div#gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
    justify-content: left;
}
  
.before_after_gallery_sec .gallery .shot .img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.before_after_gallery_sec .gallery .shot .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 

.before_after_gallery_sec .gallery .img .ba {
    display: none;
    gap: 10px;
    font-size: 18px;
    margin-top: 10px;
}

.before_after_gallery_sec .gallery figcaption.cap {
    display: grid;
    margin-top: 10px;
}

@media (max-width: 575px) {
  .before_after_gallery_sec div#gallery {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
    .before_after_gallery_sec div#gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

