/* b29.studio — shared styles
   Tokens (sampled from the flyer):
   red #EE220C · white #FFFFFF · pink-light #FFD7D3 · pink #FF968D
   Display: Baloo 2 (headline, logo) · Body: Inter (intro, labels, copy)
*/

:root{
  --red: #EE220C;
  --white: #FFFFFF;
  --pink-light: #FFD7D3;
  --pink: #FF968D;
}

*{ box-sizing: border-box; }

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

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

a:focus-visible, button:focus-visible{
  outline: 2px solid var(--white);
  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: 300;
  color: var(--white);
  font-size: clamp(2.6rem, 9vw, 5rem);
  letter-spacing: -0.01em;
  margin: 0;
}

.wordmark .fade, header.site a.logo .fade{ color: var(--pink); margin-left: -0.15em; }

.home .tagline{
  margin-top: 1rem;
  color: var(--pink-light);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 32ch;
}

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

.home .enter:hover{
  border-color: var(--white);
  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(--white);
}

header.site nav a{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--pink-light);
  transition: color 0.2s ease;
}
header.site nav a:hover{ color: var(--white); }

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

section.block{
  padding: 1.8rem 0;
}

section.block .label{
  font-weight: 700;
  color: var(--pink-light);
  margin-bottom: 0.8rem;
  display: block;
}

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

.price{
  font-size: 0.98rem;
}

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

.contact-link{
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(255,150,141,0.5);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-link:hover{ color: var(--white); border-color: var(--white); }

footer.site{
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--pink-light);
  font-size: 0.85rem;
  font-weight: 600;
}
footer.site a:hover{ color: var(--white); }
footer.site .brand .fade{ color: var(--pink); }

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

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