/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --grey-100: #f5f5f5;
  --grey-200: #e5e5e5;
  --grey-400: #a3a3a3;
  --grey-600: #525252;
  --grey-800: #262626;
  --sage: #d8e0cc;
  --dark-green: #8a9774;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250,250,250,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-200);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-logo a {
  text-decoration: none;
  color: inherit;
}

.nav-logo span {
  font-weight: 300;
  color: var(--grey-400);
  margin-left: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-style: normal;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--grey-600);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); }
.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--dark-green);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

.lang-toggle {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  cursor: pointer;
  border: 1px solid var(--grey-200);
  padding: 0.35rem 0.75rem;
  transition: all 0.2s;
  text-decoration: none;
}

.lang-toggle:hover {
  border-color: var(--black);
  color: var(--black);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 102;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 100;
}

.nav-overlay.active {
  display: block;
}

/* ========== EYEBROW SYSTEM ========== */
.hero-label,
.section-label,
.blog-card-date,
.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-label { color: var(--dark-green); margin-bottom: 2rem; }
.section-label { color: var(--grey-400); margin-bottom: 1rem; }
.blog-card-date { color: var(--grey-400); margin-bottom: 0.75rem; }
.testimonial-author { color: var(--grey-400); }

.section-number {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-green);
  margin-right: 0.5rem;
  font-weight: 500;
}

.step-number {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-green);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero h1 .thin {
  font-style: italic;
  color: var(--grey-600);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--grey-600);
  max-width: 550px;
  margin-top: 2rem;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--dark-green);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #7a8764;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--grey-200);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--dark-green);
}

/* ========== SECTIONS ========== */
section {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 2rem;
}

/* ========== THREE STEPS ========== */
.steps-section {
  background: var(--sage);
  color: var(--black);
  padding: 6rem 3rem;
  max-width: none;
}

.steps-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.step {
  padding: 2rem 0;
  border-top: 2px solid var(--dark-green);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.step-subtitle {
  font-size: 0.9rem;
  color: var(--grey-600);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.step p {
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== IMAGE BREAK ========== */
.image-break {
  width: 100%;
  height: 60vh;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-break img,
.image-break video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll expand animation */
.image-break-expand {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  transition: none;
}

.image-break-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* ========== ABOUT TEASER ========== */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-placeholder {
  aspect-ratio: 3/4;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  color: var(--grey-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-credentials {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-200);
  display: flex;
  gap: 3rem;
}

.credential {
  font-size: 0.8rem;
  color: var(--grey-400);
  letter-spacing: 0.05em;
}

.credential strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.25rem;
}

/* ========== TESTIMONIAL ========== */
.testimonial-section {
  background: var(--grey-100);
  padding: 6rem 3rem;
  max-width: none;
}

.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--grey-800);
  margin-bottom: 2rem;
}

/* ========== BLOG CARDS (Homepage + Blog page) ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  border: 1px solid var(--grey-200);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--dark-green);
}

.blog-card-image {
  aspect-ratio: 16/10;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* ========== CTA ========== */
.cta-section {
  background: var(--sage);
  color: var(--black);
  padding: 5rem 3rem;
  max-width: none;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.cta-section p {
  color: var(--grey-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--grey-200);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dark-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

/* ========== FOOTER ========== */
footer {
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--grey-200);
  font-size: 0.8rem;
  color: var(--grey-400);
}

footer a {
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

/* ========== PAGE HEADER (About, Blog, Legal) ========== */
.page-header {
  padding: 10rem 3rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.page-header h1 .thin {
  font-style: italic;
  color: var(--grey-600);
}

.page-header-sub {
  font-size: 1.15rem;
  color: var(--grey-600);
  max-width: 600px;
  line-height: 1.7;
}

/* ========== BIO SECTION (About page) ========== */
.bio-section {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.bio-image-placeholder {
  aspect-ratio: 3/4;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 8rem;
  overflow: hidden;
}

.bio-image-placeholder img,
.bio-image-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.bio-text p {
  color: var(--grey-600);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.bio-text p:last-of-type {
  margin-bottom: 0;
}

/* ========== VALUES (About page) ========== */
.values-section {
  background: var(--sage);
  padding: 6rem 3rem;
}

.values-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.values-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-card {
  padding: 2rem 0;
  border-top: 2px solid var(--dark-green);
}

.value-number {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-green);
  font-weight: 500;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== TIMELINE (About page) ========== */
.timeline-section {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.timeline-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.timeline {
  display: grid;
  grid-template-columns: 120px 1px 1fr;
  gap: 0 3rem;
}

.timeline-year {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-green);
  padding-top: 2rem;
  text-align: right;
}

.timeline-line {
  background: var(--grey-200);
  position: relative;
}

.timeline-line::before {
  content: '';
  position: absolute;
  top: 2.3rem;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark-green);
}

.timeline-content {
  padding: 2rem 0;
  border-bottom: 1px solid var(--grey-200);
}

.timeline-content:last-child {
  border-bottom: none;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.7;
}

/* ========== QUALIFICATIONS (About page) ========== */
.quals-section {
  background: var(--grey-100);
  padding: 6rem 3rem;
}

.quals-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.quals-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.quals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.qual-item {
  padding: 2rem;
  border: 1px solid var(--grey-200);
  background: var(--white);
}

.qual-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.qual-item p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.6;
}

.qual-meta {
  font-size: 0.8rem;
  color: var(--grey-400);
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}

/* ========== BLOG LIST (Blog page) ========== */
.blog-list-section {
  padding: 2rem 3rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 4rem;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-featured:hover .featured-image {
  border-color: var(--dark-green);
}

.featured-image {
  aspect-ratio: 16/10;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
  transition: border-color 0.3s;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--grey-400);
  margin-bottom: 1rem;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.featured-excerpt {
  color: var(--grey-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-green);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.read-more:hover { color: #7a8764; }

/* ========== ARTICLE (Blog article page) ========== */
.article-header {
  padding: 3rem 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--grey-400);
  margin-bottom: 1.5rem;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.article-intro {
  font-size: 1.15rem;
  color: var(--grey-600);
  line-height: 1.8;
}

.article-image {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  aspect-ratio: 21/9;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 3rem 6rem;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--grey-800);
  margin-bottom: 1.5rem;
}

.article-body blockquote {
  border-left: 3px solid var(--dark-green);
  padding-left: 2rem;
  margin: 2.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--grey-600);
}

.article-back {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 3rem 4rem;
  border-top: 1px solid var(--grey-200);
  padding-top: 2rem;
}

.article-back a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-green);
  text-decoration: none;
  transition: color 0.2s;
}

.article-back a:hover { color: #7a8764; }

/* ========== LEGAL PAGES (Impressum, Datenschutz) ========== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 3rem 6rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 101;
    list-style: none;
  }

  .nav-links.open {
    display: flex;
  }

  section, .hero { padding: 4rem 1.5rem; }
  .steps-grid, .blog-grid { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 3rem; }
  .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bio-image-placeholder { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .quals-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 80px 1px 1fr; gap: 0 1.5rem; }
  .blog-featured { grid-template-columns: 1fr; gap: 2rem; }
  .page-header, .bio-section, .timeline-section, .blog-list-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .article-header, .article-body, .article-back { padding-left: 1.5rem; padding-right: 1.5rem; }
  .legal-content { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-credentials { flex-direction: column; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-indicator {
    display: none;
  }
}
