/* ============================================================
   naturfabrik.ch – v2 Redesign
   Palette: warm off-white · terracotta · olive · forest green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* Colours from logo */
  --bg:           #F8F5F0;
  --bg-warm:      #F2EDE5;
  --surface:      #FFFFFF;
  --text:         #1C2419;
  --text-muted:   #6B7868;
  --forest:       #2D5440;   /* dark green – logo leaf */
  --olive:        #8B8A52;   /* khaki/olive – logo right shape */
  --terra:        #C4523A;   /* terracotta – logo left shape */
  --border:       rgba(44, 84, 64, 0.12);
  --shadow-soft:  0 4px 24px rgba(28, 36, 25, 0.08);
  --shadow-card:  0 8px 32px rgba(28, 36, 25, 0.10);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:       1.2rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout helpers ── */
.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-main {
  min-height: 100svh;
}

.skip-link {
  position: absolute; left: -999px; top: 0.5rem;
  background: var(--surface); color: var(--text);
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  border: 1px solid var(--border); z-index: 9999;
}
.skip-link:focus { left: 1rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

/* Logo / Brand */
.brand__link { text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 0.7rem; }
.brand__logo { height: 3.5rem; width: auto; }
.brand__text { display: flex; flex-direction: column; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--forest);
}
.brand__tagline { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* Nav */
.site-nav__list { list-style: none; padding: 0; display: flex; gap: 0.25rem; }
.site-nav__link {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 2rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.site-nav__link:hover { color: var(--forest); border-color: var(--border); }
.site-nav__link.active {
  color: var(--forest);
  border-color: rgba(45, 84, 64, 0.3);
  background: rgba(45, 84, 64, 0.07);
  font-weight: 500;
}

/* ── Hero Landing ── */
.hero-landing {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 3rem 1.5rem;
}

.hero-landing__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 600px;
}

.hero-landing__logo {
  height: auto;
  width: 100%;
  max-width: 2000px;
  margin-bottom: 1rem;
}

.hero-landing__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-landing__tagline {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.02em;
  margin: 0;
}

.hero-landing__title {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0;
}

.hero-landing__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.hero-landing__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;
  text-decoration: none;
  color: var(--forest);
  background: transparent;
  border: 2px solid var(--forest);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-landing__link:hover {
  background: var(--forest);
  color: var(--surface);
}

/* Responsive für Mobilgeräte */
@media (max-width: 768px) {
  .hero-landing {
    min-height: 100svh;
    padding: 2rem 1rem;
  }

  .hero-landing__content {
    gap: 1.5rem;
  }

  .hero-landing__logo {
    max-width: 600px;
  }

  .hero-landing__tagline {
    font-size: 1.4rem;
  }

  .hero-landing__title {
    font-size: 1.4rem;
  }

  .hero-landing__nav {
    gap: 0.75rem;
  }

  .hero-landing__link {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-landing__logo {
    max-width: 400px;
  }

  .hero-landing__tagline {
    font-size: 1.2rem;
  }

  .hero-landing__title {
    font-size: 1.2rem;
  }

  .hero-landing__nav {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-landing__link {
    width: 100%;
    padding: 0.7rem 1.5rem;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__video,
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.9) brightness(0.95);
}
.hero__overlay {
  position: relative; z-index: 2;
  width: 100%;
  padding: 6rem 0 4rem;
  background: linear-gradient(
    to top,
    rgba(28, 36, 25, 0.75) 0%,
    rgba(28, 36, 25, 0.35) 50%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero__overlay.show { opacity: 1; transform: translateY(0); }
.hero__inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: 2rem;
}
.hero__title em { font-style: italic; color: rgba(255,255,255,0.8); }
.hero__nav { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__link {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.hero__link--primary {
  background: var(--terra);
  color: #fff;
  border: 1px solid transparent;
}
.hero__link--primary:hover { background: #b34530; }
.hero__link--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.hero__link--ghost:hover { background: rgba(255,255,255,0.22); }

/* ── Sections ── */
.section { padding: 4rem 0; }
.section--alt { background: var(--bg-warm); }
.section__label {
  display: inline-block;
  font-family: var(--font-body) !important;
  font-size: 1.2rem !important; font-weight: 500;
  letter-spacing: 0.12em; text-transform: lowercase !important;
  color: var(--terra); margin-bottom: 0.6rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.section__title em { font-style: italic; color: var(--forest); }
.section__body { color: var(--text-muted); max-width: 55ch; line-height: 1.75; }
.section__list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.section__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.section__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--terra);
}

/* ── Services block ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.service-card__icon {
  width: 2.4rem; height: 2.4rem;
  border-radius: 0.7rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.service-card__icon--terra { background: rgba(196,82,58,0.1); color: var(--terra); }
.service-card__icon--olive { background: rgba(139,138,82,0.12); color: var(--olive); }
.service-card__icon--forest { background: rgba(45,84,64,0.1); color: var(--forest); }
.service-card__title { font-weight: 500; margin-bottom: 0.4rem; font-size: 0.95rem; }
.service-card__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Gallery ── */
.gallery-intro { margin-bottom: 2.5rem; }
.gallery-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-card--clickable { cursor: pointer; }
.gallery-card--clickable:hover,
.gallery-card--clickable:focus {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(28,36,25,0.16);
  outline: none;
}
.gallery-card--clickable:focus { box-shadow: 0 0 0 3px rgba(45,84,64,0.3), var(--shadow-card); }
.gallery-card img {
  width: 100%; height: 230px;
  object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.gallery-card:hover img { transform: scale(1.03); }

/* ── Gallery Modal ── */
.gallery-modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gallery-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 36, 25, 0.93);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 0;
}

.gallery-modal__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.gallery-modal__close:hover { background: rgba(196, 82, 58, 0.5); transform: scale(1.08); }

.gallery-modal__viewport {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-modal__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-modal__slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(80vh, 750px);
}

.gallery-modal__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.gallery-modal__btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.gallery-modal__btn:hover { background: rgba(255, 255, 255, 0.25); }
.gallery-modal__btn--prev { left: 1.5rem; }
.gallery-modal__btn--next { right: 1.5rem; }

.gallery-modal__dots {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  max-width: min(92vw, 1100px);
}
.gallery-modal__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.gallery-modal__dot--active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Process / So arbeiten wir ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.process-step { position: relative; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(45,84,64,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step__title { font-weight: 500; margin-bottom: 0.4rem; }
.process-step__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Contact form ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  width: 100%;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info__item {}
.contact-info__label {
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 0.3rem;
}
.contact-info__value { font-size: 0.95rem; line-height: 1.6; }
.contact-info__value a { color: var(--forest); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.contact-info__value a:hover { border-bottom-color: var(--forest); }

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.form__row { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.form__row--checkbox { grid-template-columns: 1.1rem 1fr; align-items: start; gap: 0.6rem; }
label { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.01em; }
input, textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(45,84,64,0.4);
  box-shadow: 0 0 0 3px rgba(45,84,64,0.1);
}
textarea { resize: vertical; }
.form__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form__hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn--primary {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.btn--primary:hover { background: #234534; }
.btn--secondary {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--secondary:hover { border-color: rgba(44,84,64,0.3); color: var(--text); }

/* Form feedback & Character Counter */
.form-message {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}
.form-message--success {
  border-color: rgba(45,84,64,0.35);
  background: rgba(45,84,64,0.07);
  color: var(--forest);
}
.form-message--error {
  border-color: rgba(196,82,58,0.4);
  background: rgba(196,82,58,0.07);
  color: var(--terra);
}

.char-counter {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.2rem;
  transition: color 0.2s ease;
}
.char-counter--warning { color: #c4853a; }   /* terracotta-orange */
.char-counter--limit   { color: #c4523a; }   /* brand-rot */"

/* ── Footer ── */
.site-footer {
  background: var(--bg-warm);
  color: var(--text-muted);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-info {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 1.6rem 0;
}
.footer-link { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom__text { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* ── Page header ── */
.page-hero {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
}
.page-hero .section__label { margin-bottom: 0.5rem; }
.page-hero .section__title { margin-bottom: 0.75rem; }
.page-hero .section__body { max-width: none; }

/* ── Team Gallery ── */
.section--contact { background: var(--bg-warm); }

.team-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card--clickable { cursor: pointer; }
.team-card--clickable:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.team-card--clickable:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 84, 64, 0.3), var(--shadow-card);
}

.section--team { }

/* ── Team Modal ── */
.team-modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.team-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 36, 25, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 0;
}

.team-modal__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.team-modal__close:hover { background: rgba(196, 82, 58, 0.5); transform: scale(1.08); }

.team-modal__viewport {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  overflow: hidden;
  border-radius: var(--radius);
}

.team-modal__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.team-modal__slide {
  flex: 0 0 100%;
  overflow-y: auto;
}

.team-modal__slide .team-card {
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  transform: none !important;
  cursor: default;
}

.team-modal__btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.team-modal__btn:hover { background: rgba(255, 255, 255, 0.25); }
.team-modal__btn--prev { left: 1.5rem; }
.team-modal__btn--next { right: 1.5rem; }

.team-modal__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.team-modal__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.team-modal__dot--active {
  background: #fff;
  transform: scale(1.3);
}

.team-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.team-card:hover .team-card__image img {
  transform: scale(1.04);
}

.team-card__content {
  padding: 1.5rem;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.team-card__role {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: normal;
  color: var(--terra);
  margin-bottom: 0.85rem;
}

.team-card__bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.team-card__bio-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.team-card__bio-extra:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.team-card__bio-toggle {
  align-self: flex-start;
  margin-top: 0.2rem;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  border: 1px solid rgba(45, 84, 64, 0.3);
  background: transparent;
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.team-card__bio-toggle:hover {
  background: rgba(45, 84, 64, 0.08);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps { grid-template-columns: 1fr; gap: 1rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .team-gallery { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-modal__btn--prev { left: 0.5rem; }
  .team-modal__btn--next { right: 0.5rem; }
  .gallery-modal__btn--prev { left: 0.5rem; }
  .gallery-modal__btn--next { right: 0.5rem; }
}
@media (max-width: 620px) {
  .site-header .container { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-modal__btn { width: 2.2rem; height: 2.2rem; font-size: 1.2rem; }
  .gallery-modal__btn { width: 2.2rem; height: 2.2rem; font-size: 1.2rem; }
  .gallery-modal__slide { height: min(70vh, 600px); }
  .hero__title { font-size: clamp(2rem, 8vw, 3.5rem); }
}
