/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  /* Color Palette — Healthcare trust + family warmth */
  --color-primary:        #1A6B78;
  --color-primary-light:  #238E9E;
  --color-primary-dark:   #12525E;
  --color-secondary:      #C5853F;
  --color-secondary-light:#D69C56;
  --color-secondary-dark: #A66D2D;

  /* Neutrals */
  --color-bg:             #FAFAF7;
  --color-bg-alt:         #F0EDE5;
  --color-bg-dark:        #1A2332;
  --color-text:           #1F2937;
  --color-text-light:     #4B5563;
  --color-text-muted:     #9CA3AF;
  --color-text-on-dark:   #F0EDE5;
  --color-border:         #E2DDD4;
  --color-border-light:   #EDEBE6;
  --color-star:           #EAAA00;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.10);

  /* Type Scale (1.25 ratio) */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   1.875rem;
  --text-3xl:   2.25rem;
  --text-4xl:   3rem;
  --text-5xl:   3.75rem;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Layout */
  --max-width:  1200px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-light); }
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text {
  font-family: 'Lora', serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
}
.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.header-nav {
  display: none;
  list-style: none;
  gap: var(--space-xl);
}
.header-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--color-primary); }
.header-cta {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover { background: var(--color-primary-light); color: white; }
.header-cta svg { width: 16px; height: 16px; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 99;
  padding: var(--space-xl) var(--space-lg);
}
.mobile-nav.active { display: block; }
.mobile-nav-list {
  list-style: none;
}
.mobile-nav-list li {
  border-bottom: 1px solid var(--color-border-light);
}
.mobile-nav-list a {
  display: block;
  padding: var(--space-lg) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
}
.mobile-nav-cta {
  display: block;
  text-align: center;
  margin-top: var(--space-xl);
  background: var(--color-primary);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--text-md);
  font-weight: 600;
}
.mobile-nav-cta:hover { color: white; background: var(--color-primary-light); }

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* ================================================================
   MOBILE CTA BAR
   ================================================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-primary);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}
.mobile-cta-bar a {
  color: white;
  font-weight: 600;
  font-size: var(--text-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.mobile-cta-bar a:hover { color: white; }
.mobile-cta-bar svg { width: 18px; height: 18px; }
@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
}

/* Bottom padding for mobile CTA bar */
@media (max-width: 767px) {
  body { padding-bottom: 56px; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #12525E 0%, #1A6B78 40%, #1A2332 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-4xl) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: var(--space-xl);
}
.hero-badge span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.hero-badge .star { color: var(--color-star); }
.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: white;
  max-width: 640px;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.hero h1 .highlight {
  color: var(--color-secondary-light);
}
.hero-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-secondary);
  color: white;
  font-size: var(--text-md);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s;
  text-decoration: none;
}
.hero-cta:hover { background: var(--color-secondary-light); color: white; }
.hero-cta svg { width: 18px; height: 18px; }

@media (min-width: 768px) {
  .hero { min-height: 600px; }
  .hero h1 { font-size: var(--text-4xl); }
  .hero-content { padding: var(--space-4xl) var(--space-lg); }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: var(--text-5xl); }
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-label {
  font-family: 'Lora', serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}
.trust-sublabel {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: 2px;
}
@media (min-width: 768px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================================
   SERVICES PREVIEW (Home)
   ================================================================ */
.services-preview {
  padding: var(--space-4xl) 0;
}
.services-preview .section-header,
.reviews-highlight .section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.services-preview .section-header h2,
.reviews-highlight .section-header h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}
.services-preview .section-header p {
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.service-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-card-body {
  padding: var(--space-xl);
}
.service-card h3 {
  font-family: 'Lora', serif;
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}
.service-card .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-md);
}
.section-cta {
  text-align: center;
}
.section-cta a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  transition: background 0.2s;
}
.section-cta a:hover { background: var(--color-primary-light); color: white; }
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-preview .section-header h2 { font-size: var(--text-3xl); }
}

/* ================================================================
   REVIEWS HIGHLIGHT (Home)
   ================================================================ */
.reviews-highlight {
  background: var(--color-bg-alt);
  padding: var(--space-4xl) 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
}
.review-stars {
  color: var(--color-star);
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}
.review-text {
  font-family: 'Lora', serif;
  font-size: var(--text-md);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.review-author-name {
  font-weight: 600;
  font-size: var(--text-sm);
}
.review-author-source {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-highlight .section-header h2 { font-size: var(--text-3xl); }
}

/* ================================================================
   ABOUT TEASER (Home)
   ================================================================ */
.about-teaser {
  padding: var(--space-4xl) 0;
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-teaser-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-teaser-content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}
.about-teaser-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.about-teaser-content .text-link {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .about-teaser-inner { grid-template-columns: 1fr 1fr; }
  .about-teaser-content h2 { font-size: var(--text-3xl); }
}

/* ================================================================
   CONTACT CTA BAND
   ================================================================ */
.contact-cta-band {
  background: var(--color-primary);
  padding: var(--space-3xl) 0;
  text-align: center;
}
.contact-cta-band h2 {
  font-size: var(--text-2xl);
  color: white;
  margin-bottom: var(--space-sm);
}
.contact-cta-band p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl);
}
.contact-cta-band .phone-number {
  font-family: 'Lora', serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: var(--space-lg);
}
.contact-cta-band .phone-number:hover { color: white; }
.contact-cta-band .cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-secondary);
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s;
}
.contact-cta-band .cta-button:hover { background: var(--color-secondary-light); color: white; }
@media (min-width: 768px) {
  .contact-cta-band h2 { font-size: var(--text-3xl); }
  .contact-cta-band .phone-number { font-size: var(--text-4xl); }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0 var(--space-xl);
  color: var(--color-text-on-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-lg);
}
.footer-col p, .footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--color-secondary-light); }
.footer-col ul {
  list-style: none;
}
.footer-col ul li a {
  display: block;
  padding: 2px 0;
}
.footer-logo {
  font-family: 'Lora', serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ================================================================
   INTERIOR PAGE HERO
   ================================================================ */
.page-hero {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}
.page-hero p {
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-hero h1 { font-size: var(--text-4xl); }
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-full {
  padding: var(--space-4xl) 0;
}
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.service-full-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-full-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-full-card-body {
  padding: var(--space-xl);
}
.service-full-card h3 {
  font-family: 'Lora', serif;
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}
.service-full-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}
@media (min-width: 640px) {
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-full-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Approach section */
.approach-section {
  background: var(--color-bg-alt);
  padding: var(--space-4xl) 0;
}
.approach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.approach-content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}
.approach-content p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.approach-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.approach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .approach-inner { grid-template-columns: 1fr 1fr; }
  .approach-content h2 { font-size: var(--text-3xl); }
}

/* Insurance CTA */
.insurance-cta {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  margin-top: var(--space-3xl);
}
.insurance-cta h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}
.insurance-cta p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}
.insurance-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  transition: background 0.2s;
}
.insurance-cta .cta-link:hover { background: var(--color-primary-light); color: white; }
.insurance-cta .cta-link svg { width: 16px; height: 16px; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-story {
  padding: var(--space-4xl) 0;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-story-content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}
.about-story-content .lead {
  font-size: var(--text-md);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.about-story-content p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .about-story-inner { grid-template-columns: 1fr 1fr; }
  .about-story-content h2 { font-size: var(--text-3xl); }
}

/* Doctor profiles */
.doctor-profiles {
  background: var(--color-bg-alt);
  padding: var(--space-4xl) 0;
}
.doctor-profiles .section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.doctor-profiles .section-header h2 {
  font-size: var(--text-2xl);
}
.profiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}
.profile-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.profile-card-top {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  flex-shrink: 0;
}
.profile-avatar--amber {
  background: var(--color-secondary);
}
.profile-info h3 {
  font-size: var(--text-xl);
  margin-bottom: 4px;
}
.profile-info .role {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 500;
}
.profile-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}
@media (min-width: 640px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Values section */
.values-section {
  padding: var(--space-4xl) 0;
}
.values-section .section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.values-section .section-header h2 {
  font-size: var(--text-2xl);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.value-item {
  text-align: center;
  padding: var(--space-xl);
}
.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,107,120,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
}
.value-icon svg { width: 28px; height: 28px; }
.value-item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}
.value-item p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Credentials strip */
.credentials-strip {
  background: var(--color-bg-alt);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
}
.credentials-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2xl);
}
.credential-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.credential-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.credential-badge-icon svg { width: 22px; height: 22px; }
.credential-badge-text {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: var(--text-md);
}
.credential-badge-sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ================================================================
   REVIEWS PAGE
   ================================================================ */
.rating-hero {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.rating-big-number {
  font-family: 'Lora', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}
.rating-stars-row {
  font-size: var(--text-2xl);
  color: var(--color-star);
  letter-spacing: 4px;
  margin: var(--space-md) 0;
}
.rating-count {
  font-size: var(--text-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}
.rating-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}
.rating-badge {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
}
.review-themes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.review-theme-tag {
  background: rgba(26,107,120,0.08);
  color: var(--color-primary);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: var(--text-sm);
  font-weight: 500;
}
.reviews-full-section {
  padding: var(--space-4xl) 0;
}
.reviews-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
@media (min-width: 640px) {
  .reviews-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-full-grid { grid-template-columns: repeat(3, 1fr); }
}
.reviews-disclaimer {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.reviews-disclaimer a { color: var(--color-primary); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section {
  padding: var(--space-4xl) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.contact-item {
  display: flex;
  gap: var(--space-lg);
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,107,120,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 24px; height: 24px; }
.contact-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.contact-phone {
  font-family: 'Lora', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
}
.contact-address {
  font-size: var(--text-md);
  color: var(--color-text);
  line-height: 1.6;
}
.contact-directions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-sm);
}
.contact-hours {
  font-size: var(--text-md);
  color: var(--color-text-light);
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 16/10;
  border: 1px solid var(--color-border);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.service-area {
  background: var(--color-bg-alt);
  padding: var(--space-2xl) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.service-area p {
  color: var(--color-text-light);
  font-size: var(--text-md);
}
.service-area strong { color: var(--color-text); }
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-phone { font-size: var(--text-3xl); }
}

/* ================================================================
   UTILITY
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
