/* Minimaler Onepager – optisch an das Referenzbild angelehnt, aber eigenständig */

:root{
  /* Logo-Farben (grob): */
  --blue: #233a73;
  --yellow: #f2b200;

  --text: #0f172a;
  --muted: #475569;

  --bg: #ffffff;
  --card: rgba(255,255,255,.78);
  --border: rgba(15,23,42,.14);

  --radius: 18px;
  --max: 980px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.wrap{
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.wrap-logo{
  text-align: center;
  margin-bottom:20px;
}

/* Layout */
.page{
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

/* Top */
.top{
  padding: clamp(90px, 5vw, 44px) 0 18px;
}

.logo{
  width: min(560px, 92vw);
  height: auto;
  margin: 0 auto 18px;
}

.title{
  text-align: center;
}
h1{
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1 span{ color: var(--blue); }

.sub{
  margin: 10px 0 0;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  font-weight: 700;
}

.divider{
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  margin: 18px auto 14px;
}

.intro{
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.02rem;
}

.services{
  margin: 12px auto 0;
  text-align: center;
  color: rgba(15,23,42,.70);
  font-weight: 800;
  font-size: .95rem;
}

/* Bottom band */
.bottom{
  position: relative;
  background: var(--yellow);
  padding: 34px 0 22px;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Abstract shape (eigener Look, keine "Zacken"-Kopie) */
.shape{
  position: absolute;
  left: 0; right: 0;
  top: -40px;
  height: 80px;
  background:
    radial-gradient(90px 55px at 10% 50%, var(--yellow) 62%, transparent 63%),
    radial-gradient(130px 70px at 35% 40%, var(--yellow) 62%, transparent 63%),
    radial-gradient(110px 65px at 62% 52%, var(--yellow) 62%, transparent 63%),
    radial-gradient(140px 75px at 88% 42%, var(--yellow) 62%, transparent 63%);
  filter: drop-shadow(0 -2px 0 rgba(0,0,0,.04));
}

/* Content in bottom */
.bottom-inner{
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.bottom-title{
  margin: 0;
  font-size: clamp(18px, 2.6vw, 24px);
  color: rgba(15,23,42,.85);
  letter-spacing: -0.01em;
}

/* Contact */
.contact{
  width: 100%;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-item{
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid rgba(15,23,42,.16);
  border-radius: var(--radius);
  padding: 12px 12px;
  display: grid;
  gap: 2px;
  backdrop-filter: blur(10px);
}

.label{
  font-size: .82rem;
  color: rgba(15,23,42,.65);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.value{
  font-weight: 900;
  color: rgba(15,23,42,.86);
}
a.contact-item:hover{
  border-color: rgba(35,58,115,.40);
  box-shadow: 0 10px 24px rgba(15,23,42,.10);
  transform: translateY(-1px);
}

/* Gallery */
.gallery{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.ph, .gallery img{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px dashed rgba(15,23,42,.30);
  background: rgba(255,255,255,.45);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(15,23,42,.55);
  overflow: hidden;
}
.gallery img{
  border-style: solid;
  object-fit: cover;
}

.footnote{
  margin: 4px 0 0;
  font-weight: 800;
  color: rgba(15,23,42,.70);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 900px){
  .contact{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shape{ top: -34px; height: 68px; }
  .top{ padding: clamp(30px, 5vw, 44px) 0 18px;}
  .wrap-logo{margin-bottom:0px;}
}
@media (max-width: 520px){
  .wrap{ width: min(100% - 24px, var(--max)); }
  .gallery{ grid-template-columns: 1fr; }
  .services{ font-size: .92rem; }
}
