/* Version 3 private concept: simplified poster-like hero. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-v2 {
  min-height: min(760px, calc(100vh - 145px));
}

.hero-v2-shade { display: none; }

.hero-v2-panel {
  width: min(690px, 50vw);
  justify-content: flex-start;
  padding-top: clamp(2.5rem, 5vw, 4.75rem);
  padding-bottom: clamp(3rem, 7vw, 7rem);
}

.hero-title-lockup {
  width: min(100%, 600px);
  height: auto;
  margin: .15rem 0 0;
  filter:
    drop-shadow(0 2px 2px rgba(3, 28, 51, .74))
    drop-shadow(0 9px 20px rgba(3, 28, 51, .34));
}

.hero-v2-panel > .eyebrow {
  width: min(100%, 600px);
  font-size: clamp(.86rem, 1vw, .94rem);
  text-align: center;
  text-shadow:
    0 2px 2px rgba(3, 28, 51, .94),
    0 6px 14px rgba(3, 28, 51, .56);
}

.hero-v2-panel .hero-intro {
  max-width: 590px;
  margin: 0;
  font-size: clamp(1.4rem, 2.15vw, 2rem);
  line-height: 1.34;
  text-wrap: balance;
}

.date-ribbon-v2 {
  grid-template-columns: minmax(340px, .95fr) minmax(600px, 1.75fr);
  align-items: start;
}
.date-message { align-self: center; }
.date-ribbon-v2 .date-message h2 {
  max-width: 480px;
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 3.64vw, 32px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.date-list-wrap { min-width: 0; }
.date-list-wrap .eyebrow { margin-bottom: 1rem; }
.date-list-wrap ol { width: 100%; }
.date-ribbon-v2 li span,
.date-ribbon-v2 li strong {
  align-self: center;
  text-align: center;
}
.date-ribbon-v2 > p {
  width: 100%;
  max-width: none;
  margin-top: -1.25rem;
  text-align: center;
}

.experience-v2 > .section-heading {
  max-width: 1500px;
}

.experience-v2 .experience-manifesto {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(.35rem, .8vw, .8rem);
  margin: 0;
  color: #9c690d;
  font-family: var(--sans);
  font-size: clamp(.875rem, 1.15vw, 1rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.manifesto-token {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(.35rem, .8vw, .8rem);
}

.manifesto-token i {
  width: .2em;
  height: .2em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #9c690d;
}

.take-part-heading {
  margin: 0 0 2rem;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: clamp(.875rem, 1.15vw, 1rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.take-part .form-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.take-part .form-panel-single {
  width: min(100%, 980px);
  margin: 0 auto;
}

.take-part .form-intro {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.take-part .form-intro h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.take-part .form-intro p {
  max-width: 700px;
}

.take-part .form-panel form {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.take-part .fields {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.take-part .fields .full {
  grid-column: 1 / -1;
}

.take-part .dates,
.take-part .participation-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.take-part .participation-types {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.take-part .participation-types legend span {
  font-weight: 500;
}

.take-part .participation-types label {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
}

.take-part .participation-types input {
  width: auto;
  margin: 0;
  accent-color: var(--navy);
}

.take-part .field-note {
  grid-column: 1 / -1;
  margin: .35rem 0 0;
  color: #526474;
  font-size: .82rem;
  font-weight: 500;
}

.take-part .form-privacy {
  max-width: none;
  margin: .5rem 0 0;
  border-color: var(--line);
  background: #edf5f8;
  color: var(--ink);
}

.take-part .form-privacy h3 {
  color: var(--navy);
}

.participant-terms {
  border: 1px solid #bdc7ce;
  background: #fffaf0;
}

.participant-terms summary {
  padding: 1rem 1.1rem;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.participant-terms summary:focus-visible {
  outline: 3px solid #55a7e0;
  outline-offset: 3px;
}

.participant-terms-body {
  padding: 0 1.2rem 1.2rem;
  font-size: .92rem;
}

.participant-terms-body ul {
  margin-bottom: 0;
  padding-left: 1.3rem;
}

.participant-terms-body li + li {
  margin-top: .55rem;
}

.participant-terms .terms-status {
  padding: .8rem;
  background: #f8e5b7;
  color: #46320d;
}

.take-part .form-panel button {
  align-self: flex-start;
}

@media (max-width: 1050px) {
  .hero-v2-panel { width: min(650px, 62vw); }
  .hero-title-lockup { width: min(100%, 560px); }
  .hero-v2-panel > .eyebrow { width: min(100%, 560px); }
  .date-ribbon-v2 { grid-template-columns: 1fr; }
  .date-ribbon-v2 .date-message h2 { max-width: 800px; }
  .experience-v2 .experience-manifesto { flex-wrap: wrap; }
}

@media (max-width: 980px) {
  .take-part .participation-types { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero-v2 { min-height: 0; }
  .hero-v2-panel { width: 100%; padding: 2.6rem 1.25rem 3.2rem; }
  .hero-title-lockup { width: min(100%, 540px); margin-bottom: 0; }
  .hero-v2-panel > .eyebrow { width: min(100%, 540px); }
  .hero-v2-panel .hero-intro { font-size: clamp(1.35rem, 6vw, 1.75rem); }
  .experience-v2 > .section-heading { text-align: center; }
  .experience-v2 .experience-manifesto {
    gap: .45rem;
    font-size: clamp(.875rem, 3.8vw, 1rem);
  }
  .manifesto-token { gap: .45rem; }
  .take-part .fields { grid-template-columns: 1fr; }
  .take-part .fields .full { grid-column: auto; }
}
