/* ============================================================
   LIFESTREAM DENTAL & WELLNESS — Shared Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --ink: #0d0d0d;
  --cream: #f8f8f8;
  --cream-dark: #efefef;
  --gold: #888888;
  --gold-light: #b0b0b0;
  --forest: #111111;
  --forest-mid: #2a2a2a;
  --muted: #6b6b6b;
  --border: #d4d4d4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --nav-height: 76px;
  --section-pad: 100px 80px;
  --transition: 0.3s ease;
  --max-width: 1280px;
}

/* ============================================================
   CSS RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font: inherit;
}

/* ============================================================
   BASE TYPOGRAPHY
   ============================================================ */
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--muted); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(248, 248, 248, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}

.nav-logo-sub::before,
.nav-logo-sub::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--transition);
  white-space: nowrap;
}

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

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 32px 40px 40px;
  flex-direction: column;
  gap: 0;
}

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

.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

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

.mobile-menu .btn-primary {
  margin-top: 24px;
  text-align: center;
  width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: 2px solid var(--forest);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: #fff;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: 2px solid var(--ink);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  cursor: pointer;
}

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

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: 2px solid var(--cream);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  cursor: pointer;
}

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

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: 2px solid var(--gold);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  cursor: pointer;
}

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

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

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

.section {
  padding: var(--section-pad);
}

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

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

.section-forest {
  background: var(--forest);
  color: var(--cream);
}

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

.section-forest .section-title,
.section-ink .section-title {
  color: var(--cream);
}

.section-forest p,
.section-ink p {
  color: rgba(248, 248, 248, 0.75);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.page-hero-content .section-eyebrow {
  color: var(--gold-light);
}

.page-hero-content h1 {
  color: #fff;
  max-width: 700px;
  margin-bottom: 16px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 520px;
}

/* ============================================================
   BANNER STRIP
   ============================================================ */
.banner-strip {
  background: var(--forest);
  color: var(--cream);
  padding: 0;
}

.banner-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}

.banner-item:first-child { padding-left: 0; }
.banner-item:last-child { border-right: none; }

.banner-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
  overflow: hidden;
}

.photo-strip-item {
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--cream);
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 80px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-brand-sub::before,
.footer-brand-sub::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.footer-desc {
  color: rgba(248, 248, 248, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(248, 248, 248, 0.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(248, 248, 248, 0.65);
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 80px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(248, 248, 248, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(248, 248, 248, 0.4);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.service-main h2 {
  margin-bottom: 20px;
}

.service-main p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}

.service-main h3 {
  margin: 36px 0 16px;
  color: var(--forest);
}

.service-main ul.bullet-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.service-main ul.bullet-list li {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.65;
}

.service-sidebar {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sidebar-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.sidebar-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

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

.sidebar-services h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sidebar-services ul li {
  border-bottom: 1px solid var(--border);
}

.sidebar-services ul li a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 10px 0;
  transition: color var(--transition);
}

.sidebar-services ul li a:hover {
  color: var(--gold);
}

/* ============================================================
   FAQ ITEMS
   ============================================================ */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   CARDS & GRIDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
  display: block;
}

.service-card:hover {
  background: var(--cream-dark);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-card-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.why-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.why-card-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

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

.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px;
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

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

.review-source {
  font-size: 12px;
  color: var(--muted);
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 60px;
  margin-top: 48px;
}

.stat-item {}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Special cards */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.special-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
}

.special-card-img {
  height: 280px;
  overflow: hidden;
}

.special-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.special-card-content {
  padding: 36px 32px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.special-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1;
}

.special-expires {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.special-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.special-card-content p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Contact form */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

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

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.amenity-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.amenity-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.amenity-item p {
  font-size: 13px;
  color: var(--muted);
}

/* Wellness benefit grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.08);
}

.benefit-item {
  padding: 40px 32px;
  background: var(--forest);
  text-align: center;
}

.benefit-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 14px;
  color: rgba(248,248,248,0.6);
}

/* Wellness service cards */
.wellness-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.wellness-card {
  padding: 56px 44px;
  border-right: 1px solid var(--border);
}

.wellness-card:last-child {
  border-right: none;
}

.wellness-card-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.wellness-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--ink);
}

.wellness-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

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

.credential-item {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 32px;
}

.credential-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.credential-item p {
  font-size: 13px;
  color: var(--muted);
}

/* Split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-img {
  overflow: hidden;
}

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

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

/* Doctor section */
.doctor-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.doctor-img-wrap {
  position: relative;
}

.doctor-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
}

/* Large services categories */
.services-category {
  margin-bottom: 60px;
}

.services-category h2 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--forest);
}

.services-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.services-category-grid .service-card {
  border: none;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-category-grid .service-card:nth-child(4n) {
  border-right: none;
}

/* Map */
.map-container {
  width: 100%;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Patient info boxes */
.info-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.info-box h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.info-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.new-patient-special {
  background: var(--forest);
  color: var(--cream);
  padding: 48px;
  text-align: center;
  margin: 48px 0;
}

.new-patient-special .section-eyebrow {
  color: var(--gold-light);
}

.new-patient-special h2 {
  color: var(--cream);
  font-size: 3rem;
  margin-bottom: 8px;
}

.new-patient-special p {
  color: rgba(248,248,248,0.7);
  margin-bottom: 28px;
}

/* CTA section */
.cta-section {
  background: var(--forest);
  padding: var(--section-pad);
  text-align: center;
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(248,248,248,0.7);
  margin-bottom: 36px;
  font-size: 17px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px 40px;
  }

  .container { padding: 0 40px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11.5px; }

  .footer-main {
    padding: 60px 40px 40px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-divider { margin: 0 40px; }
  .footer-bottom { padding: 20px 40px; }

  .page-hero-content { padding: 0 40px; }

  .photo-strip { height: 240px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-category-grid { grid-template-columns: repeat(2, 1fr); }
  .services-category-grid .service-card:nth-child(4n) { border-right: 1px solid var(--border); }
  .services-category-grid .service-card:nth-child(2n) { border-right: none; }

  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .split-section { grid-template-columns: 1fr 1fr; }
  .split-content { padding: 60px 40px; }

  .doctor-section { gap: 48px; }
  .doctor-img-wrap img { height: 460px; }

  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .wellness-cards { grid-template-columns: 1fr; }
  .wellness-card { border-right: none; border-bottom: 1px solid var(--border); }

  .service-page-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

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

  .banner-strip-inner { padding: 0 40px; }
  .banner-item { padding: 16px 20px; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px 24px;
  }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-menu { padding: 24px 20px 32px; }

  .page-hero { height: 360px; }
  .page-hero-content { padding: 0 24px; }
  .page-hero-content h1 { font-size: 2rem; }

  .banner-strip-inner { padding: 0; flex-direction: column; }
  .banner-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 14px 24px; font-size: 13px; width: 100%; }

  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 360px; }

  .footer-main { padding: 48px 24px 32px; grid-template-columns: 1fr; gap: 32px; }
  .footer-divider { margin: 0 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 8px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-category-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .split-section { grid-template-columns: 1fr; }
  .split-img { height: 300px; }
  .split-content { padding: 48px 24px; }

  .doctor-section { grid-template-columns: 1fr; gap: 32px; }
  .doctor-img-wrap img { height: 380px; }

  .credentials-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  .stats-row { flex-wrap: wrap; gap: 32px; }

  .specials-grid { grid-template-columns: 1fr; }
  .special-card { grid-template-columns: 1fr; }
  .special-card-img { height: 220px; }

  .cta-buttons { flex-direction: column; align-items: center; }

  .map-container { height: 280px; }

  .service-page-layout { padding: 40px 24px; }
}
