:root {
  --blue: #0f4de8;
  --contact-accent: #0050ff;
  --black: #040404;
  --white: #f0f0f0;
  --muted: #c8c8c8;
  --header-height: 52px;
}

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

html {
  margin: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.top-nav {
  height: 100%;
  width: 100%;
  padding: 0 10px 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  opacity: 0.82;
  padding: 0;
  transition: opacity 120ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
}

.nav-link.is-active {
  opacity: 1;
}

.site-main {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
}

.view {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}

/* Inactive view: take out of flow so only active view affects layout */
.view:not(.is-active) {
  position: absolute;
  inset: var(--header-height) 0 auto 0;
  height: 0;
  min-height: 0;
  overflow: hidden;
}

.view.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}

.view-home {
  background: var(--black);
  /* Document scrolls; no inner scroll container for reliable mobile scrolling */
}

.blue-section {
  background: var(--blue);
  min-height: clamp(380px, 62vh, 640px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(10px, 1.6vw, 18px) 22px clamp(36px, 4vw, 52px);
  overflow-x: hidden;
}

.hero-shell {
  width: min(100%, 1100px);
}

.hero-frame {
  border: 3px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  padding: clamp(24px, 3.4vw, 34px) clamp(20px, 4.4vw, 46px) 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-kicker {
  margin: 0 0 clamp(8px, 1vw, 12px);
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(1.5rem, 2.8vw, 2.9rem);
}

.hero-title {
  margin: 0;
  margin-top: -8px;
  order: 1;
  text-transform: uppercase;
  text-align: center;
  font-family: "Anton", Impact, "Arial Black", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-size: 12.5rem;
  position: relative;
  z-index: 1;
}

.hero-stage {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: 0;
}

.hero-headshot-wrap {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(170px, 22vw, 250px);
  margin-top: -210px;
  transform: scale(1.15);
  order: 3;
  left: auto;
  bottom: auto;
  z-index: 2;
}

.hero-headshot {
  width: clamp(190px, 24vw, 275px);
  height: auto;
  display: block;
  pointer-events: none;
}

.hero-divider {
  width: min(100%, 340px);
  height: 4px;
  margin: clamp(8px, 1.2vw, 12px) auto clamp(22px, 2.2vw, 30px);
  margin-top: -16px;
  order: 2;
  background: rgba(240, 240, 240, 0.88);
}

.hero-contact-row {
  margin: 0 calc(-1 * clamp(20px, 4.4vw, 46px));
  margin-top: 24px;
  width: calc(100% + 2 * clamp(20px, 4.4vw, 46px));
  box-sizing: border-box;
  border-top: 3px solid rgba(255, 255, 255, 0.66);
  padding: 14px clamp(20px, 4.4vw, 46px) 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  flex-shrink: 0;
}

.hero-contact-link {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.black-section {
  min-height: clamp(300px, 46vh, 500px);
  background: var(--black);
  display: grid;
  place-content: center;
  text-align: center;
  gap: clamp(18px, 2.4vw, 32px);
  padding: clamp(30px, 5vw, 74px) 22px clamp(34px, 5.5vw, 64px);
  padding-bottom: max(clamp(34px, 5.5vw, 64px), env(safe-area-inset-bottom, 0px));
}

.booking-title {
  margin: 0;
  text-transform: uppercase;
  font-family: "Anton", Impact, "Arial Black", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-size: clamp(2.8rem, 8vw, 7.2rem);
}

.booking-title-accent {
  color: var(--blue);
}

.booking-copy {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 2rem);
  line-height: 1.42;
}

.view-contact {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px) 22px;
}

.contact-page {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.contact-name {
  margin: 0;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #fff;
}

.contact-heading {
  margin: 0;
  font-family: "Anton", Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  font-size: clamp(2.8rem, 8vw, 7.2rem);
  color: #fff;
}

.contact-heading-accent {
  color: var(--contact-accent);
}

.contact-cols {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(8px, 1.5vw, 16px);
}

.contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

.contact-col-label {
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #fff;
  margin-bottom: 0.35em;
}

.contact-col-value {
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #fff;
  text-decoration: none;
}

.contact-col-value:hover,
.contact-col-value:focus-visible {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .blue-section {
    min-height: clamp(370px, 60vh, 540px);
    padding: 10px 16px 30px;
  }

  .hero-contact-row {
    margin: 0 calc(-1 * clamp(20px, 4.4vw, 46px));
    width: calc(100% + 2 * clamp(20px, 4.4vw, 46px));
    padding: 14px clamp(20px, 4.4vw, 46px) 12px;
  }

  .black-section {
    min-height: auto;
    padding: 30px 16px 38px;
  }

  .hero-stage {
    margin-bottom: 0;
  }

  .hero-headshot-wrap {
    position: static;
    bottom: auto;
    transform: none;
  }

  .hero-headshot {
    width: clamp(142px, 23vw, 192px);
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 48px;
  }

  .top-nav {
    padding: 0 8px 0 12px;
    gap: 12px;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .hero-frame {
    border-width: 2px;
    border-radius: 18px;
    padding: 18px clamp(18px, 6vw, 26px) 0;
  }

  .hero-contact-row {
    margin: 0 calc(-1 * clamp(18px, 6vw, 26px));
    margin-top: 0;
    width: calc(100% + 2 * clamp(18px, 6vw, 26px));
    border-top-width: 2px;
    gap: 8px;
    justify-content: stretch;
    flex-wrap: nowrap;
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px clamp(18px, 6vw, 26px) 10px;
  }

  .hero-contact-link {
    font-size: clamp(0.8rem, 2.3vw, 0.92rem);
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    min-width: 0;
  }

  .hero-headshot {
    width: clamp(126px, 40vw, 164px);
  }

  .hero-stage {
    margin-bottom: 0;
  }

  .blue-section {
    min-height: clamp(330px, 54vh, 470px);
  }

  .hero-headshot-wrap {
    position: static;
    min-height: clamp(120px, 36vw, 160px);
    bottom: auto;
    transform: none;
  }

  .black-section {
    padding: 24px 14px 28px;
  }

  .booking-title {
    font-size: clamp(2.1rem, 12.5vw, 3.8rem);
  }

  .booking-copy {
    font-size: 1rem;
    max-width: 38ch;
  }

  .view-contact {
    display: block;
  }

  .contact-cols {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .contact-col {
    align-items: center;
    text-align: center;
  }
}
