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

/* ===== Design Tokens ===== */
:root {
  /* Earth Tones */
  --brown-900: #2c1810;
  --brown-800: #3d2518;
  --brown-700: #5c3a24;
  --brown-600: #7a5230;
  --brown-500: #8b6340;
  --brown-400: #a67c52;
  --brown-300: #c4a070;
  --brown-200: #dcc4a0;
  --brown-100: #efe3d0;
  --brown-50: #f7f1e8;

  --sage-700: #4a5e4a;
  --sage-500: #6b8060;
  --sage-100: #e8ede5;

  --cream: #faf6f0;
  --cream-dark: #f0e8d8;
  --white: #ffffff;
  --black: #1a1a1a;
  --text: #2c2420;
  --text-light: #6b5e55;
  --text-muted: #9a8e85;
  --border: #e6ddd3;

  /* Typography */
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Radius */
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===== Hidden attribute enforcement ===== */
[hidden] {
  display: none !important;
}

/* ===== Base ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
}

h2 {
  font-size: 3rem;
  color: var(--brown-900);
}

h2 em {
  font-style: italic;
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  color: var(--brown-800);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-400);
  margin-bottom: 16px;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-light {
  background: var(--white);
  color: var(--brown-800);
  border-color: var(--white);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-dark {
  background: var(--brown-800);
  color: var(--cream);
  border-color: var(--brown-800);
}

.btn-dark:hover {
  background: var(--brown-900);
  border-color: var(--brown-900);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 36px;
  height: 36px;
  transition: filter var(--transition);
}

/* Make logo icon white/bright when header is transparent (over hero) */
.header:not(.scrolled) .logo-icon {
  filter: brightness(1.8) saturate(0.3);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.logo-text em {
  font-weight: 400;
  font-style: italic;
}

.header.scrolled .logo-text {
  color: var(--brown-800);
}

.nav {
  display: flex;
  gap: 4px;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  transition: all var(--transition);
}

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

.header.scrolled .nav a {
  color: var(--text-light);
}

.header.scrolled .nav a:hover {
  color: var(--brown-800);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Toggle */
.lang-toggle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .lang-toggle {
  color: var(--brown-800);
  border-color: var(--brown-300);
}

.header.scrolled .lang-toggle:hover {
  background: var(--brown-50);
}

.btn-inquire {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.btn-inquire:hover {
  background: var(--white);
  color: var(--brown-800);
  border-color: var(--white);
}

.header.scrolled .btn-inquire {
  color: var(--brown-800);
  border-color: var(--brown-800);
}

.header.scrolled .btn-inquire:hover {
  background: var(--brown-800);
  color: var(--cream);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.header.scrolled .nav-toggle span {
  background: var(--brown-800);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(44, 24, 16, 0.82) 0%,
      rgba(92, 58, 36, 0.55) 50%,
      rgba(74, 94, 74, 0.4) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 32px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-200);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-weight: 400;
  font-style: italic;
  color: var(--brown-200);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== Intro Quote ===== */
.intro {
  padding: 100px 0;
  background: var(--white);
}

.intro-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro-quote p {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--brown-700);
  font-style: italic;
}

.intro-quote em {
  font-style: normal;
  color: var(--brown-400);
}

/* ===== Philosophy ===== */
.philosophy {
  background: var(--cream);
}

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

.philosophy-card {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.philosophy-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--brown-200);
  margin-bottom: 24px;
}

.philosophy-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.philosophy-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== Services Grid ===== */
.services {
  background: var(--cream);
}

.section-desc {
  max-width: 640px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 16px;
}

.section-header .section-desc {
  text-align: left;
}

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

/* 2-column featured layout */
.services-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.service-card-featured {
  padding: 48px;
  position: relative;
}

.service-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--brown-100);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--brown-800);
}

.service-card-featured h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.75;
}

.service-card-featured p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Physician CTA ===== */
.physician-cta {
  margin-top: 32px;
}

/* ===== Physician Closing Quote ===== */
.physician-closing {
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.physician-closing p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--brown-700);
  margin-bottom: 8px;
}

.physician-closing cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brown-400);
}

/* ===== Membership — Invitation Only ===== */
.membership-invitation {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.membership-invitation h2 {
  margin-bottom: 32px;
}

.invitation-body {
  margin-bottom: 40px;
}

.invitation-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.invitation-body p:last-child {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown-700);
}

/* ===== Image Gallery ===== */
.gallery {
  background: var(--white);
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }
}

/* ===== Offering ===== */
.offering {
  background: var(--white);
}

.offering-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}

.offering-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.offering-item {
  position: relative;
  padding-bottom: 56px;
}

.offering-item:last-child {
  padding-bottom: 0;
}

.offering-marker {
  position: absolute;
  left: -41px;
  top: 4px;
  width: 15px;
  height: 15px;
  background: var(--cream);
  border: 2px solid var(--brown-400);
  border-radius: 50%;
}

.offering-content h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--brown-800);
}

.offering-content ul {
  list-style: none;
}

.offering-content li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.offering-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: var(--brown-400);
}

/* ===== Visual Break ===== */
.visual-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-700);
  overflow: hidden;
}

.visual-break-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(74, 94, 74, 0.85) 0%,
    rgba(44, 24, 16, 0.75) 100%
  );
}

.visual-break-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}

.visual-break-content .eyebrow {
  color: var(--brown-200);
}

.visual-break-content h2 {
  color: var(--white);
  font-size: 3.5rem;
}

.visual-break-content h2 em {
  color: var(--brown-200);
}

/* Visual Break — Minimal (no photo) */
.visual-break-minimal {
  background: linear-gradient(135deg, var(--brown-900) 0%, var(--sage-700) 100%);
}

.visual-break-minimal .visual-break-content {
  position: relative;
  z-index: 1;
}

/* ===== Membership ===== */
.membership {
  background: var(--cream);
}

.membership-card {
  background: var(--white);
  border: 1px solid var(--border);
  max-width: 840px;
  margin: 0 auto;
  overflow: hidden;
}

.membership-top {
  padding: 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--brown-50);
}

.membership-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-400);
  margin-bottom: 16px;
}

.membership-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.membership-col {
  padding: 40px 48px;
}

.membership-col:first-child {
  border-right: 1px solid var(--border);
}

.membership-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-400);
  margin-bottom: 20px;
}

.membership-col ul {
  list-style: none;
}

.membership-col li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  border-bottom: 1px solid var(--brown-50);
}

.membership-col li:last-child {
  border-bottom: none;
}

.membership-cta {
  padding: 32px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ===== Physician ===== */
.physician {
  background: var(--white);
}

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

.physician-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--brown-100), var(--sage-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-400);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
}

.physician-photo-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--brown-50);
}

.physician-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.physician-bio .eyebrow {
  margin-bottom: 12px;
}

.physician-bio h2 {
  font-size: 3rem;
  margin-bottom: 8px;
}

.physician-subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--brown-400);
  margin-bottom: 28px;
}

.physician-bio > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.physician-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.credential strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-400);
  margin-bottom: 4px;
}

.credential span {
  font-size: 0.9rem;
  color: var(--text);
}

/* ===== Team Section ===== */
.team-section {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.team-header {
  margin-bottom: 48px;
}

.team-header h3 {
  font-size: 2rem;
  color: var(--brown-900);
  margin-bottom: 16px;
}

.team-header p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
}

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

.team-card {
  text-align: center;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--brown-50), var(--sage-100));
  margin-bottom: 20px;
}

.team-card img.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 20px;
}

.team-info h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brown-800);
  margin-bottom: 4px;
}

.team-title {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== Contact ===== */
.contact {
  background: var(--cream);
}

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

.contact-text h2 {
  margin-bottom: 20px;
}

.contact-text > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

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

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

.contact-item span {
  font-size: 0.95rem;
  color: var(--text);
}

/* Form Styles */
.inquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown-400);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border: 1px solid var(--border);
}

.form-success h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--brown-800);
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: var(--brown-900);
  color: var(--brown-300);
  padding-top: 64px;
}

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

.footer-brand .logo {
  margin-bottom: 12px;
  display: inline-flex;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-icon {
  filter: brightness(1.6) saturate(0.4);
}

.footer-brand p {
  color: var(--brown-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown-400);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--brown-500);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--brown-500);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--brown-300);
}

/* ===== Legal Pages (Privacy Policy & Terms) ===== */
.legal-page {
  padding-top: 160px;
}

.legal-content {
  max-width: 760px;
}

.legal-content .section-header {
  margin-bottom: 48px;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--brown-900);
  line-height: 1.15;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.legal-section h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--brown-700);
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: none;
  margin: 12px 0;
}

.legal-section li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}

.legal-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: var(--brown-400);
}

.legal-contact {
  margin-top: 16px;
  padding: 24px;
  background: var(--brown-50);
  border: 1px solid var(--border);
}

.legal-contact p {
  margin-bottom: 4px;
  color: var(--text);
}

/* ===== Animations ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */

/* -- Tablet (max 900px) -- */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .nav.open a {
    color: var(--text-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--brown-50);
  }

  .btn-inquire {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .intro-quote p {
    font-size: 1.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .legal-page {
    padding-top: 120px;
  }

  .legal-content h1 {
    font-size: 2.25rem;
  }

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

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

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

  .service-card-featured {
    padding: 36px;
  }

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

  .team-section {
    margin-top: 64px;
    padding-top: 48px;
  }

  .offering-timeline {
    padding-left: 36px;
  }

  .visual-break {
    min-height: 320px;
    height: 50vh;
  }

  .visual-break-content h2 {
    font-size: 2.5rem;
  }

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

  .physician-photo-placeholder {
    aspect-ratio: 4 / 3;
  }

  .physician-photo-wrapper {
    aspect-ratio: 4 / 3;
  }

  .physician-credentials {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

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

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* -- Mobile (max 480px) -- */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
    height: 64px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .nav {
    top: 64px;
    padding: 20px 16px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.7;
  }

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

  .btn {
    padding: 14px 32px;
    font-size: 0.8rem;
  }

  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

  .intro {
    padding: 64px 0;
  }

  .intro-quote p {
    font-size: 1.15rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .legal-page {
    padding-top: 100px;
  }

  .legal-content h1 {
    font-size: 1.85rem;
  }

  .legal-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .philosophy-number {
    font-size: 2.5rem;
  }

  .philosophy-card {
    padding: 28px 0;
  }

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

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

  .service-number {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .service-card-featured h3 {
    font-size: 1.25rem;
  }

  .offering-timeline {
    padding-left: 28px;
  }

  .offering-marker {
    left: -33px;
    width: 12px;
    height: 12px;
  }

  .offering-content h3 {
    font-size: 1.2rem;
  }

  .offering-item {
    padding-bottom: 40px;
  }

  .visual-break {
    min-height: 280px;
    height: 40vh;
  }

  .visual-break-content h2 {
    font-size: 1.85rem;
  }

  .membership-invitation h2 {
    font-size: 1.85rem;
  }

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

  .team-photo-placeholder {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .team-info h4 {
    font-size: 0.9rem;
  }

  .team-title {
    font-size: 0.75rem;
  }

  .team-section {
    margin-top: 48px;
    padding-top: 40px;
  }

  .team-header h3 {
    font-size: 1.5rem;
  }

  .physician-bio h2 {
    font-size: 2.25rem;
  }

  .physician-credentials {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .physician-closing p {
    font-size: 1.1rem;
  }

  .membership-top {
    padding: 32px 24px;
  }

  .inquiry-form {
    padding: 24px;
  }

  .contact-text h2 {
    font-size: 1.85rem;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-nav {
    gap: 12px;
  }

  .footer-nav a {
    font-size: 0.75rem;
  }
}
