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

:root {
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --forest-dark: #0D1F17;
  --off-white: #F8F6F0;
  --cream: #FDF9F3;
  --warm-gray: #6B6560;
  --dark: #1A1A1A;
  --light: #FFFFFF;
  --accent: #40916C;
  --accent-light: #52B788;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--forest);
}

.nav-logo-icon {
  color: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.nav-cta) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--forest);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width 0.3s;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--light) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest);
  padding: 8px;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest);
  padding: 8px;
}

.mobile-menu-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 0;
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--forest);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  background: var(--forest);
  color: var(--light);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 35%, #40916C 65%, #52B788 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
}

.hero {
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--light);
  margin-bottom: 24px;
}

.hero-accent {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--sans);
}

.btn-primary {
  background: var(--light);
  color: var(--forest);
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--light);
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-trust {
  display: flex;
  gap: 32px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--light);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.hero-image-badge svg {
  color: var(--forest);
}

.hero-image-badge span {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}

/* ── Section Shared ── */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

.section-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 560px;
}

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

/* ── Services ── */
.services {
  padding: 120px 0;
  background: var(--cream);
}

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

.service-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(27, 67, 50, 0.06);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--forest);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  flex-shrink: 0;
}

.about-value-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ── Divider Quote ── */
.divider-quote {
  padding: 100px 0;
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.divider-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 50% 50%, white 1px, transparent 1px);
  background-size: 30px 30px;
}

.divider-quote .container {
  position: relative;
  z-index: 1;
}

.divider-quote-mark {
  color: var(--accent-light);
  margin-bottom: 24px;
  opacity: 0.6;
}

.divider-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--light);
  max-width: 800px;
  margin: 0 auto 24px;
}

.divider-quote cite {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* ── Patient Info ── */
.patient-info {
  padding: 120px 0;
  background: var(--cream);
}

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

.info-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.info-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  margin-bottom: 20px;
}

.info-card-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.info-card-list {
  list-style: none;
  margin-bottom: 12px;
}

.info-card-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
  font-size: 0.9375rem;
}

.info-card-list li:last-child {
  border-bottom: none;
}

.info-day {
  color: var(--dark);
  font-weight: 500;
}

.info-time {
  color: var(--accent);
  font-weight: 600;
}

.info-card-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 8px;
}

.info-card-phone a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  font-family: var(--serif);
}

.info-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.info-card-note {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  opacity: 0.8;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 67, 50, 0.06);
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail svg {
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-form-wrapper {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 67, 50, 0.06);
}

.contact-form-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(27, 67, 50, 0.15);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--sans);
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 101, 96, 0.5);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(45, 106, 79, 0.08);
  border-radius: var(--radius);
  margin-top: 16px;
  color: var(--forest);
  font-weight: 500;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--forest);
}

/* ── Map ── */
.map-section {
  background: var(--forest-dark);
}

.map-container {
  height: 400px;
  filter: grayscale(30%);
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

/* ── Footer ── */
.footer {
  background: var(--forest-dark);
  color: var(--light);
  padding: 80px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--light);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

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

.footer address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    max-width: 500px;
  }

  .hero-image img {
    height: 420px;
  }

  .about-grid {
    gap: 48px;
  }

  .about-image-wrapper img {
    height: 500px;
  }

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

  .contact-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3.25rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-image {
    display: none;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    order: -1;
  }

  .about-image-wrapper img {
    height: 400px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .divider-quote blockquote {
    font-size: 1.375rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .services,
  .about,
  .patient-info,
  .contact {
    padding: 80px 0;
  }

  .service-card {
    padding: 28px 24px;
  }

  .info-card {
    padding: 28px 24px;
  }
}
