/* ==========================================================================
   AGAKC Modern Theme — Main Stylesheet
   Author: Veda Media and Technology
   Version: 1.0.0
   ========================================================================== */

/* ── DESIGN TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --navy:        #0B2545;
  --navy-dark:   #071A33;
  --navy-mid:    #143468;
  --navy-light:  #1E4A8C;
  --gold:        #B8903A;
  --gold-light:  #D4AE68;
  --gold-pale:   #F5ECD8;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --light-gray:  #EEF1F7;
  --mid-gray:    #D4DAE8;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-light:  #6B7280;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;

  --shadow-sm:   0 2px 8px  rgba(11,37,69,0.08);
  --shadow-md:   0 6px 24px rgba(11,37,69,0.12);
  --shadow-lg:   0 16px 48px rgba(11,37,69,0.16);

  --nav-height:  120px; /* top bar 72px + links bar 48px */

  --transition:  0.22s ease;
}

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ── NAVIGATION ─────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--navy);
}

/* Top bar */
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

/* Logo */
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav-logo-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.25;
}

.nav-logo-text span {
  display: block;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
}

.nav-phone svg {
  opacity: 0.55;
  flex-shrink: 0;
}

.nav-phone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}

.nav-phone-number strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.nav-phone-number:hover strong {
  color: var(--gold-light);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform 0.15s;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: #a07832;
  transform: translateY(-1px);
  color: var(--white);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  width: 36px;
  height: 36px;
}

.ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-bar:nth-child(2) { opacity: 0; }
.nav-hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Secondary nav bar */
.nav-links {
  display: flex;
  align-items: center;
  padding: 0 60px;
  height: 48px;
  background: rgba(0,0,0,0.2);
}

/* WordPress auto-generates a <ul> with .nav-menu-list */
.nav-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-menu-list > li {
  height: 100%;
  position: relative;
}

.nav-menu-list > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  color: rgba(255,255,255,0.62);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.nav-menu-list > li > a:hover,
.nav-menu-list > li.current-menu-item > a,
.nav-menu-list > li.current-page-ancestor > a {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border-bottom-color: var(--gold);
}

/* Sub-menu (dropdown) */
.nav-menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  box-shadow: var(--shadow-md);
}

.nav-menu-list li:hover > .sub-menu,
.nav-menu-list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu-list .sub-menu li a {
  display: block;
  padding: 9px 20px;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  transition: color var(--transition), background var(--transition);
}

.nav-menu-list .sub-menu li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Hours tag */
.nav-hours {
  margin-left: auto;
  color: rgba(255,255,255,0.38);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding-left: 20px;
}

/* ── SITE CONTENT OFFSET ─────────────────────────────────────────────────────── */
.site-content {
  padding-top: var(--nav-height);
}

/* ── SHARED SECTION STYLES ───────────────────────────────────────────────────── */
.section {
  padding: 90px 60px;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 18px;
}

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

.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 580px;
}

.section-subtitle.white {
  color: rgba(255,255,255,0.72);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
  border: none;
}

.divider.centered {
  margin: 20px auto;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #a07832;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,144,58,0.3);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--navy);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background var(--transition), color var(--transition), transform 0.15s;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary.btn-white {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn-secondary.btn-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--gold);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: none;
  transition: background var(--transition), transform 0.15s;
  white-space: nowrap;
}

.btn-white:hover {
  background: #f5edd8;
  transform: translateY(-2px);
  color: var(--gold);
}

/* ── HOME: HERO ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(255,255,255,0.025);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 35%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(184,144,58,0.06);
  pointer-events: none;
}

.hero-content {
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,144,58,0.15);
  border: 1px solid rgba(184,144,58,0.3);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-badge span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  margin-bottom: 40px;
  max-width: 460px;
}

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

.hero-trust {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2f5a 0%, #1a4a8a 100%);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: luminosity;
  position: absolute;
  inset: 0;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: linear-gradient(145deg, #0d2f5c 0%, #1b4a8a 50%, #0b1f3a 100%);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 30%);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: 60px;
  left: -40px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  z-index: 3;
}

.hero-card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-card-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.hero-card-sub {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 5px;
}

/* ── HOME: SERVICES STRIP ────────────────────────────────────────────────────── */
.services-strip {
  background: var(--off-white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--mid-gray);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 16px;
  transition: gap 0.2s;
}

.service-card:hover .service-card-arrow {
  gap: 9px;
}

/* ── HOME: ABOUT ─────────────────────────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #143468, #0f2040);
  overflow: hidden;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  background: var(--navy);
  overflow: hidden;
  border: 4px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 120px;
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.about-badge span {
  font-size: 11.5px;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.3px;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2px;
}

.about-feature h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.about-feature p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

.about-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── HOME: TESTIMONIALS ──────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--navy);
  padding: 90px 60px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: background 0.25s, border-color 0.25s;
}

.testi-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(184,144,58,0.4);
}

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

.testi-quote {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testi-city {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

/* ── AFFILIATIONS ────────────────────────────────────────────────────────────── */
.affiliations-section {
  background: var(--light-gray);
  padding: 64px 60px;
}

.affiliations-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.affiliations-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 36px;
}

.affiliations-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.affiliation-logo {
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
  cursor: default;
}

.affiliation-logo:hover {
  opacity: 0.75;
  filter: grayscale(0.2);
}

.affiliation-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.affiliation-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}

/* ── CTA STRIP ───────────────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 64px 60px;
}

.cta-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.cta-strip-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

/* ── INNER PAGE: HERO BANNER ─────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 60px 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.page-hero-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  line-height: 1.7;
}

/* ── PRACTICE AREAS ──────────────────────────────────────────────────────────── */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.condition-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}

.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.condition-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--mid-gray);
  line-height: 1;
  flex-shrink: 0;
  min-width: 38px;
}

.condition-card h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.condition-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Procedures */
.procedures-section {
  background: var(--navy);
  padding: 80px 60px;
}

.procedures-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.procedures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.proc-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}

.proc-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(184,144,58,0.35);
}

.proc-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.proc-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
}

/* ── LOCATIONS ───────────────────────────────────────────────────────────────── */
.map-embed-wrap {
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--mid-gray);
}

.map-placeholder svg {
  stroke: var(--mid-gray);
}

.map-placeholder p {
  font-size: 13px;
  color: var(--text-light);
}

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

.location-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.location-card-header {
  background: var(--navy);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184,144,58,0.2);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-badge svg {
  stroke: var(--gold-light);
}

.location-name {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.location-type {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.location-body {
  padding: 26px 28px;
}

.location-detail {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.location-detail svg {
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.location-detail p,
.location-detail a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
}

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

.location-directions-btn {
  width: 100%;
  margin-top: 10px;
}

/* ── DOCTORS ─────────────────────────────────────────────────────────────────── */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}

.doctor-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.doctor-photo {
  height: 260px;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.doctor-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.75;
  mix-blend-mode: luminosity;
}

.doctor-photo-inner {
  width: 160px;
  height: 180px;
  border-radius: 80px 80px 0 0;
  background: rgba(255,255,255,0.08);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.doctor-initials {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
}

.doctor-specialty-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--white);
  border-radius: 40px;
  padding: 5px 13px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  z-index: 2;
}

.doctor-body {
  padding: 24px;
}

.doctor-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.doctor-creds {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.doctor-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doctor-info-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.doctor-info-row svg {
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.doctor-info-row span {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.doctor-card-footer {
  border-top: 1px solid var(--light-gray);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.doctor-card-footer a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}

.doctor-card-footer a:hover {
  color: #a07832;
}

.doctor-card-footer span {
  font-size: 12px;
  color: var(--text-light);
}

/* Nurse Practitioners */
.np-section {
  background: var(--off-white);
  padding: 80px 60px;
}

.np-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.np-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.np-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.np-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.np-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-avatar span {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}

.np-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.np-title {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── DEFAULT PAGE / CONTENT ─────────────────────────────────────────────────── */
.page-content-wrap {
  max-width: 760px;
}

.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin: 1.5em 0 0.5em;
}

.page-content h2 { font-size: 28px; }
.page-content h3 { font-size: 22px; }
.page-content h4 { font-size: 18px; }

.page-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.25em;
}

.page-content a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 70px 60px 40px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.footer-site-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 290px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav-list li a:hover {
  color: var(--white);
}

.footer-contact-item {
  margin-bottom: 14px;
}

.footer-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-cta {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-credit {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}

.footer-credit a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: rgba(255,255,255,0.7);
}

/* ── RESPONSIVE: TABLET ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --nav-height: 120px; }

  .nav-top { padding: 0 32px; }
  .nav-links { padding: 0 32px; }
  .section { padding: 70px 32px; }
  .page-hero { padding: 70px 32px 56px; }

  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 32px; }

  .hero-title { font-size: 44px; }
  .section-title { font-size: 34px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-stack { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .procedures-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .np-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-strip { padding: 48px 32px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .affiliations-logos { gap: 32px; }
  .testimonials-section { padding: 70px 32px; }
  .procedures-section { padding: 70px 32px; }
  .np-section { padding: 70px 32px; }
  .affiliations-section { padding: 48px 32px; }
  .site-footer { padding: 56px 32px 32px; }
}

/* ── RESPONSIVE: MOBILE ─────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  :root { --nav-height: 64px; }

  .nav-top { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; height: auto; padding: 8px 0; }
  .nav-links.open .nav-menu-list { flex-direction: column; width: 100%; }
  .nav-links.open .nav-menu-list > li { height: auto; width: 100%; }
  .nav-links.open .nav-menu-list > li > a { padding: 12px 20px; border-bottom: none; border-left: 3px solid transparent; }
  .nav-links.open .nav-menu-list > li.current-menu-item > a { border-left-color: var(--gold); }
  .nav-links.open .nav-hours { padding: 12px 20px; }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }

  .section { padding: 56px 20px; }
  .page-hero { padding: 56px 20px 44px; }

  .hero-content { padding: 48px 20px; }
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 16px; }
  .hero-trust { gap: 24px; }
  .hero-stat-num { font-size: 28px; }

  .section-title { font-size: 28px; }
  .page-hero-inner h1 { font-size: 32px; }

  .services-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .procedures-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .np-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .testimonials-section { padding: 56px 20px; }
  .procedures-section { padding: 56px 20px; }
  .np-section { padding: 56px 20px; }
  .affiliations-section { padding: 40px 20px; }
  .site-footer { padding: 44px 20px 28px; }
  .cta-strip { padding: 40px 20px; }
  .cta-strip-text h2 { font-size: 24px; }

  .affiliations-logos { flex-direction: column; gap: 20px; }
  .services-header { flex-direction: column; align-items: flex-start; }
}
