/* ---------------------------------------------------------
   R.F. Azwanger OG — Baustellenseite (helle Variante)
   Basiert auf den Original-Markenfarben & -grafiken.
   Kein Framework, keine externen Schriften/Skripte.
--------------------------------------------------------- */

:root {
  --bg: #fffefc;
  --paper: #fffefc;
  --ink: #3d3a36;
  --ink-soft: #6e6a64;
  --muted: #948d83;
  --taupe: #b5a699;
  --taupe-light: #d8d0c8;
  --hairline: #e9e2d8;
  --wine: #7c2430;

  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Times New Roman', serif;
  --sans: Helvetica, Arial, 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  position: relative;
  overflow-x: hidden;
}

/* dezente Eckverzierung mit dem originalen Blattranken-Motiv */
.corner-vine {
  position: fixed;
  width: 150px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.corner-vine--tl {
  top: -18px;
  left: -18px;
  transform: rotate(180deg);
}

.corner-vine--br {
  bottom: -18px;
  right: -18px;
}

@media (max-width: 720px) {
  .corner-vine {
    width: 96px;
  }
}

.wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 20px 6vh;
}

.page {
  width: 100%;
  max-width: 620px;
}

/* ---------- Logo ---------- */

.brand {
  text-align: center;
  opacity: 0;
  animation: rise 0.9s ease-out 0.05s forwards;
}

.brand__logo {
  width: 78%;
  max-width: 320px;
  height: auto;
  display: inline-block;
}

/* ---------- Botschaft ---------- */

.message {
  text-align: center;
  margin-top: 34px;
  opacity: 0;
  animation: rise 0.9s ease-out 0.25s forwards;
}

.message__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 16px;
  font-weight: 700;
}

.message__headline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 4.6vw, 30px);
  line-height: 1.4;
  margin: 0 0 20px;
  color: var(--ink);
}

.message__body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto;
}

.message__body strong {
  color: var(--ink);
  font-weight: 700;
}

/* ---------- Rankenteiler (Original-Grafik) ---------- */

.vine-divider {
  margin: 40px auto 6px;
  width: 88%;
  max-width: 360px;
  opacity: 0;
  animation: rise 1s ease-out 0.38s forwards;
}

.vine-divider img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Kontakt ---------- */

.contact {
  margin-top: 8px;
  opacity: 0;
  animation: rise 0.9s ease-out 0.5s forwards;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 18px;
  text-align: center;
}

@media (max-width: 520px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}

.contact__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact__label {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 2px 0 0;
  font-weight: 700;
}

.contact__value {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  text-decoration: none;
}

a.contact__value {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

a.contact__value:hover,
a.contact__value:focus-visible {
  border-color: var(--taupe);
  color: var(--wine);
}

/* ---------- Standorte ---------- */

.locations {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  opacity: 0;
  animation: rise 0.9s ease-out 0.62s forwards;
}

@media (max-width: 520px) {
  .locations {
    grid-template-columns: 1fr;
  }
}

.locations__item {
  text-align: center;
}

.locations__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 8px;
}

.locations__hours {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Social ---------- */

.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 42px;
  opacity: 0;
  animation: rise 0.9s ease-out 0.74s forwards;
}

.social__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social__link img {
  width: 100%;
  height: 100%;
  display: block;
}

.social__link:hover,
.social__link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(181, 166, 153, 0.4);
}

/* ---------- Footer ---------- */

.footer {
  text-align: center;
  margin-top: 48px;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
  opacity: 0;
  animation: rise 0.9s ease-out 0.84s forwards;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--wine);
  border-color: var(--wine);
}

/* ---------- Bewegung ---------- */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .message,
  .vine-divider,
  .contact,
  .locations,
  .social,
  .footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

a:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: 3px;
}
