@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   LOUDONVILLE AESTHETIC DENTISTRY — STYLES
   Fonts: Satoshi + Playfair Display
   ═══════════════════════════════════════════════════ */
/* ── Variables ── */
:root {
  --accent: #B6BD8C;
  --footer-bg: #121212;
  --hours-text: #3E3E3E;
  --footer-light: #F1EFE7;
  --white: #FFFFFF;
  --cream: #F1EFE7;
  --header-bg:rgb(18 18 18 / 60%);
  --font-sans: 'Satoshi', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --header-h: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --px: clamp(20px, 4vw, 60px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.leaflet-bottom {
  display: none;
}

.leaflet-right {
  display: none;
}

[alt="MapTiler logo"] {
  display: none;
}

/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s;
}

.header-inner {
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
  transition: opacity 0.2s;
  margin-left: 24px;
  width: 15%;
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-link svg {
  transition: transform 0.2s var(--ease-out);
  opacity: 0.7;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  height: 100%;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--white);
}

.header-phone svg {
  color: var(--accent);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #121212;
  background: var(--accent);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  height: 100%;
}

.btn-book:hover {
  background: color-mix(in srgb, var(--accent), white 15%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(182, 189, 140, 0.3);
}

.btn-book:active {
  transform: translateY(0);
}

.btn-book--full {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  gap: 5px;
  margin-left: auto;
  background: #B6BD8C;
  transition: background 0.2s;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}
.hamburger:hover {
  background: #B6BD8C;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s 0.3s;
  z-index: 999;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s 0s;
}

.mobile-menu-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px var(--px) 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: #121212;
  border-bottom: 1px dashed #E4E2D9;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-link:hover {
  color: #B6BD8C;
  padding-left: 4px;
}

/* Mobile accordion */
.mobile-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: #121212;
  transition: color 0.2s;
  border-bottom: 1px dashed #E4E2D9;
}

.mobile-accordion-btn:hover {
  color: #B6BD8C;
}

.mobile-accordion-btn svg {
  transition: transform 0.25s var(--ease-out);
  opacity: 0.6;
}

.mobile-accordion-btn.open svg {
  transform: rotate(180deg);
}

.mobile-accordion-btn.open {
  color: #B6BD8C;
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
  padding-left: 16px;
}

.mobile-accordion-content.open {
  max-height: 600px;
}

.mobile-subnav-link {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  color: #121212;
  transition: color 0.2s;
}

.mobile-subnav-link:hover {
  color: #B6BD8C;
}

.mobile-subnav-link--all {
  color: var(--accent);
}

.mobile-subnav-link--all:hover {
  color: color-mix(in srgb, var(--accent), white 20%);
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  transition: color 0.2s, border-color 0.2s;
}

.mobile-phone:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.mobile-phone svg {
  color: var(--accent);
}

/* ══════════════════════════════════════════════════
   BANNER
   ══════════════════════════════════════════════════ */
.banner {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  transition: transform 8s ease;
}

.banner:hover .banner-img {
  transform: scale(1.03);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.42) 55%, rgba(10, 10, 10, 0.25) 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  padding: calc(var(--header-h) + 160px) var(--px) 5px;
}

.banner-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 33px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease-out) 0.22s forwards;
}

.banner-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 33px;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.36s forwards;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.48s forwards;
}

.btn-banner-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #121212;
  background: var(--accent);
  border: 1.5px solid var(--accent);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-banner-primary:hover {
  background: color-mix(in srgb, var(--accent), white 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(182, 189, 140, 0.35);
}

.btn-banner-primary:active {
  transform: translateY(0);
}

.btn-banner-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-banner-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-banner-secondary:active {
  transform: translateY(0);
}

.banner-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 20px;
  height: 20px;
}

.rating-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-light);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px var(--px) 56px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr 1.2fr;
  gap: 48px 40px;
  align-items: start;
}

/* Footer logo (light variant) */
.logo--light {
  width: 80%;
  margin-left: 0;
  margin-bottom: 30px;
}

.logo--light .logo-name {
  color: var(--white);
}

.logo--light .logo-sub {
  color: rgba(241, 239, 231, 0.45);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-office-img {
  width: 270px;
  overflow: hidden;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-office-img:hover {
  opacity: 1;
}

.footer-office-img img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(241, 239, 231, 0.6);
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--footer-light);
}

/* Footer columns */
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 239, 231, 0.35);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(241, 239, 231, 0.7);
  padding: 5px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-nav-link:hover {
  color: var(--footer-light);
  padding-left: 4px;
}

/* Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  font-size: 13px;
  font-weight: 400;
  color: var(--hours-text);
  white-space: nowrap;
}

.hours-time {
  font-size: 13px;
  font-weight: 500;
  color: rgba(241, 239, 231, 0.75);
  white-space: nowrap;
}

.hours-time--closed {
  color: rgba(241, 239, 231, 0.3);
  font-weight: 400;
}

/* Contact */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-link {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(241, 239, 231, 0.75);
  line-height: 1.5;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--footer-light);
}

/* Footer bottom bar */
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 12px;
  color: rgba(241, 239, 231, 0.3);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal-link {
  font-size: 12px;
  color: rgba(241, 239, 231, 0.35);
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: rgba(241, 239, 231, 0.7);
}

.footer-sep {
  font-size: 12px;
  color: rgba(241, 239, 231, 0.2);
}

/* ══════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ══════════════════════════════════════════════════
   SHARED UTILITIES
   ══════════════════════════════════════════════════ */
.section-eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 13px;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════ */
.services-section {
  background: var(--cream);
  padding: 96px 0 100px;
}

.services-inner {
  min-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
  width: 90%;
}

.services-left {
  display: flex;
  flex-direction: column;
}
.services-left .section-eyebrow {
  display: flex;
  color: #455243;
  margin-bottom: 14px;
  align-items: center;
  /* justify-content: center; */
  gap: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

.services-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.services-title em {
  font-style: italic;
  font-weight: 400;
}

.services-title-accent {
  color: var(--accent);
  font-style: normal;
  margin-left: 85px;
}

.services-img-wrap {
  width: 100%;
  max-width: 450px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.services-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.services-img-wrap:hover img {
  transform: scale(1.04);
}

.services-caption {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
  max-width: 280px;
}

/* Service list */
.services-right {
  display: flex;
  flex-direction: column;
  padding-top: 52px;
}

.services-list {
  margin-bottom: 32px;
}

.services-list-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.services-list-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: #1a1a1a;
  transition: color 0.2s, padding-left 0.2s;
}

.services-link svg {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
  color: var(--accent);
  flex-shrink: 0;
}

.services-link:hover {
  color: var(--accent);
  padding-left: 6px;
}

.services-link:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.btn-services-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 13px 28px;
  background: #1a1a1a;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  text-align: center;
  align-self: center;
  justify-content: center;
}

.btn-services-all:hover {
  background: #2e2e2e;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   YOUR VISIT SECTION
   ══════════════════════════════════════════════════ */
.visit-section {
  background-color: var(--03, #E4E2D9);
  padding: 96px 0 120px;
}

.visit-inner {
  min-width: var(--container);
  width: 90%;
  margin: 0 auto;
}

.visit-header {
  text-align: center;
  margin-bottom: 52px;
}
.visit-header .section-eyebrow {
  color: #121212;
  font-size: 13px;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-weight: 400;
}

.visit-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  font-style: italic;
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 16px;
}

.visit-subtitle {
  font-size: 14.5px;
  color: #3E3E3E;
  line-height: 1.6;
}

/* Cards */
.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.visit-card {
  background: var(--04, #F1EFE7);
  padding: 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.visit-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.visit-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  margin-bottom: 4px;
}

.visit-card-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  color: #121212;
}

.visit-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--Black, #121212);
  line-height: 1.6;
  flex: 1;
  align-self: stretch;
}

.visit-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.visit-contact-list li {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--Black, #121212);
  line-height: 1.4;
}

.visit-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 11px 20px;
  background: #1a1a1a;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.visit-card-link:hover {
  background: #2e2e2e;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   DOCTOR SECTION
   ══════════════════════════════════════════════════ */
.doctor-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--cream);
}

.doctor-img-col {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.doctor-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.doctor-section:hover .doctor-photo {
  transform: scale(1.03);
}

.doctor-content-col {
  padding: 72px clamp(32px, 5vw, 80px) 72px clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.doctor-content-col .section-eyebrow {
  color: #121212;
  font-size: 13px;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
  font-weight: 400;
}

.doctor-name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 32px;
}

.doctor-name em {
  font-style: italic;
}

.doctor-bio,
.doctor-bio-2 {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  max-width: 500px;
}

.doctor-quote {
  border-left: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0;
}

.doctor-quote-mark {
  flex-shrink: 0;
  margin-top: 2px;
}

.doctor-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: #1a1a1a;
  line-height: 1.4;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 13px 28px;
  background: #1a1a1a;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-top: 32px;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  justify-content: center;
}

.btn-dark:hover {
  background: #2e2e2e;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   CREDENTIALS BAR
   ══════════════════════════════════════════════════ */
.credentials-bar {
  background: var(--01, #455243);
  padding: 28px var(--px);
}

.credentials-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  max-width: 180px;
}

.credential-abbr {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: rgba(241, 239, 231, 0.7);
  letter-spacing: 0.06em;
}

.credential-name {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241, 239, 231, 0.35);
  line-height: 1.4;
}

.credential-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════════════════════════
   REVIEWS SECTION
   ══════════════════════════════════════════════════ */
.reviews-section {
  background: var(--cream);
  padding: 100px 0 112px;
}

.reviews-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}

.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}

.reviews-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.reviews-score {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  display: flex;
  gap: 5px;
  align-items: inherit;
  align-self: center;
}

.reviews-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: #1a1a1a;
}

.reviews-title em {
  font-style: italic;
}

.reviews-title-accent {
  color: var(--accent);
  font-style: normal;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 52px;
}

.review-card {
  padding: 28px 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-date {
  font-size: 11.5px;
  color: #aaa;
}

.review-text {
  font-size: 16px;
  text-overflow: ellipsis;
  color: #121212;
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.review-avatar--k {
  background: #6b7c5e;
}

.review-avatar--s {
  background: #7c6b8c;
}

.review-avatar--l {
  background: #8c7c5e;
}

.review-name {
  font-size: 16px;
  font-weight: 400;
  color: #121212;
}

/* Reviews CTA */
.reviews-cta {
  display: flex;
  justify-content: center;
}

.btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #1a1a1a;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-reviews:hover {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn-reviews svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --header-h: 64px;
  }
  .nav-desktop {
    display: none;
  }
  .header-phone {
    display: none;
  }
  .btn-book {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  /* Services */
  .services-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-right {
    padding-top: 0;
  }
  .services-img-wrap {
    max-width: 100%;
  }
  .services-img-wrap img {
    height: 280px;
  }
  /* Visit */
  .visit-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* Doctor */
  .doctor-section {
    grid-template-columns: 1fr;
  }
  .doctor-img-col {
    min-height: 420px;
    max-height: 480px;
  }
  .doctor-content-col {
    padding: 56px var(--px);
  }
  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-brand {
    grid-column: 1/-1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
  }
}
/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet landscape 768–1024
   ══════════════════════════════════════════════════ */
@media (min-width: 640px) and (max-width: 1024px) {
  /* Services: keep 2-col layout for list */
  .services-inner {
    grid-template-columns: 1fr 1fr;
  }
  .services-img-wrap {
    max-width: 360px;
  }
  /* Visit cards: 2+1 layout on tablet */
  .visit-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .visit-card:last-child {
    grid-column: 1/-1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }
  /* Reviews: 2-col on tablet */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-card:last-child {
    grid-column: 1/-1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }
  /* Doctor: show side by side on tablet landscape */
  .doctor-section {
    grid-template-columns: 1fr 1fr;
  }
  .doctor-img-col {
    min-height: 520px;
    max-height: none;
  }
}
/* ══════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 640px
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --header-h: 60px;
  }
  .logo-sub {
    display: none;
  }
  .header-inner {
    gap: 0;
  }
  .header-inner .logo {
    width: 70%;
  }
  .banner-actions {
    flex-direction: column;
    gap: 10px;
  }
  .btn-banner-primary,
  .btn-banner-secondary {
    width: 100%;
    justify-content: center;
  }
  /* Services */
  .services-section {
    padding: 64px 0 72px;
  }
  .services-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-right {
    padding-top: 0;
  }
  .services-img-wrap img {
    height: 220px;
  }
  .services-list-item .services-link {
    font-size: 18px;
  }
  .btn-services-all {
    width: 100%;
    justify-content: center;
  }
  /* Visit */
  .visit-section {
    padding: 64px 0 72px;
  }
  .visit-cards {
    grid-template-columns: 1fr;
  }
  .visit-card-link {
    width: 100%;
    justify-content: center;
  }
  /* Doctor */
  .doctor-section {
    grid-template-columns: 1fr;
  }
  .doctor-img-col {
    min-height: 360px;
    max-height: 400px;
  }
  .doctor-content-col {
    padding: 48px var(--px);
  }
  .btn-dark {
    width: 100%;
    justify-content: center;
  }
  /* Credentials */
  .credentials-inner {
    gap: 24px;
  }
  .credential-abbr {
    font-size: 18px;
  }
  /* Reviews */
  .reviews-section {
    padding: 64px 0 80px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .btn-reviews {
    width: 100%;
    justify-content: center;
  }
  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px var(--px) 40px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 24px;
  }
  .footer-office-img {
    width: 100%;
  }
  .footer-office-img img {
    height: 180px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-hours-col,
  .footer-contact-col,
  .footer-nav-col {
    width: 100%;
  }
  .hours-item {
    gap: 8px;
  }
}
/* ══════════════════════════════════════════════════
   RESPONSIVE — Very small ≤ 380px
   ══════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .banner-title {
    font-size: 38px;
  }
  .banner-eyebrow {
    font-size: 26px;
  }
  .logo-name {
    font-size: 11.5px;
  }
  .credentials-inner {
    flex-direction: column;
    gap: 16px;
  }
  .credential-divider {
    width: 40px;
    height: 1px;
  }
}
/* ══════════════════════════════════════════════════
   MOBILE MENU — min-height fix
   ══════════════════════════════════════════════════ */
.mobile-menu.open {
  min-height: -moz-min-content;
  min-height: min-content;
}

/* ══════════════════════════════════════════════════
   SHARED — active nav states
   ══════════════════════════════════════════════════ */
.nav-link--active {
  color: var(--accent) !important;
}

.mobile-nav-link--active {
  color: var(--accent) !important;
}

.footer-nav-link--active {
  color: var(--footer-light) !important;
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE — HERO
   ══════════════════════════════════════════════════ */
.about-hero {
  background: var(--cream);
}

.about-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: stretch;
  min-height: calc(100svh - var(--header-h));
}

/* Photo column — flush left edge, no horizontal padding */
.about-hero-img-col {
  position: relative;
  overflow: hidden;
}

.about-hero-img-wrap {
  position: sticky;
  top: var(--header-h);
  height: calc(100svh - var(--header-h));
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.about-hero-img-wrap:hover .about-hero-img {
  transform: scale(1.03);
}

/* Content column */
.about-hero-content {
  padding: clamp(48px, 6vw, 88px) clamp(36px, 5vw, 80px) clamp(64px, 6vw, 96px) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.about-hero-name {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.about-hero-name em {
  font-style: italic;
  font-weight: 400;
}

.about-hero-bio {
  font-size: clamp(13.5px, 1.1vw, 15px);
  color: #555;
  line-height: 1.78;
  max-width: 540px;
}

.about-hero-pullquote {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.about-hero-pullquote span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  color: #1a1a1a;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE — COMMITMENT / EDUCATION
   ══════════════════════════════════════════════════ */
.about-commitment {
  background: #E4E2D9;
  padding: 96px 0 104px;
}

.about-commitment-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px 80px;
  align-items: start;
}

.about-commitment-left {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.about-commitment-left .section-eyebrow {
  color: #455243;
  font-size: 13px;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
  font-weight: 400;
}

.about-commitment-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.12;
  margin-top: 14px;
}

.about-commitment-accent {
  color: var(--accent);
  font-style: normal;
}

.about-commitment-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 48px;
}

.about-commitment-body {
  font-size: clamp(13.5px, 1.1vw, 15px);
  color: #555;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE — VISIT DARK VARIANT
   ══════════════════════════════════════════════════ */
.visit-section--dark {
  background: #455243;
}
.visit-section--dark .visit-inner .visit-header .section-eyebrow {
  color: #F1EFE7;
  font-size: 13px;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-weight: 400;
}

.section-eyebrow--light {
  color: rgba(241, 239, 231, 0.45);
}

.visit-title--light {
  color: var(--white);
}

.visit-subtitle--light {
  color: #F1EFE7;
}

.visit-card--dark {
  background: #F1EFE7;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visit-card--dark:hover {
  background: #F1EFE7;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.visit-card--dark .visit-card-icon {
  color: rgba(241, 239, 231, 0.55);
}

.visit-card--dark .visit-card-title {
  color: var(--white);
}

.visit-card--dark .visit-card-desc {
  color: rgba(241, 239, 231, 0.65);
}

.visit-card--dark .visit-contact-list li {
  color: rgba(241, 239, 231, 0.7);
}

.visit-card-link--dark {
  background: #1a1a1a;
  color: var(--white);
}

.visit-card-link--dark:hover {
  background: #111;
}

/* ══════════════════════════════════════════════════
   ABOUT — RESPONSIVE ≤ 1024px
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .about-hero-img-wrap {
    position: relative;
    top: auto;
    height: 560px;
  }
  .about-commitment-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-commitment-left {
    position: static;
  }
  .about-commitment-right {
    padding-top: 0;
  }
}
/* ══════════════════════════════════════════════════
   ABOUT — RESPONSIVE ≤ 768px  (tablet portrait)
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }
  .about-hero-img-wrap {
    height: 420px;
  }
  .about-hero-content {
    padding: 40px var(--px) 56px;
    gap: 20px;
  }
  .about-hero-pullquote span {
    white-space: normal;
  }
}
/* ══════════════════════════════════════════════════
   ABOUT — RESPONSIVE ≤ 640px (mobile)
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .about-hero-img-wrap {
    height: 340px;
  }
  .about-commitment {
    padding: 64px 0 72px;
  }
  .about-commitment-inner {
    gap: 24px;
  }
  .about-commitment-right {
    gap: 20px;
  }
  .about-hero-pullquote {
    flex-wrap: wrap;
    gap: 6px;
  }
  .about-hero-pullquote svg:last-child {
    display: none;
  }
}
/* ══════════════════════════════════════════════════
   SERVICES LISTING PAGE — HERO
   ══════════════════════════════════════════════════ */
.svc-hero {
  position: relative;
  min-height: clamp(440px, 28vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

.svc-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 35%;
     object-position: center 35%;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.2) 100%);
}

.svc-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--px) clamp(32px, 4vw, 56px);
}
.svc-hero-content .section-eyebrow {
  color: #F1EFE7;
  font-size: 13px;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
  font-weight: 400;
}

.svc-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.svc-hero-title em {
  font-style: italic;
  font-weight: 400;
  display: block;
}

.svc-hero-sub {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 480px;
}

/* ══════════════════════════════════════════════════
   SERVICES LISTING PAGE — GRID
   ══════════════════════════════════════════════════ */
.svc-grid-section {
  background: var(--cream);
  padding: 56px 0 96px;
}

.svc-grid-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.svc-card {
  padding: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Alternate padding: odd cards get right padding, even get left */
.svc-card:nth-child(odd) {
  padding-right: clamp(16px, 1vw, 48px);
}

.svc-card:nth-child(even) {
  padding-left: clamp(16px, 1vw, 48px);
}

/* Top padding for all cards except first two */
.svc-card:nth-child(n+3) {
  padding-top: 40px;
}

/* Remove bottom border from last two */
.svc-card:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0;
}

.svc-card-img-link {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16/10;
  max-height: 300px;
}

.svc-card-img-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.svc-card-img-link:hover img {
  transform: scale(1.04);
}

.svc-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.svc-card-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.1;
}

.svc-card-title em {
  font-style: italic;
}

.svc-card-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 20px;
  background: transparent;
  color: #121212;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  width: 100%;
  border-top: 1px solid #E4E2D9;
  border-bottom: 1px solid #E4E2D9;
}

.svc-card-link:hover {
  background: transparent;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   SERVICE DETAIL PAGE — HERO
   ══════════════════════════════════════════════════ */
.svc-detail-hero {
  position: relative;
  min-height: clamp(440px, 30vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}

.svc-detail-hero-bg {
  position: absolute;
  inset: 0;
}

.svc-detail-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
  filter: brightness(0.55);
}

.svc-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.15) 100%);
}

.svc-detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--px) clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  width: -moz-fit-content;
  width: fit-content;
}

.svc-detail-back:hover {
  color: var(--white);
}

.svc-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.svc-detail-title em {
  font-style: italic;
  font-weight: 400;
  display: block;
}

.svc-detail-sub {
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 440px;
}

/* ══════════════════════════════════════════════════
   SERVICE DETAIL PAGE — BODY
   ══════════════════════════════════════════════════ */
.svc-detail-body {
  background: var(--cream);
  padding: 72px 0 80px;
}

.svc-detail-body-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

/* Left */
.svc-detail-left {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.svc-detail-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-detail-h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.12;
}

.svc-detail-h2 em {
  font-style: italic;
}

.svc-detail-h2-accent {
  color: var(--accent);
}

.svc-detail-h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 4px;
}

.svc-detail-text {
  font-size: 14px;
  color: #555;
  line-height: 1.78;
}

/* Solutions */
.svc-detail-solutions {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.svc-detail-solutions-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.15;
}

.svc-detail-solutions-title em {
  font-style: italic;
}

.svc-solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.svc-solution-item {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-solution-item:nth-child(even) {
  padding-left: 24px;
  padding-right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.svc-solution-item:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0;
}

.svc-solution-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.svc-solution-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Sidebar */
.svc-detail-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.svc-sidebar-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.svc-sidebar-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.5s var(--ease-out);
}

.svc-detail-sidebar:hover .svc-sidebar-img img {
  transform: scale(1.04);
}

.svc-sidebar-cta {
  background: #121212;
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-sidebar-cta .section-eyebrow {
  color: rgba(241, 239, 231, 0.4);
}

.svc-sidebar-cta-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.svc-sidebar-cta-desc {
  font-size: 13px;
  color: rgba(241, 239, 231, 0.65);
  line-height: 1.6;
}

.svc-sidebar-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 13px 20px;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  justify-content: center;
}

.svc-sidebar-phone:hover {
  background: color-mix(in srgb, var(--accent), white 15%);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   SERVICE DETAIL PAGE — PROCESS
   ══════════════════════════════════════════════════ */
.svc-process {
  background: #E4E2D9;
  padding: 88px 0 100px;
}

.svc-process-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}

.svc-process-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}

.svc-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.svc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 12px;
}

.svc-step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: #121212;
  letter-spacing: 0.05em;
}

.svc-step-name {
  font-size: 22px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
}

.svc-step-desc {
  font-size: 16px;
  color: #3E3E3E;
  line-height: 1.55;
}

.svc-step-divider {
  flex-shrink: 0;
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  align-self: flex-start;
}

/* ══════════════════════════════════════════════════
   SERVICES PAGES — RESPONSIVE ≤ 1024px
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-detail-body-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-detail-sidebar {
    position: static;
    max-width: 520px;
  }
  .svc-process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .svc-step {
    flex: 0 0 calc(33.33% - 24px);
  }
  .svc-step-divider {
    display: none;
  }
}
/* ══════════════════════════════════════════════════
   SERVICES PAGES — RESPONSIVE ≤ 640px
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Listing grid: single column on mobile */
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    padding: 32px 0 !important;
    border-right: none !important;
  }
  .svc-card:first-child {
    padding-top: 0 !important;
  }
  .svc-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  /* Detail body */
  .svc-detail-body {
    padding: 48px 0 56px;
  }
  .svc-detail-left {
    gap: 40px;
  }
  .svc-detail-sidebar {
    max-width: 100%;
  }
  /* Solutions grid: single col */
  .svc-solutions-grid {
    grid-template-columns: 1fr;
  }
  .svc-solution-item {
    border-left: none !important;
    padding-left: 0 !important;
  }
  .svc-solution-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 28px;
  }
  .svc-solution-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  /* Process: vertical list */
  .svc-process {
    padding: 56px 0 72px;
  }
  .svc-process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .svc-step {
    flex: none;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .svc-step:last-child {
    border-bottom: none;
  }
  .svc-step-num {
    flex-shrink: 0;
    min-width: 28px;
    padding-top: 2px;
  }
  .svc-step-divider {
    display: none;
  }
  .svc-step-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
/* ══════════════════════════════════════════════════
   PATIENT INFO PAGES — SHARED HERO
   ══════════════════════════════════════════════════ */
.pi-hero {
  position: relative;
  min-height: clamp(440px, 28vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

.pi-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  filter: brightness(0.5);
}

.pi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.35) 60%, rgba(10, 10, 10, 0.1) 100%);
}

.pi-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--px) clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pi-hero-content .section-eyebrow {
  color: #fff;
}

.pi-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.pi-hero-title em {
  font-style: italic;
  font-weight: 400;
}

.pi-hero-sub {
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 520px;
}

/* ══════════════════════════════════════════════════
   PATIENT INFO PAGES — SHARED BODY LAYOUT
   ══════════════════════════════════════════════════ */
.pi-body {
  background: var(--cream);
  padding: 72px 0 96px;
}

.pi-body-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* Content */
.pi-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pi-text {
  font-size: 14.5px;
  color: #4a4a4a;
  line-height: 1.8;
}

.pi-subsection {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.pi-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.1;
}

.pi-h2 em {
  font-style: italic;
}

.pi-h2-accent {
  color: var(--accent);
}

/* Bullet list for insurance page */
.pi-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 4px;
  list-style: disc;
  padding-left: 20px;
}

.pi-bullet-list li {
  font-size: 14.5px;
  color: #4a4a4a;
  line-height: 1.7;
}

.pi-bullet-list li strong {
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  margin-bottom: 2px;
}

/* ══════════════════════════════════════════════════
   PATIENT INFO — SHARED SIDEBAR
   ══════════════════════════════════════════════════ */
.pi-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pi-sidebar-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.pi-sidebar-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.5s var(--ease-out);
}

.pi-sidebar:hover .pi-sidebar-img img {
  transform: scale(1.04);
}

.pi-sidebar-cta {
  background: #2c3527;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pi-sidebar-cta .section-eyebrow {
  color: rgba(241, 239, 231, 0.4);
}

.pi-sidebar-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.pi-sidebar-desc {
  font-size: 13px;
  color: rgba(241, 239, 231, 0.65);
  line-height: 1.6;
}

.pi-sidebar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 13px 20px;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.pi-sidebar-phone:hover {
  background: color-mix(in srgb, var(--accent), white 15%);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   PRIVACY & FORMS PAGE — DOCUMENT CARDS
   ══════════════════════════════════════════════════ */
.pi-doc-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.25s, transform 0.2s;
}

.pi-doc-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.pi-doc-icon {
  color: #888;
  margin-bottom: 4px;
}

.pi-doc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.pi-doc-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
}

.pi-doc-desc {
  font-size: 13px;
  color: #888;
}

.pi-doc-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 13px 20px;
  width: 100%;
  background: #1a1a1a;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}

.pi-doc-download:hover {
  background: #2e2e2e;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   PATIENT INFO PAGES — RESPONSIVE ≤ 1024px
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pi-body-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pi-sidebar {
    position: static;
    max-width: 520px;
  }
}
/* ══════════════════════════════════════════════════
   PATIENT INFO PAGES — RESPONSIVE ≤ 640px
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .pi-body {
    padding: 48px 0 64px;
  }
  .pi-body-inner {
    gap: 36px;
  }
  .pi-sidebar {
    max-width: 100%;
  }
  .pi-subsection {
    padding-top: 8px;
  }
  .pi-bullet-list {
    padding-left: 16px;
  }
}
/* ══════════════════════════════════════════════════
   CONTACT PAGE — HERO
   ══════════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  min-height: clamp(440px, 28vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 55%;
     object-position: center 55%;
  filter: brightness(0.48);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.28) 60%, rgba(10, 10, 10, 0.05) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.contact-hero-title em {
  font-style: italic;
}

.contact-hero-sub {
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 440px;
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE — BODY
   ══════════════════════════════════════════════════ */
.contact-body {
  background: var(--cream);
  padding: 72px 0 80px;
}

.contact-body-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* Left info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-block-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* Contact detail list */
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #444;
}

.contact-detail-item svg {
  color: #777;
  flex-shrink: 0;
}

.contact-detail-link {
  color: #444;
  transition: color 0.2s;
}

.contact-detail-link:hover {
  color: #1a1a1a;
}

/* Hours list */
.contact-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  gap: 16px;
}

.contact-hours-item:last-child {
  border-bottom: none;
}

.contact-hours-day {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  min-width: 100px;
}

.contact-hours-time {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.contact-hours-time--closed {
  color: #aaa;
  font-weight: 400;
}

/* Social row */
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 4px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
}

.contact-social-link:hover {
  color: #1a1a1a;
}

/* Right CTA column */
.contact-cta-col {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-cta-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.contact-cta-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.5s var(--ease-out);
}

.contact-cta-col:hover .contact-cta-img img {
  transform: scale(1.04);
}

.contact-cta-box {
  background: #2c3527;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-cta-box .section-eyebrow {
  color: rgba(241, 239, 231, 0.4);
}

.contact-cta-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.contact-cta-desc {
  font-size: 13px;
  color: rgba(241, 239, 231, 0.65);
  line-height: 1.6;
}

.contact-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 13px 20px;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.contact-cta-phone:hover {
  background: color-mix(in srgb, var(--accent), white 15%);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE — MAP
   ══════════════════════════════════════════════════ */
.contact-map-section {
  position: relative;
  background: #111;
}

/* Address bar sits above the map */
.contact-map-bar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 12px 20px;
  max-width: calc(var(--container) - 2 * var(--px));
  width: calc(100% - 2 * var(--px));
  box-sizing: border-box;
}

.contact-map-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(241, 239, 231, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-map-address svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-map-direction-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent);
  color: #121212;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.contact-map-direction-btn:hover {
  background: color-mix(in srgb, var(--accent), white 15%);
  transform: translateY(-1px);
}

.contact-map {
  width: 100%;
  height: 440px;
}

/* Override Leaflet tile filter for true dark feel */
.contact-map .leaflet-tile {
  filter: brightness(0.9) contrast(1.05);
}

/* Custom popup styling */
.map-popup .leaflet-popup-content-wrapper {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0;
}

.map-popup .leaflet-popup-content {
  margin: 12px 16px;
}

.map-popup .leaflet-popup-tip {
  background: var(--white);
}

/* Remove Leaflet default blue outline */
.leaflet-container a {
  color: #555;
}

.leaflet-control-zoom a {
  background: #1e1e1e !important;
  color: rgba(241, 239, 231, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.leaflet-control-zoom a:hover {
  background: #2e2e2e !important;
  color: var(--white) !important;
}

.leaflet-bar {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.leaflet-control-attribution {
  background: rgba(18, 18, 18, 0.75) !important;
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 10px !important;
}

.leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE ≤ 1024px
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-cta-col {
    position: static;
    max-width: 520px;
  }
  .contact-map {
    height: 380px;
  }
}
/* ══════════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE ≤ 640px
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .contact-body {
    padding: 48px 0 64px;
  }
  .contact-info-col {
    gap: 32px;
  }
  .contact-cta-col {
    max-width: 100%;
  }
  .contact-map {
    height: 320px;
  }
  .contact-map-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    top: 12px;
  }
  .contact-map-direction-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-social-row {
    gap: 20px;
  }
}
/* ══════════════════════════════════════════════════
   GALLERY PAGE — HERO
   ══════════════════════════════════════════════════ */
.gal-hero {
  position: relative;
  min-height: clamp(440px, 28vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

.gal-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  filter: brightness(0.48);
}

.gal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.25) 70%);
}

.gal-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--px) clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gal-hero-content .section-eyebrow {
  color: #fff;
}

.gal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.gal-hero-title em {
  font-style: italic;
  font-weight: 400;
  display: block;
}

.gal-hero-sub {
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 440px;
}

/* ══════════════════════════════════════════════════
   GALLERY PAGE — FILTER BAR
   ══════════════════════════════════════════════════ */
.gal-filter-bar {
  background: #fff;
  padding: 32px 0 0;
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.gal-filter-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  padding-bottom: 0;
}

.gal-filter-btn {
  padding: 9px 18px 11px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #777;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.gal-filter-btn:hover {
  color: #1a1a1a;
}

.gal-filter-btn.active {
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}

/* ══════════════════════════════════════════════════
   GALLERY PAGE — GRID
   ══════════════════════════════════════════════════ */
.gal-section {
  background: #fff;
  padding: 48px 0 80px;
}

.gal-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Wide case (full width, 1 or 2 compare images) */
.gal-case {
  background: #E4E2D9;
  overflow: hidden;
  padding: 28px 28px 28px;
}

/* Row of 2 cases */
.gal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gal-case-header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gal-case-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.15;
}

.gal-case-title em {
  font-style: italic;
}

.gal-case-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  max-width: 560px;
}

/* Container for 2 side-by-side compare sliders */
.gal-case-images--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

/* Single compare fills the card width */
/* ══════════════════════════════════════════════════
   BEFORE / AFTER COMPARATOR
   ══════════════════════════════════════════════════ */
.gal-compare {
  position: relative;
  overflow: hidden;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  opacity: 0; /* entrance: GSAP fades in */
}

/* Track fills the compare container */
.gc-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
}

/* After layer — bottom, full width */
.gc-after,
.gc-before {
  position: absolute;
  inset: 0;
  background-color: #121212;
}

.gc-after img,
.gc-before img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  pointer-events: none;
}

/* Before layer clips from right — GSAP animates clipPath */
.gc-before {
  clip-path: inset(0 50% 0 0);
}

/* Labels */
.gc-label {
  position: absolute;
  bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  padding: 4px 9px;
  border-radius: 20px;
  pointer-events: none;
}

.gc-label--before {
  left: 12px;
}

.gc-label--after {
  right: 12px;
}

/* Divider line */
.gc-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* Drag handle */
.gc-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(228, 226, 217, 0.768627451);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  pointer-events: all;
  color: #444;
  transition: transform 0.15s, box-shadow 0.15s;
}

.gc-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(182, 189, 140, 0.6);
}

.gc-handle:active {
  cursor: grabbing;
}

.gc-handle-icon {
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   GALLERY — LOAD MORE
   ══════════════════════════════════════════════════ */
.gal-load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 16px var(--px) 0;
}

.gal-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: #1a1a1a;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.gal-load-more:hover {
  background: #2e2e2e;
  transform: translateY(-1px);
}

.gal-load-more:disabled {
  cursor: default;
}

/* ══════════════════════════════════════════════════
   GALLERY — RESPONSIVE ≤ 1024px
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gal-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gal-case-images--two {
    grid-template-columns: 1fr;
  }
  .gc-track {
    aspect-ratio: 16/10;
  }
}
/* ══════════════════════════════════════════════════
   GALLERY — RESPONSIVE ≤ 640px
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .gal-section {
    padding: 32px 0 56px;
  }
  .gal-inner {
    gap: 20px;
  }
  .gal-case {
    padding: 20px 16px 0;
  }
  .gal-case > .gal-compare {
    margin: 0 -16px;
  }
  .gal-case-images--two {
    margin: 0 -16px;
    padding: 0 16px 16px;
    gap: 8px;
  }
  .gal-filter-btn {
    padding: 8px 12px 10px;
    font-size: 11px;
  }
  .gc-track {
    aspect-ratio: 4/3;
  }
  .gc-handle {
    width: 38px;
    height: 38px;
  }
}
/* ══════════════════════════════════════════════════
   SERVICES CAROUSEL SECTION
   ══════════════════════════════════════════════════ */
.svc-carousel-section {
  background: var(--cream);
  padding: 80px 0 72px;
}

/* Header row: heading left, "View all" button right */
.svc-carousel-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.svc-carousel-header .section-eyebrow {
  display: flex;
  color: #455243;
  margin-bottom: 14px;
  align-items: center;
  /* justify-content: center; */
  gap: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

.svc-carousel-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-carousel-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.svc-carousel-title em {
  font-style: italic;
  font-weight: 400;
}

.svc-carousel-accent {
  color: var(--accent);
  font-style: normal;
}

.svc-carousel-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 13px 28px;
  background: #1a1a1a;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-sans);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 4px; /* optical align with baseline */
}

.svc-carousel-view-all:hover {
  background: #2e2e2e;
  transform: translateY(-1px);
}

/* Viewport — clips overflowing cards, left-aligned flush */
.svc-carousel-viewport {
  overflow: hidden;
  /* Left padding = container indent so first card aligns to content */
  padding-left: var(--px);
  /* Right side intentionally bleeds so partial card is visible */
  cursor: grab;
}

.svc-carousel-viewport:active {
  cursor: grabbing;
}

/* Track — flex row of cards, will be translated by JS */
.svc-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

/* Individual slide card */
.svc-slide {
  flex: 0 0 clamp(260px, 28vw, 360px);
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.svc-slide-img {
  width: 100%;
  aspect-ratio: 3/2.6;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.svc-slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-slide:hover .svc-slide-img img {
  transform: scale(1.05);
}

.svc-slide-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.svc-slide-title em {
  font-style: italic;
}

.svc-slide:hover .svc-slide-title {
  color: var(--accent);
}

.svc-slide-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Footer: progress bar + arrows */
.svc-carousel-footer {
  max-width: var(--container);
  margin: 36px auto 0;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Progress bar track */
.svc-carousel-progress {
  position: relative;
  flex: 1;
  max-width: 340px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

/* Animated fill bar */
.svc-carousel-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #1a1a1a;
  border-radius: 2px;
  width: 50%; /* updated by JS */
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Arrow buttons */
.svc-carousel-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.svc-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #1a1a1a;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.svc-arrow:hover {
  background: rgba(0, 0, 0, 0.06);
}

.svc-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.svc-arrow:disabled:hover {
  background: transparent;
}

/* ── Carousel responsive ── */
@media (max-width: 1024px) {
  .svc-carousel-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .svc-carousel-view-all {
    margin-bottom: 0;
  }
  .svc-slide {
    flex: 0 0 clamp(240px, 42vw, 320px);
  }
}
@media (max-width: 640px) {
  .svc-carousel-section {
    padding: 56px 0 52px;
  }
  .svc-slide {
    flex: 0 0 80vw;
  }
  .svc-carousel-footer {
    gap: 16px;
  }
}
/* ══════════════════════════════════════════════════
  DROPDOWN MENUS — dedicated style file
  Open/close is controlled ONLY by JS (.dd-open class)
  CSS hover is NOT used to open/close — prevents
  the gap-between-trigger-and-panel closing issue.
  ══════════════════════════════════════════════════ */
/* ── Shared wrapper ── */
.nav-dropdown {
  position: relative;
}

/* Chevron rotates when open */
.nav-dropdown.dd-open .nav-link--arrow svg {
  transform: rotate(180deg);
}

.nav-link--arrow svg {
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base panel — hidden by default ── */
.dd-panel {
  position: absolute;
  top: calc(100% + 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.22s;
  background: #FFFFFF;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 2000;
  padding: 20px;
}

/* ── Open state (added by JS) ── */
.nav-dropdown.dd-open .dd-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0s;
}

/* ── Invisible bridge fills the gap between trigger and panel ──
   Prevents mouseleave firing when cursor travels into the panel */
.dd-panel::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 14px; /* covers the 10px gap + a little extra */
}

/* ══════════════════════════════════════════════════
   SERVICES DROPDOWN — 2-col list + photo panel
   ══════════════════════════════════════════════════ */
.dd-services {
  left: -8px;
  transform: translateY(-6px);
  width: 620px;
  display: grid;
  grid-template-columns: 1fr 220px;
}

.nav-dropdown.dd-open .dd-services {
  transform: translateY(0);
}

/* Left: list area */
.dd-services-list {
  padding: 0 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
}

.dd-services-item {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #121212;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.dd-services-item:hover {
  color: #B6BD8C;
  background: rgba(255, 255, 255, 0.05);
}

/* View all — spans full 2 cols */
.dd-services-all {
  grid-column: 1/-1;
  margin-right: 12px;
  margin-top: 12px;
  padding: 11px 20px;
  background: #1a1a18;
  color: rgba(241, 239, 231, 0.8);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  display: block;
}

.dd-services-all:hover {
  color: #B6BD8C;
}

/* Right: live photo panel */
.dd-services-photo {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 240px;
}

.dd-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.04);
}

.dd-photo-img.active {
  opacity: 1;
  transform: scale(1);
}

.dd-photo-img--default {
  opacity: 1;
  transform: scale(1);
}

.dd-photo-img--default.hidden {
  opacity: 0;
  transform: scale(1.04);
}

.dd-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

/* ══════════════════════════════════════════════════
   PATIENT INFO DROPDOWN — single-col list
   ══════════════════════════════════════════════════ */
.dd-patient {
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 240px;
  padding: 8px;
}

.nav-dropdown.dd-open .dd-patient {
  transform: translateX(-50%) translateY(0);
}

.dd-patient-item {
  display: block;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: #121212;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}

.dd-patient-item:last-child {
  border-bottom: none;
}

.dd-patient-item:hover {
  color: #B6BD8C;
  background: rgba(255, 255, 255, 0.06);
}/*# sourceMappingURL=style.css.map */