/*
Theme Name: ZAHLEX Under Construction
Theme URI: https://zahlex.eu/
Author: ZAHLEX
Description: A luxury, minimal under-construction landing page for ZAHLEX GmbH.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: zahlex-under-construction
*/

:root {
  --zx-bg: #080808;
  --zx-bg-soft: #11100e;
  --zx-card: rgba(255,255,255,.035);
  --zx-gold: #d6b46a;
  --zx-gold-2: #f1d99b;
  --zx-text: #f5f1e8;
  --zx-muted: #aaa49a;
  --zx-line: rgba(214,180,106,.26);
  --zx-white-line: rgba(255,255,255,.09);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--zx-bg);
}

body {
  color: var(--zx-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.zx-site {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 12%, rgba(214,180,106,.12), transparent 27rem),
    radial-gradient(circle at 18% 82%, rgba(214,180,106,.06), transparent 24rem),
    linear-gradient(145deg, #070707 0%, #0b0a09 45%, #090909 100%);
}

.zx-site::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .19;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 86%);
}

.zx-glow {
  position: absolute;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  border: 1px solid rgba(214,180,106,.12);
  right: -17rem;
  top: -13rem;
  z-index: -2;
}

.zx-glow::before,
.zx-glow::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 4rem;
  border: 1px solid rgba(214,180,106,.08);
}

.zx-glow::after { inset: 9rem; }

.zx-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 34px 0 28px;
  display: flex;
  flex-direction: column;
}

.zx-header,
.zx-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.zx-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: .91rem;
}

.zx-brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--zx-line);
  border-radius: 50%;
  color: var(--zx-gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.zx-header-note {
  color: var(--zx-muted);
  font-size: .77rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.zx-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: 8vw;
  padding: 80px 0 70px;
}

.zx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
  color: var(--zx-gold-2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.zx-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--zx-gold), transparent);
}

.zx-title {
  max-width: 830px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(3.4rem, 7.7vw, 7.3rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.zx-title em {
  color: var(--zx-gold-2);
  font-weight: inherit;
}

.zx-copy {
  max-width: 630px;
  margin: 31px 0 0;
  color: var(--zx-muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.zx-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.zx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--zx-gold);
  background: var(--zx-gold);
  color: #15120b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .73rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.zx-button:hover,
.zx-button:focus-visible {
  transform: translateY(-2px);
  background: var(--zx-gold-2);
}

.zx-mail {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 8px;
  color: var(--zx-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.zx-mail:hover,
.zx-mail:focus-visible {
  color: var(--zx-text);
  border-color: var(--zx-line);
}

.zx-panel {
  position: relative;
  padding: 31px;
  border: 1px solid var(--zx-white-line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  backdrop-filter: blur(12px);
}

.zx-panel::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 1px;
  background: var(--zx-gold);
  top: -1px;
  left: 31px;
}

.zx-panel-label {
  margin: 0 0 27px;
  color: var(--zx-muted);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.zx-detail {
  padding: 20px 0;
  border-top: 1px solid var(--zx-white-line);
}

.zx-detail:first-of-type { border-top: 0; padding-top: 0; }

.zx-detail span {
  display: block;
  margin-bottom: 7px;
  color: var(--zx-muted);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.zx-detail strong,
.zx-detail a {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.13rem;
  line-height: 1.45;
  text-decoration: none;
}

.zx-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zx-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--zx-gold);
  box-shadow: 0 0 0 5px rgba(214,180,106,.08);
}

.zx-footer {
  padding-top: 22px;
  border-top: 1px solid var(--zx-white-line);
  color: #77736c;
  font-size: .73rem;
  letter-spacing: .08em;
}

.zx-footer a {
  color: #aaa49a;
  text-decoration: none;
}

.zx-footer a:hover { color: var(--zx-text); }

@media (max-width: 850px) {
  .zx-shell {
    width: min(100% - 32px, 720px);
    padding-top: 24px;
  }

  .zx-header-note { display: none; }

  .zx-main {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 72px 0 58px;
  }

  .zx-title { font-size: clamp(3.35rem, 16vw, 6rem); }

  .zx-panel { max-width: 520px; }
}

@media (max-width: 520px) {
  .zx-shell { width: min(100% - 26px, 480px); }

  .zx-main { padding-top: 60px; }

  .zx-title { font-size: clamp(3rem, 18vw, 4.8rem); }

  .zx-copy { line-height: 1.65; }

  .zx-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .zx-button,
  .zx-mail {
    width: 100%;
    justify-content: center;
  }

  .zx-panel { padding: 25px; }

  .zx-panel::before { left: 25px; }

  .zx-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
