:root {
  --ink: #121012;
  --ink-2: #1d1a1d;
  --ink-3: #2a262a;
  --paper: #ffffff;
  --paper-dim: #d6d0d4;
  --pink: #ec4899;
  --pink-deep: #be185d;
  --pink-wash: #fde7f1;
  --line: rgba(255, 255, 255, 0.14);
  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --body: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --measure: 62ch;
  --shell: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--pink);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--paper);
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 6.4vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
}

p {
  margin: 0 0 1em;
  max-width: var(--measure);
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 50;
  background: var(--pink);
  color: var(--ink);
  padding: 10px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: auto;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.site-head {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 18px 0;
}

.site-head .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--pink);
}

.site-nav .btn {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  background: var(--pink);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 2px var(--paper);
}

.btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
}

.band--pink .btn--ink {
  color: var(--paper);
}

.btn--ink:hover,
.band--pink .btn--ink:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  padding: 140px 0 72px;
  isolation: isolate;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 35%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 16, 18, 0.72) 0%, rgba(18, 16, 18, 0.35) 38%, rgba(18, 16, 18, 0.92) 100%);
}

.hero h1 {
  max-width: 13ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--pink);
}

.hero__lede {
  font-size: 1.2rem;
  color: var(--paper);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.band {
  padding: clamp(64px, 9vw, 120px) 0;
}

.band--pink {
  background: var(--pink);
  color: var(--ink);
}

.band--pink a {
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.split__photo {
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.placard {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border: 10px solid var(--paper);
  padding: clamp(28px, 5vw, 56px) clamp(24px, 4vw, 48px);
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}

.placard__count {
  display: block;
  font-family: var(--display);
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 1;
  color: var(--pink);
}

.placard__unit {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.placard__motto {
  font-style: italic;
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 auto;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.schedule__day {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.schedule__day h3 {
  margin-bottom: 10px;
}

.schedule__times {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule__times li {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.checklist {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0 0 12px 30px;
  max-width: var(--measure);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
}

.band--pink .checklist li::before {
  background: var(--ink);
}

.enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 40px);
}

.lead-form {
  display: grid;
  gap: 20px;
}

.lead-form__group {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.lead-form__group legend {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  padding: 0;
}

.lead-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-form__chip {
  position: relative;
  display: inline-flex;
}

.lead-form__chip-text {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}

.lead-form__chip-input:checked + .lead-form__chip-text {
  background: var(--ink);
  color: var(--paper);
}

.lead-form__chip-input:focus-visible + .lead-form__chip-text {
  outline: 3px solid var(--pink-deep);
  outline-offset: 2px;
}

.lead-form__error {
  display: none;
  margin: 8px 0 0;
  color: var(--pink-deep);
  font-weight: 600;
}

.lead-form__group.is-invalid .lead-form__error {
  display: block;
}

.lead-form__field {
  display: grid;
  gap: 6px;
}

.lead-form__label {
  font-weight: 700;
}

.lead-form__field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 2px solid #8a8288;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.lead-form__field input:focus {
  border-color: var(--ink);
  outline: 3px solid var(--pink);
  outline-offset: 1px;
}

.lead-form__submit {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}

.lead-form__submit:hover {
  background: var(--pink-deep);
}

.lead-form__submit.is-loading {
  opacity: 0.7;
  cursor: progress;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.95rem;
  color: #4a4448;
}

.site-foot {
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.98rem;
}

.site-foot .shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.site-foot p {
  margin: 0 0 6px;
}

.site-foot a {
  color: var(--paper);
}

.site-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-foot__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.lp-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lp-main {
  flex: 1;
  padding: clamp(28px, 5vw, 64px) 0;
}

.lp-card {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.lp-card--split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.lp-pitch .brand {
  margin-bottom: 28px;
}

.lp-pitch__step {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.lp-pitch h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}

.lp-pitch__photo {
  margin-top: 28px;
  border-radius: 4px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.lp-calendar {
  background: var(--paper);
  border-radius: 6px;
  padding: clamp(8px, 2vw, 20px);
  min-height: 720px;
}

.lp-calendar iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
  overflow: hidden;
}

.lp-foot {
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.95rem;
}

.lp-foot p {
  margin: 0;
  max-width: none;
}

.lp-foot a {
  color: var(--paper);
}

.prose {
  padding: 140px 0 80px;
}

.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-top: 1.6em;
}

.prose ul {
  max-width: var(--measure);
  padding-left: 1.2em;
}

.notfound {
  min-height: 80vh;
  display: grid;
  align-items: center;
  padding: 140px 0 80px;
}

@media (max-width: 900px) {
  .split,
  .enquiry,
  .lp-card--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .split__photo {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 560px) {
  .site-nav a:not(.btn) {
    display: none;
  }

  .brand__name {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 120px;
  }

  .btn {
    width: 100%;
  }

  .site-nav .btn {
    width: auto;
    padding: 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.lp-head {
  padding: 20px 0 0;
}

.notfound__back {
  margin: 32px auto 0;
  max-width: none;
  text-align: center;
}

h1.placard__unit {
  margin-top: 0;
  line-height: 1.1;
}
