/* ============================================================
   BLONDE BRUNETTE - style.css
   Pink #ff1e9d | Black #000 | Cyan #00fff7 | Yellow #fff500
   Work Sans (titles) | Poppins (body)
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.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; }

:root {
  --pink:   #ff1e9d;
  --black:  #000;
  --cyan:   #00fff7;
  --yellow: #fff500;
  --white:  #fff;
  --font-title: 'Work Sans', sans-serif;
  --font-body:  'Poppins', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--pink); }

/* ============================================================
   ENTRY PAGE
============================================================ */
#entry {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  transition: opacity 0.7s ease;
}

#entry.exit {
  opacity: 0;
  pointer-events: none;
}

.entry__logo {
  width: clamp(240px, 38vw, 480px);
}

.entry__enter {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  transition: color 0.25s ease, letter-spacing 0.35s ease;
  position: relative;
}

.entry__enter::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.entry__enter:hover {
  color: var(--pink);
  letter-spacing: 0.55em;
}
.entry__enter:hover::after {
  transform: scaleX(1);
}

/* 4-language enter group */
.entry__enter-group {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 520px) {
  .entry__enter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    text-align: center;
  }
  .entry__enter-word {
    font-size: 0.95rem;
    letter-spacing: 0.25em;
  }
}

.entry__enter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.entry__enter-word {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.25s;
}
.entry__enter-item:hover .entry__enter-word { color: var(--pink); }

.entry__enter-code {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ============================================================
   NAV - floating, no background bar
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  pointer-events: none; /* prevent invisible area blocking clicks */
  opacity: 0;
  transition: opacity 0.5s ease;
}

.nav.visible {
  opacity: 1;
  pointer-events: none; /* keep this - individual children have pointer-events */
}

.nav__logo,
.nav__links {
  pointer-events: all;
}

.nav__logo {
  flex-shrink: 0;
}
.nav__logo img {
  height: 52px;
  width: auto;
  transition: opacity 0.2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav__logo:hover img { opacity: 0.75; }

/* Yellow rectangle containing all links */
.nav__links {
  background: var(--yellow);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 22px;
}

.nav__links a {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: opacity 0.2s;
  padding: 10px 4px;
}
.nav__links a:hover { opacity: 0.6; }
.nav__links a.active { text-decoration: underline; text-underline-offset: 3px; }

.nav__icon {
  display: flex;
  align-items: center;
  color: var(--black);
}

/* Globe language switcher */
.nav__lang-wrap {
  position: relative;
}

.nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.nav__lang-btn:hover { opacity: 0.6; }

.nav__lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--black);
  min-width: 80px;
  z-index: 200;
  list-style: none;
  padding: 6px 0;
}
.nav__lang-dropdown.open { display: block; }

.nav__lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.15s;
}
.nav__lang-dropdown button:hover { color: var(--yellow); }

/* ─── HAMBURGER BUTTON (inside yellow bar) ─────────────── */
.nav__hamburger { display: none; }

.nav__ham-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
}

.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: opacity 0.2s;
}

.ham-x { display: none; }

.nav__ham-btn:hover .ham-line { opacity: 0.5; }

/* ─── FULL-SCREEN HAM MENU ──────────────────────────────── */
.ham-menu {
  position: fixed;
  inset: 0;
  background: var(--pink);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.ham-menu.open {
  opacity: 1;
  pointer-events: all;
}

.ham-menu__close {
  position: absolute;
  top: 20px;
  right: 28px;
  height: 52px;
  padding: 0 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.ham-menu__close:hover { opacity: 0.6; }

.nav__links.ham-open { visibility: hidden; }

.ham-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.ham-menu__link {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2.24rem, 8vw, 4.4rem);
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  transition: opacity 0.2s;
}
.ham-menu__link:hover { opacity: 0.7; text-decoration: none; }

.ham-menu__social {
  display: flex;
  gap: 32px;
}

.ham-menu__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  transition: opacity 0.2s;
}
.ham-menu__social-link:hover { opacity: 0.6; text-decoration: none; }

.ham-menu__langs {
  display: flex;
  gap: 20px;
}

.ham-menu__lang-btn {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  padding: 0;
}
.ham-menu__lang-btn:hover { opacity: 0.6; }
.ham-menu__lang-btn.active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── RESPONSIVE: progressive hiding ────────────────────── */

/* Step 1 - shrink gap */
@media (max-width: 900px) {
  .nav__links { gap: 18px; }
}

/* Step 2 - hide Globe/EN, social icons, show hamburger */
@media (max-width: 600px) {
  .nav__links { gap: 14px; }
  .nav__lang-wrap { display: none; }
  .nav__links li:has(.nav__icon) { display: none; }
  .nav__hamburger { display: list-item; }
}

/* Step 4 - hide CONTACT */
@media (max-width: 480px) {
  .nav__links li:nth-child(3) { display: none; }
}

/* Step 5 - hide ABOUT US */
@media (max-width: 380px) {
  .nav__links li:nth-child(2) { display: none; }
}

/* ============================================================
   SECTIONS
============================================================ */
.section {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
.section.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HOME - one sheet aesthetic
============================================================ */
#home {
  overflow: hidden;
}

.home__pink-bg {
  position: absolute;
  inset: 0;
  background: var(--pink);
  z-index: 0;
}

/* Bold diagonal stripes - top-right triangle */
.home__stripes-corner {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -25deg,
    #000 0px, #000 13px,
    #fff 13px, #fff 26px
  );
  clip-path: polygon(27% 0%, 100% 0%, 100% 50%, 25% 10%);
  z-index: 1;
}

/* BB text logo - black, top-left */
.home__logo-black {
  position: absolute;
  top: clamp(90px, 14vh, 140px);
  left: clamp(24px, 4vw, 60px);
  width: clamp(200px, 32vw, 420px);
  z-index: 3;
  filter: brightness(0);
}

/* BB mouth icon - right side, vertically centered, overlapping stripe boundary */
.home__mouth-icon {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: clamp(240px, 36vw, 480px);
  z-index: 3;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}


/* ============================================================
   ABOUT US
============================================================ */
#about {
  background: var(--black);
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px clamp(24px, 5vw, 60px) 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Duo intro - text left, angled photo right */
.about__intro-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about__kicker {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.about__intro-text p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

/* Angled photo - rotated, irregular crop */
.about__intro-photo {
  transform: rotate(2deg);
  clip-path: polygon(4% 0%, 100% 2%, 96% 100%, 0% 98%);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── VALUES BANDS ─── */
.values-bands {
  position: relative;
  margin: 0 -60px 60px; /* bleed past inner padding */
}

.values-band {
  transform: skewY(-2.5deg);
  padding: 0;
  position: relative;
  margin-bottom: -24px;
  z-index: 1;
}
.values-band:nth-child(2) { z-index: 2; }
.values-band:nth-child(3) { z-index: 3; }

.values-band--pink   { background: var(--pink); }
.values-band--cyan   { background: var(--cyan); }
.values-band--yellow { background: var(--yellow); }

.values-band__inner {
  transform: skewY(2.5deg); /* counter-skew - keeps content upright */
  padding: 44px clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  color: var(--black);
}

.values-band__inner h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1;
}

.values-band__inner p {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.7;
  opacity: 0.85;
}

/* ─── FOOT LOGO ─── */
.about__foot-logo {
  margin-top: 60px;
  padding-bottom: 40px;
}
.about__foot-logo img {
  width: 100%;
}

/* ─── INDIVIDUAL BIOS ─── */
.bios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 80px;
  padding-bottom: 60px;
}

.bio-card {
  position: relative;
  padding: 0 40px 40px;
}

.bio-card--peter {
  z-index: 1;
}
.bio-card--nick {
  z-index: 2;
}

.bio-card__photo-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
  clip-path: polygon(6% 0%, 100% 2%, 94% 100%, 0% 98%);
  margin-bottom: 28px;
  border: 3px solid transparent;
}

.bio-card--peter .bio-card__photo-wrap { border-color: var(--cyan); }
.bio-card--nick  .bio-card__photo-wrap { border-color: var(--yellow); }

.bio-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.bio-card__name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.bio-card__email {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.bio-card__email:hover { color: var(--white); }

.bio-card__tag {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bio-card__tag--cyan   { background: var(--cyan);   color: var(--black); }
.bio-card__tag--yellow { background: var(--yellow);  color: var(--black); }

.bio-card__text p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   SIGN UP - Mailing List
============================================================ */
#signup {
}

.signup__stripes {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    -25deg,
    #000 0px, #000 13px,
    #fff 13px, #fff 26px
  );
}

.signup__inner {
  position: relative;
  z-index: 2;
  background: var(--pink);
  padding: clamp(40px, 6vw, 72px) clamp(40px, 8vw, 100px);
  text-align: center;
  max-width: 720px;
  width: calc(100% - 48px);
  margin: 100px auto 60px;
}

.signup__logo {
  width: 72px;
  margin: 0 auto 20px;
}
.signup__logo img { width: 100%; }

.signup__kicker {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.55;
  margin-bottom: 8px;
}

.signup__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 12px;
}

.signup__sub {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 32px;
}

.signup__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signup__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.signup__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.signup__field label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.6;
}

.signup__field input {
  background: var(--black);
  border: none;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  width: 100%;
}
.signup__field input::placeholder { color: rgba(255,255,255,0.25); }
.signup__field input:focus { box-shadow: 0 0 0 2px var(--yellow) inset; }

.signup__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.65);
  text-align: left;
  cursor: pointer;
  line-height: 1.5;
}
.signup__consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--black);
  width: 14px;
  height: 14px;
}
.signup__consent a {
  color: var(--black);
  text-decoration: underline;
}
.signup__consent a:hover { opacity: 0.6; }

.signup__note {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.45);
}
.signup__note a {
  color: rgba(0,0,0,0.45);
  text-decoration: underline;
}
.signup__note a:hover { color: var(--black); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--black { background: var(--black); color: var(--white); }

.btn--pink-solid {
  background: var(--pink);
  color: var(--black);
  padding: 15px 48px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  align-self: flex-start;
}
.btn--pink-solid:hover { opacity: 0.85; transform: translateY(-1px); }

/* ============================================================
   CONTACT
============================================================ */
#contact {
  background: var(--black);
}

.contact__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px clamp(24px, 5vw, 60px) 60px;
}

.contact__kicker {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.contact__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 48px;
}

.contact__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.contact__email {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  margin-bottom: 20px;
  transition: color 0.2s, border-color 0.2s;
  word-break: break-all;
}
.contact__email:hover { color: var(--pink); border-color: var(--pink); }

.contact__onesheet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 10px 16px;
  margin-bottom: 28px;
  transition: border-color 0.2s, color 0.2s;
}
.contact__onesheet:hover { border-color: var(--yellow); color: var(--yellow); }

.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.contact__social-link:hover { color: var(--cyan); }

/* Contact form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--pink); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .about__intro-wrap { grid-template-columns: 1fr; }
  .about__intro-photo { display: none; }
  .bios { grid-template-columns: 1fr; }
  .bio-card--nick { margin-top: 0; transform: none; }
  .bio-card--peter { transform: none; }
  .values-bands { margin: 0 -24px 40px; }
  .values-band__inner { grid-template-columns: 1fr; gap: 12px; }
  .contact__layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

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