:root {
  --ink: #413e35;
  --muted: #b9b4a2;
  --soft: #e7e5dd;
  --paper: #fbfaf5;
  --cream: #e3cfab;
  --charcoal: #413e35;
  --line: rgba(65, 62, 53, 0.16);
  --gold: #c8a050;
  --moss: #44795d;
  --blue: #9dc79a;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(24, 20, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
}

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

.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem clamp(1.2rem, 4vw, 4rem);
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid rgba(23, 20, 17, 0.08);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(20, 18, 16, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  color: rgba(23, 20, 17, 0.72);
  font-size: 0.9rem;
}

.site-nav a {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--gold);
}

.header-cta {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-dark {
  color: var(--paper);
  background: var(--charcoal);
}

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

.section-cream {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.94), rgba(12, 12, 12, 0.68) 48%, rgba(12, 12, 12, 0.28));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

p {
  margin: 0;
}

.lede {
  max-width: 650px;
  margin-top: 1.5rem;
  color: rgba(251, 250, 246, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button-row.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.section-dark .button-primary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(23, 20, 17, 0.25);
}

.section-dark .button-secondary {
  color: var(--paper);
  border-color: rgba(251, 250, 246, 0.25);
}

.hero-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(251, 250, 246, 0.08);
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(20px);
}

.panel-kicker,
.offer-label,
.card-number {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.signal-list span {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(251, 250, 246, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.hero-panel p:last-child {
  color: rgba(251, 250, 246, 0.74);
}

.two-column,
.split-feature,
.philosophy-grid,
.qualification-grid,
.work-preview,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 1.15rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
}

.copy-stack h2,
.copy-stack h3,
.section-heading h2 {
  color: var(--ink);
}

.section-dark .copy-stack h2,
.section-dark .copy-stack h3,
.section-dark .section-heading h2 {
  color: var(--paper);
}

.split-feature {
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.visual-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 500ms ease;
}

.visual-frame:hover img {
  transform: scale(1.03);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading.narrow {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin-top: 1rem;
  color: var(--muted);
}

.section-dark .section-heading p:last-child {
  color: rgba(251, 250, 246, 0.72);
}

.pillar-grid,
.offer-grid,
.testimonial-grid,
.values-grid,
.process-grid,
.video-grid {
  display: grid;
  gap: 1rem;
}

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

.pillar-card,
.offer-card,
.testimonial-card,
.value-card,
.process-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(251, 250, 246, 0.14);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.045);
}

.pillar-card h3,
.offer-card h3,
.value-card h3,
.process-card h3 {
  margin-top: 1.8rem;
}

.pillar-card p,
.offer-card p,
.value-card p,
.process-card p {
  margin-top: 1rem;
  color: rgba(251, 250, 246, 0.7);
}

.philosophy-notes {
  display: grid;
  gap: 0.8rem;
}

.philosophy-notes span {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}

.about-strip {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.brand-orb {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.brand-orb img {
  width: 75%;
  opacity: 0.86;
}

.placeholder-note,
.form-note {
  padding: 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(184, 138, 69, 0.1);
  color: #5d4b31;
}

.text-link {
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

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

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

.video-card {
  display: grid;
  gap: 0.8rem;
}

.video-card a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 450ms ease, opacity 450ms ease;
}

.video-card a:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.video-card span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  color: var(--paper);
  background: rgba(19, 19, 19, 0.76);
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.video-card h3,
.video-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.video-card p {
  color: var(--muted);
}

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

.offer-grid.large {
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  background: var(--paper);
  border-color: var(--line);
}

.section-dark .offer-card {
  background: rgba(251, 250, 246, 0.06);
  border-color: rgba(251, 250, 246, 0.14);
}

.offer-card h2,
.offer-card h3 {
  color: var(--ink);
}

.section-dark .offer-card h2,
.section-dark .offer-card h3 {
  color: var(--paper);
}

.offer-card p,
.offer-card li {
  color: var(--muted);
}

.section-dark .offer-card p,
.section-dark .offer-card li {
  color: rgba(251, 250, 246, 0.72);
}

.offer-subtitle {
  font-weight: 800;
}

.featured-offer {
  border-color: rgba(184, 138, 69, 0.55);
  box-shadow: 0 20px 70px rgba(184, 138, 69, 0.12);
}

.price {
  margin-top: auto !important;
  padding-top: 1.5rem;
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.section-dark .price {
  color: var(--paper) !important;
}

.clean-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.4rem;
}

.clean-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.check-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.testimonial-card {
  margin: 0;
  background: var(--paper);
  border-color: var(--line);
}

.testimonial-card p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.testimonial-card cite {
  display: block;
  margin-top: 1.2rem;
  color: var(--muted);
  font-style: normal;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  color: var(--ink);
  font-weight: 800;
}

details p {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

.final-cta {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  text-align: center;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.2rem auto 0;
  color: inherit;
  opacity: 0.74;
}

.page-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1.4rem;
  color: rgba(251, 250, 246, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.process-grid .section-heading {
  grid-column: 1 / -1;
}

.process-card span {
  color: var(--gold);
  font-weight: 900;
}

.apply-box {
  max-width: 820px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.apply-box p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(184, 138, 69, 0.38);
  border-color: var(--gold);
}

.site-footer {
  padding: 3rem 0;
  color: rgba(251, 250, 246, 0.72);
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
}

.footer-brand {
  color: var(--paper);
}

.site-footer p {
  max-width: 470px;
  margin-top: 1rem;
}

.site-footer nav {
  display: grid;
  gap: 0.55rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Homepage v2: closer to the premium personal-brand / room-offer references. */
.home-v2 {
  background: #f6f0e6;
}

.v2-header {
  background: rgba(246, 240, 230, 0.9);
}

.stacked-brand {
  display: grid;
  gap: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.stacked-brand span {
  display: block;
}

.v2-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 72% 16%, rgba(184, 138, 69, 0.18), transparent 28%),
    linear-gradient(180deg, #f6f0e6 0%, #ebe1d0 100%);
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.v2-hero h1 {
  max-width: 900px;
  color: #15120f;
  font-size: clamp(4.4rem, 10vw, 9.6rem);
  letter-spacing: 0;
  text-transform: none;
}

.v2-role {
  max-width: 620px;
  margin-top: 1.1rem;
  color: #5d5348;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.v2-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #15120f;
  box-shadow: 0 28px 90px rgba(21, 18, 15, 0.24);
}

.v2-portrait img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.86;
}

.portrait-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  color: #f6f0e6;
  background: rgba(15, 14, 13, 0.72);
  border: 1px solid rgba(246, 240, 230, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.portrait-caption span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-caption strong {
  display: block;
  margin-top: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.v2-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.v2-offer-lead-grid,
.v2-split-grid,
.v2-for-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.v2-room-heading {
  max-width: 900px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.v2-room-list {
  display: grid;
  border-top: 1px solid rgba(246, 240, 230, 0.18);
}

.v2-room-row {
  display: grid;
  grid-template-columns: 80px minmax(180px, 0.7fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.4rem, 3vw, 2.1rem) 0;
  border-bottom: 1px solid rgba(246, 240, 230, 0.18);
}

.v2-room-row span {
  color: var(--gold);
  font-weight: 900;
}

.v2-room-row p {
  color: rgba(246, 240, 230, 0.72);
}

.v2-two-offers {
  background: #f6f0e6;
}

.v2-offer-cards {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.v2-offer-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(21, 18, 15, 0.14);
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: 0 22px 70px rgba(21, 18, 15, 0.09);
}

.v2-offer-card.main-offer {
  color: #f6f0e6;
  background: #15120f;
}

.v2-offer-card h3 {
  margin-top: 1.3rem;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

.v2-offer-card p {
  margin-top: 1rem;
  color: #6b6157;
}

.v2-offer-card.main-offer p {
  color: rgba(246, 240, 230, 0.72);
}

.mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0;
}

.mini-specs span {
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(21, 18, 15, 0.14);
  border-radius: 999px;
  color: #574f46;
  font-size: 0.82rem;
  font-weight: 800;
}

.main-offer .mini-specs span {
  color: #f6f0e6;
  border-color: rgba(246, 240, 230, 0.18);
}

.v2-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 1rem;
  align-items: end;
}

.v2-image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  background: #15120f;
  box-shadow: 0 24px 80px rgba(21, 18, 15, 0.14);
}

.v2-image-stack img:nth-child(2) {
  margin-bottom: 18%;
}

.v2-pillars {
  background: #fbfaf6;
}

.v2-pillar-lines {
  display: grid;
  border-top: 1px solid rgba(21, 18, 15, 0.14);
}

.v2-pillar-lines article {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-bottom: 1px solid rgba(21, 18, 15, 0.14);
}

.v2-pillar-lines span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.v2-pillar-lines p,
.v2-for-list p {
  color: #6b6157;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.section-dark .v2-for-list p {
  color: rgba(246, 240, 230, 0.72);
}

.v2-final {
  color: #15120f;
  background: #f6f0e6;
}

.v2-final p:not(.eyebrow) {
  color: #6b6157;
  opacity: 1;
}

/* Nate-inspired homepage reset: intentionally sparse and direct. */
.nate-home {
  --nate-espresso: #413e35;
  --nate-clay: #b9b4a2;
  --nate-gold: #c8a050;
  --nate-dune: #e3cfab;
  --nate-sand: #e7e5dd;
  --nate-paper: #fbfaf5;
  --nate-pine: #44795d;
  --nate-sage: #9dc79a;
  --nate-ember: #c85337;
  --nate-green: var(--nate-espresso);
  --nate-cream: var(--nate-sand);
  --nate-ink: var(--nate-espresso);
  margin: 0;
  color: var(--nate-sand);
  background: var(--nate-espresso);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
}

.nate-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 2rem;
  padding: 1.25rem clamp(1.2rem, 4vw, 4rem);
  color: var(--nate-espresso);
  background: var(--nate-sand);
  border-bottom: 1px solid rgba(65, 62, 53, 0.1);
}

.nate-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--nate-espresso);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.nate-nav {
  justify-self: end;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  color: var(--nate-espresso);
  font-size: 0.9rem;
  font-weight: 600;
}

.nate-nav a {
  border: 0;
}

.nate-nav a:hover,
.nate-nav a[aria-current="page"] {
  color: var(--nate-gold);
  border: 0;
}

.miracle-ribbon {
  position: sticky;
  top: 71px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.72rem 1rem;
  color: var(--nate-espresso);
  background: var(--nate-gold);
  font-size: clamp(0.72rem, 1.35vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  text-align: center;
}

.miracle-ribbon-dot {
  position: relative;
  flex: 0 0 auto;
  width: 0.62rem;
  height: 0.62rem;
  background: #fbfaf5;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(251, 250, 245, 0.72);
  animation: miraclePulse 2.2s ease-in-out infinite;
}

@keyframes miraclePulse {
  0%,
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(251, 250, 245, 0.7);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 0.55rem rgba(251, 250, 245, 0);
    opacity: 1;
  }
}

.nate-hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 17% 74%, rgba(200, 160, 80, 0.22), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(227, 207, 171, 0.08), transparent 30%),
    var(--nate-espresso);
}

.nate-hero::before,
.nate-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(200, 160, 80, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.nate-hero::before {
  width: 54vw;
  height: 54vw;
  left: -24vw;
  bottom: -22vw;
}

.nate-hero::after {
  width: 46vw;
  height: 46vw;
  right: -8vw;
  top: 0;
  border: none;
  background: var(--nate-gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-star-lattice.png");
  mask-image: url("assets/geometry/geo-star-lattice.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.nate-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.nate-profile {
  width: clamp(210px, 24vw, 330px);
  aspect-ratio: 1;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  overflow: hidden;
  border-radius: 50%;
  background: var(--nate-clay);
  border: 2px solid rgba(200, 160, 80, 0.45);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.nate-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.nate-hero h1,
.nate-band h2,
.nate-offer h2,
.nate-pillars h2 {
  margin: 0;
  color: var(--nate-sand);
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: none;
}

.nate-hero h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 11vw, 9.6rem);
  overflow-wrap: anywhere;
}

.nate-offer h2,
.nate-pillars h2 {
  color: var(--nate-espresso);
}

.nate-hero p {
  max-width: 620px;
  margin: 1.75rem 0 0;
  color: rgba(231, 229, 221, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 600;
}

.nate-hero-actions {
  display: grid;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.youtube-logo-link {
  display: inline-grid;
  width: 78px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: var(--nate-ember);
  box-shadow: 0 14px 36px rgba(65, 62, 53, 0.15);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.youtube-logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(65, 62, 53, 0.2);
}

.youtube-logo {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid #fff;
}

.nate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1.9rem;
  padding: 0.9rem 1.45rem;
  color: var(--nate-espresso);
  background: var(--nate-gold);
  border: 2px solid var(--nate-gold);
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.nate-button:hover {
  color: var(--nate-espresso);
  background: var(--nate-dune);
  transform: none;
}

.nate-button.light {
  color: var(--nate-espresso);
  background: var(--nate-gold);
  border-color: var(--nate-gold);
}

.nate-button.light:hover {
  color: var(--nate-espresso);
  background: var(--nate-dune);
}

.nate-band {
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--nate-espresso);
  background: var(--nate-sand);
}

.nate-band-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.nate-band h2 {
  max-width: 900px;
  color: var(--nate-espresso);
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

.nate-band p {
  max-width: 690px;
  margin-top: 1.4rem;
  color: rgba(65, 62, 53, 0.85);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 500;
}

.nate-offer {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--nate-paper);
}

.nate-single {
  background: var(--nate-sand);
}

.nate-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.nate-offer-title span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 900;
}

.nate-offer h2 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 7rem);
}

.nate-offer-copy {
  color: var(--nate-green);
}

.nate-offer-copy h3 {
  color: var(--nate-green);
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
}

.nate-offer-copy p,
.nate-offer-copy li {
  color: var(--nate-green);
  font-size: clamp(1rem, 1.45vw, 1.13rem);
  font-weight: 500;
}

.nate-offer-copy ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.nate-offer-copy li {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(185, 180, 162, 0.35);
}

.nate-text-link {
  display: inline-block;
  margin-top: 1.7rem;
  color: var(--nate-espresso);
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid var(--nate-gold);
}

.nate-price {
  margin: 1rem 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem) !important;
  font-weight: 900 !important;
}

.nate-image-break {
  position: relative;
  display: grid;
  min-height: 68vh;
  place-items: center;
  overflow: hidden;
  color: var(--nate-paper);
  text-align: center;
  background: var(--nate-espresso);
}

.nate-image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.nate-image-break div {
  position: relative;
  width: min(900px, calc(100% - 32px));
}

.nate-image-break p {
  margin: 0 0 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nate-image-break h2 {
  margin: 0;
  color: var(--nate-paper);
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
}

.nate-pillars {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--nate-sand);
  text-align: center;
}

.nate-pillars h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.nate-pillars p {
  max-width: 780px;
  margin: 1.4rem auto 0;
  color: var(--nate-green);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 500;
}

.nate-final-cta {
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: var(--nate-paper);
  background: var(--nate-espresso);
  text-align: center;
}

.nate-final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--nate-paper);
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
}

.nate-final-cta p {
  max-width: 620px;
  margin: 1.2rem auto 0;
  color: var(--nate-paper);
  font-weight: 600;
}

.nate-final-cta .nate-button {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.26);
}

.nate-footer {
  padding: 2rem;
  color: var(--nate-paper);
  background: var(--nate-espresso);
  text-align: center;
}

.nate-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 0.24rem;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.05rem;
    height: 1px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    justify-items: start;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-column,
  .split-feature,
  .split-feature.reverse,
  .philosophy-grid,
  .qualification-grid,
  .work-preview,
  .contact-grid,
  .about-strip {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .offer-grid,
  .offer-grid.large,
  .testimonial-grid,
  .values-grid,
  .process-grid,
  .video-grid,
  .video-grid.expanded,
  .check-columns {
    grid-template-columns: 1fr;
  }

  .brand-orb {
    width: min(260px, 70vw);
  }

  .v2-hero-grid,
  .v2-offer-lead-grid,
  .v2-split-grid,
  .v2-for-grid,
  .v2-offer-cards {
    grid-template-columns: 1fr;
  }

  .v2-portrait img {
    min-height: 420px;
  }

  .v2-room-row {
    grid-template-columns: 52px 1fr;
  }

  .v2-room-row p {
    grid-column: 2;
  }

  .v2-pillar-lines article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .nate-header {
    grid-template-columns: auto auto;
    align-items: start;
    background: var(--nate-sand);
    backdrop-filter: blur(14px);
  }

  .miracle-ribbon {
    top: 69px;
    letter-spacing: 0.16em;
  }

  .nate-toggle {
    display: grid;
  }

  .nate-nav {
    position: absolute;
    top: calc(100% - 1rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    background: var(--nate-sand);
    border: 1px solid rgba(44, 34, 30, 0.16);
    border-radius: 0;
    box-shadow: 0 24px 70px rgba(44, 34, 30, 0.16);
  }

  .nate-nav.is-open {
    display: grid;
    justify-items: start;
  }

  .nate-offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand span:last-child {
    max-width: 11rem;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .pillar-card,
  .offer-card,
  .testimonial-card,
  .value-card,
  .process-card,
  .apply-box,
  .contact-form {
    padding: 1.1rem;
  }

  .v2-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    overflow-wrap: anywhere;
  }

  .v2-portrait img {
    min-height: 340px;
  }

  .v2-offer-card {
    min-height: auto;
  }

  .v2-image-stack {
    grid-template-columns: 1fr;
  }

  .v2-image-stack img:nth-child(2) {
    margin-bottom: 0;
  }

  .nate-header {
    padding: 1rem;
  }

  .nate-home {
    overflow-x: hidden;
  }

  html:has(.nate-home) {
    overflow-x: hidden;
  }

  .nate-logo {
    font-size: 1rem;
  }

  .nate-hero {
    min-height: calc(100vh - 112px);
    padding-top: 4rem;
  }

  .nate-profile {
    width: clamp(180px, 58vw, 245px);
  }

  .nate-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .nate-band h2,
  .nate-offer h2,
  .nate-image-break h2,
  .nate-pillars h2 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .nate-button {
    width: auto;
    min-width: min(100%, 250px);
  }
}

/* Miracle Academy palette applied globally across every page. */
body:not(.nate-home) {
  color: #413e35;
  background: #e7e5dd;
}

body:not(.nate-home) .site-header {
  color: #413e35;
  background: rgba(231, 229, 221, 0.92);
  border-bottom: 1px solid rgba(65, 62, 53, 0.12);
}

body:not(.nate-home) .brand,
body:not(.nate-home) .site-nav,
body:not(.nate-home) .header-cta {
  color: #413e35;
}

body:not(.nate-home) .site-nav a:hover,
body:not(.nate-home) .site-nav a[aria-current="page"] {
  color: #c8a050;
  border-color: #c8a050;
}

body:not(.nate-home) .header-cta:hover {
  color: #e7e5dd;
  background: #413e35;
  border-color: #413e35;
}

body:not(.nate-home) .section-light {
  background: #e7e5dd;
}

body:not(.nate-home) .section-cream {
  background: #fbfaf5;
}

body:not(.nate-home) .section-dark,
body:not(.nate-home) .page-hero,
body:not(.nate-home) .final-cta.section-dark {
  color: #e7e5dd;
  background:
    radial-gradient(circle at 14% 78%, rgba(200, 160, 80, 0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(157, 199, 154, 0.08), transparent 30%),
    #413e35;
}

body:not(.nate-home) .eyebrow,
body:not(.nate-home) .offer-label,
body:not(.nate-home) .card-number,
body:not(.nate-home) .process-card span {
  color: #c8a050;
}

body:not(.nate-home) h1,
body:not(.nate-home) h2,
body:not(.nate-home) h3,
body:not(.nate-home) .copy-stack h2,
body:not(.nate-home) .copy-stack h3,
body:not(.nate-home) .section-heading h2 {
  color: #413e35;
}

body:not(.nate-home) .section-dark h1,
body:not(.nate-home) .section-dark h2,
body:not(.nate-home) .section-dark h3,
body:not(.nate-home) .page-hero h1,
body:not(.nate-home) .final-cta.section-dark h2,
body:not(.nate-home) .section-dark .section-heading h2 {
  color: #e7e5dd;
}

body:not(.nate-home) .copy-stack,
body:not(.nate-home) .section-heading p:last-child,
body:not(.nate-home) .video-card p,
body:not(.nate-home) .testimonial-card cite,
body:not(.nate-home) details p,
body:not(.nate-home) .contact-form input,
body:not(.nate-home) .contact-form select,
body:not(.nate-home) .contact-form textarea,
body:not(.nate-home) .apply-box p:not(.eyebrow) {
  color: rgba(65, 62, 53, 0.78);
}

body:not(.nate-home) .section-dark .copy-stack,
body:not(.nate-home) .section-dark .section-heading p:last-child,
body:not(.nate-home) .page-hero p:not(.eyebrow),
body:not(.nate-home) .final-cta.section-dark p:not(.eyebrow),
body:not(.nate-home) .section-dark .offer-card p,
body:not(.nate-home) .section-dark .offer-card li,
body:not(.nate-home) .pillar-card p,
body:not(.nate-home) .value-card p,
body:not(.nate-home) .process-card p {
  color: rgba(231, 229, 221, 0.78);
}

body:not(.nate-home) .button-primary {
  color: #e7e5dd;
  background: #44795d;
  border-color: #9dc79a;
  box-shadow: 0 0 28px rgba(157, 199, 154, 0.18);
}

body:not(.nate-home) .section-dark .button-primary,
body:not(.nate-home) .page-hero .button-primary,
body:not(.nate-home) .final-cta.section-dark .button-primary {
  color: #413e35;
  background: #c8a050;
  border-color: #e3cfab;
}

body:not(.nate-home) .button-secondary {
  color: #413e35;
  border-color: rgba(65, 62, 53, 0.3);
}

body:not(.nate-home) .section-dark .button-secondary {
  color: #e7e5dd;
  border-color: rgba(231, 229, 221, 0.22);
}

body:not(.nate-home) .offer-card,
body:not(.nate-home) .testimonial-card,
body:not(.nate-home) .apply-box,
body:not(.nate-home) .contact-form,
body:not(.nate-home) details {
  color: #413e35;
  background: #fbfaf5;
  border-color: rgba(185, 180, 162, 0.45);
}

body:not(.nate-home) .featured-offer {
  border-color: rgba(200, 160, 80, 0.75);
  box-shadow: 0 22px 70px rgba(200, 160, 80, 0.14);
}

body:not(.nate-home) .section-dark .offer-card,
body:not(.nate-home) .pillar-card,
body:not(.nate-home) .value-card,
body:not(.nate-home) .process-card {
  background: rgba(251, 250, 245, 0.05);
  border-color: rgba(231, 229, 221, 0.15);
}

body:not(.nate-home) .price,
body:not(.nate-home) .testimonial-card p,
body:not(.nate-home) summary,
body:not(.nate-home) .contact-form label {
  color: #413e35 !important;
}

body:not(.nate-home) .section-dark .price {
  color: #e7e5dd !important;
}

body:not(.nate-home) .clean-list li::before {
  background: #c8a050;
}

body:not(.nate-home) .placeholder-note,
body:not(.nate-home) .form-note {
  color: #413e35;
  background: rgba(227, 207, 171, 0.45);
  border-left-color: #c8a050;
}

body:not(.nate-home) .contact-form input,
body:not(.nate-home) .contact-form select,
body:not(.nate-home) .contact-form textarea {
  background: #e7e5dd;
  border-color: rgba(185, 180, 162, 0.55);
}

body:not(.nate-home) .contact-form input:focus,
body:not(.nate-home) .contact-form select:focus,
body:not(.nate-home) .contact-form textarea:focus {
  outline-color: rgba(200, 160, 80, 0.38);
  border-color: #c8a050;
}

body:not(.nate-home) .site-footer {
  color: rgba(231, 229, 221, 0.74);
  background: #413e35;
}

body:not(.nate-home) .footer-brand,
body:not(.nate-home) .site-footer a:hover {
  color: #e7e5dd;
}

/* Full-site Miracle Academy dark palette pass. */
.nate-home {
  background: #413e35;
}

.nate-band,
.nate-offer,
.nate-single,
.nate-pillars {
  position: relative;
  overflow: hidden;
  color: #e7e5dd;
  background:
    radial-gradient(circle at 8% 85%, rgba(200, 160, 80, 0.18), transparent 30%),
    radial-gradient(circle at 94% 8%, rgba(200, 160, 80, 0.13), transparent 28%),
    linear-gradient(180deg, #413e35 0%, #38362f 100%);
}

.nate-band::before,
.nate-offer::before,
.nate-pillars::before,
body:not(.nate-home) main::before {
  position: absolute;
  width: min(48vw, 640px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(200, 160, 80, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.nate-band::before {
  left: -18vw;
  bottom: -22vw;
}

.nate-offer::before {
  right: -19vw;
  top: -16vw;
}

.nate-pillars::before {
  left: 70%;
  top: -18vw;
}

.nate-band-inner,
.nate-offer-grid,
.nate-pillars .container,
.nate-final-cta .container {
  position: relative;
}

.nate-band h2,
.nate-offer h2,
.nate-pillars h2 {
  color: #fbfaf5;
}

.nate-band p,
.nate-pillars p,
.nate-offer-copy,
.nate-offer-copy h3,
.nate-offer-copy p,
.nate-offer-copy li {
  color: rgba(231, 229, 221, 0.84);
}

.nate-offer-copy {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: rgba(251, 250, 245, 0.055);
  border: 1px solid rgba(200, 160, 80, 0.28);
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.16);
}

.nate-offer-copy h3 {
  color: #fbfaf5;
}

.nate-offer-title span,
.nate-price,
.nate-text-link {
  color: #d9bd72 !important;
}

.nate-offer-copy li {
  border-bottom-color: rgba(227, 207, 171, 0.2);
}

.nate-final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 160, 80, 0.2), transparent 30%),
    #34322c;
}

body:not(.nate-home) {
  color: #e7e5dd;
  background: #413e35;
}

body:not(.nate-home) main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 70%, rgba(200, 160, 80, 0.15), transparent 27%),
    radial-gradient(circle at 92% 20%, rgba(200, 160, 80, 0.12), transparent 29%),
    #413e35;
}

body:not(.nate-home) main::before {
  right: -15vw;
  top: 12vh;
}

body:not(.nate-home) .site-header {
  color: #413e35;
  background: rgba(231, 229, 221, 0.94);
  border-bottom-color: rgba(65, 62, 53, 0.14);
}

body:not(.nate-home) .section-light,
body:not(.nate-home) .section-cream,
body:not(.nate-home) .section-dark,
body:not(.nate-home) .page-hero,
body:not(.nate-home) .final-cta.section-light,
body:not(.nate-home) .final-cta.section-dark {
  position: relative;
  color: #e7e5dd;
  background: transparent;
}

body:not(.nate-home) h1,
body:not(.nate-home) h2,
body:not(.nate-home) h3,
body:not(.nate-home) .copy-stack h2,
body:not(.nate-home) .copy-stack h3,
body:not(.nate-home) .section-heading h2,
body:not(.nate-home) .page-hero h1,
body:not(.nate-home) .final-cta h2,
body:not(.nate-home) .section-dark .section-heading h2 {
  color: #fbfaf5;
}

body:not(.nate-home) .copy-stack,
body:not(.nate-home) .section-heading p:last-child,
body:not(.nate-home) .page-hero p:not(.eyebrow),
body:not(.nate-home) .final-cta p:not(.eyebrow),
body:not(.nate-home) .video-card p,
body:not(.nate-home) .testimonial-card cite,
body:not(.nate-home) details p,
body:not(.nate-home) .apply-box p:not(.eyebrow),
body:not(.nate-home) .offer-card p,
body:not(.nate-home) .offer-card li,
body:not(.nate-home) .pillar-card p,
body:not(.nate-home) .value-card p,
body:not(.nate-home) .process-card p,
body:not(.nate-home) .clean-list li {
  color: rgba(231, 229, 221, 0.8);
}

body:not(.nate-home) .offer-card,
body:not(.nate-home) .testimonial-card,
body:not(.nate-home) .apply-box,
body:not(.nate-home) .contact-form,
body:not(.nate-home) details,
body:not(.nate-home) .video-card,
body:not(.nate-home) .pillar-card,
body:not(.nate-home) .value-card,
body:not(.nate-home) .process-card,
body:not(.nate-home) .stat-card {
  color: #e7e5dd;
  background: rgba(251, 250, 245, 0.055);
  border-color: rgba(200, 160, 80, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}

body:not(.nate-home) .featured-offer {
  border-color: rgba(200, 160, 80, 0.72);
  box-shadow: 0 28px 90px rgba(200, 160, 80, 0.15);
}

body:not(.nate-home) .price,
body:not(.nate-home) .testimonial-card p,
body:not(.nate-home) summary,
body:not(.nate-home) .contact-form label {
  color: #fbfaf5 !important;
}

body:not(.nate-home) .placeholder-note,
body:not(.nate-home) .form-note {
  color: #e7e5dd;
  background: rgba(227, 207, 171, 0.12);
  border-left-color: #c8a050;
}

body:not(.nate-home) .contact-form input,
body:not(.nate-home) .contact-form select,
body:not(.nate-home) .contact-form textarea {
  color: #fbfaf5;
  background: rgba(28, 27, 24, 0.32);
  border-color: rgba(200, 160, 80, 0.28);
}

body:not(.nate-home) .contact-form input::placeholder,
body:not(.nate-home) .contact-form textarea::placeholder {
  color: rgba(231, 229, 221, 0.48);
}

body:not(.nate-home) .button-secondary {
  color: #e7e5dd;
  border-color: rgba(227, 207, 171, 0.28);
}

body:not(.nate-home) .button-primary,
body:not(.nate-home) .section-dark .button-primary,
body:not(.nate-home) .page-hero .button-primary,
body:not(.nate-home) .final-cta.section-dark .button-primary {
  color: #413e35;
  background: #c8a050;
  border-color: #e3cfab;
  box-shadow: 0 0 32px rgba(200, 160, 80, 0.22);
}

body:not(.nate-home) .program-hero {
  position: relative;
  display: grid;
  min-height: 0;
  align-items: center;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 88% 50%, rgba(200, 160, 80, 0.12), transparent 32%),
    radial-gradient(circle at 15% 85%, rgba(200, 160, 80, 0.1), transparent 28%),
    #413e35 !important;
}

body:not(.nate-home) .program-hero::after {
  position: absolute;
  right: -4%;
  top: 50%;
  width: min(52vw, 640px);
  aspect-ratio: 1;
  content: "";
  transform: translateY(-50%);
  background: var(--gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-flower.png");
  mask-image: url("assets/geometry/geo-flower.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

body:not(.nate-home) .program-hero .container {
  position: relative;
  z-index: 1;
  width: min(1580px, calc(100% - 80px));
}

body:not(.nate-home) .program-hero h1 {
  max-width: 1500px;
  margin: 0;
  color: #e7e5dd;
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: clamp(2.4rem, 4.55vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.quantum-headline-white,
.quantum-headline-gold {
  display: block;
}

.quantum-headline-gold {
  color: var(--gold);
}

/* ---- Quantum-leap-structure identity block ---- */

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

.quantum-identity-main {
  position: relative;
  overflow: hidden;
}

.quantum-identity-main::before {
  position: absolute;
  right: -3%;
  bottom: -6%;
  width: min(30vw, 340px);
  aspect-ratio: 1;
  content: "";
  background: var(--gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-ring.png");
  mask-image: url("assets/geometry/geo-ring.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.quantum-identity-main .quantum-identity-inner {
  position: relative;
  z-index: 1;
}

.quantum-identity-inner {
  max-width: 700px;
}

.hermetic-emblem {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 0 1.5rem;
}

.quantum-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.quantum-eyebrow span {
  flex: 0 0 2.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.quantum-name {
  margin: 0 0 1.75rem;
  line-height: 0.95;
}

.quantum-name-block {
  display: block;
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  text-transform: uppercase;
  color: var(--ink);
}

.quantum-name-gold {
  display: block;
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  text-transform: uppercase;
  background: linear-gradient(100deg, #e3cfab, #c8a050 55%, #a87f36);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quantum-subtitle {
  margin: 0 0 1.75rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--ink);
}

.quantum-benefits {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.quantum-benefits p {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(65, 62, 53, 0.85);
}

.quantum-benefits strong {
  color: var(--ink);
  font-weight: 700;
}

.quantum-closing {
  margin-bottom: 2rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink);
}

.quantum-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.quantum-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ---- Quantum-leap-structure "time to level up" block ---- */

.quantum-dark-block {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.quantum-dark-block > .container {
  position: relative;
  z-index: 1;
}

.quantum-dark-block::before {
  position: absolute;
  left: -3%;
  bottom: -8%;
  width: min(38vw, 440px);
  aspect-ratio: 1;
  content: "";
  background: var(--gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-star-lattice.png");
  mask-image: url("assets/geometry/geo-star-lattice.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.quantum-dark-block h2.quantum-level-heading {
  margin: 0 0 1.5rem;
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  text-transform: uppercase;
  color: #fbfaf5;
}

.quantum-level-heading span {
  color: var(--gold);
}

.quantum-level-desc {
  max-width: 640px;
  margin: 0 0 2rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(251, 250, 245, 0.85);
}


.value-stack {
  display: grid;
  gap: 0.25rem;
  margin: 2.5rem 0 2rem;
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(200, 160, 80, 0.22);
}

.value-item:first-child {
  border-top: none;
  padding-top: 0;
}

.value-item-number {
  font-family: Montserrat, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.3;
}

.value-item-title {
  margin: 0 0 0.35rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--paper);
}

.value-item-desc {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(251, 250, 245, 0.68);
}

.value-item-tag {
  align-self: center;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(200, 160, 80, 0.4);
  border-radius: 999px;
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold);
  white-space: nowrap;
}

.value-item-tag.priceless {
  color: var(--paper);
  border-color: rgba(251, 250, 245, 0.3);
}

.value-total {
  padding-top: 2rem;
  border-top: 2px solid var(--gold);
  text-align: center;
}

.value-total-label {
  margin: 0 0 0.4rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(251, 250, 245, 0.65);
}

.value-total-amount {
  margin: 0 0 1rem;
  font-family: Montserrat, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: rgba(251, 250, 245, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(200, 160, 80, 0.6);
}

.value-total-actual {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--paper);
}

.value-total-actual strong {
  font-family: Montserrat, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--gold);
}

@media (max-width: 600px) {
  .value-item {
    grid-template-columns: auto 1fr;
  }

  .value-item-tag {
    grid-column: 2;
  }
}

/* ---- Quantum-leap-structure testimonials block ---- */

.quantum-identity h2.quantum-testimonial-heading {
  margin: 0 0 2.5rem;
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
}

.quantum-testimonials {
  columns: 3;
  column-gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

/* ---- iMessage-style testimonial bubbles (message only, no chrome) ---- */

.imessage-thread {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  max-width: 300px;
  margin: 0 0 2.75rem;
  break-inside: avoid;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.imessage-thread:nth-of-type(1) {
  transform: rotate(-0.6deg);
}

.imessage-thread:nth-of-type(2) {
  transform: rotate(0.7deg);
}

.imessage-thread:nth-of-type(3) {
  transform: rotate(-0.4deg);
}

.imessage-thread:nth-of-type(4) {
  transform: rotate(0.5deg);
}

.imessage-thread:nth-of-type(5) {
  transform: rotate(-0.3deg);
}

@media (max-width: 860px) {
  .quantum-testimonials {
    columns: 1;
  }

  .imessage-thread {
    transform: none !important;
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .quantum-testimonials {
    columns: 2;
  }
}

.imessage-bubble {
  position: relative;
  max-width: 270px;
  padding: 0.6rem 1rem;
  border-radius: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.imessage-bubble.incoming {
  background: #e9e9eb;
  color: #000;
  justify-self: start;
}

.imessage-bubble.incoming::before {
  position: absolute;
  z-index: -1;
  bottom: -2px;
  left: -7px;
  width: 20px;
  height: 20px;
  content: "";
  background: #e9e9eb;
  border-bottom-right-radius: 16px;
}

.imessage-bubble.incoming::after {
  position: absolute;
  bottom: -2px;
  left: -11px;
  width: 12px;
  height: 20px;
  content: "";
  background: var(--paper);
  border-bottom-right-radius: 10px;
}

.imessage-bubble.outgoing {
  background: #30c85e;
  color: #fff;
  justify-self: end;
}

.imessage-bubble.outgoing::before {
  position: absolute;
  z-index: -1;
  right: -7px;
  bottom: -2px;
  width: 20px;
  height: 20px;
  content: "";
  background: #30c85e;
  border-bottom-left-radius: 16px;
}

.imessage-bubble.outgoing::after {
  position: absolute;
  right: -11px;
  bottom: -2px;
  width: 12px;
  height: 20px;
  content: "";
  background: var(--paper);
  border-bottom-left-radius: 10px;
}

.imessage-timestamp {
  justify-self: end;
  margin: -0.2rem -0.7rem 0 0;
  color: rgba(65, 62, 53, 0.45);
  font-size: 0.7rem;
  font-weight: 500;
}

.imessage-redact {
  display: inline-block;
  color: transparent;
  background: #1c1c1e;
  border-radius: 3px;
  padding: 0 0.2em;
  user-select: none;
}

.quantum-testimonials-section {
  position: relative;
  overflow: hidden;
}

.quantum-testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.quantum-testimonials-section::before {
  position: absolute;
  right: -4%;
  top: -4%;
  width: min(32vw, 380px);
  aspect-ratio: 1;
  content: "";
  background: var(--gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-mandala.png");
  mask-image: url("assets/geometry/geo-mandala.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

/* ---- Quantum-leap-structure apply block (calendar + form) ---- */

.quantum-apply-section {
  position: relative;
  overflow: hidden;
}

.quantum-apply-section::after {
  position: absolute;
  right: -3%;
  bottom: -5%;
  width: min(30vw, 340px);
  aspect-ratio: 1;
  content: "";
  background: var(--gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-cube-grid.png");
  mask-image: url("assets/geometry/geo-cube-grid.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.quantum-apply-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.quantum-apply-section h2.quantum-apply-heading {
  max-width: 700px;
  margin: 0 auto 1rem;
  color: var(--ink);
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.quantum-apply-heading span {
  background: linear-gradient(100deg, #e3cfab, #c8a050 55%, #a87f36);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quantum-apply-sub {
  max-width: 560px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  color: rgba(65, 62, 53, 0.8);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.mini-calendar {
  max-width: 460px;
  margin: 0 auto;
}

.apply-step-label {
  margin: 0 0 1.25rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.apply-calendar-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--soft);
  border: 1px solid rgba(65, 62, 53, 0.1);
  border-radius: 20px;
}

.mini-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.mini-calendar-header span:first-child,
.mini-calendar-header span:last-child {
  color: rgba(65, 62, 53, 0.4);
}

.mini-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.mini-calendar-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.85rem;
  color: rgba(65, 62, 53, 0.75);
  border-radius: 50%;
}

.mini-calendar-label {
  font-size: 0.7rem !important;
  font-weight: 700;
  color: rgba(65, 62, 53, 0.4) !important;
}

.mini-calendar-grid .is-selected {
  color: var(--paper);
  background: var(--gold);
  font-weight: 700;
}

.apply-slots-label {
  max-width: 460px;
  margin: 0 auto 0.75rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.mini-calendar-slots {
  display: flex;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 0 auto 1.5rem;
  gap: 0.6rem;
}

.mini-calendar-slots .slot {
  padding: 0.55rem 0.9rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(200, 160, 80, 0.4);
  border-radius: 999px;
}

.apply-card-note {
  max-width: 460px;
  margin: 0 auto;
  font-family: "DM Sans", Arial, sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(65, 62, 53, 0.55);
}

.apply-form.contact-form {
  gap: 0.9rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--soft) !important;
  border: 1px solid rgba(65, 62, 53, 0.1) !important;
  border-radius: 20px;
  box-shadow: none !important;
}

body:not(.nate-home) .apply-form label {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink) !important;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink) !important;
  background: var(--paper) !important;
  border-color: rgba(65, 62, 53, 0.18) !important;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: rgba(65, 62, 53, 0.45) !important;
}

.apply-form .button {
  margin-top: 0.5rem;
}

.apply-form .form-note {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(65, 62, 53, 0.55);
}

.apply-form textarea {
  resize: vertical;
}

.apply-form .form-hint {
  margin: -0.3rem 0 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(65, 62, 53, 0.5);
}

.apply-form fieldset {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: none;
}

.apply-form legend {
  margin-bottom: 0.15rem;
  padding: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink) !important;
}

body:not(.nate-home) .apply-form .radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(65, 62, 53, 0.85) !important;
  cursor: pointer;
}

.apply-form .radio-option input[type="radio"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.apply-form .conditional-field {
  display: none;
  margin: 0.3rem 0 0;
  padding-left: 1.7rem;
}

.apply-form .conditional-field label {
  font-weight: 500;
  font-size: 0.85rem;
}

.apply-form .radio-option:has(input[value="yes"]:checked) ~ .conditional-field,
.apply-form .radio-option:has(input[value="other"]:checked) ~ .conditional-field,
.apply-form .radio-option:has(input[value="more-than-one"]:checked) ~ .conditional-field {
  display: block;
}

.nate-transformation-light {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  color: var(--nate-espresso);
  background: var(--nate-paper);
}

.nate-transformation-light::before,
.nate-transformation-light::after {
  position: absolute;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(200, 160, 80, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.nate-transformation-light::before {
  left: -16vw;
  top: 12%;
}

.nate-transformation-light::after {
  right: -8vw;
  bottom: 0%;
  width: min(52vw, 640px);
  border: none;
  background: var(--nate-gold);
  opacity: 0.14;
  -webkit-mask-image: url("assets/geometry/geo-flower.png");
  mask-image: url("assets/geometry/geo-flower.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.nate-transformation-inner {
  position: relative;
  z-index: 1;
}

.nate-transformation-eyebrow {
  justify-content: center;
}

.nate-transformation-kicker {
  margin: 0 0 1rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  text-align: center;
  color: rgba(65, 62, 53, 0.7);
}

.nate-transformation-heading {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: var(--nate-espresso);
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.nate-transformation-heading span {
  background: linear-gradient(100deg, #e3cfab, #c8a050 55%, #a87f36);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nate-transformation-sub {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
  color: rgba(65, 62, 53, 0.85);
}

.nate-transformation-sub strong {
  color: var(--nate-espresso);
}

.nate-experience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.nate-experience-card {
  display: grid;
  align-content: start;
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--nate-sand);
  border: 1px solid rgba(65, 62, 53, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(65, 62, 53, 0.08);
}

.nate-experience-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.nate-experience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--nate-espresso);
  border-radius: 50%;
}

.nate-experience-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: var(--nate-gold);
  stroke-width: 1.6;
}

.nate-experience-number {
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--nate-gold);
}

.nate-experience-card h3 {
  margin: 0 0 0.9rem;
  color: var(--nate-espresso);
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.1;
}

.nate-experience-card p {
  margin: 0;
  color: rgba(65, 62, 53, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

.nate-experience-note {
  margin-top: 0.9rem !important;
  font-style: italic;
  color: rgba(65, 62, 53, 0.6) !important;
  font-size: 0.92rem !important;
}

.nate-transformation-quote {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.25rem 0 0.25rem 1.75rem;
  border-left: 3px solid var(--nate-gold);
}

.nate-transformation-quote p {
  margin: 0 0 0.75rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--nate-espresso);
}

.nate-transformation-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(65, 62, 53, 0.6);
}

.nate-options-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: #e7e5dd;
  background:
    radial-gradient(circle at 90% 12%, rgba(200, 160, 80, 0.13), transparent 28%),
    radial-gradient(circle at 12% 92%, rgba(200, 160, 80, 0.12), transparent 30%),
    #413e35;
}

.nate-options-section > .container {
  position: relative;
  z-index: 1;
}

.nate-options-section::before {
  position: absolute;
  right: -3%;
  bottom: -8%;
  width: min(36vw, 420px);
  aspect-ratio: 1;
  content: "";
  background: var(--nate-gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-mandala.png");
  mask-image: url("assets/geometry/geo-mandala.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.nate-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.nate-options-title {
  max-width: 1000px;
  margin: 0 auto clamp(2.4rem, 5vw, 4rem);
  color: #fbfaf5;
  font-family: Montserrat, Arial Black, Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.nate-option-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  background: rgba(251, 250, 245, 0.055);
  border: 1px solid rgba(200, 160, 80, 0.55);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.16);
}

.nate-option-label {
  margin: 0 0 0.55rem;
  color: #e7e5dd;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nate-option-card h2 {
  color: #fbfaf5;
  font-family: Montserrat, "Arial Black", Arial, sans-serif;
  font-size: clamp(2.6rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 1.02;
}

#private-package h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
}

.nate-option-subtitle {
  margin-top: 1.1rem;
  color: #e7e5dd;
  font-weight: 900;
}

.nate-option-card p:not(.nate-option-label):not(.nate-option-price),
.nate-option-card li {
  color: rgba(231, 229, 221, 0.82);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.nate-option-card p:not(.nate-option-label) {
  margin-top: 1.4rem;
}

.nate-option-card ul {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0 0 0 1.2rem;
}

.nate-option-card li::marker {
  color: #c8a050;
}

.nate-option-price {
  margin-top: auto;
  color: #fbfaf5;
  font-family: Montserrat, "Arial Black", Arial, sans-serif;
  font-size: clamp(1.6rem, 2.7vw, 2.1rem);
  font-weight: 900;
  line-height: 1.05;
}

.nate-option-card .nate-button {
  margin-top: auto;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-photo {
    height: 90vw;
  }

  .about-story-photo img {
    border-radius: 24px;
  }

  .nate-transformation h2 {
    text-align: left;
  }

  .nate-options-title {
    text-align: left;
  }

  .nate-experience-card {
    grid-template-columns: 1fr;
  }

  .nate-experience-media {
    min-height: 240px;
  }

  .nate-experience-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .nate-experience-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .nate-options-grid {
    grid-template-columns: 1fr;
  }

  .nate-option-card {
    min-height: auto;
  }
}

/* ---- About page ---- */

.about-hero .container {
  text-align: center;
}

.about-hero .quantum-headline {
  text-align: center;
}

.about-story-section {
  position: relative;
  overflow: hidden;
}

.about-story-section::before {
  position: absolute;
  right: -4%;
  top: -6%;
  width: min(24vw, 280px);
  aspect-ratio: 1;
  content: "";
  background: var(--gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-ring.png");
  mask-image: url("assets/geometry/geo-ring.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.about-story-section > .container {
  position: relative;
  z-index: 1;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
}

.about-story-photo {
  position: relative;
  align-self: end;
  height: clamp(480px, 54vw, 720px);
}

.about-story-photo::before {
  position: absolute;
  top: -16%;
  left: 50%;
  z-index: 0;
  width: 148%;
  aspect-ratio: 1;
  content: "";
  transform: translateX(-50%);
  background: var(--gold);
  opacity: 0.5;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cg fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='250' cy='250' r='200'/%3E%3Ccircle cx='250' cy='250' r='140'/%3E%3Ccircle cx='250' cy='250' r='80'/%3E%3Cline x1='455' y1='250' x2='480' y2='250'/%3E%3Cline x1='427.6' y1='352.5' x2='449.2' y2='365'/%3E%3Cline x1='352.5' y1='427.6' x2='365' y2='449.2'/%3E%3Cline x1='250' y1='455' x2='250' y2='480'/%3E%3Cline x1='147.5' y1='427.6' x2='135' y2='449.2'/%3E%3Cline x1='72.4' y1='352.5' x2='50.8' y2='365'/%3E%3Cline x1='45' y1='250' x2='20' y2='250'/%3E%3Cline x1='72.4' y1='147.5' x2='50.8' y2='135'/%3E%3Cline x1='147.5' y1='72.4' x2='135' y2='50.8'/%3E%3Cline x1='250' y1='45' x2='250' y2='20'/%3E%3Cline x1='352.5' y1='72.4' x2='365' y2='50.8'/%3E%3Cline x1='427.6' y1='147.5' x2='449.2' y2='135'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cg fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='250' cy='250' r='200'/%3E%3Ccircle cx='250' cy='250' r='140'/%3E%3Ccircle cx='250' cy='250' r='80'/%3E%3Cline x1='455' y1='250' x2='480' y2='250'/%3E%3Cline x1='427.6' y1='352.5' x2='449.2' y2='365'/%3E%3Cline x1='352.5' y1='427.6' x2='365' y2='449.2'/%3E%3Cline x1='250' y1='455' x2='250' y2='480'/%3E%3Cline x1='147.5' y1='427.6' x2='135' y2='449.2'/%3E%3Cline x1='72.4' y1='352.5' x2='50.8' y2='365'/%3E%3Cline x1='45' y1='250' x2='20' y2='250'/%3E%3Cline x1='72.4' y1='147.5' x2='50.8' y2='135'/%3E%3Cline x1='147.5' y1='72.4' x2='135' y2='50.8'/%3E%3Cline x1='250' y1='45' x2='250' y2='20'/%3E%3Cline x1='352.5' y1='72.4' x2='365' y2='50.8'/%3E%3Cline x1='427.6' y1='147.5' x2='449.2' y2='135'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.about-story-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px 24px 0 0;
}

.about-story {
  align-self: center;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.about-story-copy {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.about-story-copy p {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: rgba(65, 62, 53, 0.85);
}

.about-story-copy p:first-child {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.about-story-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.about-philosophy-section {
  position: relative;
  overflow: hidden;
}

.about-philosophy-section::before {
  position: absolute;
  right: -6%;
  top: -8%;
  width: min(32vw, 380px);
  aspect-ratio: 1;
  content: "";
  background: var(--gold);
  opacity: 0.14;
  -webkit-mask-image: url("assets/geometry/geo-star-lattice.png");
  mask-image: url("assets/geometry/geo-star-lattice.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.about-philosophy-section > .container {
  position: relative;
  z-index: 1;
}

.about-eyebrow-center {
  justify-content: center;
}

.about-philosophy {
  max-width: 780px;
  text-align: center;
}

.about-philosophy-quote {
  margin: 1.75rem 0 0;
}

.about-philosophy-quote p {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.45;
  color: var(--paper);
}

.about-cta-section {
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  position: absolute;
  left: -5%;
  bottom: -10%;
  width: min(26vw, 300px);
  aspect-ratio: 1;
  content: "";
  background: var(--gold);
  opacity: 0.12;
  -webkit-mask-image: url("assets/geometry/geo-cube-grid.png");
  mask-image: url("assets/geometry/geo-cube-grid.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.about-cta-section > .container {
  position: relative;
  z-index: 1;
}

.about-cta {
  max-width: 680px;
  text-align: center;
}

.about-cta-section h2.about-cta-heading {
  margin: 1rem 0 2rem;
  color: var(--ink);
  font-family: Montserrat, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
}

.about-cta-heading span {
  background: linear-gradient(100deg, #e3cfab, #c8a050 55%, #a87f36);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.about-cta-button:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
