﻿:root {
  --bg: #0f0f10;
  --bg-soft: #151516;
  --text: #f3efe8;
  --text-soft: #c8c0b2;
  --line: rgba(208, 177, 116, 0.26);
  --accent: #d0b174;
  --accent-strong: #e2c58d;
  --surface: #1a1b1d;
  --max-width: 1180px;
  --radius: 18px;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(100% - 3rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(8, 8, 9, 0.88), rgba(8, 8, 9, 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-inner {
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: min-height 0.25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.main-nav > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: #ddd3c0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.28s ease;
}

.main-nav a:hover {
  color: #f6ddac;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: rgba(14, 14, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.35rem;
  margin-top: 0.35rem;
  display: none;
  z-index: 40;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.56rem 0.65rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover {
  background: rgba(208, 177, 116, 0.12);
}

.logo-main {
  width: clamp(105px, 12vw, 147px);
  height: auto;
  object-fit: contain;
  transition: width 0.25s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(to bottom, rgba(8, 8, 9, 0.96), rgba(8, 8, 9, 0.65));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.site-header.is-scrolled .header-inner {
  min-height: 45px;
}

.site-header.is-scrolled .logo-main {
  width: clamp(84px, 9.8vw, 123px);
}

.header-cta {
  border: 1px solid var(--line);
  color: var(--accent-strong);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.15rem;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.header-cta:hover {
  background: rgba(208, 177, 116, 0.12);
  color: #f6ddac;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image:
    linear-gradient(to right, rgba(6, 6, 6, 0.58), rgba(10, 10, 10, 0.42)),
    url("../images/hero-wildhorses-mountains-sportlich.png");
  background-size: cover;
  background-position: 40% 30%;
  transform: scale(1.03);
  filter: saturate(0.94) contrast(1.05) brightness(0.9);
}

.hero-overlay {
  background: radial-gradient(circle at 80% 25%, rgba(208, 177, 116, 0.28), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(20rem, 36vh, 27rem) 0 clamp(4.2rem, 7vh, 6.2rem);
}

.hero-top-title {
  position: absolute;
  top: clamp(8rem, 14vh, 10.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(94vw, 980px);
  margin: 0;
  text-align: center;
}

.hero-top-title h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.7rem, 3.5vw, 3.15rem);
  line-height: 1.2;
  color: #f6ebd3;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.46);
}

.hero-identity {
  margin: 0 0 0.65rem;
  color: #efe3c7;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.7vw, 4.4rem);
}

.hero-headline-gap {
  display: block;
  height: 0.45em;
}

.hero-subline {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  color: #f1dbc2;
}

.hero-copy {
  max-width: 64ch;
  margin: 1.3rem 0 2.1rem;
  color: var(--text-soft);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.35rem;
  border-radius: 2px;
  background: linear-gradient(120deg, #d0b174, #f1d9aa);
  color: #171412;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(204, 165, 98, 0.34);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5ead6;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(208, 177, 116, 0.7);
  background: rgba(208, 177, 116, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin-top: 2.5rem;
}

.hero-facts article {
  padding: 1rem 1.1rem;
  background: rgba(10, 10, 10, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-facts strong,
.stats-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  color: #f6ddac;
}

.hero-facts span,
.stats-grid span {
  display: block;
  margin-top: 0.35rem;
  color: #d7ccba;
  font-size: 0.92rem;
}

.section {
  padding: clamp(4.2rem, 7vw, 6.5rem) 0;
  background: var(--bg);
}

.section-dark {
  background: linear-gradient(to bottom, var(--bg-soft), #111214);
}

.intro-grid,
.two-col {
  display: grid;
  gap: clamp(1.8rem, 4vw, 4rem);
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
}

.intro-copy h2,
.two-col h2 {
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  max-width: 16ch;
}

.intro-copy p,
.lead-block p {
  margin: 0;
  color: var(--text-soft);
}

.intro-copy p + p,
.lead-block p + p {
  margin-top: 1rem;
}

.intro-panel {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.intro-list {
  margin: 0;
  padding-left: 1rem;
  color: #ddd4c6;
}

.intro-list li + li {
  margin-top: 0.7rem;
}

.section-title {
  margin-top: 0.2rem;
  margin-bottom: 2.3rem;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.section-intro {
  max-width: 70ch;
  margin: -1rem 0 2rem;
  color: var(--text-soft);
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card + .service-card {
  margin-top: 1.4rem;
}

.service-card-alt {
  grid-template-columns: 1fr 1fr;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.services-grid .service-card + .service-card {
  margin-top: 0;
}

.service-card-vertical {
  display: flex;
  flex-direction: column;
  grid-template-columns: 1fr;
  height: 100%;
}

.service-media {
  display: block;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.05) brightness(0.86);
}

.service-card-vertical .service-media {
  min-height: 250px;
}

.service-media-logo {
  min-height: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98), rgba(246, 242, 233, 0.94) 65%),
    linear-gradient(180deg, #f4f1ea, #ebe5d8);
  filter: none;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
  cursor: pointer;
}

.service-media-logo-img {
  --logo-offset-y: 0px;
  width: 86%;
  max-width: 300px;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38));
  transition: transform 0.24s ease, filter 0.24s ease;
  transform: translateY(var(--logo-offset-y));
}

.services-grid > .service-card:nth-child(1) .service-media-logo-img {
  width: 110%;
  max-width: 390px;
  height: 250px;
  --logo-offset-y: -28px;
}

.services-grid > .service-card:nth-child(3) .service-media-logo-img {
  --logo-offset-y: 6px;
}

.service-media-logo:hover .service-media-logo-img {
  transform: translateY(var(--logo-offset-y)) scale(1.2);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36));
}

.service-logo-wrap {
  margin: 0.45rem 0 0.9rem;
  min-height: 92px;
  display: grid;
  place-items: center;
}

.service-logo {
  width: min(100%, 165px);
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

.service-media-trade {
  background-image:
    linear-gradient(to top right, rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0.14)),
    url("../images/service-trade.jpg");
}

.service-media-luxury {
  background-image:
    linear-gradient(to top right, rgba(5, 5, 5, 0.47), rgba(5, 5, 5, 0.2)),
    url("../images/service-luxury.jpg");
}

.service-media-horses {
  background-image:
    linear-gradient(to top right, rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0.14)),
    url("../images/service-horses.jpg");
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 3vw, 2.5rem);
}

.service-content h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin-bottom: 1rem;
}

.service-title-link {
  color: inherit;
}

.service-title-link:hover {
  color: #f6ddac;
}

.service-lead {
  margin: 0 0 1.1rem;
  color: var(--text-soft);
}

.service-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  color: #d5d0c6;
  margin: 0;
  padding: 0.62rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-content li:first-child {
  border-top: 1px solid rgba(208, 177, 116, 0.42);
}

.service-card-cta {
  margin-top: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f1dbaf;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(208, 177, 116, 0.55);
}

.service-card-cta:hover {
  color: #f6ddac;
  border-color: #f6ddac;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding-top: 8.5rem;
  min-height: 58vh;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.03) brightness(0.55);
  opacity: 0.3;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 11, 0.88), rgba(10, 10, 11, 0.72)),
    radial-gradient(circle at 75% 15%, rgba(208, 177, 116, 0.2), transparent 42%);
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage .header-inner {
  min-height: 50px;
  justify-content: space-between;
}

.subpage .site-header.is-scrolled .header-inner {
  min-height: 44px;
}

.subpage .section {
  padding: clamp(3rem, 4.9vw, 4.6rem) 0;
}

.subpage .section-title {
  margin-bottom: 1.6rem;
}

.subpage-header-brand {
  display: inline-flex;
  align-items: center;
}

.subpage-header-logo {
  width: clamp(55px, 6.5vw, 76px);
  height: auto;
  object-fit: contain;
}

.subpage-top-logo {
  width: clamp(112px, 13vw, 172px);
  height: clamp(72px, 8.5vw, 92px);
  object-fit: contain;
  display: block;
  margin: 0 0 1rem;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
}

.subpage-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
}

.subpage-logo-row .subpage-top-logo {
  margin: 0;
}

.subpage-area-logo {
  width: clamp(190px, 24vw, 340px);
  height: clamp(120px, 16vw, 200px);
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.subpage-meat .subpage-area-logo,
.subpage-horses .subpage-area-logo {
  width: clamp(220px, 28vw, 390px);
  height: clamp(138px, 18vw, 230px);
}

.subpage-logo-panel {
  display: inline-flex;
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.98), rgba(246, 242, 233, 0.94) 65%),
    linear-gradient(180deg, #f4f1ea, #ebe5d8);
  border: 1px solid rgba(25, 25, 25, 0.1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.subpage-logo-panel:hover .subpage-area-logo {
  transform: scale(1.2);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36));
}

.subpage-meat .subpage-hero::before {
  background-image: url("../images/service-trade.jpg");
}

.subpage-gourmet .subpage-hero::before {
  background-image: url("../images/service-luxury.jpg");
}

.subpage-horses .subpage-hero::before {
  background-image: url("../images/service-horses.jpg");
}

.subpage-horses .section h3 {
  margin: 0 0 0.55rem;
}

.subpage-horses .section .intro-list {
  margin-bottom: 0.95rem;
}

.subpage-horses .section .intro-list + h3 {
  margin-top: 1.1rem;
}

.sub-brand {
  margin-bottom: 0.9rem;
}

.inline-brand-mark {
  margin: 0 0 1.1rem;
  padding: 0.55rem 0.8rem;
  display: inline-flex;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.98), rgba(246, 242, 233, 0.94) 65%),
    linear-gradient(180deg, #f4f1ea, #ebe5d8);
  border: 1px solid rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.inline-brand-mark img {
  width: clamp(150px, 22vw, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.inline-brand-mark:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34));
}

.logo-horses {
  width: clamp(140px, 15vw, 200px);
  height: auto;
  object-fit: contain;
}

.brand-quote {
  margin: -0.75rem 0 2rem;
  max-width: 36ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.3;
  color: #f4dfb4;
}

.brand-grid,
.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.brand-grid article,
.benefits-grid article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.2rem;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.benefits-grid article:hover {
  border-color: rgba(208, 177, 116, 0.42);
  transform: translateY(-2px);
}

.brand-grid h3,
.benefits-grid h3 {
  font-size: 1.34rem;
  margin-bottom: 0.35rem;
}

.brand-grid p,
.benefits-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.success-grid,
.world-grid {
  display: grid;
  gap: clamp(1.8rem, 4vw, 4rem);
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
}

.world-copy p {
  color: var(--text-soft);
}

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

.stats-grid article {
  padding: 1.4rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.eigenmarken-wrap {
  margin-top: 2.2rem;
}

.eigenmarken-title {
  margin: -0.35rem 0 1.2rem;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

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

.eigenmarken-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-height: 190px;
  overflow: visible;
  cursor: zoom-in;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.eigenmarken-card img {
  width: 100%;
  max-width: 140px;
  height: 110px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 242, 233, 0.9));
  border-radius: 12px;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
  transform-origin: center center;
  cursor: zoom-in;
}

.eigenmarke-center {
  margin-inline: auto;
}

.premium-logo-contrast {
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.97), rgba(246, 242, 233, 0.92));
  border-radius: 12px;
  padding: 0.45rem;
}

.eigenmarken-card h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  color: #f1e2c4;
  text-align: center;
}

.eigenmarken-card > a {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  color: inherit;
}

.eigenmarken-card:hover {
  transform: translateY(-3px);
  border-color: rgba(208, 177, 116, 0.45);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.05);
  z-index: 3;
}

.eigenmarken-card:hover img {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  transform: scale(1.16);
}

.logo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.logo-lightbox.is-open {
  display: grid;
  place-items: center;
}

.logo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 10, 0.6);
  backdrop-filter: blur(11px);
}

.logo-lightbox-figure {
  position: relative;
  margin: 0;
  z-index: 1;
  width: min(92vw, 960px);
  max-height: 88vh;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  background: rgba(14, 15, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}

.logo-lightbox-figure img {
  width: auto;
  max-width: min(88vw, 860px);
  max-height: 70vh;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 233, 0.95));
  border-radius: 12px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.logo-lightbox-close {
  position: absolute;
  top: 0.55rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: #f2e7ce;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.logo-lightbox figcaption {
  color: #f1e2c4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  text-align: center;
}

#logoLightboxExternal {
  display: none;
  color: #f6ddac;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(208, 177, 116, 0.65);
}

#logoLightboxExternal.is-visible {
  display: inline-flex;
}

.eigenmarken-card-placeholder .placeholder-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  color: #f1deb0;
  border: 1px dashed rgba(208, 177, 116, 0.65);
  background: rgba(208, 177, 116, 0.08);
}

.contact {
  background:
    linear-gradient(to top, rgba(8, 8, 8, 0.95), rgba(10, 10, 10, 0.95)),
    url("../images/contact-fine-dining.jpg") center / cover;
}

.contact-wrap {
  text-align: center;
}

.contact-wrap h2 {
  max-width: 24ch;
  margin: 0 auto;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.contact-grid {
  margin: 2.1rem auto 0;
  display: grid;
  gap: 0.6rem;
  max-width: 560px;
}

.contact-grid a {
  padding: 0.86rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.02rem;
  transition: border-color 0.28s ease, color 0.28s ease, background-color 0.28s ease;
}

.contact-grid a:hover {
  border-color: rgba(208, 177, 116, 0.76);
  color: #f6ddac;
  background: rgba(208, 177, 116, 0.12);
}

.claim {
  margin: 1.4rem 0 0;
  color: #f2deb3;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d0d0e;
}

.footer-inner {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: #b5afa5;
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 0.35rem;
  max-width: 48ch;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #efe3c7;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  color: #f6ddac;
  border-color: #d0b174;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 0.8rem;
  }

  .main-nav a {
    font-size: 0.76rem;
  }

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

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

  .eigenmarken-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 900px) {
  .intro-grid,
  .two-col,
  .service-card,
  .service-card-alt,
  .success-grid,
  .world-grid {
    grid-template-columns: 1fr;
  }

  .service-media {
    min-height: 280px;
  }

  .header-inner {
    min-height: auto;
    flex-wrap: wrap;
    row-gap: 0.45rem;
    padding: 0.6rem 0;
  }

  .header-cta {
    display: inline-flex;
    margin-left: auto;
    padding: 0.55rem 0.85rem;
    font-size: 0.74rem;
  }

  .main-nav {
    display: flex;
    order: 3;
    width: 100%;
    margin-left: 0;
    gap: 0.9rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav > a,
  .nav-dropdown > a {
    white-space: nowrap;
    min-height: auto;
    font-size: 0.74rem;
  }

  .nav-dropdown::after {
    display: none;
  }

  .hero-facts,
  .stats-grid,
  .brand-grid,
  .benefits-grid,
  .eigenmarken-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .site-header {
    backdrop-filter: blur(8px);
  }

  .header-inner {
    min-height: 53px;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-top-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(96vw, 760px);
    margin: 0 auto 1.15rem;
  }

  .hero-content {
    padding-top: clamp(7.8rem, 14vh, 10.8rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .subpage-logo-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .contact-grid a {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
