/* styles.css — RE:BELLE™ Moodboard Onepager (compact)
   Background: #1B4950 (dark teal)
   Cards: #F4F3F1 / #D7D5CC
   Accent: #C7443D / #C4AA89
*/

:root{
  --teal:#1B4950;
  --sand:#C4AA89;
  --stone:#D7D5CC;
  --red:#C7443D;
  --off:#F4F3F1;

  --bg: var(--teal);
  --card: var(--off);
  --card2: var(--stone);

  --text: var(--teal);
  --text-on-dark: var(--off);

  --muted: rgba(27,73,80,.78);
  --muted2: rgba(27,73,80,.58);

  --line: rgba(27,73,80,.16);
  --line-dark: rgba(255,255,255,.22);

  --shadow: 0 18px 55px rgba(0,0,0,.28);

  --r: 18px;
  --r2: 24px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text-on-dark);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration: underline; }

.page{
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 16px 28px;
}

/* TOP HEADER */
.top{
  border: 1px solid var(--line-dark);
  border-radius: var(--r2);
  padding: 14px 14px 16px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__mark{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(196,170,137,.32);
  border: 1px solid rgba(196,170,137,.65);
  color: var(--teal);
}
.brand__name{
  font-weight: 800;
  letter-spacing: .4px;
}
.brand__tag{
  font-size: 12px;
  color: rgba(244,243,241,.75);
}

.eyebrow{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,243,241,.72);
  border-left: 2px solid rgba(199,68,61,.75);
  padding-left: 10px;
  display:inline-block;
}

.h1{
  margin: 8px 0 0;
  font-size: clamp(22px, 4.4vw, 36px);
  line-height: 1.05;
}
.h1__soft{
  display:block;
  margin-top: 6px;
  font-size: .56em;
  color: rgba(244,243,241,.80);
  font-weight: 600;
}

.quickfacts{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qf{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 8px 10px;
  display:flex;
  gap: 8px;
  align-items: baseline;
}
.qf span{
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(244,243,241,.72);
}
.qf strong{
  font-weight: 800;
}

/* BOARD */
.board{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items:start;
}

/* SWATCHES */
.swatches{
  display:flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}
.sw{
  width: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
}
.sw--teal{ background: var(--teal); }
.sw--sand{ background: var(--sand); }
.sw--stone{ background: var(--stone); border-color: rgba(0,0,0,.12); }
.sw--red{ background: var(--red); border-color: rgba(0,0,0,.12); }
.sw--off{ background: var(--off); border-color: rgba(27,73,80,.18); }

/* GRID */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* CARD BASE */
.card{
  background: var(--card);
  color: var(--text);
  border-radius: var(--r2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px;
  overflow: hidden;
}

.card--wide{
  grid-column: 1 / -1;
}

.card--hero{
  border-color: rgba(196,170,137,.75);
  background:
    radial-gradient(720px 460px at 0% 0%, rgba(196,170,137,.60), transparent 62%),
    var(--card);
}

.card--pilot{
  border-color: rgba(199,68,61,.55);
  background:
    radial-gradient(720px 460px at 0% 0%, rgba(199,68,61,.18), transparent 62%),
    var(--card);
}

/* typography inside cards */
.cap{
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(27,73,80,.62);
}
.title{
  margin-top: 6px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2px;
}
.text{
  margin-top: 8px;
  color: rgba(27,73,80,.80);
  line-height: 1.45;
}
.text--tight{ margin-top: 6px; }

/* chips */
.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.chip{
  border: 1px solid rgba(27,73,80,.18);
  background: rgba(255,255,255,.65);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
}

/* minis */
.minis{
  display:grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 10px;
}
.mini{
  border-radius: 16px;
  border: 1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.60);
  padding: 10px;
}
.mini__t{ font-weight: 800; }
.mini__b{ margin-top: 2px; font-size: 13px; color: rgba(27,73,80,.92); font-weight: 700; }
.mini__s{ margin-top: 1px; font-size: 12px; color: rgba(27,73,80,.62); }

/* lists */
.list{
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 1.5;
  color: rgba(27,73,80,.82);
}
.list li{ margin: 4px 0; }
.list strong{ color: rgba(27,73,80,.95); }
.list--tight li{ margin: 3px 0; }

/* note */
.note{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.58);
  color: rgba(27,73,80,.78);
  font-weight: 600;
}

/* pilot grid */
.pilotgrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}
.pilotbox{
  border-radius: 16px;
  border: 1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.62);
  padding: 10px;
}
.pilotbox__t{
  font-weight: 800;
  margin-bottom: 6px;
}

/* cols for Vertrieb */
.cols{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}
.col{
  border-radius: 16px;
  border: 1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.60);
  padding: 10px;
}
.col__t{
  font-weight: 800;
  margin-bottom: 6px;
}

/* CTA buttons */
.cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.btn{
  appearance:none;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(199,68,61,.60);
  background: rgba(199,68,61,.14);
  color: var(--teal);
  font-weight: 800;
  cursor: pointer;
}
.btn:hover{
  border-color: rgba(199,68,61,.88);
  text-decoration:none;
}
.btn--ghost{
  border-color: rgba(27,73,80,.18);
  background: rgba(255,255,255,.70);
}

/* CONTACT */
.contact{
  margin-top: 10px;
  border-radius: 16px;
  border: 1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.62);
  padding: 10px;
}
.contact__line{
  display:grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(27,73,80,.12);
}
.contact__line:last-child{ border-bottom:none; }
.contact__k{
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(27,73,80,.62);
}
.contact__v{ color: rgba(27,73,80,.92); }
.dot{ opacity: .55; padding: 0 6px; }

/* Signature (Tina in Allura) */
.sig{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(27,73,80,.12);
}
.sig__small{
  font-weight: 700;
  color: rgba(27,73,80,.82);
}
.sig__name{
  font-family: 'Allura', cursive;
  font-size: 36px;
  line-height: 1;
  margin-top: 6px;
  color: var(--teal);
}

/* FOOTER */
.footer{
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.25);
  color: rgba(244,243,241,.78);
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.footer__brand{ font-weight: 800; color: var(--off); }
.footer__tag{ font-size: 12px; }
.footer__right{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__right a{
  font-size: 13px;
  color: rgba(244,243,241,.78);
}
.footer__right a:hover{ color: rgba(244,243,241,.95); }

/* Desktop */
@media (min-width: 860px){
  .grid{
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
  }

  .card--hero{ grid-column: 1 / -1; }
  .card--wide{ grid-column: 1 / -1; }

  .minis{ grid-template-columns: repeat(3, 1fr); }
  .pilotgrid{ grid-template-columns: 1fr 1fr; }
  .cols{ grid-template-columns: repeat(3, 1fr); }

  .footer{
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* Print */
@media print{
  body{ background:#fff; color:#111; }
  .swatches{ display:none; }
  .top{ background:#fff; border-color:#ddd; }
  .card{ box-shadow:none; }
  .btn{ display:none; }
  .footer{ color:#333; border-color:#ddd; }
}
/* Pilotkonditionen Link im Kontakt */
.pilot-link{
  font-weight: 700;
  color: #1B4950;
  border-bottom: 1px solid rgba(27,73,80,.35);
  text-decoration: none;
}

.pilot-link:hover{
  border-bottom-color: rgba(27,73,80,.8);
}

