/* =====================================================
   Dr. Oberneder – Privatpraxis für Kinderheilkunde
   Warm, natural, trustworthy pediatric practice aesthetic
   ===================================================== */

:root {
  /* Colors – warm sage + cream + soft peach */
  --sage-900: #3d4a35;
  --sage-700: #5c6f53;
  --sage-500: #7a8b6f;
  --sage-300: #c9d5bc;
  --sage-100: #e8ede0;

  --cream-50:  #faf7f2;
  --cream-100: #f3ede3;
  --cream-200: #e9e1d2;

  --peach-500: #d4a574;
  --peach-300: #e8c9a8;
  --peach-100: #f5e6d3;

  --ink-900: #2a2420;
  --ink-700: #4a4038;
  --ink-500: #6d6357;
  --ink-300: #a49a8d;

  --white: #ffffff;

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(42, 36, 32, 0.04), 0 2px 8px rgba(42, 36, 32, 0.04);
  --shadow-md: 0 4px 12px rgba(42, 36, 32, 0.06), 0 12px 32px rgba(42, 36, 32, 0.06);
  --shadow-lg: 0 8px 24px rgba(42, 36, 32, 0.08), 0 24px 64px rgba(42, 36, 32, 0.08);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--sage-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--sage-900); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 2.5vw + 1rem, 2.6rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--sage-700); }

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

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 36, 32, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-900);
  font-weight: 500;
}

.brand:hover { color: var(--ink-900); }

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-500);
  color: var(--cream-50);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 24px; height: 24px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.brand-sub  { font-size: 0.72rem; color: var(--ink-500); letter-spacing: 0.06em; text-transform: uppercase; }

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav a {
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  padding: 0.25rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--sage-500);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover::after { right: 0; }

.nav-cta {
  background: var(--sage-700);
  color: var(--cream-50) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--sage-900); }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink-900);
  margin: 5px auto;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 800px;
  height: 800px;
  animation: float 22s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 500px;
  height: 500px;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(30px, -20px) rotate(5deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--sage-700);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-700);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--sage-700);
  color: var(--cream-50);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--sage-900);
  color: var(--cream-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--ink-300);
}
.btn-ghost:hover {
  background: var(--ink-900);
  color: var(--cream-50);
  border-color: var(--ink-900);
}
.btn-small {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(42, 36, 32, 0.05);
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.hero-card-lead {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.info-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--cream-200);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: start;
  font-size: 0.95rem;
}
.info-list li:first-child { border-top: 0; padding-top: 0.4rem; }
.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  padding-top: 0.12rem;
}
.hausbesuche {
  grid-template-columns: 1fr !important;
  color: var(--sage-700);
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  padding-top: 1.2rem !important;
  margin-top: 0.4rem;
  border-top: 1px solid var(--cream-200) !important;
}

/* ============ SECTIONS ============ */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-alt {
  background: var(--cream-100);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 4rem;
}
.section-head.centered { text-align: center; }

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--ink-500);
  margin-top: 1.2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse .col-text { order: 2; }
.two-col.reverse .col-visual { order: 1; }

.col-text h2 { margin-bottom: 1.5rem; }
.col-text p { margin-bottom: 1.2rem; color: var(--ink-700); }

/* Values grid (about section) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.value {
  padding: 1.4rem;
  background: var(--cream-100);
  border-radius: var(--radius);
  border: 1px solid rgba(42, 36, 32, 0.04);
}
.section-alt .value { background: var(--white); }
.value-icon {
  width: 42px;
  height: 42px;
  background: var(--sage-300);
  color: var(--sage-900);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}
.value h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--ink-900);
}
.value p {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}

/* Portrait */
.portrait {
  margin: 0 0 2rem;
}
.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.1;
  background: var(--sage-100);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.portrait-accent {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 120px;
  height: 120px;
  background: var(--peach-300);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--sage-300);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}
.portrait {
  position: relative;
}
.portrait figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
  padding-left: 0.2rem;
  line-height: 1.35;
}
.portrait figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.portrait figcaption span {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-top: 0.15rem;
}

/* Quote card */
.quote-card {
  background: var(--sage-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.quote-mark {
  width: 44px;
  height: 44px;
  color: var(--sage-500);
  opacity: 0.55;
  margin-bottom: 1rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-900);
  margin-bottom: 1.25rem;
}
.quote-author {
  font-size: 0.9rem;
  color: var(--sage-700);
  font-weight: 500;
  margin: 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  color: var(--ink-700);
  border: 1px solid var(--cream-200);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(42, 36, 32, 0.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
}
.service-icon {
  width: 40px;
  height: 40px;
  background: var(--peach-100);
  color: var(--peach-500);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card ul { display: grid; gap: 0.55rem; }
.service-card li {
  font-size: 0.94rem;
  color: var(--ink-700);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.service-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px; height: 6px;
  background: var(--sage-500);
  border-radius: 50%;
  transform: translateY(-50%);
}

.insurance-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--peach-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--peach-500);
  max-width: 780px;
  margin: 0 auto;
}
.insurance-note svg { color: var(--peach-500); flex-shrink: 0; }
.insurance-note p { margin: 0; font-size: 0.95rem; color: var(--ink-700); }

/* ============ HOMEOPATHY ============ */
.homeopathy-section { background: linear-gradient(180deg, var(--cream-50) 0%, var(--sage-100) 100%); }

.feature-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.feature-illus {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
}
.feature-list {
  display: grid;
  gap: 0.8rem;
  max-width: 260px;
  margin: 0 auto;
}
.feature-list li {
  padding: 0.8rem 1rem;
  background: var(--sage-100);
  border-radius: 10px;
  font-weight: 500;
  color: var(--sage-900);
  font-size: 0.95rem;
}

/* ============ PRAXIS / MAP ============ */
.praxis-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.praxis-info h3 {
  margin-bottom: 1rem;
}
.praxis-info p { margin-bottom: 1.5rem; color: var(--ink-700); }
.praxis-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.praxis-list li {
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
  font-size: 0.96rem;
}
.praxis-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 6px; height: 6px;
  background: var(--sage-500);
  border-radius: 50%;
  transform: translateY(-50%);
}
.praxis-list strong { color: var(--ink-900); font-weight: 600; }

.praxis-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--sage-100);
  min-height: 380px;
}
.praxis-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.memberships {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
}
.memberships h3 {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.memberships ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.7rem;
}
.memberships li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink-700);
  font-size: 0.95rem;
}
.memberships li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-500);
  font-weight: 600;
}

/* ============ CONTACT ============ */
.kontakt-section {
  background: var(--sage-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.kontakt-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 201, 168, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.kontakt-section .section-eyebrow { color: var(--peach-300); }
.kontakt-section h2 { color: var(--cream-50); }
.kontakt-section .section-intro { color: var(--sage-300); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
  position: relative;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: var(--cream-100);
  text-decoration: none;
  display: block;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
a.contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--cream-50);
}
.contact-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: rgba(232, 201, 168, 0.18);
  color: var(--peach-300);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card h3 {
  color: var(--cream-50);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--cream-50);
  margin: 0;
}

.emergency-note {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: rgba(212, 165, 116, 0.12);
  border: 1px solid rgba(232, 201, 168, 0.25);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.95rem;
  color: var(--cream-100);
}
.emergency-note strong { color: var(--peach-300); }
.emergency-note a {
  color: var(--peach-300);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.emergency-note a:hover { color: var(--cream-50); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 4rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream-50);
  margin-bottom: 0.4rem;
}
.footer-sub {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-300);
}
.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-200);
  margin-bottom: 1rem;
  font-weight: 500;
}
.site-footer a { color: var(--cream-100); }
.site-footer a:hover { color: var(--peach-300); }
.footer-links {
  display: grid;
  gap: 0.45rem;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-300);
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding: 4rem 0 5rem;
}
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  margin-bottom: 0.5rem;
}
.legal-page .subtitle {
  color: var(--ink-500);
  margin-bottom: 3rem;
}
.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.legal-page h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.98rem;
  color: var(--ink-700);
  line-height: 1.65;
}
.legal-page ul {
  margin-bottom: 1em;
  padding-left: 1.25rem;
}
.legal-page li {
  list-style: disc;
  margin-bottom: 0.4rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sage-700);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--sage-900); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse .col-text,
  .two-col.reverse .col-visual { order: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .praxis-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-50);
    border-bottom: 1px solid rgba(42, 36, 32, 0.06);
    padding: 1rem 1.5rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav li {
    border-bottom: 1px solid var(--cream-200);
  }
  .main-nav li:last-child { border-bottom: 0; margin-top: 0.5rem; }
  .main-nav a {
    display: block;
    padding: 0.9rem 0;
  }
  .nav-cta { text-align: center; padding: 0.75rem 1rem !important; }

  .hero { padding: 3rem 0 4rem; }
  .hero-card { padding: 1.5rem; }
  .section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }

  .values-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .service-card { padding: 1.5rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .memberships { padding: 1.5rem; }
  .memberships ul { grid-template-columns: 1fr; }

  .quote-card { padding: 2rem 1.5rem; }
  .quote-text { font-size: 1.15rem; }

  .info-list li {
    grid-template-columns: 1fr !important;
    gap: 0.2rem;
  }
  .info-list .info-label { padding-top: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--sage-700);
  outline-offset: 2px;
  border-radius: 4px;
}
