:root {
  --navy: #08152f;
  --navy-2: #102247;
  --green: #91b843;
  --green-dark: #6e9831;
  --ink: #162033;
  --muted: #657083;
  --line: #dfe5ee;
  --bg: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(8, 21, 47, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 16px; background: var(--white); padding: 10px 14px; z-index: 99; }
.skip-link:focus { left: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(18px); box-shadow: 0 10px 30px rgba(8,21,47,.08); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 98px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; font-weight: 700; color: var(--white); letter-spacing: .01em; }
.site-header.is-scrolled .brand { color: var(--navy); }
.brand img { width: 130px; height: auto; border-radius: 6px; transition: all 1s ease-in-out; }
.site-header.is-scrolled .brand img{width: 80px;}
.brand span {font-size: 1.75rem; font-weight: 400; transition: all 1s ease-in-out;}
.site-header.is-scrolled .brand span {font-size: 1.25rem; font-weight: 700;}
.primary-nav { display: flex; align-items: center; gap: 8px; }
.primary-nav a { text-decoration: none; color: var(--white); font-weight: 700; padding: 11px 14px; border-radius: 999px; }
.site-header.is-scrolled .primary-nav a { color: var(--navy); }
.primary-nav a:hover, .primary-nav a.is-active { background: rgba(145,184,67,.17); }
.nav-cta { background: var(--green) !important; color: var(--navy) !important; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 5px 0; transition: .25s; }
.site-header.is-scrolled .nav-toggle span { background: var(--navy); }

.hero { position: relative; min-height: 790px; display: grid; align-items: center; overflow: hidden; background: var(--navy); }
.hero-media { position: absolute; inset: 0; background: url('../img/hero-koeln.webp') center/cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(8,21,47,.94) 0%, rgba(8,21,47,.72) 42%, rgba(8,21,47,.28) 100%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) 390px; gap: 64px; align-items: center; padding-top: 128px; }
.hero-content { color: var(--white); max-width: 760px; }
.eyebrow { color: var(--green); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .83rem; margin: 0 0 14px; }
h1, h2, h3 { line-height: 1.08; margin: 0; color: inherit; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); letter-spacing: -0.045em; }
h3 { font-size: 1.28rem; letter-spacing: -0.02em; }
.lead { font-size: clamp(1.15rem, 1.7vw, 1.45rem); max-width: 700px; color: rgba(255,255,255,.88); margin: 26px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 800; cursor: pointer; font-family: inherit; font-size: 1rem; }
.button.primary { background: var(--green); color: var(--navy); }
.button.primary:hover { background: #a4c760; }
.button.secondary { border-color: rgba(255,255,255,.55); color: var(--white); background: rgba(255,255,255,.08); }
.button.secondary:hover { background: rgba(255,255,255,.16); }
.hero-card { background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.55); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.stat { padding: 22px; border-radius: 18px; background: var(--bg); margin-bottom: 12px; }
.stat:last-child { margin-bottom: 0; }
.stat strong { display: block; font-size: 2rem; color: var(--navy); letter-spacing: -0.04em; }
.stat span { display: block; color: var(--muted); font-weight: 700; margin-top: 4px; }

.section { padding: 108px 0; }
.section.muted { background: var(--bg); }
.two-col, .split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.split { grid-template-columns: 1fr 1fr; align-items: center; }
.split.reverse { grid-template-columns: .85fr 1.15fr; }
.split.inverse { grid-template-columns: 1.15fr .85fr; }
.section-copy p, .section-head p, .split p, .contact-copy p { color: var(--muted); font-size: 1.12rem; }
.section-head { max-width: 820px; margin-bottom: 42px; }
.cards.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card, .brand-card, .hotel-card, .image-card, .portrait, .contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 36px rgba(8,21,47,.07); }
.portrait_ext, .portrait_ext img{background-color: #f6f8fb !important; border: 0px;}
.info-card { padding: 30px; }
.info-card.accent { background: linear-gradient(145deg, var(--navy), var(--navy-2)); color: var(--white); border-color: rgba(255,255,255,.1); }
.check-list, .feature-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.check-list li, .feature-list li { position: relative; padding-left: 28px; color: var(--muted); }
.info-card.accent .check-list li { color: rgba(255,255,255,.82); }
.check-list li::before, .feature-list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 5px rgba(145,184,67,.16); }
.feature-list strong { color: var(--ink); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-grid span { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-weight: 800; color: var(--navy); }
.image-card, .portrait { overflow: hidden; margin: 0; }
.image-card img { width: 100%; background: #fff; }
figcaption { padding: 14px 18px; color: var(--muted); font-size: .95rem; }

.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.brand-card { min-height: 290px; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.brand-card img { width: 128px; margin-bottom: auto; border-radius: 10px; background: transparent; }
.brand-card p { color: var(--muted); margin: 12px 0 0; }
.brand-card.white-label img { width: 170px; border-radius: 0; background: var(--white); padding: 8px; }
.brand-card.luxury img { width: 108px; }
.brand-card.luxury, .brand-card.white-label { background: var(--white); color: var(--ink); }
.brand-card.luxury p, .brand-card.white-label p { color: var(--muted); }
.brand-card.luxury::before, .brand-card.white-label::before { display: none; }
.hotel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hotel-card { overflow: hidden; }
.hotel-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hotel-card div { padding: 20px; }
.hotel-card p { color: var(--muted); margin-bottom: 0; }
.track-record .portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; }

.cta-section { background: linear-gradient(135deg, var(--navy), #162a58); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.contact-copy p { color: rgba(255,255,255,.80); }
.contact-cards { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-cards a { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20); border-radius: 999px; padding: 12px 16px; text-decoration: none; font-weight: 800; }
.contact-form { padding: 28px; color: var(--ink); display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; color: var(--navy); }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 14px; font: inherit; color: var(--ink); background: var(--bg); }
input:focus, textarea:focus { outline: 3px solid rgba(145,184,67,.25); border-color: var(--green); }
.form-note { color: var(--muted); font-size: .92rem; margin: 0; }

.site-footer { background: #050b19; color: rgba(255,255,255,.78); padding: 34px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-grid p { margin: 8px 0 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer-links a:hover { color: var(--green); }

.legal-page { padding: 130px 0 80px; background: var(--bg); min-height: 100vh; }
.legal-card { background: var(--white); border-radius: var(--radius); padding: min(7vw, 64px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.legal-card h1 { color: var(--navy); font-size: clamp(2.4rem, 5vw, 4.4rem); }
.legal-card h2 { font-size: 1.5rem; margin-top: 32px; color: var(--navy); }
.legal-card p, .legal-card li { color: var(--muted); }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--navy); font-weight: 800; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; right: 20px; top: 72px; width: min(360px, calc(100vw - 40px)); display: none; flex-direction: column; align-items: stretch; background: var(--white); border-radius: 20px; padding: 12px; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a, .site-header .primary-nav a { color: var(--navy); }
  .hero-grid, .two-col, .split, .split.reverse, .split.inverse, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-grid { padding-top: 0; }
  .brand-grid, .hotel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .brand img { width: 110px; }
  .container { width: min(100% - 28px, 1180px); }
  .nav-shell { min-height: 80px; }
  .brand img { width: 112px; }
  .brand span { display: none; }
  .brand img { width: 110px; }
  .hero { padding: 116px 0 60px; }
  h1 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .section { padding: 72px 0; }
  .cards.two, .brand-grid, .hotel-grid { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .contact-form { padding: 20px; }
}
