:root {
  --cream: #f5f0e7;
  --cream-soft: #f8f3ea;
  --dark: #282725;
  --dark-soft: #302f2c;
  --text: #2b2925;
  --muted: #5d5952;
  --muted-light: rgba(245, 240, 231, 0.72);
  --gold: #b98245;
  --border: #ded2c2;
  --card: #fffaf3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

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

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

.center {
  text-align: center;
}

/* HEADER */

.site-header {
  height: 86px;
  background: rgba(245, 240, 231, 0.96);
  border-bottom: 1px solid rgba(222, 210, 194, 0.8);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 10004;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 10002;
}

.brand-mark {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 21px;
  color: var(--text);
  white-space: nowrap;
}

.brand-divider {
  width: 1px;
  height: 18px;
  background: rgba(60, 58, 54, 0.25);
}

.brand-name {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #6f6b65;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  font-size: 15px;
}

.main-nav a {
  padding: 34px 0 31px;
  border-bottom: 1px solid transparent;
  color: var(--text);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.begin-button {
  justify-self: end;
  border: 1px solid var(--text);
  padding: 15px 27px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.2s ease;
}

.begin-button:hover {
  background: var(--text);
  color: var(--cream);
}

.mobile-menu-toggle,
.mobile-begin-button,
.mobile-menu-overlay {
  display: none;
}

/* MOBILE HEADER - DROPDOWN STYLE */
@media (max-width: 980px) {
  .site-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    font-size: 20px;
  }

  .brand-name {
    font-size: 10px;
    letter-spacing: 3.5px;
  }

  .begin-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(60, 58, 54, 0.35);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 10001;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--text);
    transition: 0.25s ease;
  }

  body.nav-open .mobile-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .mobile-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav,
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 76px);
    overflow-y: auto;

    background: #f5f0e7;
    border-top: 1px solid rgba(222, 210, 194, 0.8);
    border-bottom: 1px solid rgba(222, 210, 194, 0.8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    gap: 0;
    padding: 28px 24px 32px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
    z-index: 9998;
  }

  body.nav-open .main-nav,
  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .nav a {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 15px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(222, 210, 194, 0.75);
    color: var(--text);
  }

  .main-nav a:hover,
  .main-nav a.active,
  .nav a:hover,
  .nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .mobile-begin-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    max-width: 320px;
    border: 1px solid var(--text) !important;
    padding: 15px 24px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px !important;
  }

  .mobile-menu-overlay {
    display: none !important;
  }

  body.nav-open {
    overflow: auto;
  }
}

/* COMMON */

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0 0 26px;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.2vw, 66px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -1.8px;
  margin: 0;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.section-subtitle {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
}

/* HOME HERO */

.home-hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.72), transparent 30%),
    radial-gradient(circle at 85% 8%, rgba(255,255,255,0.55), transparent 28%),
    var(--cream);
  padding: 108px 0 104px;
}

.home-hero-inner {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.home-title {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
  margin: 0;
}

.home-title::before {
  content: "•";
  position: absolute;
  left: 18%;
  top: 13%;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.home-title span {
  display: block;
  font-size: clamp(68px, 8vw, 104px);
  letter-spacing: 12px;
}

.home-title em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-size: clamp(62px, 7.4vw, 96px);
  letter-spacing: -2px;
}

.home-subtitle {
  max-width: 730px;
  margin: 34px auto 0;
  font-size: 20px;
  line-height: 1.58;
  color: #4d4a45;
}

.vertical-line {
  width: 1px;
  height: 58px;
  background: var(--gold);
  opacity: 0.55;
  margin: 30px auto 0;
}

.home-image-wrap {
  width: min(1030px, calc(100% - 48px));
  margin: 0 auto;
}

.home-hero-image {
  display: block;
  width: 100%;
  height: min(48vw, 560px);
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

/* ANCHORS */

/* ANCHORS */

.anchors-section {
  background:
    radial-gradient(circle at 55% 20%, rgba(255,255,255,0.7), transparent 28%),
    var(--cream);
  padding: 92px 0 126px;
  position: relative;
}

.anchors-section::after {
  content: "";
  position: absolute;
  left: 71.5%;
  bottom: 92px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
}

.anchors-section .section-title {
  font-size: clamp(48px, 5vw, 64px);
}

.anchors-section .section-subtitle {
  max-width: 720px;
  margin-top: 24px;
}

.anchors-grid {
  width: min(1040px, calc(100% - 48px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.anchor-card {
  position: relative;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(238, 225, 208, 0.72);
  padding: 34px 31px 36px;
  text-align: left;
  min-height: 560px;
}

.featured-card {
  border-top: 2px solid var(--gold);
}

.card-icon {
  width: 43px;
  height: 43px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 38px;
}

.tilted {
  transform: rotate(8deg);
}

.soft-dot {
  display: none;
}

.anchor-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--text);
}

.anchor-card p,
.anchor-card li,
.mini-list span {
  font-size: 15.5px;
  line-height: 1.68;
  color: #4f4b45;
}

.anchor-card p {
  margin: 0 0 25px;
}

.anchor-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.anchor-card li {
  margin-bottom: 18px;
}

.anchor-card li span {
  color: var(--gold);
  font-size: 12px;
  margin-right: 8px;
}

.anchor-card strong {
  color: var(--text);
}

.mini-list {
  display: grid;
  gap: 10px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

/* DARK RHYTHM */

.dark-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.035), transparent 28%),
    linear-gradient(90deg, #242321, var(--dark), #242321);
  color: var(--cream);
}

.rhythm-section {
  padding: 135px 0 124px;
}

.rhythm-container {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
}

.rhythm-container > .eyebrow,
.rhythm-container > .section-title {
  text-align: center;
}

.light-title {
  color: var(--cream);
}

.rhythm-list {
  margin-top: 76px;
}

.rhythm-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  border-top: 1px solid rgba(245, 240, 231, 0.18);
  padding: 29px 0 34px;
}

.rhythm-row:last-child {
  border-bottom: 1px solid rgba(245, 240, 231, 0.18);
}

.rhythm-day {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 27px;
  line-height: 1.2;
}

.rhythm-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 9px;
  color: var(--cream);
}

.rhythm-row p {
  margin: 0;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.58;
}

/* FEELING */

.feeling-section {
  background:
    radial-gradient(circle at 50% 15%, rgba(255,255,255,0.75), transparent 36%),
    var(--cream);
  padding: 142px 0 145px;
  border-top: 1px solid rgba(245, 240, 231, 0.08);
}

.feeling-section .section-title {
  font-size: clamp(44px, 5.5vw, 68px);
}

/* INVESTMENT */

.investment-section {
  padding: 136px 0 78px;
}

.price-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--cream);
  font-size: clamp(45px, 5vw, 62px);
  margin: 0;
}

.price-title span {
  font-size: 28px;
  color: rgba(245, 240, 231, 0.64);
}

.investment-copy {
  max-width: 760px;
  margin: 32px auto 0;
  color: rgba(245, 240, 231, 0.76);
  font-size: 20px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.button-primary,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0 34px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.22s ease;
}

.button-primary {
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
}

.button-primary:hover {
  background: transparent;
  color: var(--gold);
}

.button-outline {
  border: 1px solid rgba(245, 240, 231, 0.34);
  color: var(--cream);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.small-dot {
  width: 8px;
  height: 8px;
  background: #3b210b;
  border-radius: 999px;
  margin: 70px auto 0;
}

/* FOOTER */

.site-footer {
  background:
    linear-gradient(90deg, #242321, var(--dark), #242321);
  color: rgba(245, 240, 231, 0.72);
  padding: 68px 48px 38px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "Ankit Neerav";
  position: absolute;
  left: 8%;
  bottom: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(90px, 15vw, 210px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  white-space: nowrap;
}

.footer-inner {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  z-index: 1;
}

.site-footer h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin: 0 0 22px;
}

.site-footer a {
  display: block;
  margin: 14px 0;
}

.site-footer p {
  color: rgba(245, 240, 231, 0.72);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 58px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 240, 231, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(245, 240, 231, 0.55);
  font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .site-header {
    padding: 0 28px;
  }

  .main-nav {
    gap: 22px;
    font-size: 14px;
  }

  .brand-name {
    letter-spacing: 4px;
  }

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

  .anchor-card {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 76px;
    grid-template-columns: 1fr auto;
    padding: 18px 22px;
  }

  .main-nav {
    display: none;
  }

  .begin-button {
    padding: 12px 20px;
    font-size: 12px;
  }

  .brand-name {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .home-hero {
    padding: 82px 0 82px;
  }

  .home-title::before {
    left: 6%;
    top: 8%;
  }

  .home-subtitle,
  .section-subtitle,
  .investment-copy {
    font-size: 18px;
  }

  .home-hero-image {
    height: 430px;
  }

  .anchors-section {
    padding: 82px 0 92px;
  }

  .anchors-grid {
    margin-top: 54px;
  }

  .rhythm-section,
  .feeling-section,
  .investment-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow,
  .home-hero-inner,
  .home-image-wrap,
  .rhythm-container {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
  }

  .brand {
    flex-direction: column;
    gap: 4px;
  }

  .begin-button {
    justify-self: center;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    line-height: 1.7;
  }

  .home-title span {
    font-size: clamp(50px, 16vw, 72px);
    letter-spacing: 8px;
  }

  .home-title em {
    font-size: clamp(48px, 15vw, 70px);
  }

  .home-subtitle {
    margin-top: 26px;
  }

  .vertical-line {
    height: 46px;
  }

  .home-hero-image {
    height: 340px;
  }

  .section-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .anchors-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .anchor-card {
    padding: 28px 24px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .rhythm-list {
    margin-top: 52px;
  }

  .rhythm-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .rhythm-day {
    font-size: 24px;
  }

  .price-title span {
    display: block;
    margin-top: 6px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-primary,
  .button-outline {
    width: 100%;
  }

  .site-footer {
    padding: 60px 24px 32px;
  }

  .footer-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    width: 100%;
  }
}



/* ABOUT PAGE */

.about-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.65), transparent 28%),
    var(--cream);
}

.about-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.about-narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */

.about-hero {
  padding: 105px 0 115px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 88px;
  align-items: center;
}

.about-hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
  margin: 0;
}

.about-hero-copy h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px 0 0;
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.button-text {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  border-bottom: 1px solid rgba(185, 130, 69, 0.45);
  padding-bottom: 6px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid rgba(43, 41, 37, 0.16);
}

.about-stats strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
}

.about-stats span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #687883;
}

.about-hero-image img,
.monk-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-hero-image img {
  min-height: 620px;
  max-height: 680px;
  object-position: center;
}

/* FEATURED */

.featured-strip {
  padding: 34px 0;
  border-top: 1px solid rgba(222, 210, 194, 0.8);
  border-bottom: 1px solid rgba(222, 210, 194, 0.8);
  background: rgba(238, 231, 220, 0.48);
  text-align: center;
}

.featured-strip p {
  margin: 0 0 20px;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #687883;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  font-family: Georgia, serif;
  font-size: 17px;
  color: #6f7d86;
}

.featured-logos i {
  color: var(--gold);
  font-style: normal;
}

/* PROMISE */

.about-promise {
  padding: 120px 0 120px;
  text-align: center;
}

.about-promise h2,
.monk-copy h2,
.four-pillars h2,
.membership-price h2,
.seen-section h2,
.transcend-preview h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.6px;
  margin: 0;
}

.about-promise h2 {
  font-size: clamp(46px, 5.6vw, 72px);
}

.about-promise h2 em,
.four-pillars h2 em,
.membership-price h2 em,
.transcend-preview h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.promise-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  margin: 34px 0;
}

.promise-mark span {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 999px;
}

.promise-mark i {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.about-promise p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

/* MONK */

.monk-section {
  padding: 40px 0 135px;
}

.monk-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 88px;
  align-items: center;
}

.monk-image img {
  min-height: 620px;
  object-position: center;
}

.monk-copy h2 {
  font-size: clamp(44px, 5vw, 66px);
  margin-bottom: 32px;
}

.monk-copy p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 26px;
}

/* FOUR PILLARS */

.four-pillars {
  padding: 126px 0 112px;
}

.four-pillars h2 {
  color: var(--cream);
  font-size: clamp(44px, 5vw, 64px);
}

.four-pillars > .about-narrow > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted-light);
}

.four-pillar-grid {
  width: min(940px, calc(100% - 48px));
  margin: 70px auto 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.four-pillar-grid article {
  border: 1px solid rgba(245, 240, 231, 0.16);
  background: rgba(255,255,255,0.035);
  padding: 34px 30px;
  min-height: 220px;
}

.four-pillar-grid article span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  margin-bottom: 22px;
}

.four-pillar-grid article h3 {
  font-family: Georgia, serif;
  color: var(--cream);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 14px;
}

.four-pillar-grid article p {
  color: var(--muted-light);
  line-height: 1.6;
  font-size: 15px;
  margin: 0 0 24px;
}

.four-pillar-grid article small {
  color: #7890a0;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.dark-link {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  border-bottom: 1px solid rgba(185, 130, 69, 0.5);
  padding-bottom: 7px;
}

/* MEMBERSHIP PRICE */

.membership-price {
  padding: 125px 0 130px;
  text-align: center;
}

.membership-price h2 {
  font-size: clamp(44px, 5.4vw, 68px);
}

.membership-price p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px auto 0;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

/* SEEN */

.seen-section {
  padding: 126px 0 130px;
}

.seen-section h2 {
  color: var(--cream);
  font-size: clamp(44px, 5.4vw, 68px);
}

.seen-grid {
  width: min(1000px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.seen-grid div {
  position: relative;
  overflow: hidden;
  background: #191817;
}

.seen-grid .seen-large {
  grid-row: span 2;
}

.seen-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seen-grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62), transparent 55%);
  pointer-events: none;
}

.seen-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
}

.seen-caption {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(245,240,231,0.8);
}

.seen-caption strong {
  display: block;
  font-family: Georgia, serif;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 17px;
  color: var(--cream);
}

.seen-link-wrap {
  margin-top: 50px;
}

/* TRANSCEND PREVIEW */

.transcend-preview {
  padding: 125px 0 130px;
  text-align: center;
}

.transcend-preview h2 {
  font-size: clamp(44px, 5.4vw, 68px);
}

.transcend-preview p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

.button-outline.light {
  color: var(--text);
  border-color: var(--text);
}

.button-outline.light:hover {
  background: var(--text);
  color: var(--cream);
}

/* ABOUT RESPONSIVE */

@media (max-width: 1050px) {
  .about-hero-grid,
  .monk-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-hero-image img,
  .monk-image img {
    min-height: 420px;
  }

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

  .seen-grid .seen-large {
    grid-row: span 1;
  }
}

@media (max-width: 700px) {
  .about-container,
  .about-narrow,
  .seen-grid,
  .four-pillar-grid {
    width: min(100% - 32px, 1120px);
  }

  .about-hero,
  .about-promise,
  .monk-section,
  .four-pillars,
  .membership-price,
  .seen-section,
  .transcend-preview {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .about-hero-copy h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-text {
    align-self: flex-start;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .four-pillar-grid,
  .seen-grid {
    grid-template-columns: 1fr;
  }

  .seen-grid {
    grid-auto-rows: 280px;
  }

  .featured-logos {
    gap: 18px;
    font-size: 15px;
  }
}


/* LETTERS PAGE */

.letters-page {
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.65), transparent 30%),
    var(--cream);
}

.letters-narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.letters-hero {
  padding: 116px 0 0;
  text-align: center;
}

.letters-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(62px, 7vw, 98px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0;
}

.letters-hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.letters-hero p {
  max-width: 720px;
  margin: 34px auto 0;
  font-size: 20px;
  line-height: 1.62;
  color: var(--muted);
}

.letters-subscribe {
  border-top: 1px solid rgba(222, 210, 194, 0.8);
  border-bottom: 1px solid rgba(222, 210, 194, 0.8);
  margin-top: 0;
  padding: 58px 0;
  background: rgba(255,255,255,0.18);
}

.letters-subscribe-inner {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}

.letters-subscribe h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
}

.letters-subscribe p {
  color: #687883;
  line-height: 1.6;
  margin: 0;
}

.subscribe-form {
  display: flex;
  gap: 8px;
}

.subscribe-form input {
  width: 250px;
  height: 52px;
  border: 1px solid rgba(222, 210, 194, 0.9);
  background: rgba(255,255,255,0.55);
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.subscribe-form button {
  height: 52px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 32px;
  cursor: pointer;
}

.letters-list-section {
  padding: 120px 0 130px;
}

.letters-grid {
  width: min(1000px, calc(100% - 48px));
  margin: 74px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.letter-card {
  background: rgba(255,250,243,0.88);
  border: 1px solid rgba(238, 225, 208, 0.72);
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.letter-image {
  display: block;
  height: 185px;
  overflow: hidden;
  background: #e8dfd2;
}

.letter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.letter-image-placeholder {
  width: 100%;
  height: 100%;
  background: #e8dfd2;
}

.letter-card-body {
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.letter-meta {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  margin: 0 0 18px;
}

.letter-card h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.letter-excerpt {
  color: var(--muted);
  line-height: 1.62;
  font-size: 15.5px;
  margin: 0 0 28px;
}

.read-essay {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(222, 210, 194, 0.85);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
}

.letters-promise {
  padding: 128px 0 110px;
}

.letters-promise h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--cream);
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1.08;
  margin: 0;
}

.letters-promise h2 em {
  color: var(--gold);
  font-style: italic;
}

.letters-promise p {
  max-width: 700px;
  margin: 34px auto 0;
  color: var(--muted-light);
  font-size: 20px;
  line-height: 1.65;
}

.subscribe-form.dark {
  justify-content: center;
  margin-top: 42px;
}

.subscribe-form.dark input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
  color: var(--cream);
}

.letters-promise small {
  display: block;
  margin-top: 14px;
  color: rgba(245,240,231,0.5);
}

@media (max-width: 1100px) {
  .letters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .letters-subscribe-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .subscribe-form {
    width: 100%;
  }

  .subscribe-form input {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .letters-narrow,
  .letters-grid,
  .letters-subscribe-inner {
    width: min(100% - 32px, 1000px);
  }

  .letters-hero {
    padding-top: 80px;
  }

  .letters-hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

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

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form button {
    width: 100%;
  }

  .letters-promise h2 {
    font-size: clamp(44px, 14vw, 62px);
  }
}


/* SINGLE LETTER PAGE */

.single-letter-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.65), transparent 30%),
    var(--cream);
}

.single-letter-hero {
  padding: 110px 0 52px;
}

.single-narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.single-letter-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(52px, 6.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0;
}

.single-meta {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.single-featured-image {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 70px;
}

.single-featured-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.single-content-wrap {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.85;
  color: #3f3b35;
}

.single-content-wrap p {
  margin: 0 0 30px;
}

.single-content-wrap h2,
.single-content-wrap h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.single-content-wrap h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 64px 0 24px;
}

.single-content-wrap h3 {
  font-size: 30px;
  margin: 48px 0 18px;
}

.single-content-wrap blockquote {
  margin: 54px 0;
  padding: 34px 40px;
  border-left: 3px solid var(--gold);
  background: rgba(255,250,243,0.65);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.5;
  color: var(--text);
}

.single-content-wrap ul,
.single-content-wrap ol {
  padding-left: 24px;
  margin-bottom: 30px;
}

.single-content-wrap li {
  margin-bottom: 12px;
}

.single-letter-footer {
  width: min(760px, calc(100% - 48px));
  margin: 80px auto 110px;
}

@media (max-width: 700px) {
  .single-letter-hero {
    padding: 82px 0 42px;
  }

  .single-narrow,
  .single-content-wrap,
  .single-letter-footer {
    width: min(100% - 32px, 760px);
  }

  .single-featured-image {
    width: min(100% - 32px, 980px);
    margin-bottom: 48px;
  }

  .single-content-wrap {
    font-size: 18px;
    line-height: 1.75;
  }

  .single-content-wrap blockquote {
    padding: 26px 24px;
    font-size: 24px;
  }
}


/* PRACTICE PAGE */

.practice-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.65), transparent 32%),
    var(--cream);
}

.practice-narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.practice-hero {
  padding: 112px 0 44px;
}

.practice-hero h1,
.practice-webinars h2,
.practice-sprints h2,
.practice-ladder h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -1.6px;
  line-height: 1.06;
  margin: 0;
}

.practice-hero h1 {
  font-size: clamp(64px, 7.4vw, 100px);
}

.practice-hero h1 em,
.practice-ladder h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.practice-hero h1 em {
  font-size: clamp(58px, 7vw, 92px);
}

.practice-hero p:not(.eyebrow),
.practice-webinars p,
.practice-sprints .practice-narrow p,
.practice-ladder p {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.practice-webinars {
  padding: 0 0 118px;
}

.practice-webinars h2,
.practice-sprints h2,
.practice-ladder h2 {
  font-size: clamp(46px, 5.6vw, 68px);
}

.gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  margin: 28px auto 0;
}

.practice-card-grid {
  width: min(1000px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.practice-card {
  background: rgba(255,250,243,0.88);
  border: 1px solid rgba(238, 225, 208, 0.72);
  padding: 34px 30px;
  min-height: 220px;
}

.practice-card span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  margin-bottom: 18px;
}

.practice-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 16px;
}

.practice-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 26px;
  font-size: 15.5px;
}

.practice-card small {
  color: #687883;
  letter-spacing: 2px;
  font-size: 12px;
}

.practice-sprints {
  padding: 130px 0 132px;
}

.practice-sprints .practice-narrow p {
  color: var(--muted-light);
}

.dark-grid {
  margin-top: 74px;
}

.dark-card {
  background: rgba(255,255,255,0.035);
  border-color: rgba(245,240,231,0.14);
  min-height: 395px;
}

.dark-card h3 {
  color: var(--cream);
}

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

.dark-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 24px;
}

.dark-card li {
  color: var(--muted-light);
  line-height: 1.65;
  margin-bottom: 7px;
  font-size: 15px;
}

.dark-card li::before {
  content: "→ ";
  color: var(--gold);
}

.dark-card small {
  color: #7890a0;
}

.practice-ladder {
  padding: 126px 0 134px;
}

.practice-ladder h2 {
  font-size: clamp(44px, 5.8vw, 70px);
}

.practice-ladder p {
  max-width: 680px;
}

.practice-ladder .cta-row {
  margin-top: 42px;
}

@media (max-width: 1050px) {
  .practice-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .practice-narrow,
  .practice-card-grid {
    width: min(100% - 32px, 1000px);
  }

  .practice-hero {
    padding: 82px 0 40px;
  }

  .practice-webinars {
    padding-bottom: 82px;
  }

  .practice-sprints,
  .practice-ladder {
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .practice-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 50px;
  }

  .practice-card {
    padding: 28px 24px;
  }

  .practice-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .practice-hero h1 em {
    font-size: clamp(46px, 14vw, 68px);
  }

  .practice-hero p:not(.eyebrow),
  .practice-webinars p,
  .practice-sprints .practice-narrow p,
  .practice-ladder p {
    font-size: 18px;
  }
}


/* MASTERY PAGE */

.mastery-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.68), transparent 32%),
    var(--cream);
}

.mastery-narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.mastery-hero {
  padding: 112px 0 110px;
}

.mastery-hero h1,
.mastery-identity h2,
.mastery-pillars h2,
.mastery-stack h2,
.mastery-transcend h2,
.mastery-final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -1.7px;
  line-height: 1.06;
  margin: 0;
}

.mastery-hero h1 {
  font-size: clamp(62px, 7.2vw, 100px);
}

.mastery-hero h1 em,
.mastery-stack h2 em,
.mastery-final-cta h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.mastery-hero h1 em {
  font-size: clamp(56px, 6.8vw, 88px);
}

.mastery-hero p {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.mastery-hero-image {
  width: min(1030px, calc(100% - 48px));
  margin: 0 auto;
}

.mastery-hero-image img {
  width: 100%;
  height: min(48vw, 560px);
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* IDENTITY */

.mastery-identity {
  padding: 112px 0 130px;
}

.mastery-identity h2 {
  font-size: clamp(48px, 5.4vw, 68px);
}

.mastery-split {
  width: min(1000px, calc(100% - 48px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 86px;
  align-items: center;
}

.mastery-copy p {
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
  margin: 0 0 30px;
}

.mastery-copy em {
  color: var(--gold);
}

.mastery-side-image img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  display: block;
}

/* PILLARS */

.mastery-pillars {
  padding: 126px 0 132px;
}

.mastery-pillars h2 {
  color: var(--cream);
  font-size: clamp(48px, 5.6vw, 72px);
}

.mastery-pillar-grid {
  width: min(1000px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mastery-pillar-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(245,240,231,0.15);
  padding: 34px 30px;
  min-height: 445px;
}

.mastery-pillar-card span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  margin-bottom: 18px;
}

.mastery-pillar-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cream);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 16px;
}

.mastery-pillar-card p {
  color: var(--muted-light);
  line-height: 1.6;
  font-size: 15.5px;
  margin: 0 0 25px;
}

.mastery-pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.mastery-pillar-card li {
  color: var(--muted-light);
  line-height: 1.6;
  margin-bottom: 9px;
  font-size: 15px;
}

.mastery-pillar-card li::before {
  content: "→ ";
  color: var(--gold);
}

.mastery-pillar-card small {
  color: #7890a0;
  letter-spacing: 1.7px;
  font-size: 12px;
}

/* STACK */

.mastery-stack {
  padding: 118px 0 130px;
}

.mastery-stack h2 {
  font-size: clamp(48px, 5.4vw, 70px);
}

.mastery-stack-grid {
  width: min(1000px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 86px;
  align-items: center;
}

.mastery-stack-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 0 0 30px;
}

.mastery-stack-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mastery-stack-copy li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.mastery-stack-copy li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.mastery-stack-copy strong {
  color: var(--text);
}

.stack-price-box {
  margin-top: 42px;
  border: 1px solid rgba(222,210,194,0.9);
  background: rgba(255,250,243,0.65);
  padding: 30px 34px;
}

.stack-price-box strong {
  display: block;
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.stack-price-box span {
  color: #687883;
  font-size: 14px;
  letter-spacing: 1px;
}

.mastery-stack-image img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  display: block;
}

/* TRANSCEND */

.mastery-transcend {
  padding: 128px 0 132px;
}

.mastery-transcend h2 {
  color: var(--cream);
  font-size: clamp(52px, 6vw, 78px);
}

.mastery-transcend .mastery-narrow p {
  max-width: 780px;
  margin: 30px auto 0;
  color: var(--muted-light);
  font-size: 20px;
  line-height: 1.65;
}

.transcend-grid {
  width: min(1000px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.transcend-grid article {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(245,240,231,0.15);
  padding: 32px;
  min-height: 170px;
}

.transcend-grid h3 {
  font-family: Georgia, serif;
  color: var(--cream);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 18px;
}

.transcend-grid p {
  color: var(--muted-light);
  line-height: 1.65;
  margin: 0;
}

.transcend-price {
  width: min(430px, calc(100% - 48px));
  margin: 48px auto 0;
  border: 1px solid rgba(245,240,231,0.16);
  background: rgba(255,255,255,0.035);
  padding: 28px 30px;
  text-align: center;
}

.transcend-price strong {
  display: block;
  font-family: Georgia, serif;
  color: var(--cream);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
}

.transcend-price em {
  color: var(--gold);
  font-style: normal;
}

.transcend-price span {
  color: var(--muted-light);
  font-size: 13px;
}

/* FINAL CTA */

.mastery-final-cta {
  padding: 120px 0 126px;
}

.mastery-final-cta h2 {
  margin-top: 70px;
  font-size: clamp(44px, 5.3vw, 68px);
}

.mastery-final-cta .cta-row {
  margin-top: 42px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .mastery-split,
  .mastery-stack-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .mastery-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mastery-side-image img,
  .mastery-stack-image img {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .mastery-narrow,
  .mastery-hero-image,
  .mastery-split,
  .mastery-pillar-grid,
  .mastery-stack-grid,
  .transcend-grid {
    width: min(100% - 32px, 1000px);
  }

  .mastery-hero,
  .mastery-identity,
  .mastery-pillars,
  .mastery-stack,
  .mastery-transcend,
  .mastery-final-cta {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .mastery-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .mastery-hero h1 em {
    font-size: clamp(46px, 14vw, 68px);
  }

  .mastery-hero p,
  .mastery-transcend .mastery-narrow p {
    font-size: 18px;
  }

  .mastery-hero-image img {
    height: 340px;
    min-height: 340px;
  }

  .mastery-pillar-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mastery-pillar-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .mastery-stack-copy li {
    padding-left: 28px;
  }

  .mastery-final-cta h2 {
    margin-top: 42px;
  }
}

/* INSPIRE X PAGE */

.inspire-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.68), transparent 32%),
    var(--cream);
}

.inspire-narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.inspire-hero {
  padding: 112px 0 0;
}

.inspire-hero h1,
.inspire-whom h2,
.inspire-retreats h2,
.inspire-between h2,
.inspire-path h2,
.inspire-room h2,
.inspire-price h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -1.7px;
  line-height: 1.06;
  margin: 0;
}

.inspire-hero h1 {
  font-size: clamp(64px, 7.2vw, 100px);
}

.inspire-hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.inspire-hero p {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.inspire-hero-gallery {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.72fr;
  gap: 18px;
}

.inspire-hero-gallery img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* FOR WHOM */

.inspire-whom {
  padding: 118px 0 132px;
}

.inspire-whom h2 {
  font-size: clamp(48px, 5.5vw, 70px);
}

.inspire-split {
  width: min(1000px, calc(100% - 48px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 86px;
  align-items: center;
}

.inspire-copy p {
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
  margin: 0 0 30px;
}

.inspire-side-image img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  display: block;
}

/* RETREATS */

.inspire-retreats {
  padding: 126px 0 138px;
}

.inspire-retreats h2 {
  color: var(--cream);
  font-size: clamp(46px, 5.4vw, 70px);
}

.inspire-retreats .inspire-narrow p {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted-light);
  font-size: 19px;
  line-height: 1.65;
}

.retreat-grid {
  width: min(900px, calc(100% - 48px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.retreat-grid article {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(245,240,231,0.15);
  padding: 32px 26px;
  min-height: 460px;
}

.retreat-grid span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  margin-bottom: 18px;
}

.retreat-grid h3 {
  font-family: Georgia, serif;
  color: var(--cream);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 16px;
}

.retreat-grid p,
.retreat-grid li {
  color: var(--muted-light);
  line-height: 1.6;
  font-size: 15px;
}

.retreat-grid p {
  margin: 0 0 24px;
}

.retreat-grid ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.retreat-grid li {
  margin-bottom: 9px;
}

.retreat-grid li::before {
  content: "→ ";
  color: var(--gold);
}

.retreat-grid small {
  color: #7890a0;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

/* IMAGE STRIP */

.inspire-image-strip {
  position: relative;
  background: var(--cream);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.location-note {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 48px));
  background: rgba(245, 240, 231, 0.96);
  padding: 34px 44px;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
}

.location-note p:last-child {
  font-family: Georgia, serif;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  margin: 10px 0 0;
}

/* BETWEEN */

.inspire-between {
  padding: 118px 0 132px;
}

.inspire-between h2 {
  font-size: clamp(46px, 5.2vw, 66px);
}

.between-grid {
  width: min(900px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.between-grid article {
  background: rgba(255,250,243,0.88);
  border: 1px solid rgba(238,225,208,0.72);
  padding: 30px 28px;
  min-height: 200px;
}

.between-grid h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 18px;
}

.between-grid p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 15.5px;
  margin: 0;
}

/* PATH */

.inspire-path {
  padding: 128px 0 138px;
}

.inspire-path h2 {
  color: var(--cream);
  font-size: clamp(48px, 5.5vw, 72px);
}

.path-list {
  width: min(720px, calc(100% - 48px));
  margin: 70px auto 0;
  border-top: 1px solid rgba(245,240,231,0.18);
}

.path-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(245,240,231,0.18);
}

.path-row span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
}

.path-row h3 {
  font-family: Georgia, serif;
  color: var(--cream);
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 10px;
}

.path-row p {
  color: var(--muted-light);
  line-height: 1.62;
  margin: 0;
}

/* ROOM */

.inspire-room {
  padding: 118px 0 132px;
}

.inspire-room h2 {
  font-size: clamp(46px, 5.2vw, 66px);
}

.room-grid {
  width: min(900px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.room-grid div {
  overflow: hidden;
}

.room-large {
  grid-row: span 2;
}

.room-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.room-large img {
  min-height: 520px;
}

/* PRICE */

.inspire-price {
  padding: 128px 0 132px;
}

.inspire-price h2 {
  margin-top: 34px;
  font-size: clamp(46px, 5.5vw, 72px);
}

.price-subtitle {
  margin: 28px auto 0;
  font-family: Georgia, serif;
  color: #687883;
  font-size: 22px;
  font-style: italic;
}

.price-copy {
  max-width: 720px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.inspire-price .cta-row {
  margin-top: 42px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .retreat-grid,
  .between-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inspire-split {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .inspire-hero-gallery {
    grid-template-columns: 1fr;
  }

  .inspire-hero-gallery img {
    height: 420px;
  }

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

  .between-grid {
    width: min(720px, calc(100% - 48px));
  }
}

@media (max-width: 700px) {
  .inspire-narrow,
  .inspire-hero-gallery,
  .inspire-split,
  .retreat-grid,
  .between-grid,
  .path-list,
  .room-grid {
    width: min(100% - 32px, 1000px);
  }

  .inspire-hero,
  .inspire-whom,
  .inspire-retreats,
  .inspire-between,
  .inspire-path,
  .inspire-room,
  .inspire-price {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .inspire-hero h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .inspire-hero p,
  .inspire-retreats .inspire-narrow p,
  .price-copy {
    font-size: 18px;
  }

  .inspire-hero-gallery img,
  .inspire-side-image img {
    height: 340px;
    min-height: 340px;
  }

  .retreat-grid,
  .between-grid,
  .strip-grid,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .retreat-grid article {
    min-height: auto;
  }

  .strip-grid img {
    height: 360px;
  }

  .location-note {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(100% - 32px, 520px);
    margin: -70px auto 70px;
  }

  .path-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .room-large {
    grid-row: auto;
  }

  .room-large img {
    min-height: 340px;
  }
}


/* TRANSCEND PAGE */

.transcend-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.68), transparent 32%),
    var(--cream);
}

.transcend-narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.transcend-hero h1,
.transcend-room h2,
.transcend-movements h2,
.transcend-happens h2,
.transcend-who h2,
.transcend-price h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -1.7px;
  line-height: 1.06;
  margin: 0;
}

/* HERO */

.transcend-hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 0;
}

.transcend-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw 80px;
}

.transcend-hero h1 {
  color: var(--cream);
  font-size: clamp(64px, 7vw, 104px);
  margin-top: 24px;
}

.transcend-hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 32px 0 0;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.7;
}

.transcend-hero-copy em {
  color: var(--gold);
  font-style: italic;
}

.transcend-hero .cta-row {
  margin-top: 34px;
}

.cta-row.left {
  justify-content: flex-start;
}

.text-link {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

.hero-stats {
  display: flex;
  gap: 64px;
  border-top: 1px solid rgba(245,240,231,0.18);
  margin-top: 72px;
  padding-top: 36px;
}

.hero-stats strong {
  display: block;
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.hero-stats span {
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
}

.transcend-hero-image img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 86px);
  object-fit: cover;
  display: block;
}

/* ROOM */

.transcend-room {
  padding: 110px 0 128px;
}

.transcend-room h2 {
  font-size: clamp(46px, 5.2vw, 70px);
}

.transcend-room .transcend-narrow > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.room-masonry {
  width: min(900px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14px;
}

.masonry-left {
  display: grid;
  gap: 14px;
}

.masonry-left .wide {
  height: 310px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
}

.masonry-right img {
  height: 100%;
  min-height: 620px;
}

.room-masonry img,
.room-bottom-grid img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.mini-grid img {
  height: 300px;
}

.room-bottom-grid {
  width: min(900px, calc(100% - 48px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.room-bottom-grid img {
  height: 330px;
}

/* MOVEMENTS */

.transcend-movements {
  padding: 126px 0 132px;
}

.transcend-movements h2 {
  color: var(--cream);
  font-size: clamp(44px, 5.3vw, 70px);
}

.transcend-movements .transcend-narrow > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.65;
}

.movement-grid {
  width: min(900px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.movement-grid article {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(245,240,231,0.16);
}

.movement-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.movement-grid article > div {
  padding: 28px 26px 34px;
}

.movement-grid span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  margin-bottom: 18px;
}

.movement-grid h3 {
  font-family: Georgia, serif;
  color: var(--cream);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 16px;
}

.movement-grid p {
  color: var(--muted-light);
  line-height: 1.62;
  margin: 0;
}

/* HAPPENS */

.transcend-happens {
  padding: 116px 0 132px;
}

.transcend-happens h2 {
  font-size: clamp(46px, 5.2vw, 68px);
}

.happens-grid {
  width: min(900px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 78px;
  align-items: center;
}

.happens-grid img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.happens-list {
  display: grid;
  gap: 26px;
}

.happens-list div {
  position: relative;
  padding-left: 34px;
}

.happens-list div::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.happens-list h3 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--text);
}

.happens-list p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

/* WHO */

.transcend-who {
  padding: 112px 0 128px;
}

.transcend-who h2 {
  font-size: clamp(46px, 5.2vw, 68px);
}

.who-grid {
  width: min(900px, calc(100% - 48px));
  margin: 66px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.who-grid article {
  background: rgba(255,250,243,0.88);
  border: 1px solid rgba(238,225,208,0.78);
  padding: 32px 30px;
  min-height: 170px;
}

.who-grid h3 {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 16px;
}

.who-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

/* MARQUEE */

.transcend-marquee {
  padding: 70px 0;
  overflow: hidden;
}

.marquee-line {
  display: flex;
  gap: 70px;
  white-space: nowrap;
  justify-content: center;
}

.marquee-line span {
  font-family: Georgia, serif;
  color: rgba(245,240,231,0.45);
  font-size: clamp(28px, 3vw, 42px);
}

.marquee-line span::after {
  content: "·";
  color: var(--gold);
  margin-left: 70px;
}

/* PRICE */

.transcend-price {
  padding: 118px 0 132px;
}

.transcend-price h2 {
  font-size: clamp(46px, 5.2vw, 68px);
}

.transcend-price h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.price-card-row {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 22px;
  width: min(520px, 100%);
}

.price-card {
  background: rgba(255,250,243,0.9);
  border: 1px solid rgba(220,205,185,0.9);
  padding: 28px 32px;
  text-align: left;
}

.price-card span {
  display: block;
  color: #687883;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  margin-bottom: 14px;
}

.price-card strong {
  display: block;
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-note {
  max-width: 680px;
  margin: 48px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.transcend-price .cta-row {
  margin-top: 34px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .transcend-hero {
    grid-template-columns: 1fr;
  }

  .transcend-hero-image img {
    min-height: 460px;
    height: 460px;
  }

  .movement-grid,
  .who-grid {
    grid-template-columns: 1fr;
  }

  .happens-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .room-masonry {
    grid-template-columns: 1fr;
  }

  .masonry-right img {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .transcend-narrow,
  .room-masonry,
  .room-bottom-grid,
  .movement-grid,
  .happens-grid,
  .who-grid {
    width: min(100% - 32px, 900px);
  }

  .transcend-hero-copy {
    padding: 82px 24px 72px;
  }

  .transcend-hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .transcend-room,
  .transcend-movements,
  .transcend-happens,
  .transcend-who,
  .transcend-price {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .room-bottom-grid,
  .mini-grid,
  .price-card-row {
    grid-template-columns: 1fr;
  }

  .masonry-left .wide,
  .mini-grid img,
  .room-bottom-grid img,
  .movement-grid img,
  .happens-grid img {
    height: 320px;
    min-height: 320px;
  }

  .marquee-line {
    justify-content: flex-start;
    padding-left: 24px;
    gap: 40px;
  }

  .marquee-line span::after {
    margin-left: 40px;
  }
}









.mobile-menu-toggle {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

.mobile-begin-button {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
  }

  .begin-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex !important;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(60, 58, 54, 0.35);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    position: relative;
    z-index: 99999;
  }

  .mobile-menu-toggle span {
    width: 19px;
    height: 1px;
    background: var(--text);
    display: block;
  }

  body.nav-open .mobile-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .mobile-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed !important;
    top: 76px;
    right: 0;
    width: min(360px, 88vw);
    height: calc(100vh - 76px);
    background: rgba(245, 240, 231, 0.98);
    border-left: 1px solid rgba(222, 210, 194, 0.8);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 26px;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    z-index: 99998;
  }

  body.nav-open .main-nav {
    transform: translateX(0) !important;
  }

  .main-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(222, 210, 194, 0.75);
    font-size: 17px;
  }

  .main-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .mobile-begin-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    padding: 16px 24px !important;
    border: 1px solid var(--text) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px !important;
  }
}

/* ================================
   MIND PAGE
================================ */

.mind-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.68), transparent 30%),
    var(--cream);
  color: var(--text);
}

.mind-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.mind-narrow {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.light-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.6), transparent 30%),
    var(--cream);
}

.dark-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.04), transparent 34%),
    linear-gradient(135deg, #252522, #2d2c29);
  color: var(--cream);
}

.mind-page .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  line-height: 1.7;
  margin: 0 0 26px;
}

.mind-page h1,
.mind-page h2,
.mind-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.mind-page h1 {
  font-size: clamp(58px, 7vw, 88px);
  line-height: 1.06;
  letter-spacing: -1.8px;
  margin: 0;
}

.mind-page h1 em,
.mind-page h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.mind-page h2 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0;
}

.mind-page h3 {
  font-size: 22px;
  line-height: 1.28;
  margin: 0;
}

.mind-page p {
  color: var(--muted);
}

.button-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  padding: 17px 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.22s ease;
}

.button-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* HERO */

.mind-hero {
  padding: 110px 0 0;
}

.mind-lead {
  max-width: 690px;
  margin: 34px auto 0;
  font-size: 18px;
  line-height: 1.78;
}

.mind-hero .button-gold {
  margin-top: 38px;
}

.mind-hero-image {
  margin-top: 76px;
  max-width: 940px;
}

.mind-hero-image img {
  width: 100%;
  height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* WRITING */

.mind-writing {
  padding: 120px 0 130px;
}

.mind-writing .mind-narrow p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.7;
}

.mind-post-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mind-post-card {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(222, 210, 194, 0.72);
  min-height: 405px;
  display: flex;
  flex-direction: column;
}

.mind-post-thumb {
  height: 150px;
  background: #e3daca;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--gold);
}

.mind-post-body {
  padding: 27px 25px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-meta {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  margin: 0 0 15px;
}

.mind-post-body h3 {
  margin-bottom: 14px;
}

.mind-post-body p:not(.post-meta) {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.mind-post-body a {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(185, 130, 69, 0.26);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

/* DARK CTA */

.mind-dark-cta {
  padding: 126px 0 128px;
}

.mind-dark-cta h2 {
  color: var(--cream);
}

.mind-dark-cta p {
  max-width: 680px;
  margin: 30px auto 0;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.7;
}

.mind-dark-cta .button-gold {
  margin-top: 38px;
}

/* OTHER PILLARS */

.mind-other-pillars {
  padding: 118px 0 128px;
}

.mind-other-pillars h2 {
  margin-bottom: 0;
}

.other-pillar-grid {
  margin-top: 68px;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.other-pillar-card {
  display: block;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(222, 210, 194, 0.72);
  padding: 34px 32px;
  transition: 0.22s ease;
}

.other-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 130, 69, 0.55);
}

.other-pillar-card span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  margin-bottom: 22px;
}

.other-pillar-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.other-pillar-card p {
  margin: 0 0 20px;
  line-height: 1.6;
  font-size: 15px;
}

.other-pillar-card small {
  color: #7890a0;
  letter-spacing: 1.5px;
  line-height: 1.6;
  font-size: 12px;
}

/* MIND RESPONSIVE */

@media (max-width: 1050px) {
  .mind-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mind-hero-image img {
    height: 460px;
  }

  .other-pillar-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .mind-container,
  .mind-narrow {
    width: min(100% - 32px, 1120px);
  }

  .mind-hero {
    padding-top: 78px;
  }

  .mind-writing,
  .mind-dark-cta,
  .mind-other-pillars {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .mind-page .eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 22px;
  }

  .mind-page h1 {
    font-size: clamp(46px, 15vw, 62px);
    letter-spacing: -1px;
  }

  .mind-page h2 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -1px;
  }

  .mind-lead,
  .mind-writing .mind-narrow p:not(.eyebrow),
  .mind-dark-cta p {
    font-size: 16px;
    line-height: 1.7;
  }

  .mind-hero-image {
    margin-top: 54px;
    width: 100%;
  }

  .mind-hero-image img {
    height: 390px;
  }

  .mind-post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mind-post-card {
    min-height: auto;
  }

  .mind-post-thumb {
    height: 135px;
  }

  .button-gold {
    width: 100%;
    max-width: 360px;
    padding: 16px 22px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .mind-page h1 {
    font-size: 44px;
  }

  .mind-page h2 {
    font-size: 38px;
  }

  .mind-hero-image img {
    height: 330px;
  }

  .mind-post-body,
  .other-pillar-card {
    padding: 26px 22px;
  }
}

/* ================================
   SHARED PILLAR PAGES
   Mind / Body / Wealth / Relationship
================================ */

.pillar-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.68), transparent 30%),
    var(--cream);
  color: var(--text);
}

.pillar-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.pillar-narrow {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.pillar-page .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  line-height: 1.7;
  margin: 0 0 26px;
}

.pillar-page h1,
.pillar-page h2,
.pillar-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.pillar-page h1 {
  font-size: clamp(58px, 7vw, 88px);
  line-height: 1.06;
  letter-spacing: -1.8px;
  margin: 0;
}

.pillar-page h1 em,
.pillar-page h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.pillar-page h2 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0;
}

.pillar-page h3 {
  font-size: 22px;
  line-height: 1.28;
  margin: 0;
}

.pillar-page p {
  color: var(--muted);
}

.button-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  padding: 17px 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.22s ease;
}

.button-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* HERO */

.pillar-hero {
  padding: 110px 0 0;
}

.pillar-lead {
  max-width: 690px;
  margin: 34px auto 0;
  font-size: 18px;
  line-height: 1.78;
}

.pillar-hero .button-gold {
  margin-top: 38px;
  margin-bottom: 58px;
}

.pillar-hero::after {
  content: "";
  display: block;
  width: 1px;
  height: 68px;
  background: rgba(185, 130, 69, 0.45);
  margin: 26px auto 0;
}

.pillar-hero-image {
  margin-top: 0;
  max-width: 940px;
}

.pillar-hero-image img {
  width: 100%;
  height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* WRITING */

.pillar-writing {
  padding: 120px 0 130px;
}

.pillar-writing .pillar-narrow p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.7;
}

.pillar-post-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-post-card {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(222, 210, 194, 0.72);
  min-height: 405px;
  display: flex;
  flex-direction: column;
}

.pillar-post-thumb {
  height: 150px;
  background: #e3daca;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--gold);
}

.pillar-post-body {
  padding: 27px 25px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-meta {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  margin: 0 0 15px;
}

.pillar-post-body h3 {
  margin-bottom: 14px;
}

.pillar-post-body p:not(.post-meta) {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.pillar-post-body a {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(185, 130, 69, 0.26);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

/* DARK CTA */

.pillar-dark-cta {
  padding: 126px 0 128px;
}

.pillar-dark-cta h2 {
  color: var(--cream);
}

.pillar-dark-cta p {
  max-width: 680px;
  margin: 30px auto 0;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.7;
}

.pillar-dark-cta .button-gold {
  margin-top: 38px;
}

/* OTHER PILLARS */

.pillar-other {
  padding: 118px 0 128px;
}

.other-pillar-grid {
  margin-top: 68px;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.other-pillar-card {
  display: block;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(222, 210, 194, 0.72);
  padding: 34px 32px;
  transition: 0.22s ease;
}

.other-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 130, 69, 0.55);
}

.other-pillar-card span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  margin-bottom: 22px;
}

.other-pillar-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.other-pillar-card p {
  margin: 0 0 20px;
  line-height: 1.6;
  font-size: 15px;
}

.other-pillar-card small {
  color: #7890a0;
  letter-spacing: 1.5px;
  line-height: 1.6;
  font-size: 12px;
}

/* BODY PAGE SPECIFIC */

.body-page .pillar-hero-image img {
  object-position: center 42%;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .pillar-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-hero-image img {
    height: 460px;
  }

  .other-pillar-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .pillar-container,
  .pillar-narrow {
    width: min(100% - 32px, 1120px);
  }

  .pillar-hero {
    padding-top: 78px;
  }

  .pillar-writing,
  .pillar-dark-cta,
  .pillar-other {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .pillar-page .eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 22px;
  }

  .pillar-page h1 {
    font-size: clamp(46px, 15vw, 62px);
    letter-spacing: -1px;
  }

  .pillar-page h2 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -1px;
  }

  .pillar-lead,
  .pillar-writing .pillar-narrow p:not(.eyebrow),
  .pillar-dark-cta p {
    font-size: 16px;
    line-height: 1.7;
  }

  .pillar-hero-image {
    margin-top: 0;
    width: 100%;
  }

  .pillar-hero-image img {
    height: 390px;
  }

  .pillar-post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pillar-post-card {
    min-height: auto;
  }

  .pillar-post-thumb {
    height: 135px;
  }

  .button-gold {
    width: 100%;
    max-width: 360px;
    padding: 16px 22px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .pillar-page h1 {
    font-size: 44px;
  }

  .pillar-page h2 {
    font-size: 38px;
  }

  .pillar-hero-image img {
    height: 330px;
  }

  .pillar-post-body,
  .other-pillar-card {
    padding: 26px 22px;
  }
}
/* WEALTH PAGE SPECIFIC */

.wealth-page .pillar-hero-image img {
  object-position: center 45%;
}

/* RELATIONSHIP PAGE SPECIFIC */

.relationship-page .pillar-hero-image img {
  object-position: center 45%;
}

/* MEMBERSHIP PAGE */

.membership-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.68), transparent 30%),
    var(--cream);
}

.membership-narrow {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.membership-section {
  padding: 116px 0;
}

.membership-hero {
  padding: 112px 0 96px;
  text-align: center;
}

.membership-hero h1,
.membership-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin: 0;
}

.membership-hero h1 {
  font-size: clamp(64px, 7vw, 96px);
}

.membership-hero h1 em,
.membership-section h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.membership-lead,
.membership-section .membership-narrow > p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  margin: 32px auto 0;
}

.membership-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.membership-hero .vertical-line {
  width: 1px;
  height: 58px;
  background: rgba(185, 130, 69, 0.42);
  margin: 28px auto 0;
}

.membership-image-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.membership-image-wrap img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* LIGHT SECTIONS */

.light-section {
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,0.7), transparent 28%),
    var(--cream);
}

.membership-section h2 {
  font-size: clamp(44px, 5.2vw, 68px);
}

.membership-card-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  gap: 24px;
}

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

.membership-card-grid article,
.membership-day-grid article {
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(238, 225, 208, 0.8);
  padding: 32px 30px;
  min-height: 250px;
}

.membership-card-grid span,
.membership-day-grid span,
.rhythm-list span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 20px;
}

.membership-card-grid h3,
.membership-day-grid h3,
.rhythm-list h3,
.membership-anchor-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 14px;
}

.membership-card-grid p,
.membership-day-grid p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  margin: 0 0 24px;
}

.membership-card-grid a {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  border-bottom: 1px solid rgba(185, 130, 69, 0.55);
  padding-bottom: 8px;
}

/* DARK SECTION */

.dark-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.06), transparent 28%),
    var(--dark);
  color: var(--cream);
}

.dark-section .eyebrow {
  color: var(--gold);
}

.dark-section h2 {
  color: var(--cream);
}

.dark-section .membership-narrow > p:not(.eyebrow) {
  color: var(--muted-light);
}

.membership-anchor-grid {
  width: min(1020px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.membership-anchor-grid article {
  border: 1px solid rgba(245,240,231,0.16);
  background: rgba(255,255,255,0.035);
  padding: 34px 32px;
  min-height: 250px;
}

.membership-anchor-grid article:nth-child(4) {
  grid-column: 1 / 2;
}

.membership-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  font-size: 18px;
}

.membership-anchor-grid h3 {
  color: var(--cream);
  font-size: 22px;
}

.membership-anchor-grid p {
  color: var(--muted-light);
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

/* RHYTHM LIST */

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

.rhythm-list {
  width: min(760px, calc(100% - 48px));
  margin: 64px auto 0;
}

.rhythm-list article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid rgba(43, 41, 37, 0.16);
}

.rhythm-list article:last-child {
  border-bottom: 1px solid rgba(43, 41, 37, 0.16);
}

.rhythm-list span {
  font-family: Georgia, serif;
  font-size: 26px;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

.rhythm-list h3 {
  font-size: 22px;
}

.rhythm-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* INVESTMENT */

.membership-investment {
  padding: 132px 0;
}

.membership-investment h2 {
  font-size: clamp(46px, 5vw, 66px);
}

.membership-investment h2 span {
  font-family: Inter, Arial, sans-serif;
  font-size: 28px;
  color: var(--muted-light);
  letter-spacing: 0;
}

.membership-investment .button-gold {
  margin-top: 36px;
}

/* TRANSCEND */

.membership-transcend {
  background: var(--cream);
}

.membership-transcend h2 {
  font-size: clamp(46px, 5.4vw, 70px);
}

.membership-event-images {
  width: min(1040px, calc(100% - 48px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 16px;
}

.membership-event-images img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.membership-day-grid {
  width: min(980px, calc(100% - 48px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.membership-day-grid article {
  min-height: 190px;
}

.membership-note {
  width: min(940px, calc(100% - 48px));
  margin: 48px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .membership-card-grid.four,
  .membership-anchor-grid,
  .membership-day-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-anchor-grid article:nth-child(4) {
    grid-column: auto;
  }

  .membership-event-images {
    grid-template-columns: 1fr;
  }

  .membership-event-images img {
    height: 420px;
  }
}

@media (max-width: 700px) {
  .membership-narrow,
  .membership-image-wrap,
  .membership-card-grid,
  .membership-anchor-grid,
  .rhythm-list,
  .membership-event-images,
  .membership-day-grid,
  .membership-note {
    width: min(100% - 32px, 1120px);
  }

  .membership-hero {
    padding: 78px 0 70px;
  }

  .membership-section {
    padding: 78px 0;
  }

  .membership-hero h1 {
    font-size: clamp(54px, 17vw, 74px);
  }

  .membership-section h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .membership-lead,
  .membership-section .membership-narrow > p:not(.eyebrow) {
    font-size: 17px;
  }

  .membership-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .membership-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .membership-image-wrap img {
    height: 340px;
  }

  .membership-card-grid.four,
  .membership-anchor-grid,
  .membership-day-grid {
    grid-template-columns: 1fr;
  }

  .membership-card-grid {
    margin-top: 46px;
  }

  .rhythm-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .membership-event-images img {
    height: 330px;
  }

  .membership-investment h2 span {
    display: block;
    margin-top: 8px;
    font-size: 20px;
  }
}