/* Fonts */
@font-face {
  font-family: 'Alike';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/alike-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Alike';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/alike-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand palette */
  --void:        #181818;  /* dark */
  --deep:        #282828;  /* grey */
  --surface:     #282828;
  --burg:        #8e1b3e;  /* burgundy */
  --burg-mid:    #8e1b3e;
  --burg-hover:  #6c1c34;  /* hover */
  --purple:      #584D66;  /* body copy */
  --bg:          #FFFFFF;  /* page surface */
  --bg-alt:      #F6F7F8;
  --cream:       #F3F1F6;  /* subtle tint plates inside white surfaces */  
  --white:       #FFFFFF;  
  --text:        #181818;
  --text-body:   #584D66;  
  --text-soft:   #4B4F58;  
  --border:      rgba(75,79,88,0.14);
  --border-burg: rgba(171,15,62,0.22);
  --container:   1240px;   
}

::selection { background-color: var(--burg-hover); color: var(--white); }
a { color: var(--void); transition: color 0.3s; }
a:hover, a:focus { color: var(--burg-hover); }

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Alike', serif;
  font-weight: normal;
  color: var(--void);
  line-height: 1.2;
}
h1 { line-height: 1.1; }

em { font-style: normal; color: var(--burg); }

/* Nav */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
}
.nav-backdrop { display: none; }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 1.25rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0;
  transition: transform 0.3s ease;
}
nav.nav--hidden { transform: translateY(-100%); }

.nav-mark {
  font-family: 'Alike', serif;
  font-size: 1.5rem;
  color: var(--burg-hover);
  letter-spacing: 0.01em;
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-mark-logo {
  display: none;
  height: 36px;
  width: auto;
}
.nav-mark-text { display: inline; }

.nav-menu {
  display: none;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--burg-hover);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.nav-menu a:hover { color: var(--burg); }
.nav-menu a.nav-btn,
.nav-menu a.nav-btn:hover { color: var(--white); }
.nav-menu a[aria-current="page"] {
  color: var(--burg);
  border-bottom: 1.5px solid var(--burg);
  padding-bottom: 1px;
}

.nav-aside {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.nav-login {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burg-hover);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-login:hover { color: var(--burg); }

.nav-btn {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--burg);
  background: var(--burg);
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s;
}
.nav-btn:hover,
.nav-btn:focus,
.nav-btn:active { background: var(--burg-hover); border-color: var(--burg-hover); color: var(--white); }

.nav-burger {
  display: inline-block;
  cursor: pointer;
  width: 26px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.nav-burger span,
.nav-burger::before,
.nav-burger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--burg-hover);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, top 0.3s, bottom 0.3s;
}
.nav-burger::before { top: 0; }
.nav-burger span { top: 50%; margin-top: -1px; }
.nav-burger::after { bottom: 0; }
.nav-toggle:checked ~ nav .nav-burger::before { top: 9px; transform: rotate(45deg); }
.nav-toggle:checked ~ nav .nav-burger span { opacity: 0; }
.nav-toggle:checked ~ nav .nav-burger::after { bottom: 9px; transform: rotate(-45deg); }

.nav-cta { display: none; }

@media (max-width: 767px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(24,24,24,0.48);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-toggle:checked ~ .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(300px, 82vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 84px 0 2.5rem;
    gap: 0;
    box-shadow: -8px 0 48px rgba(24,24,24,0.18);
    transform: translateX(110%);
    visibility: hidden;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0.42s;
    display: flex;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-toggle:checked ~ nav .nav-menu {
    transform: none;
    visibility: visible;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0s;
  }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-menu li.nav-cta { border-bottom: 0; }
  .nav-menu a:not(.nav-btn) {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    text-align: left;
  }
  .nav-menu a { font-size: 1.15rem; }
  .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0 1.5rem;
    list-style: none;
  }
  .nav-cta .nav-login {
    text-align: center;
    padding: 0.65rem 0;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }
  .nav-cta .nav-btn {
    width: 100%;
    text-align: center;
    padding: 1.1rem 1.25rem;
    font-size: 0.88rem;
    color: var(--white);
  }
}

/* Hero */
.hero {
  background: var(--white);
  padding: 2.5rem 0 0;
  overflow: hidden;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 2rem;
}

.hero-text {
  text-align: center;
  padding: 1rem 0 0;
}

.hero-mandala {
  width: 95px;
  height: auto;
  margin: 0 auto 1.1rem;
  display: block;
}

.hero-name {
  font-family: 'Alike', serif;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.05;
  color: var(--burg-hover);
  margin-bottom: 1rem;
  letter-spacing: 0.005em;
}

.hero-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--burg);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin: 0 auto 2rem;
  max-width: 520px;
}
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0 auto;
  max-width: 360px;
}

.hero-tagline {
  font-family: 'Alike', serif;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--burg);
  margin-top: 1.75rem;
}

.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: center;
  width: 100%;
  max-width: 420px;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn-primary {
  display: block; text-align: center;
  background: var(--burg); color: var(--white);
  padding: 1rem 1.25rem; font-size: 0.81rem; line-height: 1;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  margin-bottom: 0.75rem; border-radius: 4px; border: 1px solid var(--burg);
  transition: background 0.25s, border-color 0.25s;
}
.btn-primary:hover,
.btn-primary:focus { background: var(--burg-hover); border-color: var(--burg-hover); color: var(--white); }

.btn-bright {
  display: block; text-align: center;
  background: #c4354f; color: var(--white);
  padding: 1rem 1.25rem; font-size: 0.81rem; line-height: 1;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  margin-bottom: 0.75rem; border-radius: 4px; border: 1px solid #c4354f;
  transition: background 0.25s, border-color 0.25s;
}
.btn-bright:hover,
.btn-bright:focus { background: #a62a41; border-color: #a62a41; color: var(--white); }

.btn-white {
  display: block; text-align: center;
  background: var(--white); color: var(--void);
  padding: 1rem 1.25rem; font-size: 0.81rem; line-height: 1;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  margin-bottom: 0.75rem; border-radius: 4px; border: 1px solid var(--white);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-white:hover,
.btn-white:focus { background: #ffedf2; border-color: #ffedf2; color: var(--void); }

.btn-outline {
  display: block; text-align: center;
  background: transparent; color: var(--burg);
  padding: 1rem 1.25rem; font-size: 0.81rem; line-height: 1;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  margin-bottom: 0.75rem; border-radius: 4px; border: 1px solid var(--burg);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-outline:hover,
.btn-outline:focus { background: rgba(142,27,62,0.07); border-color: var(--burg-hover); color: var(--burg-hover); }

.btn-chip {
  display: inline-block; text-align: center;
  background: transparent; color: var(--text-body);
  padding: 0.4rem 0.9rem; font-size: 0.72rem; line-height: 1;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  margin-bottom: 0; border-radius: 4px; border: 1px solid rgba(88,77,102,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.btn-chip:hover,
.btn-chip:focus { color: var(--burg); border-color: rgba(142,27,62,0.45); }

.btn-secondary {
  display: block; text-align: center;
  background: var(--cream); color: var(--void);
  border: 1px solid var(--cream);
  padding: 1rem 1.25rem; font-size: 0.81rem; line-height: 1;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  border-radius: 4px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background: rgba(142,27,62,0.07);
  border-color: rgba(142,27,62,0.30);
  color: var(--burg);
}

/* Outline on dark sections */
.section-dark .btn-outline,
.circle-hero-cta .btn-outline {
  border-color: rgba(243,241,246,0.40);
  color: var(--white);
}
.section-dark .btn-outline:hover,
.section-dark .btn-outline:focus,
.circle-hero-cta .btn-outline:hover,
.circle-hero-cta .btn-outline:focus {
  background: rgba(243,241,246,0.08);
  border-color: rgba(243,241,246,0.65);
  color: var(--white);
}

/* Page logo mark */
.page-mark {
  width: 90px; height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}
.page-mark-white { filter: brightness(0) invert(1); }

/* Cred bar */
.cred-bar {
  background: var(--void);
  border-bottom: 1px solid rgba(243,241,246,0.06);
  padding: 1.1rem 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cred-bar::-webkit-scrollbar { display: none; }

.cred-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.cred-label {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(243,241,246,0.55);
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

.cred-items {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cred-pill {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(243,241,246,0.78);
  flex-shrink: 0;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(243,241,246,0.18);
  border-radius: 4px;
  font-weight: 500;
}

a.cred-pill-link {
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
a.cred-pill-link:hover {
  color: rgba(243,241,246,1);
  border-color: rgba(243,241,246,0.45);
}

/* Sections */
.section { padding: 3rem 1.5rem; }
.section-light { background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--void); color: rgba(243,241,246,0.78); }
.section-dark .eyebrow { color: rgba(243,241,246,0.85); }
.section-dark .section-title { color: var(--bg); }
.section-dark .section-body { color: rgba(243,241,246,0.78); }
.section-dark .section-body strong { color: rgba(243,241,246,1); }
.section-dark em,
.section-dark h1 em,
.section-dark h2 em,
.section-dark h3 em,
.newsletter em,
.newsletter h1 em,
.newsletter h2 em,
.newsletter-title em { color: #e33d5d; }

/* Video */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--deep);
  border: 1px solid rgba(243,241,246,0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    radial-gradient(ellipse at center, rgba(108,28,52,0.18) 0%, transparent 65%),
    var(--deep);
  text-align: center;
  padding: 1rem;
}

.video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--burg);
  background: rgba(171,15,62,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  padding-left: 4px;
  transition: transform 0.3s, background 0.3s;
}
.video-frame:hover .video-play {
  transform: scale(1.05);
  background: rgba(171,15,62,0.32);
}

.video-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  font-weight: 600;
}
.video-sub {
  font-family: 'Alike', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(243,241,246,0.4);
}

.video-facade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    radial-gradient(ellipse at 35% 45%, rgba(227,61,93,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 65%, rgba(88,77,102,0.15) 0%, transparent 55%),
    linear-gradient(145deg, #1e1218 0%, #0e0c18 100%);
  cursor: pointer;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(227,61,93,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-left: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.video-play-btn:hover { background: #e33d5d; transform: scale(1.07); }
.video-facade-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(243,241,246,0.4);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Alike', serif;
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 1.2;
  color: var(--void);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--bg); }
h2.section-title.light { margin-bottom: 0; }

/* MSS intro spacing overrides */
#mss-intro > .eyebrow { margin-bottom: 1.25rem; }
#mss-intro > .section-title { margin-bottom: 2rem; }
#mss-intro > .video-frame { margin-bottom: 2.5rem; }
.section-title em { font-style: normal; color: var(--burg); }

.section-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.section-body.light { color: rgba(243,241,246,0.78); }
.section-body strong { color: var(--text); font-weight: 600; }
.section-body.light strong { color: var(--bg); }

/* Lead magnet */
.lm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.lm-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--deep), var(--void));
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(24,24,24,0.12);
}
.lm-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lm-photo .placeholder-stamp {
  font-family: 'Alike', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(243,241,246,0.55);
  text-align: center;
  padding: 1rem;
}
.lm-photo .placeholder-stamp small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  font-weight: 600;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .lm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .lm-grid { gap: 2.5rem; }
}

.lm-card {
  padding: 2rem 1.75rem;
}

.lm-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  background: transparent;
  border: 1px solid var(--burg);
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-radius: 4px;
}

.lm-card h3 {
  font-family: 'Alike', serif;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.25;
  color: var(--void);
  margin-bottom: 0.75rem;
}

.lm-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.form-field {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.95rem 1.1rem;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  width: 100%;
  outline: none;
  margin-bottom: 0.6rem;
  transition: border-color 0.3s;
}
.form-field::placeholder { color: rgba(75,79,88,0.38) !important; }
.form-field:focus { border-color: var(--burg); }

.form-btn {
  width: 100%;
  background: var(--burg);
  color: var(--white);
  border: 1px solid var(--burg);
  border-radius: 4px;
  padding: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.form-btn:hover { background: var(--burg-hover); border-color: var(--burg-hover); }

/* Divider */
.divider {
  text-align: center;
  padding: 0.5rem 1.5rem 1rem;
  color: rgba(108,28,52,0.45);
  font-size: 0.7rem;
  letter-spacing: 1rem;
  background: var(--bg);
}
.divider.dark { background: var(--void); color: rgba(171,15,62,0.3); }

/* Modal · meditation delivery */
.modal-overlay[hidden] { display: none; }
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(24,24,24,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modal-fade 0.25s ease;
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: modal-rise 0.35s ease;
}
@keyframes modal-rise { from { transform: translateY(12px); } to { transform: translateY(0); } }
.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: transparent;
  border: 0;
  width: 32px;
  height: 32px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-soft);
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--burg); background: var(--cream); }
.modal-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burg);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.modal-title {
  font-family: 'Alike', serif;
  font-size: 1.65rem;
  color: var(--void);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.modal-title em { font-style: normal; color: var(--burg); }
.modal-body {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.modal-form .form-field { margin-bottom: 0.6rem; }
@media (min-width: 768px) {
  .modal-card { padding: 2.5rem 2.25rem; }
  .modal-title { font-size: 1.85rem; }
}

/* Circle pillars · home page */
#circle > .section-title { text-align: center; }
.circle-intro-heading em { font-style: normal; color: var(--burg); }
.circle-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2.5rem 0 0;
}

.circle-intro-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(24,24,24,0.12);
}
.circle-intro-photo img { width: 100%; height: auto; display: block; }
.circle-intro-photo .placeholder-stamp {
  font-family: 'Alike', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(243,241,246,0.55);
  text-align: center;
  padding: 1rem;
}
.circle-intro-photo .placeholder-stamp small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  font-weight: 600;
  margin-top: 0.4rem;
}

.circle-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.circle-intro-heading {
  font-family: 'Alike', serif;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--void);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.circle-intro-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-body);
}

@media (min-width: 640px) {
  .circle-intro {
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
  }
  .circle-intro-heading { font-size: 1.6rem; }
  .circle-intro-text p { font-size: 1rem; }
}

.circle-included {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burg);
  margin: 2.5rem 0 0;
}

.circle-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0 0;
}
.circle-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: 0 4px 24px rgba(24,24,24,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.circle-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(24,24,24,0.08);
  border-color: var(--border-burg);
}
.circle-pillar h3 {
  font-family: 'Alike', serif;
  font-size: 1.2rem;
  color: var(--void);
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.circle-pillar p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .circle-pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
  .circle-pillar { padding: 1.75rem; }
  .circle-pillar h3 { font-size: 1.3rem; }
}

/* Circle stats */
.circle-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.circle-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1 1 8rem;
}
.circle-stat strong {
  font-family: 'Alike', serif;
  font-size: 1.4rem;
  color: var(--burg);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.circle-stat span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
@media (min-width: 768px) {
  .circle-stats { gap: 0 2.5rem; padding-top: 1.5rem; margin-top: 1.75rem; }
  .circle-stat strong { font-size: 1.6rem; }
}

/* Included course callout (shared by index + circle) */
.included-course {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border-burg);
  border-radius: 10px;
  padding: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}
.included-course-media {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--deep);
}
.included-course-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.included-course-body { min-width: 0; }
.included-course-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burg);
  margin-bottom: 0.55rem;
}
.included-course-body h3 {
  font-family: 'Alike', serif;
  font-size: 1.2rem;
  color: var(--void);
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.included-course-body h3 em { font-style: normal; color: var(--burg); }
.included-course-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}
@media (min-width: 768px) {
  .included-course {
    grid-template-columns: 4fr 6fr;
    gap: 1.75rem;
    padding: 1.5rem 1.75rem;
  }
  .included-course-body h3 { font-size: 1.3rem; }
}
@media (min-width: 1024px) {
  .included-course { padding: 1.75rem 2rem; }
  .included-course-body h3 { font-size: 1.4rem; }
  .included-course-body p { font-size: 0.95rem; }
}

/* Testimonial modal (shared across circle / mystery-school / readings) */
.testimonial-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 1.5rem;
}
.testimonial-modal[hidden] { display: none; }
.testimonial-modal-card {
  background: rgba(40,40,40,0.94);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(243,241,246,0.15);
  border-radius: 12px;
  padding: 2.5rem 1.75rem 2rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  text-align: left;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
}
.testimonial-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(243,241,246,0.55);
  cursor: pointer;
  padding: 0.45rem 0.65rem;
  transition: color 0.2s;
}
.testimonial-modal-close:hover,
.testimonial-modal-close:focus-visible { color: #e33d5d; }
.testimonial-modal-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243,241,246,0.55);
  border: 1px solid rgba(243,241,246,0.2);
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.testimonial-modal-tag[hidden] { display: none; }
.testimonial-modal-quote {
  font-family: 'Alike', serif;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(243,241,246,0.92);
  font-style: italic;
  margin: 0 0 1.25rem;
}
.testimonial-modal-quote::before { content: '\201C'; }
.testimonial-modal-quote::after  { content: '\201D'; }
.testimonial-modal-quote strong {
  color: var(--bg);
  font-weight: 600;
  font-style: italic;
}
.testimonial-modal-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e33d5d;
}
@media (min-width: 640px) {
  .testimonial-modal-card { padding: 2.75rem 2.25rem 2.25rem; }
  .testimonial-modal-quote { font-size: 1.05rem; }
}

/* Read-more button shared (each page can override color/scope) */
.testimonial-readmore {
  background: none;
  border: 0;
  padding: 0.4rem 0;
  margin-top: 0.45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,241,246,0.6);
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s;
}
.testimonial-readmore[hidden] { display: none; }
.testimonial-readmore:hover,
.testimonial-readmore:focus-visible { color: #e33d5d; }
.testimonial-readmore::after { content: ' →'; }

/* Circle pull quotes */
.circle-pulls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.25rem 0 0;
}
.circle-pull {
  background: var(--cream);
  border-radius: 6px;
  padding: 1.1rem 1.25rem;
  margin: 0;
}
.circle-pull p {
  font-family: 'Alike', serif;
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--void);
  margin: 0 0 0.5rem;
}
.circle-pull p strong {
  color: var(--burg-hover);
  font-weight: 600;
  font-style: italic;
}
.circle-pull cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burg);
  font-style: normal;
}
@media (min-width: 768px) {
  .circle-pulls { grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.75rem; }
  .circle-pull { padding: 1.35rem 1.5rem; }
  .circle-pull p { font-size: 0.95rem; }
}

/* Mystery School teaser */
#mystery-school { text-align: center; }
.ms-banner {
  position: relative;
  background-image: url('images/mystery-school/mystery-school-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 0;
}
.ms-overlay {
  position: absolute;
  inset: 0;
  background: rgba(93, 2, 36, 0.6);
  pointer-events: none;
}
.ms-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}
.ms-inner {
  max-width: 540px;
  margin: 0 auto;
}
.ms-content .eyebrow { color: rgba(243,241,246,0.7); }
.ms-content .section-title,
.ms-content .section-body { color: var(--white); }
.ms-content .section-title em { color: var(--white); font-style: italic; }
.ms-content .section-body { margin-bottom: 2rem; }
.ms-content .btn-primary {
  display: inline-block;
  margin-bottom: 0;
  background: var(--white);
  border-color: var(--white);
  color: var(--burg-hover);
}
.ms-content .btn-primary:hover,
.ms-content .btn-primary:focus {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--burg-hover);
}
@media (min-width: 768px) { .ms-content { padding: 3rem 2.5rem; } }

/* About CTA on home */
.about-cta-btn { max-width: 300px; margin-top: 1rem; }

/* Events */
.section-dark .events-grid { margin-top: 1rem; }
.section-dark + .events-grid,
.video-frame + .events-grid { margin-top: 2rem; }
.events-grid + .btn-primary { margin-top: 4.5rem; }
.section-dark .btn-primary {
  margin-top: 0;
  background: #c4354f;
  border-color: #c4354f;
}
.section-dark .btn-primary:hover,
.section-dark .btn-primary:focus {
  background: #a62a41;
  border-color: #a62a41;
  color: var(--white);
}

.newsletter .form-btn {
  background: #e33d5d;
  border-color: #e33d5d;
}
.newsletter .form-btn:hover,
.newsletter .form-btn:focus {
  background: #c4354f;
  border-color: #c4354f;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: default;
}
.event-card:hover { color: inherit; }
.section-dark .event-card { box-shadow: 0 12px 32px rgba(0,0,0,0.28); }

/* Image plate */
.event-card-media {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(171,15,62,0.32), transparent 55%),
    linear-gradient(135deg, var(--deep), var(--void));
  overflow: hidden;
}
.event-card-media img {
  display: block;
  width: 100%;
  height: auto;
}
.event-card-stamp {
  font-family: 'Alike', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(243,241,246,0.92);
  text-align: center;
  padding: 0 1rem;
  letter-spacing: 0.01em;
}

.event-card[data-event="channel-panel"] .event-card-media {
  background:
    radial-gradient(circle at 70% 25%, rgba(171,15,62,0.4), transparent 60%),
    linear-gradient(135deg, var(--deep), var(--void));
}
.event-card[data-event="omega"] .event-card-media {
  background:
    radial-gradient(circle at 25% 75%, rgba(108,28,52,0.45), transparent 60%),
    linear-gradient(135deg, var(--void), var(--deep));
}
.event-card[data-event="art-of-living"] .event-card-media {
  background:
    radial-gradient(circle at 50% 30%, rgba(143,27,61,0.4), transparent 65%),
    linear-gradient(180deg, var(--deep), var(--void));
}

.event-card-body {
  padding: 0.9rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.event-card-meta .event-date { margin-bottom: 0; }
.event-badge {
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--burg);
  background: rgba(171,15,62,0.08);
  border: 1px solid var(--border-burg);
  padding: 0.22rem 0.55rem;
  border-radius: 99px;
  font-weight: 600;
  line-height: 1.2;
}

.event-date {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-title {
  font-family: 'Alike', serif;
  font-size: 1.15rem;
  color: var(--void);
  margin-bottom: 0.2rem;
  font-weight: normal;
  line-height: 1.25;
}

.event-sub {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.55rem;
  line-height: 1.5;
}
.event-urgency {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e33d5d;
}
.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.55rem;
}

.event-btn {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burg);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--burg);
  border-radius: 4px;
  padding: 0.55rem 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.event-btn:hover { background: var(--burg); color: var(--white); border-color: var(--burg); }

/* Journey */
.journey-steps { margin: 2rem 0; }

.journey-step {
  display: flex;
  gap: 1rem;
  padding-bottom: 2rem;
}
.journey-step.last { padding-bottom: 0; }

.journey-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.journey-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--burg);
  background: rgba(108,28,52,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: var(--burg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  flex-shrink: 0;
}

.journey-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(108,28,52,0.35), rgba(88,77,102,0.08));
  margin-top: 0.5rem;
  min-height: 1.5rem;
}

.journey-body { padding-top: 0.3rem; }

.journey-title {
  font-family: 'Alike', serif;
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--void);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.journey-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.journey-quote {
  background: var(--white);
  border-left: 3px solid var(--burg);
  padding: 1.5rem 1.5rem;
  margin-top: 2rem;
  border-radius: 0 4px 4px 0;
}

.journey-quote p {
  font-family: 'Alike', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--void);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.journey-quote span {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  font-weight: 600;
}

/* Course — homepage two-col */
.course-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.course-2col-text {
  text-align: left;
}
.course-2col-text .eyebrow {
  text-align: left;
  margin-bottom: 0.75rem;
}

.course-2col-title {
  font-family: 'Alike', serif;
  font-size: 1.9rem;
  font-weight: normal;
  line-height: 1.2;
  color: var(--void);
  margin-bottom: 1rem;
}
.course-2col-title em { font-style: normal; color: var(--burg); }

.course-2col-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.75rem;
}

.course-2col-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--deep), var(--void));
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(24,24,24,0.12);
}
.course-2col-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.course-2col-photo .placeholder-stamp {
  font-family: 'Alike', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(243,241,246,0.55);
  text-align: center;
  padding: 1rem;
}
.course-2col-photo .placeholder-stamp small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  font-weight: 600;
  margin-top: 0.4rem;
}

@media (min-width: 640px) {
  .course-2col {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .course-2col-title { font-size: 2.2rem; }
  .course-2col-body { font-size: 1rem; }
}

/* Course */
.course-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 4px 24px rgba(24,24,24,0.05);
}

.course-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--purple);
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-radius: 4px;
}

.course-block h2 {
  font-family: 'Alike', serif;
  font-size: 1.9rem;
  font-weight: normal;
  line-height: 1.2;
  color: var(--void);
  margin-bottom: 0.85rem;
}
.course-block h2 em { font-style: normal; color: var(--burg); }

.course-block > p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.course-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.course-stat {
  flex: 1;
  padding: 1rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--cream);
}
.course-stat:last-child { border-right: none; }
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.stat-val {
  font-family: 'Alike', serif;
  font-size: 1.2rem;
  color: var(--void);
}

.week-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.week-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 0.85rem;
}
.week-num {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.week-title {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* About */
.about-media {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 1.5rem;
}
.about-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 640px) {
  .about-media { max-width: 360px; }
}
@media (min-width: 768px) {
  .about-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 2.5rem;
    align-items: start;
  }
  .about-media {
    max-width: none;
    margin: 0;
  }
  .about-img-wrap {
    aspect-ratio: 4/5;
  }
}

.about-stat {
  background: var(--void);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.about-stat-num {
  font-family: 'Alike', serif;
  font-size: 2.2rem;
  color: var(--burg);
  font-weight: normal;
  line-height: 1;
  flex-shrink: 0;
}
.about-stat-label {
  font-size: 0.85rem;
  color: rgba(243,241,246,0.78);
  line-height: 1.55;
}

.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.pill {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  font-weight: 500;
}

/* Newsletter */
.newsletter {
  position: relative;
  background: var(--void);
  padding: 4.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.newsletter::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(142,27,62,0.28), transparent 60%),
    linear-gradient(to bottom, rgba(24,24,24,0.72), rgba(24,24,24,0.94));
  z-index: 1;
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: 'Alike', serif;
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 0.85rem;
}

.newsletter-body {
  font-size: 0.92rem;
  color: rgba(243,241,246,0.72);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-embed { width: 100%; }

.nl-field {
  background: rgba(255,255,255,0.07);
  border-color: rgba(243,241,246,0.18);
  color: var(--bg);
  text-align: center;
}
.nl-field::placeholder { color: rgba(243,241,246,0.45); }
.nl-field:focus { border-color: rgba(142,27,62,0.55); outline: none; }

/* Footer */
footer {
  padding: 3rem 1.5rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo-mark {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer-logo-mark img {
  width: 56px;
  height: auto;
  display: block;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg-hover);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--burg); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 2rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--burg-hover);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.footer-social a:hover {
  color: var(--white);
  background: var(--burg);
  border-color: var(--burg);
}
.footer-social svg { width: 18px; height: 18px; display: block; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: var(--text-soft);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-legal a {
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--burg); }

@media (min-width: 768px) {
  footer { padding: 3.5rem 2.5rem 2.25rem; }
  .footer-logo-mark img { width: 64px; }
  .footer-nav { gap: 1rem 1.75rem; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1.75rem;
  }
}

.about-grid { display: block; }
.events-grid { display: block; margin-bottom: 20px; }

/* < 768px */
@media (max-width: 767px) {
  /* Nav (mobile): logo left, hamburger right */
  nav {
    justify-content: space-between;
    padding: 0 1.25rem;
    gap: 0;
  }
  .nav-mark { display: inline-flex; }
  .nav-mark-text { display: none; }
  .nav-mark-logo { display: block; }
  .nav-aside { display: none; }
  .nav-burger { display: inline-block; }

  /* Hero (mobile): portrait full-bleed, text at top, buttons at bottom of picture */
  .hero { padding: 0; }
  .hero-wrap {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }
  .hero-photo {
    grid-column: 1; grid-row: 1;
    position: relative;
    width: 100%; max-width: none;
  }
  .hero-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      rgba(10,4,7,0.90) 0%,
      rgba(10,4,7,0.38) 36%,
      rgba(10,4,7,0.32) 58%,
      rgba(10,4,7,0.88) 100%
    );
    pointer-events: none;
  }
  .hero-photo img {
    width: 100%; height: auto; display: block;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-text {
    grid-column: 1; grid-row: 1;
    z-index: 1; align-self: start;
    text-align: left;
    padding: 1em 1.25rem;
  }
  .hero-mandala { width: 72px; margin: 0 auto 0.75rem; filter: brightness(0) invert(1); }
  .hero-name { text-align: center; }
  .hero-role { text-align: center; }
  .hero-name { color: var(--white); font-size: 2.6rem; margin-bottom: 0.4rem; }
  .hero-role { color: rgba(243,241,246,0.82); margin-bottom: 0; }
  .hero-desc { display: none; }
  .hero-tagline { display: none; }
  .hero-cta {
    grid-column: 1; grid-row: 1;
    z-index: 1; align-self: end;
    display: flex; flex-direction: column;
    gap: 0.6rem;
    padding: 0 1.25rem 1.5rem;
    max-width: none; margin: 0;
  }
  .hero-cta .btn-outline {
    border-color: rgba(243,241,246,0.40);
    color: var(--white);
  }
  .hero-cta .btn-outline:hover,
  .hero-cta .btn-outline:focus {
    background: rgba(243,241,246,0.08);
    border-color: rgba(243,241,246,0.65);
    color: var(--white);
  }

  .nav-menu { top: 70px; }
  .footer-social a { width: 44px; height: 44px; }

  /* Section spacing */
  .section { padding: 2.5rem 1.5rem; }
  .section-title { font-size: 1.85rem; }

  /* Lead magnet card */
  .lm-card { padding-top: 0; }

  /* Newsletter embed */
  .newsletter-embed { margin-left: 20px; }

  /* Cards / grids tighten */
  .cred-bar { gap: 0.5rem; padding: 0.85rem 1rem; }
  .testimonial-card { padding: 1.25rem 1rem; }
}

/* >= 640px */
@media (min-width: 768px) {
  body { font-size: 15px; line-height: 1.7; }

  /* Cred bar */
  .cred-bar { padding: 1.25rem 2rem; }
  .cred-label { font-size: 0.6rem; }
  .cred-pill { font-size: 0.7rem; padding: 0.4rem 0.9rem; }

  /* Sections */
  .section { padding: 5rem 2.5rem; }
  .section > .eyebrow,
  .section > .section-title,
  .section > .section-body,
  .section > .lm-card,
  .section > .lm-grid,
  .section > .events-grid,
  .section > .circle-intro,
  .section > .circle-included,
  .section > .circle-pillars,
  .section > .circle-pulls,
  .section > .included-course,
  .section > .journey-steps,
  .section > .journey-quote,
  .section > .course-2col,
  .section > .course-block,
  .section > .about-grid,
  .section > .video-frame,
  .section > .btn-primary {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title { font-size: 2.25rem; margin-bottom: 1.25rem; }
  .section-body { font-size: 1rem; line-height: 1.85; }
  .eyebrow { font-size: 0.72rem; }

  /* Lead magnet */
  .lm-card { padding: 2.5rem; max-width: 560px; }
  .lm-grid > .lm-card { max-width: none; }
  .lm-card h3 { font-size: 1.75rem; }
  .lm-card p { font-size: 0.95rem; }

  /* Events grid */
  .events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .event-card { margin-bottom: 0; padding: 1.5rem; }
  .event-title { font-size: 1.25rem; }
  .event-sub { font-size: 0.88rem; }

  /* Course */
  .course-block { padding: 2.5rem; }
  .course-block h2 { font-size: 2.1rem; }
  .week-grid { grid-template-columns: repeat(4, 1fr); }

  /* Newsletter */
  .newsletter { padding: 5rem 2.5rem; }
  .newsletter-title { font-size: 2.6rem; }
  .newsletter-body { font-size: 0.95rem; }

  /* Divider */
  .divider { padding: 0.5rem 1.5rem; font-size: 0.75rem; letter-spacing: 1.5rem; }

  /* Footer */
  footer { padding: 3rem 2.5rem; }
  .footer-logo { font-size: 1.4rem; }
  .footer-tagline { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .footer-links { gap: 2rem; }
  .footer-links a { font-size: 0.7rem; }

  /* Journey steps */
  .journey-title { font-size: 1.4rem; }
  .journey-text { font-size: 0.95rem; }
  .journey-quote p { font-size: 1.25rem; }
}

/* >= 768px desktop */
@media (min-width: 768px) {
  body { font-size: 16px; line-height: 1.7; }

  /* Nav */
  nav {
    padding: 0 3rem;
    height: 80px;
    gap: 2rem;
  }
  .nav-mark { display: inline-flex; font-size: 1.55rem; }
  .nav-mark-text { display: inline; }
  .nav-mark-logo { display: none; }
  .nav-burger { display: none; }
  .nav-menu {
    display: flex;
    flex: 1;
    gap: 1.75rem;
    padding-left: 1.5rem;
  }
  .nav-menu a:not(.nav-btn) {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    border-bottom: 0;
  }
  .nav-menu a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--burg);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
  }
  .nav-menu a:not(.nav-btn):hover::after,
  .nav-menu a:not(.nav-btn)[aria-current="page"]::after { transform: scaleX(1); }
  .nav-menu a[aria-current="page"] { border-bottom: 0; padding-bottom: 4px; }
  .nav-menu li:first-child { display: none; }
  .nav-aside { gap: 1.25rem; margin-left: 0; }
  .nav-btn {
    font-size: 0.78rem;
    padding: 0.95rem 1.35rem;
  }

  /* Hero */
  .hero {
    padding: 0;
    position: relative;
    min-height: 88vh;
    background: var(--void) url('images/hero/portrait-hero-desktop.jpg') center 20% / cover no-repeat;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to right,
        rgba(10, 4, 7, 0.92) 0%,
        rgba(10, 4, 7, 0.78) 26%,
        rgba(10, 4, 7, 0.42) 49%,
        rgba(10, 4, 7, 0.10) 58%,
        transparent 86%
      ),
      linear-gradient(to bottom,
        rgba(10, 4, 7, 0.18) 0%,
        transparent 30%,
        transparent 65%,
        rgba(10, 4, 7, 0.50) 100%
      );
    pointer-events: none;
  }
  .hero-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: min(520px, 46%) 1fr;
    align-content: center;
    width: 100%;
    max-width: none;
    padding: 0 5rem;
    gap: 0;
    min-height: 88vh;
  }
  .hero-text {
    grid-column: 1; grid-row: 1;
    text-align: left;
    padding: 4rem 0 0;
  }
  .hero-mandala { width: 130px; margin: 0 0 1.75rem; filter: brightness(0) invert(1); }
  .hero-name { font-size: 4.2rem; margin-bottom: 1.5rem; color: var(--white); }
  .hero-role { font-size: 0.88rem; letter-spacing: 0.26em; margin-bottom: 2rem; color: rgba(243,241,246,0.65); }
  .hero-desc {
    font-size: 1rem; margin-bottom: 2.5rem;
    max-width: 420px; margin-left: 0; margin-right: 0;
    display: block; color: rgba(243,241,246,0.90);
  }
  .hero-desc strong { color: rgba(243,241,246,0.92); }
  .hero-tagline { color: rgba(243,241,246,0.5); }
  .hero-cta { grid-column: 1; grid-row: 2; max-width: 300px; margin: 0; padding-bottom: 4rem; }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { min-width: 0; padding: 1rem 1.75rem; }
  .hero-cta .btn-outline {
    background: transparent;
    border-color: rgba(243,241,246,0.40);
    color: var(--white);
  }
  .hero-cta .btn-outline:hover,
  .hero-cta .btn-outline:focus {
    background: rgba(243,241,246,0.08);
    border-color: rgba(243,241,246,0.65);
    color: var(--white);
  }
  .hero-photo { display: none; }

  /* Cred bar */
  .cred-bar { padding: 1.5rem 3rem; overflow-x: visible; }
  .cred-inner {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
  .cred-items { gap: 0.75rem; }

  /* Sections */
  .section { padding: 7rem 3rem; }
  .section > .eyebrow,
  .section > .section-title,
  .section > .section-body,
  .section > .lm-card,
  .section > .lm-grid,
  .section > .events-grid,
  .section > .circle-intro,
  .section > .circle-included,
  .section > .circle-pillars,
  .section > .circle-pulls,
  .section > .included-course,
  .section > .journey-steps,
  .section > .journey-quote,
  .section > .course-2col,
  .section > .course-block,
  .section > .about-grid,
  .section > .video-frame,
  .section > .btn-primary {
    max-width: 1240px;
  }
  .section > .lm-grid { max-width: 1240px; }
  .section > .video-frame { max-width: 960px; }

  #events > .eyebrow,
  #events > .section-title,
  #events > .section-body,
  #events > .btn-primary,
  #mss-intro > .eyebrow,
  #mss-intro > .section-title,
  #mss-intro > .section-body,
  #mss-intro > .btn-primary { max-width: 960px; }

  .section-title { font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.2; }
  .section-body { font-size: 1rem; max-width: 760px; }

  /* Lead magnet */
  .lm-card { padding: 3rem; max-width: 600px; }
  .lm-grid > .lm-card { max-width: none; }
  .lm-card h3 { font-size: 2rem; }

  /* Events grid */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .event-card { padding: 1.75rem; }

  /* Journey */
  .journey-steps { margin: 3rem 0; max-width: 760px; }
  .journey-num { width: 44px; height: 44px; font-size: 0.7rem; }
  .journey-title { font-size: 1.55rem; }
  .journey-text { font-size: 1rem; }
  .journey-quote { padding: 2rem 2.5rem; max-width: 760px; }
  .journey-quote p { font-size: 1.4rem; }

  /* Course */
  .course-block { padding: 3.5rem; }
  .course-block h2 { font-size: 2.5rem; }
  .course-block > p { font-size: 1.05rem; max-width: 700px; }
  .course-stats { max-width: 700px; }
  .stat-val { font-size: 1.4rem; }
  .week-grid { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
  .week-item { padding: 1rem; }
  .week-num { font-size: 0.65rem; }
  .week-title { font-size: 0.88rem; }

  /* About */
  .about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 4rem;
    align-items: start;
  }
  .about-img-wrap { margin-bottom: 0; aspect-ratio: 4/5; }
  .about-media { position: sticky; top: 100px; }
  .about-stat { padding: 1.5rem 1.75rem; }
  .about-stat-num { font-size: 2.5rem; }
  .about-stat-label { font-size: 0.95rem; }

  /* Newsletter */
  .newsletter { padding: 7rem 3rem; }
  .newsletter-title { font-size: 3rem; }
  .newsletter-body { font-size: 1.05rem; }

  /* Divider */
  .divider { padding: 1rem 1.5rem; font-size: 0.85rem; letter-spacing: 2rem; }

  /* Footer */
  footer { padding: 4rem 3rem 3rem; }
  .footer-logo { font-size: 1.6rem; }
  .footer-tagline { font-size: 1.05rem; margin-bottom: 2rem; }
  .footer-links { gap: 2.5rem; margin-bottom: 1.5rem; }
  .footer-links a { font-size: 0.75rem; }
  .footer-copy { font-size: 0.7rem; }

  /* Standalone CTAs */
  .section > .btn-primary {
    max-width: 360px;
    padding: 1.15rem 2rem;
  }
  .course-block > .btn-primary {
    display: inline-block;
    max-width: 360px;
    padding: 1.15rem 2rem;
  }
}

/* >= 1440px */
@media (min-width: 1440px) {
  .hero-name { font-size: 5rem; }
  .hero-mandala { width: 148px; }
  .hero-wrap { padding: 0 7rem; }
}

/* Scroll animations */
.will-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.will-anim[data-anim="blur"] {
  transform: translateY(14px);
  filter: blur(7px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.will-anim[data-anim="scale"] {
  transform: translateY(22px) scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.will-anim.is-visible {
  opacity: 1;
  transform: none;
}
.will-anim[data-anim="blur"].is-visible {
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .will-anim,
  .will-anim[data-anim="blur"],
  .will-anim[data-anim="scale"] {
    opacity: 1; transform: none; filter: none; transition: none;
  }
}
