/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #F4EDE4;
  --bg-soft: #F7F2EB;
  --card: #E7D7C9;
  --card-deep: #DFCDBB;
  --text: #1F1C1A;
  --text-muted: rgba(31, 28, 26, 0.72);
  --accent: #C7A98A;
  --accent-deep: #B8956F;
  --line: rgba(31, 28, 26, 0.1);
  --line-soft: rgba(31, 28, 26, 0.06);
  --white: #fff;
  --shadow: 0 8px 32px rgba(31, 28, 26, 0.05);
  --shadow-strong: 0 20px 60px rgba(31, 28, 26, 0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Source Sans 3', -apple-system, sans-serif;
  --radius: 2px;
  --radius-lg: 4px;
  --radius-xl: 6px;
  --space-section: 9rem;
  --space-block: 1.5rem;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(231, 215, 201, 0.45) 0%, transparent 50%),
    var(--bg);
  line-height: 1.75;
  letter-spacing: 0.015em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.25rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 2.75rem;
  text-align: center;
  color: var(--text);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.btn-nav {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 0.7rem 1.4rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
}
.btn-nav:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow: var(--shadow);
}
.btn-hero {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  margin-top: 0.75rem;
}
.btn-hero:hover {
  background: var(--text);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 2.5rem;
  background: transparent;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.navbar.scrolled {
  padding: 1.1rem 2.5rem;
  background: rgba(244, 237, 228, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.navbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a:not(.btn) {
  position: relative;
  font-size: 0.75rem;
  font-weight: 450;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity 0.35s var(--ease);
}
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-menu a:not(.btn):hover {
  opacity: 1;
}
.nav-menu a:not(.btn):hover::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2.5rem 7rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 237, 228, 0.42) 0%, rgba(231, 215, 201, 0.55) 40%, rgba(244, 237, 228, 0.92) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--card);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1.35rem;
  color: var(--text);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.35;
}
.hero-subtext {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-footer {
  position: absolute;
  bottom: 2.75rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  z-index: 1;
}
.hero-location {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  transition: color 0.35s var(--ease);
}
.hero-link:hover { color: var(--text); }
.hero-link span { transition: transform 0.4s var(--ease); }
.hero-link:hover span { transform: translateX(6px); }

/* ===== INTRO / ABOUT ===== */
.intro {
  padding: var(--space-section) 2.5rem;
  background: var(--bg);
}
.intro-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.intro-copy p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}
.intro-emphasis {
  font-family: var(--font-serif) !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  font-style: italic;
  color: var(--text) !important;
  margin: 2.75rem 0 !important;
  line-height: 1.45 !important;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: var(--space-section) 2.5rem;
  background:
    linear-gradient(180deg, var(--card) 0%, var(--card-deep) 100%);
  position: relative;
}
.philosophy::before,
.philosophy::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.philosophy::before { top: 3.5rem; }
.philosophy::after { bottom: 3.5rem; }
.philosophy-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-body p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.philosophy-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem) !important;
  font-weight: 500 !important;
  color: var(--text) !important;
  margin-bottom: 1.75rem !important;
  line-height: 1.3 !important;
}
.philosophy-close {
  font-family: var(--font-serif);
  font-size: 1.5rem !important;
  font-style: italic;
  font-weight: 400 !important;
  color: var(--text) !important;
  margin: 2.75rem 0 0 !important;
  line-height: 1.4 !important;
}

/* ===== DOCTOR ===== */
.doctor {
  padding: var(--space-section) 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.doctor-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5.5rem;
  align-items: center;
}
.doctor-text .section-label { text-align: left; }
.doctor-name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.35rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.doctor-role {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 2rem;
}
.doctor-desc {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.doctor-list {
  margin: 0.75rem 0 1.75rem 0;
  padding-left: 0;
}
.doctor-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
}
.doctor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--accent-deep);
}
.doctor-image-wrap {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  min-height: 520px;
  background: var(--card);
  border: 1px solid var(--line-soft);
}
.doctor-image-wrap::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 1;
}
.doctor-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: var(--card);
  transition: transform 1.2s var(--ease);
}
.doctor-image-wrap:hover .doctor-image {
  transform: scale(1.03);
}

/* ===== APPROACH ===== */
.approach {
  padding: var(--space-section) 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.approach-intro {
  max-width: 560px;
  margin: -1.25rem auto 3.5rem;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}
.approach-item {
  padding: 2.25rem 2rem 2.25rem 0;
  border-bottom: 1px solid var(--line);
}
.approach-item:nth-child(odd) {
  padding-right: 2.5rem;
  border-right: 1px solid var(--line);
}
.approach-item:nth-child(even) {
  padding-left: 2.5rem;
}
.approach-item h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.approach-item p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}
.approach-focus {
  max-width: 640px;
  margin: 4rem auto 0;
  padding: 0;
  text-align: center;
}
.approach-focus-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.75rem;
}
.approach-focus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.approach-focus-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
}
.approach-focus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: var(--accent-deep);
}
.approach-focus > p:last-child {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ===== CONDITIONS ===== */
.conditions {
  padding: var(--space-section) 2.5rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(231, 215, 201, 0.35) 100%),
    var(--bg);
}
.conditions-intro {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: -1.25rem auto 3rem;
  max-width: 480px;
}
.conditions-list {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}
.conditions-list li {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.3;
  transition: padding-left 0.4s var(--ease), color 0.4s var(--ease);
}
.conditions-list li:hover {
  padding-left: 0.5rem;
  color: var(--accent-deep);
}
.conditions-note {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* ===== WHY CHOOSE ===== */
.why {
  padding: var(--space-section) 2.5rem;
  background: var(--card);
}
.why-inner {
  max-width: 640px;
  margin: 0 auto;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.why-list li {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.5;
  padding: 1.5rem 0 1.5rem 2.25rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--text);
  transition: padding-left 0.4s var(--ease);
}
.why-list li:hover {
  padding-left: 2.75rem;
}
.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--accent-deep);
  transform: translateY(-50%);
}

/* ===== ONLINE CONSULTATION ===== */
.online {
  padding: var(--space-section) 2.5rem;
}
.online-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.online-intro {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin: -1.25rem 0 2.75rem;
}
.online-how {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 2rem;
}
.online-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--line);
}
.online-steps li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.online-step-num {
  flex-shrink: 0;
  width: 2rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-deep);
  line-height: 1;
}
.online-step-text {
  font-size: 1.0625rem;
  font-weight: 400;
}
.online-close {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* ===== CTA ===== */
.cta {
  padding: var(--space-section) 2.5rem calc(var(--space-section) * 0.6);
  display: flex;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
}
.cta-container {
  width: 100%;
  max-width: 720px;
  background: var(--card);
  padding: 4.5rem 3.5rem 4rem;
  text-align: center;
  box-shadow: var(--shadow-strong);
  position: relative;
  border: 1px solid var(--line-soft);
}
.cta-container::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.15;
}
.cta-text {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.15rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-aims {
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cta-list {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 auto 2rem;
  text-align: left;
}
.cta-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}
.cta-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--accent-deep);
}
.btn-cta {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--card-deep);
  padding: 5.5rem 2.5rem 2rem;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr;
  gap: 4.5rem;
}
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.footer-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 300px;
}
.footer-links {
  display: flex;
  gap: 4.5rem;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.5rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
  transition: color 0.35s var(--ease);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ===== REVEAL MOTION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== MOTION ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-brand,
  .hero-title,
  .hero-subtext,
  .btn-hero {
    animation: fadeUp 1.2s var(--ease) both;
  }
  .hero-title { animation-delay: 0.18s; }
  .hero-subtext { animation-delay: 0.32s; }
  .btn-hero { animation-delay: 0.48s; }
  .hero-footer {
    animation: fadeUp 1.2s var(--ease) 0.65s both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --space-section: 6.5rem; }
  .doctor { padding: 5rem 2rem; }
  .doctor-inner { grid-template-columns: 1fr; gap: 3rem; }
  .doctor-text .section-label { text-align: center; }
  .doctor-text { text-align: center; }
  .doctor-list { display: inline-block; text-align: left; }
  .doctor-image-wrap {
    order: -1;
    min-height: 400px;
  }
  .doctor-image { min-height: 400px; }
  .approach { padding: 5rem 2rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-item,
  .approach-item:nth-child(odd),
  .approach-item:nth-child(even) {
    padding: 1.75rem 0;
    border-right: none;
  }
  .approach-focus-list { grid-template-columns: 1fr; }
  .conditions-list { grid-template-columns: 1fr; }
  .cta { padding: 5rem 2rem; }
  .cta-container { padding: 3.5rem 2rem; }
  .cta-container::before {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .footer { padding: 4rem 2rem 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .intro, .philosophy, .conditions, .why, .online { padding: 5rem 2rem; }
  .philosophy::before { top: 2.5rem; }
  .philosophy::after { bottom: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    box-shadow: -8px 0 40px rgba(31, 28, 26, 0.08);
    transition: right 0.45s var(--ease);
    z-index: 101;
  }
  .nav-menu.open { right: 0; }
  .menu-toggle { display: flex; z-index: 102; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { min-height: 100svh; padding: 7rem 1.5rem 5.5rem; }
  .hero-footer {
    flex-direction: column;
    gap: 0.85rem;
    padding: 0 1rem;
    bottom: 1.75rem;
  }
  .section-title { margin-bottom: 2rem; }
  .footer-links { flex-direction: column; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .navbar { padding: 1.25rem 1.25rem; }
  .navbar.scrolled { padding: 0.9rem 1.25rem; }
  .cta-container { padding: 3rem 1.35rem 2.75rem; }
}
