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

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

:root {
  --bg:      #f7f6f4;
  --black:   #111111;
  --white:   #ffffff;
  --accent:  #e55a50;
  --accent2: #FF6F61;
  --mid:     #888880;
  --border:  #e2e0dc;
  --text:    #1e2530;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── FULLPAGE WRAPPER ─── */
#fullpage {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.fp-section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 3rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, border-color 0.5s;
}

nav.on-dark {
  background: transparent;
  border-bottom: none;
}

nav.on-light {
  background: rgba(247,245,241,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s;
}

nav.on-dark .nav-logo { color: rgba(255,255,255,0.9); }
nav.on-light .nav-logo { color: var(--black); }
.nav-logo span { color: var(--accent2); }

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

nav.on-dark .nav-links a { color: rgba(255,255,255,0.6); }
nav.on-dark .nav-links a:hover,
nav.on-dark .nav-links a.active { color: white; }

nav.on-light .nav-links a { color: rgba(34,34,34,0.55); }
nav.on-light .nav-links a:hover,
nav.on-light .nav-links a.active { color: var(--black); }

.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 0.5rem;
  min-width: 185px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5) !important;
}

.dropdown-menu li a:hover { color: white !important; }

.btn-nav {
  background: var(--accent) !important;
  color: white !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  opacity: 1 !important;
}

.btn-nav:hover { background: #4d7050 !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  margin: 5px 0; transition: all 0.3s;
}
nav.on-dark .nav-toggle span { background: white; }
nav.on-light .nav-toggle span { background: var(--black); }

/* ─── HERO SECTION ─── */
#section-hero {
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: kenburns 20s ease-out forwards;
  transition: opacity 1.2s ease;
}

@keyframes kenburns {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.18); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 5.5rem;
  max-width: 1400px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--accent2);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8.5vw, 8rem);
  font-weight: 300;
  line-height: 0.93;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s 0.65s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--accent2);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  line-height: 1.9;
  font-weight: 300;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}

.hero-scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.7), transparent);
  animation: scrollPulse 2.2s 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8) translateY(-4px); }
  50%       { opacity: 1;   transform: scaleY(1.1) translateY(0); }
}

/* ─── LEISTUNGEN SECTION ─── */
#section-leistungen {
  background: #f7f6f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  gap: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  flex: 1;
}

.service-card {
  background: #ffffff;
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover { background: #f0ede8; }

.service-card:hover .service-link::after { transform: translateX(5px); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.9rem;
}

.service-text {
  font-size: 0.82rem;
  color: rgba(30,30,30,0.5);
  line-height: 1.85;
  font-weight: 300;
  flex: 1;
  margin-bottom: 2rem;
}

.service-link {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-link::after { content: '→'; transition: transform 0.2s; }

/* ─── ABOUT SECTION ─── */
#section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-nature {
  position: relative;
  overflow: hidden;
}

.about-nature-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 8s ease-out;
}

#section-about:hover .about-nature-img {
  transform: scale(1.04);
}

.about-nature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(247,245,241,0.15));
}

.about-text {
  background: var(--bg);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 2rem;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.95;
  color: rgba(34,34,34,0.6);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.fact-item {
  padding: 1rem 0 1rem;
  border-bottom: 1px solid var(--border);
}

.fact-item:nth-child(odd) { padding-right: 2rem; }
.fact-item:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--border); }

.fact-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.fact-value {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}

/* ─── CONTACT SECTION ─── */
#section-contact {
  background: #f0ede8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.contact-nature {
  position: relative;
  overflow: hidden;
}

.contact-nature-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.5) brightness(0.4);
}

.contact-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 0.9rem;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
}

.contact-info {
  font-size: 0.88rem;
  color: rgba(30,30,30,0.6);
  line-height: 1.6;
}

.contact-info a { color: rgba(30,30,30,0.6); text-decoration: none; transition: color 0.2s; }
.contact-info a:hover { color: var(--accent); }

.social-links { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 2.5rem; }

.social-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: white;
  text-decoration: none;
  color: rgba(30,30,30,0.55);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.social-link:hover { border-color: var(--accent); color: var(--accent); }
.social-link-icon { width: 20px; text-align: center; color: var(--accent); font-size: 0.9rem; }

/* ─── FULLPAGE DOTS NAV ─── */
.fp-dots {
  position: fixed;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.fp-dot.active {
  background: var(--accent2);
  transform: scale(1.4);
}

.fp-dot:hover { background: rgba(255,255,255,0.7); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  border: none; cursor: pointer;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #4d7050; }
.btn-outline { border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.65); background: transparent; }
.btn-outline:hover { border-color: white; color: white; }
.btn-outline-dark { border: 1px solid rgba(0,0,0,0.18); color: rgba(34,34,34,0.7); background: transparent; }
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }

/* ─── FOOTER ─── */
footer {
  background: #060606;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}

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

.footer-links a {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent2); }
.footer-copy { font-size: 0.65rem; color: rgba(255,255,255,0.15); letter-spacing: 0.06em; }

/* ─── PAGE HERO (Unterseiten) ─── */
.page-hero {
  background: var(--black);
  padding: 9rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.5) brightness(0.35);
  animation: kenburns 25s ease-out forwards;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent2);
  flex-shrink: 0;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.page-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  max-width: 540px;
  line-height: 1.85;
  font-weight: 300;
}

/* ─── CONTENT (Unterseiten) ─── */
.content-section { padding: 5.5rem 3rem; background: var(--bg); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.content-block p {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(34,34,34,0.65);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.content-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin: 2.5rem 0 1.25rem;
}

.content-block ul { list-style: none; margin-bottom: 1.5rem; }

.content-block ul li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: rgba(34,34,34,0.65);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.content-block ul li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

/* Sidebar */
.sidebar-box { position: sticky; top: 7rem; }

.sidebar-quote {
  background: var(--black);
  padding: 2.5rem;
  margin-bottom: 2px;
}

.sidebar-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: white;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent2);
}

.sidebar-info { background: #eeebe5; padding: 2.5rem; }

.sidebar-info-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sidebar-info-label::before {
  content: ''; width: 16px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}

.sidebar-info p {
  font-size: 0.88rem;
  color: rgba(34,34,34,0.6);
  line-height: 1.85;
  font-weight: 300;
}

.sidebar-steps { background: var(--black); padding: 2.5rem; margin-top: 2px; }

.sidebar-steps-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.25rem;
}

.sidebar-steps ul {
  list-style: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 2.1;
}

.sidebar-steps ul li::before { content: '→ '; color: var(--accent2); }

/* Sub-cards */
.sub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 2rem;
  background: var(--border);
}

.sub-card {
  background: #eeebe5;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  display: block;
}

.sub-card:hover { background: #e5e2db; }

.sub-card-num {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.sub-card strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 0.5rem; }
.sub-card p { font-size: 0.82rem; color: rgba(34,34,34,0.5); line-height: 1.65; margin: 0; }

/* ─── VITA ─── */
.vita-layout { display: grid; grid-template-columns: 1fr 280px; gap: 5rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.vita-group { margin-bottom: 3.5rem; }

.vita-group-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.vita-group-title::before { content: ''; width: 18px; height: 1px; background: var(--accent); flex-shrink: 0; }

.vita-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.vita-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  color: var(--accent2);
  font-style: italic;
  line-height: 1.4;
}

.vita-content strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 0.2rem; }
.vita-org { display: block; font-size: 0.8rem; color: rgba(34,34,34,0.45); margin-bottom: 0.5rem; font-style: italic; }
.vita-content p { font-size: 0.82rem; color: rgba(34,34,34,0.5); line-height: 1.75; margin: 0; }

.vita-sidebar { position: sticky; top: 7rem; }
.vita-sidebar-box { background: var(--black); padding: 2rem; margin-bottom: 2px; }
.vita-sidebar-box p, .vita-sidebar-box li { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.85; }
.vita-sidebar-box ul { list-style: none; }

/* ─── PORTFOLIO ─── */
.portfolio-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.filter-btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  background: none;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(34,34,34,0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }

.portfolio-card { background: var(--bg); padding: 2.5rem; transition: background 0.2s; }
.portfolio-card:hover { background: #eeebe5; }

.portfolio-card-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: rgba(0,0,0,0.05); line-height: 1; margin-bottom: 0.75rem; }
.portfolio-card-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.portfolio-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--black); margin-bottom: 0.75rem; }
.portfolio-card-text { font-size: 0.82rem; color: rgba(34,34,34,0.55); line-height: 1.8; margin-bottom: 1.25rem; }
.portfolio-card-footer { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(34,34,34,0.3); padding-top: 1rem; border-top: 1px solid var(--border); }

/* ─── LEGAL ─── */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--black); margin: 2.5rem 0 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 0.88rem; font-weight: 600; color: var(--black); margin: 1.5rem 0 0.5rem; }
.legal-content p { font-size: 0.9rem; color: rgba(34,34,34,0.6); line-height: 1.9; margin-bottom: 1rem; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  #fullpage { scroll-snap-type: none; overflow-y: auto; height: auto; }
  .fp-section { height: auto; min-height: 100vh; scroll-snap-align: none; }
  #section-leistungen { padding: 5rem 2rem; }
  .services-header { flex-direction: column; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  #section-about { grid-template-columns: 1fr; }
  .about-nature { min-height: 45vh; }
  .about-text { padding: 4rem 2rem; }
  #section-contact { grid-template-columns: 1fr; }
  .contact-nature { min-height: 35vh; }
  .contact-content { padding: 4rem 2rem; }
  .hero-content { padding: 0 2rem 4rem; }
  .hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 3.5rem; }
  .vita-layout { grid-template-columns: 1fr; gap: 3rem; }
  .vita-sidebar { position: static; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-cards { grid-template-columns: 1fr; }
  .content-section { padding: 4rem 2rem; }
  .page-hero { padding: 7rem 2rem 3.5rem; }
  .fp-dots { display: none; }
  footer { padding: 2rem; }
  nav { padding: 0 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 1rem; color: rgba(255,255,255,0.6) !important; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.04); }
  .nav-toggle { display: block; }
  .hero-title { font-size: clamp(3rem, 11vw, 5rem); }
  .hero-content { padding: 0 1.5rem 3.5rem; }
  .content-section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 6rem 1.5rem 3rem; }
  .vita-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .about-facts { grid-template-columns: 1fr; }
  .fact-item:nth-child(even) { padding-left: 0; border-left: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
