:root {
  --bg: #F6F1E7;
  --surface: #FFFFFF;
  --text: #2B2D33;
  --muted: #5B616E;
  --brand: #C47B8C;
  --line: #E6DCCB;
  --shadow: 0 12px 35px rgba(0,0,0,.08);
  --shadow-soft: 0 8px 22px rgba(0,0,0,.06);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% 0%, rgba(196,123,140,.20), transparent 60%),
              radial-gradient(900px 600px at 85% 10%, rgba(43,45,51,.08), transparent 55%),
              var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a.underline { text-decoration: underline; text-underline-offset: 3px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(246,241,231,.78);
  border-bottom: 1px solid rgba(230,220,203,.8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 34px; width: auto; }

.navlinks {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}
.navlinks a {
  padding: 10px 10px;
  border-radius: 12px;
}
.navlinks a:hover {
  background: rgba(196,123,140,.12);
  color: var(--text);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(196,123,140,.28);
  border: 1px solid rgba(255,255,255,.22);
}
.cta:hover { filter: brightness(.98); transform: translateY(-1px); }
.cta:active { transform: translateY(0px); }

.hero {
  padding: 44px 0 26px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 26px;
  align-items: stretch;
}
.hero-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(230,220,203,.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-inner { padding: 34px 34px 30px; }
.kicker {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}
.h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
}
.sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(196,123,140,.12);
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(196,123,140,.22);
}
.btn-secondary:hover { background: rgba(196,123,140,.16); }

.hero-visual {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(230,220,203,.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.corner-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: rgba(246,241,231,.92);
  border: 1px solid rgba(230,220,203,.95);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
}
.corner-badge img { width: 66px; height: auto; }

.section { padding: 34px 0; }
.section-title { font-size: 26px; margin: 0 0 10px; }
.section-sub { margin: 0 0 18px; color: var(--muted); line-height: 1.5; }


.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 900px){ .grid-2 { grid-template-columns: 1fr; } }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(230,220,203,.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card .pad { padding: 18px 18px 16px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(196,123,140,.14);
  border: 1px solid rgba(196,123,140,.22);
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  margin-top: 12px;
}
.badge svg { width: 14px; height: 14px; }

.product {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
}
.product img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: rgba(246,241,231,.75);
  border: 1px solid rgba(230,220,203,.85);
  border-radius: 18px;
  padding: 10px;
}
.product .links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(43,45,51,.06);
  border: 1px solid rgba(43,45,51,.10);
  font-weight: 800;
  color: var(--text);
}
.chip:hover {
  background: rgba(196,123,140,.12);
  border-color: rgba(196,123,140,.24);
}
.chip svg { width: 14px; height: 14px; }

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}
.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230,220,203,.85);
  box-shadow: var(--shadow);
  min-height: 260px;
  background: rgba(255,255,255,.85);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px){
  /* Make the portrait match the height of the text card */
  .about{ align-items: start; }
  .about-photo{ height: 360px; }
}
.about-photo .mini-square {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  background: rgba(246,241,231,.92);
  border: 1px solid rgba(230,220,203,.95);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
}
.about-photo .mini-square img { width: 54px; height: auto; }

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li { margin: 8px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
form { display: grid; gap: 12px; }
label { font-weight: 700; color: var(--text); font-size: 13px; }
input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(43,45,51,.14);
  background: rgba(255,255,255,.9);
  color: var(--text);
  font-size: 15px;
}
textarea { min-height: 130px; resize: vertical; }

.small { font-size: 13px; color: var(--muted); }
.footer {
  padding: 18px 0 36px;
  color: var(--muted);
  font-size: 13px;
}
.footer a { text-decoration: underline; text-underline-offset: 3px; }

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

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .navlinks { display: none; }
}
/* Award badge text inside existing corner badge (keine Farb-/Layoutänderung außerhalb) */
.corner-badge .award-text{
  text-align:center;
  line-height:1.05;
  padding:6px 6px 4px;
}
.corner-badge .award-title{
  font-weight:800;
  font-size:12px;
  color: var(--muted);
  letter-spacing:.02em;
}
.corner-badge .award-main{
  font-weight:900;
  font-size:12px;
  color: var(--text);
}
.corner-badge .award-sub{
  font-weight:800;
  font-size:11px;
  color: var(--muted);
}

/* Contact grid: allow single-column layout when only one card present */
.contact-grid{grid-template-columns: 1fr;}

/* Scroll-reveal (subtle) */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
