:root {
  --bg: #11100e;
  --text: #f7f3ec;
  --muted: #aaa39a;
  --soft: #1a1815;
  --line: rgba(247, 243, 236, 0.14);
  --field: rgba(247, 243, 236, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Open Sans", system-ui, sans-serif;
  text-transform: lowercase;
}


.page {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 56px 0 40px;
}

.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h1,
h2,
.subheadline,
.button,
button {
  font-weight: 800;
  letter-spacing: -0.065em;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4.2rem, 14vw, 8.7rem);
  line-height: 0.82;
}

.subheadline {
  margin: 36px 0 0;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 0.92;
}

.intro {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 32px;
  padding: 15px 22px 17px;
  border: 2px solid var(--text);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.section {
  padding: 64px 0;
  border-top: none;
}

.section p,
.waitlist p {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.section p:last-child,
.waitlist p:last-child {
  margin-bottom: 0;
}

.image-strip {
  padding: 28px 0 72px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 0;
  border: none;
  filter: grayscale(100%) contrast(1.05) brightness(0.82);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  padding: 64px 0;
  border-top: none;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  border: none;
  filter: grayscale(100%) contrast(1.05) brightness(0.82);
}

.photo-grid img:nth-child(1) {
  grid-column: span 7;
}

.photo-grid img:nth-child(2) {
  grid-column: span 5;
  object-position: left center;
}

.photo-grid img:nth-child(3) {
  grid-column: span 5;
}

.photo-grid img:nth-child(4) {
  grid-column: span 7;
}

.image-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.strong {
  font-weight: 800;
  letter-spacing: -0.055em !important;
}

.principles {
  display: grid;
  gap: 18px;
  padding: 64px 0;
  border-top: none;
}

.principles div {
  padding: 28px;
  border: none;
  border-radius: 28px;
}

.principles h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 0.98;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.waitlist {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.waitlist h2 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.85;
}

form {
  display: grid;
  gap: 16px;
  max-width: 480px;
  margin-top: 32px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--field);
  color: var(--text);
  font: inherit;
  font-size: 1.05rem;
  outline: none;
  text-transform: lowercase;
}

input:focus {
  border-color: var(--text);
}

input::placeholder {
  color: var(--muted);
}

.small {
  max-width: 420px !important;
  margin-top: 20px !important;
  color: var(--muted);
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
  letter-spacing: -0.02em !important;
}

.sessions {
  max-width: 650px;
  padding: 56px 0 28px;
}

.sessions-label {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.sessions p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.secondary-link {
  display: inline-flex;
  width: fit-content;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 3px;
}

.secondary-link:hover {
  opacity: 0.7;
}

footer {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (max-width: 700px) {
  .hero-image {
    aspect-ratio: 4 / 5;
    height: auto;
    object-position: center 55%;
    border-radius: 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img,
  .photo-grid img:nth-child(1),
  .photo-grid img:nth-child(2),
  .photo-grid img:nth-child(3),
  .photo-grid img:nth-child(4) {
    grid-column: auto;
    min-height: 360px;
    border-radius: 0;
  }

  .photo-grid img:nth-child(2) {
    object-position: center center;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, 760px);
    padding-top: 24px;
  }

  .hero {
    min-height: 86vh;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .principles div {
    padding: 22px;
    border-radius: 0;
  }
}