:root {
  /* Brand token placeholders — replace with your values */
  --color-bg: #f6f8fb;
  --color-surface: #ffffff;
  --color-elevated: #ffffff;
  --color-text: #181d27;
  --color-muted: #4b5563;
  --color-primary: #ea593d; /* BauRem red */
  --radius: 18px;
  --container: min(92vw, 880px);
  --shadow: none;

  --font-sans: 'Inter', var(--font-inter), system-ui, -apple-system, 'Segoe UI',
    Roboto, Helvetica, Arial;
  --font-heading: 'Oswald', var(--font-oswald), 'Bebas Neue', sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--color-elevated);
  color: var(--color-text);
  border-radius: 8px;
  outline: 2px solid var(--color-primary);
}

.page {
  min-height: 100dvh;
  padding: 56px 0;
}

.brand {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto 24px auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.brand img {
  filter: none;
  width: min(340px, 82vw);
  height: auto;
}

@media (min-width: 960px) {
  .brand {
    justify-content: flex-start;
  }

  .brand img {
    width: 340px;
  }
}

.hero {
  position: relative;
  width: 100%;
  margin: 32px 0 0 0;
  padding: 96px 0 88px 0;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 10, 18, 0.68) 10%, rgba(32, 18, 14, 0.52) 60%, rgba(32, 18, 14, 0.34) 100%),
    url('/assets/maintenance-bg.jpg') center/cover no-repeat;
  filter: saturate(1.05);
}

.hero-body {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  padding: 0 clamp(24px, 5vw, 72px);
}

.hero-intro h1 {
  margin: 0 0 12px 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.6vw, 54px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-intro .lead {
  margin: 0;
  max-width: 560px;
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  text-decoration: none;
  backdrop-filter: blur(2px);
  transition: background 160ms ease, border-color 160ms ease;
}

.chip:hover {
  background: rgba(234, 89, 61, 0.28);
  border-color: rgba(234, 89, 61, 0.45);
}

.chip:focus {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.chip.muted {
  cursor: pointer;
}

.hero-note {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.hero-address {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-address span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-address a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.hero-address a:hover {
  text-decoration-color: rgba(234, 89, 61, 0.9);
}

.footer {
  width: var(--container);
  margin: 40px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(24, 29, 39, 0.6);
  border-top: 1px solid rgba(234, 89, 61, 0.1);
  padding-top: 18px;
}

.small { font-size: 12px; }
.muted { color: rgba(24, 29, 39, 0.6); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
