/* =========================================================
   Align Wellness Chiropractic & Wellness — Main Stylesheet
   Warm Clinical Wellness Design System
   ========================================================= */

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

/* --- CSS Custom Properties --- */
:root {
  --color-sage: #4A7C59;
  --color-sage-medium: #6B8F72;
  --color-sage-light: #D4E6D9;
  --color-bg: #FAFAF7;
  --color-beige: #F5F0E8;
  --color-text: #2C3E35;
  --color-brown: #8B7355;
  --color-muted: #7A8A83;
  --color-border: rgba(74, 124, 89, 0.12);
  --color-border-nav: rgba(74, 124, 89, 0.15);
  --color-white: #ffffff;
  --color-placeholder-start: #D4E6D9;
  --color-placeholder-end: #E8F0E9;

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

  --radius-card: 12px;
  --radius-btn: 6px;
  --shadow-card: 0 2px 16px rgba(44, 62, 53, 0.07), 0 1px 4px rgba(44, 62, 53, 0.04);
  --shadow-card-hover: 0 6px 28px rgba(44, 62, 53, 0.11), 0 2px 8px rgba(44, 62, 53, 0.06);

  --max-width: 1200px;
  --nav-height: 76px;
}

/* --- Reset & Base --- */
*, *::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(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1.18;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background-color: var(--color-sage);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #3d6b4b;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(74, 124, 89, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-sage);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--color-sage);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--color-sage);
  color: var(--color-white);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-sage);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.btn-text:hover {
  gap: 10px;
}

.btn-text .arrow {
  transition: transform 0.2s ease;
}

.btn-text:hover .arrow {
  transform: translateX(3px);
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-nav);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--color-sage);
  text-transform: uppercase;
  line-height: 1;
}

.nav-brand-tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-sage);
  transition: width 0.25s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-text);
  transition: all 0.25s ease;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  padding: 60px 0;
}

.hero-pre-header {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-pre-header::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: var(--color-brown);
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1.14;
  color: var(--color-text);
  margin-bottom: 22px;
}

.hero-subtext {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 38px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-52%, -48%);
  width: 85%;
  height: 90%;
  background-color: var(--color-sage-light);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  z-index: 0;
  opacity: 0.55;
  animation: morphShape 12s ease-in-out infinite alternate;
}

@keyframes morphShape {
  0% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
  50% { border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%; }
  100% { border-radius: 55% 45% 65% 35% / 45% 65% 35% 65%; }
}

.hero-image-placeholder {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 520px;
  border-radius: 180px 180px 160px 160px;
  background: linear-gradient(135deg, var(--color-placeholder-start), var(--color-placeholder-end));
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(44, 62, 53, 0.14);
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44, 62, 53, 0.08) 100%);
}

.hero-trust-badges {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-badge-number {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--color-sage);
  line-height: 1;
}

.trust-badge-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

/* ==========================================================
   CONDITIONS SECTION
   ========================================================== */
.conditions {
  padding: 100px 0;
  background-color: var(--color-beige);
}

.conditions-header {
  text-align: center;
  margin-bottom: 56px;
}

.conditions-header .section-subtext {
  margin: 0 auto;
}

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

.condition-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: var(--shadow-card);
}

.condition-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.condition-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  position: relative;
}

.condition-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-sage-medium);
  position: relative;
}

.condition-icon-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 1.5px;
  background-color: var(--color-sage);
}

.condition-icon-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5px;
  height: 18px;
  background-color: var(--color-sage-medium);
}

.condition-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.condition-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ==========================================================
   SERVICES OVERVIEW
   ========================================================== */
.services-overview {
  padding: 100px 0;
  background-color: var(--color-bg);
}

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

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

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-sage-light);
  line-height: 1;
}

.service-card-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
}

.service-card-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  flex: 1;
}

/* ==========================================================
   ABOUT PREVIEW
   ========================================================== */
.about-preview {
  padding: 100px 0;
  background-color: var(--color-beige);
}

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

.about-portrait-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-portrait-wrap::before {
  content: '';
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background-color: var(--color-sage-light);
  opacity: 0.45;
  transform: translate(-12px, 14px);
}

.about-portrait {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-placeholder-start), var(--color-placeholder-end));
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 40px rgba(44, 62, 53, 0.12);
}

.about-content {
  padding: 20px 0;
}

.about-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 6px;
  margin-top: 14px;
}

.about-title {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-sage);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.about-credentials li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-credentials li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: var(--color-sage);
  flex-shrink: 0;
}

.about-bio {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ==========================================================
   NEW PATIENT SECTION
   ========================================================== */
.new-patient {
  padding: 100px 0;
  background-color: var(--color-beige);
  text-align: center;
}

.new-patient-inner {
  max-width: 760px;
  margin: 0 auto;
}

.new-patient .section-heading {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.new-patient .section-subtext {
  margin: 0 auto 52px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 44px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-border) 0%, var(--color-sage-light) 50%, var(--color-border) 100%);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-sage);
  box-shadow: 0 4px 14px rgba(74, 124, 89, 0.12);
}

.step-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.step-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.55;
  text-align: center;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
  padding: 100px 0;
  background-color: var(--color-bg);
}

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

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

.testimonial-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-star {
  width: 12px;
  height: 12px;
  background-color: var(--color-brown);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-text);
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 2px;
}

.testimonial-condition {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-sage);
  letter-spacing: 0.04em;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background-color: var(--color-text);
  color: rgba(250, 250, 247, 0.75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 250, 247, 0.1);
  margin-bottom: 28px;
}

.footer-brand-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--color-bg);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-tagline {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.45);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-address {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250, 250, 247, 0.6);
}

.footer-address strong {
  font-weight: 400;
  color: rgba(250, 250, 247, 0.85);
}

.footer-col-heading {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bg);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.6);
  transition: color 0.2s ease;
}

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

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.6);
}

.footer-hours-row span:first-child {
  color: rgba(250, 250, 247, 0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.4);
}

.footer-disclaimer {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.35);
  line-height: 1.55;
  max-width: 60ch;
  text-align: right;
}

/* ==========================================================
   SERVICES PAGE SPECIFIC
   ========================================================== */
.page-hero {
  background-color: var(--color-bg);
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 72px;
  text-align: center;
}

.page-hero .section-heading {
  font-size: 3.2rem;
  margin-bottom: 16px;
}

.page-hero .section-subtext {
  margin: 0 auto;
}

.service-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-section:nth-child(even) {
  background-color: var(--color-beige);
}

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.service-section:nth-child(even) .service-section-inner {
  direction: rtl;
}

.service-section:nth-child(even) .service-section-inner > * {
  direction: ltr;
}

.service-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-placeholder-start), var(--color-placeholder-end));
  box-shadow: var(--shadow-card);
}

.service-content {
  padding-top: 8px;
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  background-color: rgba(74, 124, 89, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--color-text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.service-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.service-detail-block {
  padding: 18px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.service-detail-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 6px;
}

.service-detail-value {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.55;
}

.conditions-treated-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.condition-tag {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-beige);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(139, 115, 85, 0.2);
}

.service-section:nth-child(even) .condition-tag {
  background-color: var(--color-white);
}

.integrated-approach {
  padding: 100px 0;
  background-color: var(--color-text);
  text-align: center;
}

.integrated-approach .section-label {
  color: rgba(212, 230, 217, 0.7);
}

.integrated-approach .section-heading {
  color: var(--color-bg);
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.integrated-approach .section-subtext {
  color: rgba(250, 250, 247, 0.6);
  margin: 0 auto 52px;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.approach-card {
  background-color: rgba(250, 250, 247, 0.05);
  border: 1px solid rgba(250, 250, 247, 0.1);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.approach-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(74, 124, 89, 0.25);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-card-icon-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-sage-light);
}

.approach-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-bg);
  margin-bottom: 10px;
}

.approach-card-text {
  font-size: 0.825rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.55);
  line-height: 1.7;
}

/* ==========================================================
   CONTACT PAGE SPECIFIC
   ========================================================== */
.contact-hero {
  background-color: var(--color-beige);
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  text-align: center;
}

.contact-hero .section-heading {
  font-size: 3rem;
}

.contact-body {
  padding: 80px 0 100px;
  background-color: var(--color-bg);
}

.contact-body-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info-block {
  padding-top: 4px;
}

.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 28px;
}

.contact-info-item {
  margin-bottom: 28px;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.7;
}

.contact-info-value a {
  color: var(--color-sage);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-info-value a:hover {
  opacity: 0.75;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 400;
  color: var(--color-text);
}

.hours-time {
  font-weight: 300;
  color: var(--color-muted);
}

.new-patients-note {
  margin-top: 22px;
  padding: 16px 18px;
  background-color: rgba(74, 124, 89, 0.07);
  border-left: 2px solid var(--color-sage);
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.6;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-card);
  background-color: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: opacity 0.2s;
  text-decoration: none;
}

.map-placeholder:hover {
  opacity: 0.85;
}

.map-placeholder-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-sage);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-pin {
  width: 16px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background-color: var(--color-sage);
  transform: rotate(-45deg);
  position: relative;
  flex-shrink: 0;
}

.map-pin::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: var(--color-white);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- Contact Form --- */
.contact-form-wrap {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
}

.form-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-subtext {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid #d0cdc8;
  border-radius: 0;
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7355' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
  cursor: pointer;
}

.form-textarea {
  resize: none;
  min-height: 80px;
  line-height: 1.6;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb;
  font-weight: 300;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid #d0cdc8;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background-color 0.2s, border-color 0.2s;
  position: relative;
}

.form-checkbox:checked {
  background-color: var(--color-sage);
  border-color: var(--color-sage);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 1.5px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox-label {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.55;
}

.form-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-submit-note {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--color-muted);
  text-align: center;
}

/* ==========================================================
   RESPONSIVE — 1024px
   ========================================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .hero-inner {
    gap: 40px;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .hero-image-placeholder {
    width: 320px;
    height: 440px;
  }

  .conditions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .services-grid {
    gap: 18px;
  }

  .about-inner {
    gap: 52px;
  }

  .about-portrait {
    width: 280px;
    height: 280px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

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

  .footer-grid > *:last-child {
    grid-column: 1 / -1;
  }

  .service-section-inner {
    gap: 48px;
  }

  .contact-body-inner {
    gap: 48px;
  }
}

/* ==========================================================
   RESPONSIVE — 640px
   ========================================================== */
@media (max-width: 640px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-links,
  .nav-cta .nav-phone,
  .nav-cta .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: var(--nav-height);
    padding-bottom: 60px;
  }

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

  .hero-media {
    order: -1;
  }

  .hero-image-placeholder {
    width: 260px;
    height: 340px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 20px 0 0;
  }

  .hero-trust-badges {
    gap: 20px;
  }

  /* Sections */
  .conditions {
    padding: 72px 0;
  }

  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .services-overview {
    padding: 72px 0;
  }

  .services-overview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .about-preview {
    padding: 72px 0;
  }

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

  .about-portrait {
    width: 220px;
    height: 220px;
  }

  .new-patient {
    padding: 72px 0;
  }

  .new-patient .section-heading {
    font-size: 2.2rem;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps-row::before {
    display: none;
  }

  .testimonials {
    padding: 72px 0;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-disclaimer {
    text-align: left;
  }

  /* Services Page */
  .page-hero .section-heading {
    font-size: 2.4rem;
  }

  .service-section {
    padding: 64px 0;
  }

  .service-section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .service-section:nth-child(even) .service-section-inner {
    direction: ltr;
  }

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .approach-cards {
    grid-template-columns: 1fr;
  }

  /* Contact Page */
  .contact-hero .section-heading {
    font-size: 2.4rem;
  }

  .contact-body {
    padding: 56px 0 72px;
  }

  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading {
    font-size: 2.2rem;
  }
}
