:root {
  --slate-dark: #141413;
  --slate-medium: #3d3d3a;
  --slate-light: #5e5d59;
  --cloud-dark: #87867f;
  --cloud-medium: #b0aea5;
  --cloud-light: #d1cfc5;
  --oat: #e3dacc;
  --ivory-dark: #e8e6dc;
  --ivory-medium: #f0eee6;
  --ivory-light: #faf9f5;
  --clay: #d97757;
  --accent-ember: #c6613f;
  --olive: #788c5d;
  --sky: #6a9bcc;
  --fig: #c46686;
  --cactus: #bcd1ca;
  --font-sans: Inter, "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-dark);
  background: var(--ivory-light);
  font-family: var(--font-sans);
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 20;
  background: var(--ivory-light);
  color: var(--slate-dark);
  border: 1px solid var(--slate-dark);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--ivory-medium);
  border-bottom: 1px solid var(--cloud-light);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 300px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  background: var(--slate-dark);
  color: var(--ivory-light);
  font-weight: 700;
  border-radius: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--slate-dark);
  line-height: 1.1;
  font-weight: 700;
}

.brand small {
  color: var(--slate-light);
  font-size: 12px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--slate-dark);
  font-size: 15px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-channel {
  color: var(--accent-ember);
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--slate-dark);
  background: var(--slate-dark);
  color: var(--ivory-light);
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
}

.button:hover {
  background: var(--accent-ember);
  border-color: var(--accent-ember);
}

.button-secondary {
  background: transparent;
  color: var(--slate-dark);
}

.button-secondary:hover {
  background: var(--ivory-medium);
  border-color: var(--slate-dark);
}

.button-dark {
  background: var(--slate-dark);
  color: var(--ivory-light);
}

.button-light {
  background: var(--ivory-light);
  color: var(--slate-dark);
  border-color: var(--ivory-light);
}

.button-light:hover {
  background: var(--oat);
  color: var(--slate-dark);
  border-color: var(--oat);
}

.button-channel {
  background: var(--accent-ember);
  border-color: var(--accent-ember);
  color: var(--ivory-light);
}

.button-channel:hover {
  background: var(--slate-dark);
  border-color: var(--slate-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  background: var(--ivory-light);
  color: var(--slate-dark);
}

.hero {
  padding: 96px 0 56px;
  background: var(--ivory-light);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 54px;
}

.eyebrow,
.feature-label,
.panel-label {
  margin: 0 0 18px;
  color: var(--slate-light);
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}

.headline-underline {
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-underline-offset: 8px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 61px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 650;
}

.hero-intro {
  max-width: 430px;
  color: var(--slate-medium);
  font-size: 18px;
}

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

.hero-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  background: var(--slate-dark);
  color: var(--ivory-light);
  border-radius: 0;
  padding: 31px;
  overflow: hidden;
}

.hero-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
}

.hero-feature h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ivory-light);
  margin-bottom: 30px;
}

.hero-feature img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.82);
}

.hero-credentials {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.hero-credentials span {
  border-top: 1px solid rgba(232, 230, 220, 0.35);
  padding-top: 10px;
  color: var(--ivory-dark);
  font-family: var(--font-mono);
  font-size: 13px;
}

.section {
  padding: 88px 0;
  background: var(--ivory-light);
}

.section-light {
  background: var(--ivory-medium);
}

.section-navy {
  background: var(--slate-dark);
  color: var(--ivory-light);
}

.section-newsletter {
  background: var(--oat);
  color: var(--slate-dark);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.split,
.split-reverse {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--cloud-light);
  margin-top: 28px;
  background: var(--ivory-light);
}

.metric-row div {
  padding: 18px;
  border-right: 1px solid var(--cloud-light);
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--slate-dark);
  font-size: 24px;
}

.metric-row span {
  color: var(--slate-light);
  font-family: var(--font-mono);
  font-size: 12px;
}

.youtube-frame {
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 31px;
  background: var(--slate-dark);
  color: var(--ivory-light);
  border-radius: 0;
}

.youtube-frame h3 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}

.youtube-frame p {
  color: var(--ivory-dark);
  margin-bottom: 0;
}

.youtube-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
  color: inherit;
  text-decoration: none;
}

.youtube-topline:hover .youtube-handle {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.youtube-handle {
  color: var(--ivory-dark);
  font-family: var(--font-mono);
  font-size: 13px;
}

.play-button {
  width: 62px;
  height: 62px;
  border: 1px solid var(--ivory-light);
  border-radius: 0;
  margin-bottom: 74px;
  position: relative;
  background: transparent;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 19px;
  border-left: 18px solid var(--ivory-light);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.price-card {
  background: var(--ivory-medium);
  border: 0;
  border-radius: 8px;
  padding: 31px;
  min-height: 220px;
}

.info-card p,
.price-card p {
  color: var(--slate-medium);
}

.process {
  display: grid;
  gap: 14px;
}

.process div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(232, 230, 220, 0.26);
}

.process span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--ivory-light);
  color: var(--slate-dark);
  font-family: var(--font-mono);
}

.process p {
  margin: 0;
}

.tag {
  display: inline-block;
  color: var(--slate-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-card-accent {
  background: var(--oat);
}

.price {
  color: var(--slate-dark) !important;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 16px;
}

.text-link {
  color: var(--slate-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link-light {
  color: var(--ivory-light);
}

.small-note {
  color: var(--slate-light);
  font-size: 14px;
}

.slots {
  display: grid;
  gap: 1px;
  border: 1px solid var(--cloud-light);
  background: var(--cloud-light);
}

.slots div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: var(--ivory-light);
}

.slots span {
  font-weight: 700;
  color: var(--slate-dark);
}

.slots strong {
  color: var(--slate-light);
  font-family: var(--font-mono);
  font-size: 12px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.booking-form,
.newsletter-form {
  display: grid;
  gap: 16px;
  background: var(--ivory-medium);
  padding: 31px;
}

.form-honey {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--slate-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

input,
select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--cloud-medium);
  border-radius: 0;
  padding: 10px 12px;
  color: var(--slate-dark);
  background: var(--ivory-light);
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid var(--slate-medium);
  border-color: var(--slate-medium);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.section-newsletter .newsletter-form {
  background: var(--ivory-light);
}

.faq {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--cloud-light);
}

details {
  background: transparent;
  border-bottom: 1px solid var(--cloud-light);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  color: var(--slate-dark);
  font-weight: 650;
}

details p {
  color: var(--slate-medium);
  margin: 14px 0 0;
}

.site-footer {
  padding: 44px 0;
  background: var(--slate-dark);
  color: var(--ivory-light);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--ivory-dark);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ivory-dark);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-page,
.thank-you {
  min-height: calc(100vh - 68px);
  padding: 80px 0;
  background: var(--ivory-light);
}

.legal-content,
.thank-you-box {
  max-width: 820px;
}

.legal-content h1,
.thank-you h1 {
  color: var(--slate-dark);
  font-size: clamp(42px, 6vw, 70px);
}

.legal-content h2 {
  color: var(--slate-dark);
  font-size: 24px;
  margin-top: 32px;
}

.legal-content p {
  color: var(--slate-medium);
}

.thank-you {
  display: grid;
  align-items: center;
}

.thank-you-box {
  background: var(--ivory-medium);
  padding: 44px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-content,
  .hero-feature,
  .split,
  .split-reverse,
  .booking-layout,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero-feature-copy,
  .hero-feature img {
    min-height: auto;
  }

  .grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .button-small {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .headline-underline {
    text-decoration-thickness: 5px;
    text-underline-offset: 5px;
  }

  .section {
    padding: 60px 0;
  }

  .grid-four,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row div {
    border-right: 0;
    border-bottom: 1px solid var(--cloud-light);
  }

  .metric-row div:last-child {
    border-bottom: 0;
  }

  .slots div,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
