/* Village Health Center — Art Deco Wellness Design System */
@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,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --primary: #000000;
  --accent: #C9A84C;
  --accent-light: #E2C87E;
  --accent-dark: #A8882E;
  --bg: #F5F0E8;
  --bg-dark: #EDE7D9;
  --text: #1A1A1A;
  --text-light: #555555;
  --text-muted: #888888;
  --white: #FFFFFF;
  --gold-rule: 1px solid var(--accent);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --max-width: 1200px;
  --section-pad: 96px 24px;
  --section-pad-sm: 64px 24px;
  --border-radius: 0px;
  --transition: 0.3s ease;
  --shadow: 0 4px 32px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.15);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h5 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1.05rem; line-height: 1.75; color: var(--text-light); }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.display-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 0.9;
  display: block;
}

/* ══════════════════════════════════════════════
   ART DECO ORNAMENTS
══════════════════════════════════════════════ */
.deco-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.deco-rule::before, .deco-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--accent);
}
.deco-rule-icon {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 4px;
}

.gold-rule { width: 60px; height: 1px; background: var(--accent); margin: 20px 0; }
.gold-rule-center { margin: 20px auto; }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 0;
}
.section-divider::before, .section-divider::after {
  content: '';
  width: 120px;
  height: 1px;
  background: var(--accent);
}
.section-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: var(--accent);
  color: var(--primary);
}
.btn-gold:hover {
  background: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-black {
  background: var(--primary);
  color: var(--white);
}
.btn-black:hover {
  background: #222;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 10px 20px;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: var(--primary) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 2px solid var(--accent);
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  margin-top: 12px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.65rem !important;
  color: rgba(255,255,255,0.7) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.1em;
}
.dropdown-menu a:hover { color: var(--accent) !important; background: rgba(201,168,76,0.05); }
.dropdown-menu li:last-child a { border-bottom: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* ══════════════════════════════════════════════
   HERO — FULL BLEED DARK
══════════════════════════════════════════════ */
.hero {
  background: var(--primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0,0,0,0.92) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: sepia(20%) brightness(0.8);
}

/* Art Deco geometric motif */
.hero-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.06;
  pointer-events: none;
}
.hero-deco svg { width: 500px; height: 500px; }

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

.hero-content .eyebrow { color: var(--accent); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 32px;
  max-width: 720px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 300;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.2);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  display: block;
}

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }

.section-dark {
  background: var(--primary);
  color: var(--white);
}
.section-dark p { color: rgba(255,255,255,0.65); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-black-offset {
  background: #0A0A0A;
}

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

.section-header {
  margin-bottom: 64px;
}
.section-header-center {
  text-align: center;
  margin-bottom: 64px;
}

/* ══════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.service-card {
  background: var(--bg);
  padding: 48px 36px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  background: var(--primary);
}
.service-card:hover h3,
.service-card:hover .service-card-number { color: var(--accent); }
.service-card:hover p { color: rgba(255,255,255,0.6); }
.service-card:hover .btn-outline-gold { color: var(--accent); }

.service-card-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  transition: all var(--transition);
}
.service-card h3 {
  font-size: 1.6rem;
  transition: color var(--transition);
}
.service-card p { transition: color var(--transition); }

/* ══════════════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════════════ */
.testimonial-block {
  background: var(--primary);
  padding: 72px 48px;
  position: relative;
  border-left: 3px solid var(--accent);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 32px;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  line-height: 0;
  vertical-align: -2rem;
  margin-right: 8px;
  font-family: var(--font-display);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.testimonial-author-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════════
   DR. TROPEANO ABOUT SECTION
══════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.about-image-col {
  position: relative;
  overflow: hidden;
  background: #111;
}
.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: sepia(10%) brightness(0.9);
  display: block;
}
.about-deco-overlay {
  position: absolute;
  bottom: 40px;
  right: -20px;
  opacity: 0.12;
  pointer-events: none;
}
.about-content-col {
  background: var(--primary);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content-col h2 { color: var(--white); margin-bottom: 8px; }
.about-content-col .eyebrow { color: var(--accent); }
.about-content-col p { color: rgba(255,255,255,0.65); margin-bottom: 20px; }

/* ══════════════════════════════════════════════
   INSURANCE LOGOS / GRID
══════════════════════════════════════════════ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.15);
  margin-top: 48px;
}
.insurance-item {
  background: var(--bg);
  padding: 24px 20px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  border: none;
  transition: background var(--transition);
}
.insurance-item:hover { background: var(--bg-dark); }

/* ══════════════════════════════════════════════
   CONTACT / BOOKING FORM
══════════════════════════════════════════════ */
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  border-bottom: 2px solid var(--accent);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: all var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  background: var(--primary);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.page-hero .eyebrow { justify-content: center; }
.page-hero-deco {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   CONDITIONS LIST
══════════════════════════════════════════════ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.2);
}
.condition-item {
  background: var(--bg);
  padding: 28px 28px 28px 44px;
  position: relative;
  transition: background var(--transition);
}
.condition-item::before {
  content: '◆';
  position: absolute;
  left: 20px;
  top: 30px;
  color: var(--accent);
  font-size: 0.5rem;
}
.condition-item h4 {
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
}
.condition-item p { font-size: 0.85rem; color: var(--text-muted); }
.condition-item:hover { background: var(--bg-dark); }

/* ══════════════════════════════════════════════
   MAP EMBED
══════════════════════════════════════════════ */
.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid rgba(201,168,76,0.3);
  filter: grayscale(20%) sepia(5%);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: #050505;
  color: rgba(255,255,255,0.55);
  padding: 72px 24px 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.footer-brand p { font-size: 0.85rem; margin-top: 12px; max-width: 260px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 16px;
}

/* ══════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.text-white { color: var(--white); }
.bg-cream { background: var(--bg); }
.bg-black { background: var(--primary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.phone-link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--accent);
  display: inline-block;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--accent-light); }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.info-value {
  font-size: 0.95rem;
  color: var(--text);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-image-col { height: 400px; }
  .about-content-col { padding: 60px 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem !important; color: rgba(255,255,255,0.8) !important; }
  .dropdown-menu { position: static; transform: none; background: transparent; border: none; padding: 0; display: block; text-align: center; }
  .dropdown-menu a { color: rgba(255,255,255,0.5) !important; }

  .hero-stats { gap: 28px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-content-col { padding: 48px 24px; }
  .testimonial-block { padding: 48px 28px; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
