:root {
  --color-bg: #faf7f2;
  --color-bg-alt: #f0ebe3;
  --color-surface: #ffffff;
  --color-text: #2c2419;
  --color-text-muted: #6b5f52;
  --color-accent: #8b3a3a;
  --color-accent-dark: #6b2d2d;
  --color-gold: #b8956a;
  --color-cool: #4a5d6b;
  --color-cool-light: #e8eef2;
  --color-reise: #5c3d2e;
  --color-reise-light: #f3ebe4;
  --color-border: rgba(44, 36, 25, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44, 36, 25, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 36, 25, 0.1);
  --shadow-lg: 0 20px 60px rgba(44, 36, 25, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

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

h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--quote {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section__intro {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section__intro--center {
  text-align: center;
  margin-inline: auto;
}

.section__intro p,
.split__content p,
.hero__lead {
  color: var(--color-text-muted);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__image {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 36, 25, 0.72) 0%,
    rgba(66, 66, 103, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
  color: #fff;
}

.hero .eyebrow {
  color: var(--color-gold);
}

.hero h1 {
  color: #fff;
}

.hero__lead {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.88);
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(139, 58, 58, 0.3);
}

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

.btn--ghost {
  border: 1.5px solid var(--color-border);
  background: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.btn--brand {
  margin-top: 1.5rem;
  color: #fff;
}

.btn--brand-cool {
  background: var(--color-cool);
}

.btn--brand-cool:hover {
  background: #3a4a56;
}

.btn--brand-reise {
  background: var(--color-reise);
}

.btn--brand-reise:hover {
  background: #4a3024;
}

/* Split / Stats */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split__content p + p {
  margin-top: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Brand cards */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.brand-card {
  background: var(--color-surface);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.brand-card__visual {
  flex-shrink: 0;
  height: auto;
  min-height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 769px) {
  .brand-card__visual {
    min-height: 240px;
    padding: 1.75rem 0;
  }
}

.brand-card__visual img {
  display: block;
  width: 70%;
  min-width: 70%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.brand-card:hover .brand-card__visual img {
  transform: scale(1.03);
}

.brand-card--coolkeeper .brand-card__visual {
  background: var(--color-cool-light);
}

.brand-card--reisetaler .brand-card__visual {
  background: var(--color-reise-light);
}

.brand-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 769px) {
  .brand-card__body {
    padding: 1.75rem;
  }
}

.brand-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.brand-card__body > p {
  color: var(--color-text-muted);
  flex: 1;
}

.brand-card__features {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.brand-card__features li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.brand-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.value-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Quote */
.quote-block blockquote {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.quote-block p::before {
  content: "\201E";
  color: var(--color-gold);
  font-size: 1.4em;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  font-style: normal;
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.contact-details__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

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

.contact-brands {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

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

.contact-grid__cards {
  display: grid;
  gap: 1rem;
}

.contact-mini-card {
  display: block;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-mini-card:not(.contact-mini-card--static):hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.contact-mini-card span {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-mini-card strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: grid;
  gap: 2rem;
}

.footer__brand p {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  max-width: 360px;
}

.footer__brand .logo__text {
  color: #fff;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__nav a {
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__uid {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  opacity: 0.6;
}

.footer__copy {
  font-size: 0.8125rem;
  opacity: 0.6;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Audience / Kunden */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.audience-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Testimonials */
.section--testimonials {
  background: var(--color-bg);
}

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

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card strong {
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.875rem 1.25rem;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .split,
  .brand-grid,
  .values-grid,
  .contact-grid,
  .audience-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
