.samantha-page {
  margin: 0;
  min-height: 100vh;
  background: #f7f6f3;
  color: #171717;
  font-family: var(--font-display, system-ui, sans-serif);
}

.samantha-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.samantha-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .samantha-nav {
    padding-inline: 2.5rem;
  }
}

.samantha-logo {
  font-size: 1rem;
  font-weight: 600;
  color: #171717;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.samantha-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.samantha-nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.samantha-nav-links a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.samantha-nav-links a[aria-current="page"] {
  color: #000;
  background: rgba(0, 0, 0, 0.06);
}

.samantha-nav-links a.is-disabled,
.samantha-nav-links a#nav-tiktok {
  cursor: not-allowed;
  opacity: 0.45;
}

.samantha-nav-links a.is-disabled:hover,
.samantha-nav-links a#nav-tiktok:hover {
  background: transparent;
  color: rgba(0, 0, 0, 0.6);
}

.samantha-main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

@media (min-width: 640px) {
  .samantha-main {
    padding-inline: 2.5rem;
  }
}

.samantha-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin: 0 0 1rem;
}

.samantha-main h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

.samantha-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 2.5rem;
}

.samantha-main section {
  margin-bottom: 2rem;
}

.samantha-main h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.samantha-main p,
.samantha-main li {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.72);
}

.samantha-main ul,
.samantha-main ol {
  margin: 0;
  padding-left: 1.25rem;
}

.samantha-main li + li {
  margin-top: 0.5rem;
}

.samantha-main a {
  color: #171717;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.samantha-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.45);
}

.samantha-footer a {
  color: rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

.samantha-footer a:hover {
  color: #171717;
}

/* index.html header nav — match existing pill links */
.samantha-index-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.samantha-index-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.samantha-index-nav a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.samantha-index-nav a#nav-tiktok {
  cursor: not-allowed;
  opacity: 0.45;
}

.samantha-index-nav a#nav-tiktok:hover {
  background: transparent;
  color: rgba(0, 0, 0, 0.6);
}

/* Hero — keep Samantha a bit smaller on the landing page */
[class*="h-[300vh]"] .sticky > video[src*="hero-video"] {
  width: min(68vw, 820px) !important;
  max-height: 68vh;
  object-position: center bottom;
}

@media (max-width: 767px) {
  [class*="h-[300vh]"] .sticky > video[src*="hero-video"] {
    width: min(78vw, 520px) !important;
    max-height: 52vh;
  }
}
