/* ============================================
   KMOL GmbH – Westafrika-Logistik
   Stylesheet v1.0 – April 2026
   ============================================ */

/* ============ FONTS (lokal eingebunden) ============ */

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bebas-neue-v14-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/dm-sans-v15-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/dm-sans-v15-latin-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-sans-v15-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/dm-sans-v15-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-mono-v14-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/dm-mono-v14-latin-500.woff2') format('woff2');
}

:root {
  --bg: #f5f0e8;
  --card: #eeebe3;
  --card2: #e3e0d8;
  --border: #ccc8bc;
  --border2: #b0ac9e;
  --txt: #1a1a1a;
  --muted: #6b6869;
  --y: #f2cd00;
  --y2: #7a6800;
  --black: #1c1b18;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
}

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 100px;
}
.nav-logo img { height: 76px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta { background: var(--black) !important; color: var(--y) !important; padding: 7px 18px !important; }
.spacer { height: 100px; }

/* ============ DROPDOWN ============ */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  content: '▾'; font-size: 10px; color: inherit;
  transition: transform .2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: -20px;
  background: var(--bg); border: 1px solid var(--border);
  padding: 12px 0; min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  list-style: none; margin: 0;
  border-top: 2px solid var(--y);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
}
.dropdown-menu a:hover { background: var(--card); color: var(--black); }
.dropdown-menu a.active { color: var(--black); background: var(--card); }

/* Mobile Nav Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--black); margin: 4px 0;
  transition: transform .3s;
}

/* ============ TICKER ============ */
.ticker {
  background: var(--black); color: var(--y);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  padding: 8px 0; text-align: center; white-space: nowrap; overflow: hidden;
}

/* ============ BUTTONS ============ */
.btn-b, .btn-o, .btn-y {
  padding: 12px 28px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; border: none; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all .2s;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.btn-b { background: var(--black); color: var(--y); }
.btn-b:hover { opacity: .82; }
.btn-o { background: transparent; color: var(--black); border: 1px solid var(--border2); }
.btn-o:hover { border-color: var(--black); }
.btn-y { background: var(--y); color: var(--y2); }
.btn-y:hover { opacity: .85; }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--y2); margin-bottom: 16px; font-weight: 500;
}
.h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px); line-height: .91; letter-spacing: 2px;
  color: var(--black); margin-bottom: 22px;
}
.h1 em, .h2 em { color: var(--y2); font-style: normal; }
.h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 50px); line-height: .93; letter-spacing: 1.5px;
  color: var(--black); margin-bottom: 18px;
}
.lead {
  font-size: 16px; color: var(--muted); max-width: 520px; line-height: 1.75;
  margin-bottom: 36px; font-weight: 300;
}
.body-txt {
  font-size: 14px; color: var(--muted); line-height: 1.8;
  margin-bottom: 22px; max-width: 440px;
}
.dash-list { list-style: none; margin-bottom: 30px; }
.dash-list li {
  font-size: 13px; color: var(--txt); display: flex; align-items: baseline;
  gap: 12px; line-height: 1.5; margin-bottom: 10px;
}
.dash-list li::before { content: '—'; color: var(--y2); flex-shrink: 0; font-weight: 500; }

/* ============ STATS ============ */
.stats { display: flex; border-bottom: 1px solid var(--border); }
.stat { flex: 1; padding: 32px 48px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 54px; line-height: 1;
  color: var(--black);
}
.stat-n em { color: var(--y2); font-style: normal; }
.stat-l {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-family: 'DM Mono', monospace; margin-top: 3px;
}

/* ============ EDITORIAL SPLIT ============ */
.ed {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.ed-text {
  padding: 60px 52px; display: flex; flex-direction: column;
  justify-content: center;
}
.ed-img { overflow: hidden; min-height: 420px; }
.ed-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.82); transition: filter .5s; display: block;
}
.ed-img:hover img { filter: saturate(1); }

/* ============ HERO ON STARTPAGE ============ */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  overflow: hidden; border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.7) brightness(.95);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(245,240,232,.96) 0%, rgba(245,240,232,.82) 55%, rgba(245,240,232,.4) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 120px 52px 80px; max-width: 920px;
}

/* ============ PAGE HERO (inner pages) ============ */
.pg-hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.pg-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  filter: saturate(.75); display: block;
}
.pg-ov {
  position: absolute; inset: 0;
  background: rgba(245,240,232,.83);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 52px;
}
.pg-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px); line-height: .91; letter-spacing: 2px;
  color: var(--black); margin-bottom: 14px;
}
.pg-title em { color: var(--y2); font-style: normal; }
.pg-lead {
  font-size: 15px; color: var(--muted); max-width: 620px; line-height: 1.75;
  margin-bottom: 24px; font-weight: 300;
}

/* ============ SECTIONS ============ */
.section { padding: 68px 52px; border-bottom: 1px solid var(--border); }
.section-alt {
  padding: 68px 52px; border-bottom: 1px solid var(--border);
  background: var(--card);
}
.sec-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--y2); margin-bottom: 32px; font-weight: 500;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.col-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 1px; color: var(--black); margin-bottom: 12px;
}
.col-body { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.col-list { list-style: none; }
.col-list li {
  font-size: 13px; color: var(--txt);
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px;
}
.col-list li::before { content: '—'; color: var(--y2); flex-shrink: 0; }

/* ============ DIVIDER STRIP ============ */
.divline {
  display: flex; border-bottom: 1px solid var(--border);
  background: var(--black);
}
.dli {
  flex: 1; padding: 13px 28px; border-right: 1px solid #2a2a24;
  display: flex; align-items: center; gap: 10px;
}
.dli:last-child { border-right: none; }
.dot { width: 5px; height: 5px; background: var(--y); flex-shrink: 0; }
.dtxt {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: #999;
}

/* ============ BANNER ============ */
.banner {
  position: relative; height: 300px; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.banner img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); }
.banner-ov {
  position: absolute; inset: 0;
  background: rgba(245,240,232,.82);
  display: flex; align-items: center; padding: 0 52px;
}

/* ============ MANIFESTO ============ */
.manifesto {
  padding: 72px 52px; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  background: var(--card);
}
.mf-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px); line-height: .93;
  color: var(--black); letter-spacing: 1px;
}
.mf-h em { color: var(--y2); font-style: normal; display: block; }
.mf-p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }

/* ============ TEAM ============ */
.team-wrap { margin-top: 40px; border-top: 1px solid var(--border); }
.tm {
  padding: 48px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
}
.tm:last-child { border-bottom: none; }
.tm-badge {
  width: 80px; height: 80px; background: var(--y);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--black);
  letter-spacing: 1px;
}
.tm-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 1px; color: var(--black); margin-bottom: 4px;
}
.tm-role {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--y2); font-family: 'DM Mono', monospace;
  margin-bottom: 18px; font-weight: 500;
}
.tm-bio { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.tm-email {
  font-size: 12px; color: var(--y2); text-decoration: none;
  font-family: 'DM Mono', monospace;
}
.tm-email:hover { text-decoration: underline; }

/* ============ LOCATION DOT ============ */
.loc-dot {
  width: 8px; height: 8px; background: var(--y2);
  flex-shrink: 0; position: relative;
}
.loc-dot::after {
  content: ''; position: absolute; top: -4px; left: -4px;
  width: 16px; height: 16px; border: 1px solid var(--y);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .2; transform: scale(1.4); }
}

/* ============ PORTS / COUNTRIES GRID ============ */
.ports-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); margin-top: 32px;
}
.port {
  background: var(--bg); padding: 28px 24px;
  transition: background .2s;
}
.port:hover { background: var(--card); }
.port-country {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--y2); margin-bottom: 6px; font-weight: 500;
}
.port-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px; color: var(--black); margin-bottom: 8px;
}
.port-info {
  font-size: 12px; color: var(--muted); line-height: 1.6;
}

/* ============ CTA ============ */
.cta {
  padding: 52px;
  background: var(--black); color: var(--bg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.2vw, 38px); letter-spacing: 2px;
  color: var(--bg); margin-bottom: 6px;
}
.cta-s { font-size: 13px; color: #b5b0a2; max-width: 520px; }

/* ============ FORM ============ */
.form-wrap { max-width: 680px; }
.frow {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
.fg { display: flex; flex-direction: column; margin-bottom: 20px; }
.fg label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--y2); font-family: 'DM Mono', monospace;
  margin-bottom: 8px; font-weight: 500;
}
.fg input, .fg select, .fg textarea {
  background: var(--bg); border: 1px solid var(--border2);
  padding: 12px 14px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--txt); font-weight: 300;
  transition: border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--black);
}
.fg textarea { resize: vertical; min-height: 130px; }
.form-hint {
  font-size: 12px; color: var(--muted); margin-top: 18px; line-height: 1.6;
}

/* ============ CONTACT INFO BLOCKS ============ */
.contact-block {
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.contact-block:last-child { border-bottom: none; }
.contact-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--y2); margin-bottom: 8px; font-weight: 500;
}
.contact-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px; color: var(--black);
}
.contact-val a { color: var(--black); text-decoration: none; }
.contact-val a:hover { color: var(--y2); }
.contact-sub { font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.6; }

/* ============ FAQ ============ */
.faq-wrap { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--y2);
  transition: transform .2s;
  flex-shrink: 0;
}
details[open] .faq-q::after {
  content: '−';
}
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
}
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ============ FOOTER ============ */
footer {
  padding: 32px 52px; background: var(--black); color: #999;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.fcopy { font-size: 12px; color: #888; }
.flinks { display: flex; gap: 28px; list-style: none; }
.flinks a {
  color: #bbb; text-decoration: none;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.flinks a:hover { color: var(--y); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav { padding: 0 24px; height: 72px; }
  .spacer { height: 72px; }
  .nav-logo img { height: 48px; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 20px 24px;
    border-bottom: 1px solid var(--border); gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-links a { width: 100%; padding: 8px 0; }
  .nav-dropdown > a::after { display: none; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; border: none; padding: 0;
    margin-left: 20px; background: transparent; min-width: 0;
    border-top: none; border-left: 1px solid var(--border);
  }
  .dropdown-menu a { padding: 6px 16px; }

  .hero-content { padding: 80px 24px 60px; }
  .pg-ov, .section, .section-alt, .banner-ov, .cta, footer { padding-left: 24px; padding-right: 24px; }
  .ed { grid-template-columns: 1fr; }
  .ed-text { padding: 40px 24px; }
  .ed-img { min-height: 280px; }
  .two-col, .three-col { grid-template-columns: 1fr; gap: 40px; }
  .stats { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
  .divline { flex-wrap: wrap; }
  .dli { flex: 1 1 50%; }
  .manifesto { grid-template-columns: 1fr; gap: 24px; padding: 48px 24px; }
  .tm { grid-template-columns: 1fr; gap: 20px; }
  .ports-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-hero-img { height: 280px; }
  .banner { height: 240px; }
  .frow { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 520px) {
  .ports-grid { grid-template-columns: 1fr; }
  .h1 { font-size: clamp(40px, 11vw, 64px); }
}
