/* ============================================================
   FEHN Holding – Design System
   Dark Premium | Taupe Accent | Cormorant + Inter
   ============================================================ */

/* --- Google Fonts are loaded via <link> in each HTML page for faster rendering --- */

/* --- Custom Properties --- */
:root {
  --bg:          #0d0d0d;
  --bg-2:        #141414;
  --bg-3:        #1a1a1a;
  --accent:      #7C7561;
  --accent-light:#9a9278;
  --text:        #f0ede8;
  --text-muted:  #888880;
  --text-dim:    #555550;
  --border:      rgba(124, 117, 97, 0.2);
  --border-light:rgba(240, 237, 232, 0.08);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --nav-h:       80px;
  --max-w:       1280px;
  --section-py:  120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* iOS Safari: verhindert Layout-Sprung durch Adressleiste */
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  overscroll-behavior-y: contain;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
.serif        { font-family: var(--font-serif); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.55);
  margin-bottom: 1.2rem;
  display: block;
}

p { max-width: 60ch; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-py) 0;
}

.section--dark  { background: var(--bg); }
.section--dark2 { background: var(--bg-2); }
.section--dark3 { background: var(--bg-3); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.2;
}

.nav__logo-text span {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(13, 13, 13, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__drawer.open { display: flex; }

.nav__drawer a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__drawer a:hover { color: var(--text); }

/* --- Hero --- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.3) 0%,
    rgba(13,13,13,0.2) 40%,
    rgba(13,13,13,0.7) 80%,
    rgba(13,13,13,0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.hero__content h1 {
  color: var(--text);
  max-width: 14ch;
  margin-bottom: 2rem;
}

.hero__content h1 em {
  font-style: italic;
  color: #d4c9ae;
}

.hero .eyebrow,
.page-hero__content .eyebrow,
.unit-card__content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__scroll::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--accent-light);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.btn:hover svg { transform: translateX(3px); }

/* --- Section Headers --- */
.section-header {
  margin-bottom: 72px;
}

.section-header--centered {
  text-align: center;
}

.section-header--centered p {
  margin: 1.2rem auto 0;
}

.section-header p {
  margin-top: 1.2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Two-Unit Cards (Homepage) --- */
.units {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.unit-card {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 52px 48px;
}

.unit-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.unit-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.3) 60%, transparent 100%);
}

.unit-card:hover .unit-card__bg {
  transform: scale(1.04);
}

.unit-card__content {
  position: relative;
  z-index: 2;
}

.unit-card__content h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.unit-card__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  max-width: 40ch;
}

/* --- Statement / Quote Section --- */
.statement {
  background: var(--bg-2);
  padding: 140px 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.statement__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  max-width: 22ch;
  margin: 0 auto 2rem;
  line-height: 1.4;
}

.statement__line {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

.statement__source {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* --- Investments Grid --- */
.invest-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}

.invest-intro__criteria {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.criteria-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.criteria-item__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  min-width: 2.5rem;
  padding-top: 4px;
}

.criteria-item__text h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text);
}

.criteria-item__text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Portfolio Logos */
.portfolio-section {
  padding-top: 80px;
  border-top: 1px solid var(--border-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 52px;
}

.portfolio-item {
  background: var(--bg-3);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}

.portfolio-item:hover {
  background: var(--bg-3);
}

.portfolio-item__logo {
  height: 36px;
  display: flex;
  align-items: center;
}

.portfolio-item__logo img {
  max-height: 36px;
  width: auto;
  filter: brightness(0) invert(0.5);
  transition: filter 0.3s;
}

.portfolio-item:hover .portfolio-item__logo img {
  filter: brightness(0) invert(0.8);
}

.portfolio-item__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.portfolio-item__sector {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Placeholder logo box */
.logo-placeholder {
  width: 80px;
  height: 28px;
  background: var(--border);
  border-radius: 2px;
}

/* EXIT badge for sold investments */
.exit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  background: rgba(124, 117, 97, 0.08);
  margin-top: 6px;
  align-self: flex-start;
}

/* --- FEHN Bau Page --- */
.bau-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg-2);
  padding: 52px 40px;
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--bg-3);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--accent);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* Projects / Referenzen */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.project-card {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.project-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.project-card:hover .project-card__bg { transform: scale(1.04); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.5) 40%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 44px 40px;
}

.project-card__info .eyebrow {
  color: rgba(255,255,255,0.7);
}

.project-card__info h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.project-card__info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Über uns / About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-grid__img {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.about-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-grid__img:hover img { transform: scale(1.03); }

.about-grid__text h2 {
  margin-bottom: 1.5rem;
}

.about-grid__text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
  max-width: none;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 100px;
}

.value-item {
  background: var(--bg-2);
  padding: 52px 40px;
}

.value-item__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.value-item h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--text);
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* --- Kontakt --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-detail__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail__label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-detail__value a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact-detail__value a:hover { color: var(--accent-light); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-name-email {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}

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

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

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

/* --- Divider Line --- */
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}

.divider--center { margin: 2rem auto; }

/* --- Footer --- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  padding: 72px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 36px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 28ch;
}

.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--accent-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer__bottom a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer__bottom a:hover { color: var(--accent-light); }

.footer__legal {
  display: flex;
  gap: 28px;
}

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  height: 60svh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.35) 0%, rgba(13,13,13,0.6) 50%, rgba(13,13,13,0.92) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* --- Breadcrumb-style back link --- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  margin-bottom: 1.2rem;
}

.back-link:hover { color: var(--accent-light); }

.back-link svg {
  width: 12px;
  height: 12px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --section-py: 90px; }

  .units { grid-template-columns: 1fr; }
  .unit-card { height: 500px; }

  .invest-intro { grid-template-columns: 1fr; gap: 52px; }

  .bau-services { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-grid__img { height: 420px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }

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

  .values { grid-template-columns: 1fr 1fr; }

  /* Quartier Waldblick card stacks on tablet */
  .project-detail-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  :root { --section-py: 70px; --nav-h: 68px; }

  .container { padding: 0 24px; }

  .nav__inner { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero { padding-bottom: 72px; }
  .hero__content { padding: 0 24px; }
  .hero__scroll { right: 24px; }

  .page-hero__content { padding: 0 24px; }

  .unit-card { padding: 36px 28px; }

  .bau-services { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }

  .values { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { gap: 16px; }

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

  /* Kontaktformular: Name/E-Mail untereinander auf mobil */
  .form-name-email { grid-template-columns: 1fr; }

  /* Kontaktformular: kein horizontales Overflow */
  .contact-form { width: 100%; box-sizing: border-box; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.6rem; }
  .hero { min-height: 600px; }
  .statement__quote { font-size: 1.5rem; }
}

/* --- Mobile: iOS Safari fixes --- */
@media (max-width: 768px) {
  /* background-attachment: fixed kaputt auf iOS Safari → deaktivieren */
  .hero__bg,
  .page-hero__bg {
    background-attachment: scroll;
  }

  /* Stärkerer Overlay auf mobil für bessere Lesbarkeit */
  .hero__bg::after {
    background: linear-gradient(
      to bottom,
      rgba(13,13,13,0.45) 0%,
      rgba(13,13,13,0.35) 40%,
      rgba(13,13,13,0.82) 80%,
      rgba(13,13,13,0.97) 100%
    );
  }

  .page-hero__bg::after {
    background: linear-gradient(to bottom, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.7) 50%, rgba(13,13,13,0.95) 100%);
  }

  .unit-card__bg::after {
    background: linear-gradient(to top, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.55) 55%, rgba(13,13,13,0.2) 100%);
  }

  /* Eyebrow-Texte über Bildern: heller auf mobil */
  .hero .eyebrow,
  .page-hero__content .eyebrow,
  .unit-card__content .eyebrow {
    color: rgba(255, 255, 255, 0.9);
  }

  /* Hero-Sub-Text auf mobil etwas heller */
  .hero__sub {
    color: rgba(240, 237, 232, 0.75);
  }

  /* em in h1 auf mobil klarer */
  .hero__content h1 em {
    color: #e2d9c4;
  }
}
