/* ============================================
   Praxis Heilsam — Complete Redesign
   Clean, Modern, Professional
   ============================================ */

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

:root {
  --white: #FFFFFF;
  --cream: #F8F5F0;
  --sage: #7B8F6B;
  --sage-dark: #5A6B4E;
  --sage-light: #E8EDE4;
  --footer-bg: #3D4F3A;
  --text: #2C2C2C;
  --text-light: #666666;
  --text-muted: #999999;
  --amber: #D4A843;
  --amber-light: #FFF8E7;
  --amber-border: #E6C56C;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

a:hover {
  color: var(--sage-dark);
}

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

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

/* --- Loader --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  mix-blend-mode: multiply;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  width: 100%;
  height: 100%;
  background: var(--sage);
  border-radius: 3px;
  animation: loaderFill 1.8s ease-in-out;
}

@keyframes loaderFill {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* --- Page Content --- */
.page-content {
  opacity: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

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

.nav-logo-img {
  height: 64px;
  width: auto;
  mix-blend-mode: multiply;
  transition: height var(--transition);
}

.navbar.scrolled .nav-logo-img {
  height: 52px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

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

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

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--sage);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--sage-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--text);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/praxis-2.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(44,64,40,0.55) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}

.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 8px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 12px;
}

/* --- Themen Grid --- */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--sage);
}

.topic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--sage);
}

.topic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.topic-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Quote Section --- */
.section-quote {
  background: var(--sage);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-content {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-content::before {
  content: '\201C';
  font-family: 'Lora', Georgia, serif;
  font-size: 16rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: -4rem;
  left: -3rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.quote-content blockquote {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.quote-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Principles Grid --- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.principle-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--cream);
}

.principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--sage);
}

.principle-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.principle-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- About Layout --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-layout-reverse {
  direction: rtl;
}

.about-layout-reverse > * {
  direction: ltr;
}

.about-image {
  padding-right: 20px;
  padding-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 18px 18px 0 var(--sage-light);
}

.about-text h2 {
  margin-bottom: 4px;
}

.about-role {
  font-size: 1rem;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 20px !important;
}

.about-text p {
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 12px;
}

/* Dog list */
.dog-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.dog-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.dog-list svg {
  flex-shrink: 0;
  color: var(--sage);
}

/* --- Steps Grid --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-item {
  padding: 8px 0;
}

.step-number {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--sage-light);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* --- Org Grid --- */
.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.org-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

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

.org-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--sage);
}

.org-card h3 {
  margin-bottom: 8px;
}

.org-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Contact Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--sage);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  word-break: break-word;
}

/* --- Crisis Box --- */
.crisis-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 36px;
  background: var(--amber-light);
  border: 2px solid var(--amber-border);
  border-radius: var(--radius);
  text-align: center;
}

.crisis-box h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}

.crisis-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.crisis-box a {
  color: var(--text);
}

.crisis-box a:hover {
  color: var(--sage);
}

/* --- Impressum --- */
.impressum-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.impressum-content h2 {
  margin-bottom: 24px;
}

.impressum-details p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.impressum-details a {
  color: var(--sage);
}

/* --- Footer Redesign --- */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

/* Wave top */
.footer-wave-top {
  line-height: 0;
}
.footer-wave-top svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Floating orbs */
.footer-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,143,107,0.25) 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite;
}
.orb-1 { width: 280px; height: 280px; top: -80px; left: -60px; animation-duration: 10s; animation-delay: 0s; }
.orb-2 { width: 160px; height: 160px; top: 20%; right: 4%; animation-duration: 7s; animation-delay: -3.5s; }
.orb-3 { width: 100px; height: 100px; bottom: 80px; left: 38%; animation-duration: 12s; animation-delay: -6s; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-22px) scale(1.06); opacity: 1; }
}

/* Brand (centered) */
.footer-brand {
  text-align: center;
  padding: 52px 0 44px;
  position: relative;
  z-index: 1;
}

.footer-brand-name {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: opacity 0.3s ease;
}
.footer-brand-name:hover {
  opacity: 0.75;
  color: #ffffff;
}

.footer-tagline {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.35s ease;
}
.footer-cta-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

/* Divider */
.footer-divider-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

/* Columns */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 11px;
  text-decoration: none;
  position: relative;
  width: fit-content;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.3s ease;
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-col a:hover::after {
  width: 100%;
}

.footer-contact-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  width: auto !important;
}
.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.footer-contact-item:hover svg {
  opacity: 1;
}

.footer-col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.footer-col-note {
  font-size: 0.83rem !important;
  color: rgba(255,255,255,0.38) !important;
  margin-top: 12px;
  line-height: 1.6 !important;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-bottom a:hover {
  color: rgba(255,255,255,0.8);
}

/* --- Fade-in Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children */
.stagger .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger .fade-in:nth-child(3) { transition-delay: 0.15s; }
.stagger .fade-in:nth-child(4) { transition-delay: 0.2s; }
.stagger .fade-in:nth-child(5) { transition-delay: 0.25s; }
.stagger .fade-in:nth-child(6) { transition-delay: 0.3s; }

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    z-index: 999;
    transition: right 0.35s ease;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--text) !important;
    font-size: 1.05rem;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Grids */
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

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

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

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

  /* About */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-layout-reverse {
    direction: ltr;
  }

  .about-image img {
    aspect-ratio: 3/2;
  }

  /* Footer */
  .footer-wave-top svg { height: 50px; }
  .footer-brand { padding: 40px 0 32px; }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }

  .topic-card {
    padding: 28px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================
   Personal & Animated Additions
   ============================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--sage-light), var(--sage), var(--sage-dark));
  z-index: 10001;
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* --- Cursor Glow --- */
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,143,107,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: left 0.18s ease, top 0.18s ease;
  will-change: left, top;
}

/* --- Directional Fade Animations --- */
.fade-in-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Personal Signature --- */
.about-signature {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sage);
  margin: 4px 0 20px;
  line-height: 1;
}

/* --- About Role with Caveat --- */
.about-role {
  font-family: 'Caveat', cursive !important;
  font-size: 1.25rem !important;
  color: var(--sage) !important;
  font-weight: 400 !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.01em;
}

/* --- Hero Subtitle gentle float --- */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}
.hero-content.visible .hero-subtitle {
  animation: gentleFloat 7s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* ============================================
   Playful Additions
   ============================================ */

/* --- Wave Dividers --- */
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.wave-bottom svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* --- Section Header Accent --- */
.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--sage);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* --- About Image Reverse Shadow --- */
.about-layout-reverse .about-image {
  padding-right: 0;
  padding-left: 20px;
}

.about-layout-reverse .about-image img {
  box-shadow: -18px 18px 0 var(--sage-light);
}

/* --- Principle Card Hover Glow --- */
.principle-card:hover {
  background: var(--cream);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* --- Step item subtle left border --- */
.step-item {
  padding: 8px 0 8px 20px;
  border-left: 2px solid var(--sage-light);
  transition: border-color var(--transition);
}

.step-item:hover {
  border-left-color: var(--sage);
}

/* --- Responsive Playful --- */
@media (max-width: 768px) {
  .about-image {
    padding-right: 0;
    padding-bottom: 16px;
  }

  .about-image img {
    box-shadow: 10px 10px 0 var(--sage-light);
  }

  .about-layout-reverse .about-image {
    padding-left: 0;
  }

  .about-layout-reverse .about-image img {
    box-shadow: 10px 10px 0 var(--sage-light);
  }

  .step-item {
    padding-left: 16px;
  }

  .wave-bottom svg {
    height: 40px;
  }
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { max-width: 100%; font-size: 15px; }
  .section-title { font-size: 1.5rem; }
  .contact-card { max-width: 100%; }
  .nav-links { width: 85vw; max-width: 300px; }
}

@media (max-width: 375px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 1.75rem; }
  .section { padding: 48px 0; }
  .btn { min-height: 44px; font-size: 14px; }
}
