/* b29.studio — two-color variant
   Set background + text color here, nothing else.
*/

:root{
  --bg: rgb(0, 0, 255);
  --text: rgb(255, 0, 0);
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }

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

@media (prefers-reduced-motion: reduce){
  *{ transition-duration: 0.001ms !important; }
}

/* ================= HOME ================= */

.home{
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vh 6vw;
}

.home .wordmark{
  font-family: 'Outfit', sans-serif;
  font-weight: 100;
  color: var(--text);
  font-size: clamp(2.6rem, 9vw, 5rem);
  letter-spacing: 0.03em;
  margin: 0;
}

.wordmark .fade, header.site a.logo .fade{ margin-left: -0.15em; }
.dot{ font-size: 0.88em; }

.home .tagline{
  margin-top: 1rem;
  color: var(--text);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.4;
  max-width: 32ch;
}

.home .enter{
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  transition: gap 0.2s ease;
}

.home .enter:hover{
  gap: 0.75rem;
}

.home .enter svg{ width: 14px; height: 14px; }

/* ================= DETAILS PAGE ================= */

.page{
  max-width: 800px;
  margin: 0 auto;
  padding: 0 6vw 8rem;
}

header.site{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2.6rem 0 2rem;
}

header.site a.logo{
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--text);
}

header.site nav a{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.intro{
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.4;
  color: var(--text);
  margin: 1rem 0 3.2rem;
  max-width: 32ch;
}

section.block{
  padding: 1.8rem 0;
}

section.block .label{
  font-weight: 700;
  color: var(--text);
  display: block;
}

.included{
  list-style: none;
  margin: 0; padding: 0;
}
.included li{
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.98rem;
}
.included li::before{
  content: "–";
  position: absolute;
  left: 0;
}

.price{
  margin: 0;
  font-size: 0.98rem;
}

address{ font-style: normal; font-size: 0.98rem; }

.contact-link{
  font-size: 0.98rem;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}

footer.site{
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ================= IMPRINT ================= */

.imprint h1{
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.imprint h2{
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  margin: 2rem 0 0;
}
.imprint p{ margin: 0; font-size: 0.98rem; }
