:root {
  --color-bg: #FAF7F5;
  --color-bg-alt: #F5EDE8;
  --color-bg-warm: #FFF9F6;
  --color-text: #3D3D3D;
  --color-text-muted: #6B615E;
  --color-text-light: #8B8178;
  --color-primary: #8B6F5C;
  --color-primary-dark: #6D5546;
  --color-secondary: #C9A87C;
  --color-secondary-light: #D4BA96;
  --color-accent: #D4A5A5;
  --color-accent-light: #E8C8C8;
  --color-rose: #C9949B;
  --color-gold: #B8956E;
  --color-cream: #F5E6DC;
  
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(61, 61, 61, 0.04);
  --shadow-md: 0 8px 32px rgba(61, 61, 61, 0.08);
  --shadow-lg: 0 16px 64px rgba(61, 61, 61, 0.12);
  --shadow-xl: 0 24px 80px rgba(61, 61, 61, 0.16);
  --shadow-glow: 0 0 60px rgba(201, 168, 124, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-max: 1280px;
  --container-padding: 2rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(212, 165, 165, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(201, 168, 124, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(139, 111, 92, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 245, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 111, 92, 0.06);
  transition: all var(--transition-base);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.logo:hover .logo-text {
  color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
  margin: 0 auto;
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg) !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(61, 61, 61, 0.15);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 61, 61, 0.2);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0 4rem;
  min-height: calc(100vh - 6rem);
}

/* Desktop hero layout - explicit two column */
@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-content {
    order: 1;
    text-align: left;
    padding-right: 2rem;
  }
  
  .hero-title {
    text-align: left;
  }
  
  .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-cta {
    justify-content: flex-start;
  }
  
  .hero-trust {
    justify-content: flex-start;
  }
  
  .hero-image {
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
  
  .hero-image img {
    max-width: 100%;
    width: 100%;
    max-width: 520px;
  }
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.hero-container {
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(201, 168, 124, 0.12) 0%, rgba(212, 165, 165, 0.12) 100%);
  border: 1px solid rgba(201, 168, 124, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg) !important;
  border: none;
  box-shadow: 0 4px 20px rgba(61, 61, 61, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(61, 61, 61, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(61, 61, 61, 0.15);
}

.btn-secondary:hover {
  border-color: var(--color-secondary);
  background: rgba(201, 168, 124, 0.05);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 0.85rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.hero-trust .dot {
  color: var(--color-secondary);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.hero-image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(250, 247, 245, 0.3) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  pointer-events: none;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20%;
  left: -10%;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-flower {
  position: absolute;
  top: -5%;
  right: -10%;
  width: 200px;
  height: 200px;
  opacity: 0.6;
  pointer-events: none;
  animation: rotate-slow 60s linear infinite;
}

.hero-flower img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating-badge-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll-indicator svg {
  opacity: 0.5;
}

.hero-redesign {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero-redesign .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-redesign .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: breathe 20s ease-in-out infinite;
}

.hero-redesign .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 61, 61, 0.5) 0%,
    rgba(61, 61, 61, 0.4) 50%,
    rgba(61, 61, 61, 0.6) 100%
  );
}

.hero-redesign .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-redesign .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-secondary-light);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatSlow 15s ease-in-out infinite;
}

.hero-redesign .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-redesign .particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; width: 6px; height: 6px; }
.hero-redesign .particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 4s; }
.hero-redesign .particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 1s; width: 3px; height: 3px; }
.hero-redesign .particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 3s; width: 5px; height: 5px; }
.hero-redesign .particle:nth-child(6) { left: 30%; top: 80%; animation-delay: 5s; }

.hero-redesign .hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-redesign .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-redesign .hero-title {
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}

.hero-redesign .hero-subtitle {
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-redesign .hero-cta {
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-redesign .hero-trust {
  justify-content: center;
  color: rgba(255,255,255,0.7);
}

.hero-redesign .hero-trust .dot {
  color: var(--color-secondary-light);
}

.hero-redesign .btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white !important;
}

.hero-redesign .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.hero-redesign .hero-scroll-indicator {
  color: rgba(255,255,255,0.7);
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-15px) translateX(10px); }
  66% { transform: translateY(-10px) translateX(-5px); }
}

@media (max-width: 768px) {
  .hero-redesign {
    padding: 120px 20px 80px;
  }
  
  .hero-redesign .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-redesign .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-redesign .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-redesign .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

.problem-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.problem-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.problem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
}

.problem-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.problem-text {
  margin-top: 2.5rem;
}

.problem-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.problem-text .highlight {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  font-style: italic;
}

.problem-text .emphasis {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-top: 2rem;
}

.about-preview {
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-frame {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-content {
  padding: 2rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.85);
}

.about-text {
  margin-top: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--color-text);
  font-weight: 500;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-secondary);
  padding-bottom: 0.25rem;
  transition: all var(--transition-fast);
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.link-arrow:hover {
  color: var(--color-primary);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.offerings {
  padding: 8rem 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.offerings-bg-texture {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(201, 168, 124, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(212, 165, 165, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.offerings > .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 50ch;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offering-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 92, 0.08);
  transition: all var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
}

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

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.offering-featured {
  grid-row: span 2;
}

.offering-featured .offering-image {
  height: 260px;
}

.offering-featured .offering-content {
  padding: 2.5rem;
}

.offering-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.offering-image-small {
  height: 180px;
}

.offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.offering-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 61, 61, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.offering-card:hover .offering-image img {
  transform: scale(1.05);
}

.offering-card:hover .offering-image-overlay {
  opacity: 1;
}

.offering-content {
  padding: 2rem;
}

.offering-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 1rem;
}

.offering-card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.offering-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.offering-features {
  margin-bottom: 1.5rem;
}

.offering-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.offering-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-size: 0.8rem;
}

.offering-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 111, 92, 0.1);
}

.offering-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
}

.community-highlight {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.community-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 61, 61, 0.88) 0%,
    rgba(109, 85, 70, 0.85) 50%,
    rgba(139, 111, 92, 0.82) 100%
  );
}

.community-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.section-title-light {
  color: white;
}

.community-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem 0;
}

.community-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  color: var(--color-secondary-light);
  font-size: 1.25rem;
}

.community-highlight .btn-primary {
  background: white;
  color: var(--color-text) !important;
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.community-highlight .btn-primary:hover {
  background: var(--color-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.testimonials {
  padding: 8rem 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.testimonials-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.decoration-flower {
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: 0.25;
}

.decoration-flower-left {
  top: 10%;
  left: -5%;
  animation: rotate-slow 80s linear infinite reverse;
}

.decoration-flower img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-bg-warm);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 111, 92, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
  position: relative;
}

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

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.bloom-spotlight {
  padding: 8rem 0;
  background: var(--color-bg-alt);
}

.bloom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bloom-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bloom-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bloom-image:hover img {
  transform: scale(1.03);
}

.bloom-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(139, 111, 92, 0.1) 100%);
  pointer-events: none;
}

.bloom-content {
  padding: 1rem 0;
}

.bloom-tagline {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0.5rem 0 1.5rem;
}

.bloom-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.bloom-benefits {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.bloom-benefits li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.benefit-icon {
  color: var(--color-secondary);
  font-size: 1rem;
}

.bloom-stats {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 111, 92, 0.15);
  border-bottom: 1px solid rgba(139, 111, 92, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.bloom-cta {
  margin-top: 2rem;
}

.next-start {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.next-start strong {
  color: var(--color-text);
}

.resources {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.resources-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.resources-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(250, 247, 245, 0.95) 100%);
}

.resources > .container {
  position: relative;
  z-index: 1;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.resource-card {
  background: var(--color-bg-warm);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 111, 92, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
}

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

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 124, 0.12) 0%, rgba(212, 165, 165, 0.12) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.resource-icon-podcast {
  background: linear-gradient(135deg, rgba(201, 168, 124, 0.15) 0%, rgba(184, 149, 110, 0.15) 100%);
}

.resource-icon-gift {
  background: linear-gradient(135deg, rgba(212, 165, 165, 0.15) 0%, rgba(201, 148, 155, 0.15) 100%);
}

.resource-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.resource-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.resource-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.newsletter {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.newsletter > .container {
  position: relative;
  z-index: 1;
}

.newsletter-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content > p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.newsletter-form {
  margin-top: 2rem;
}

.form-group {
  display: flex;
  gap: 1rem;
}

.form-group input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid rgba(139, 111, 92, 0.18);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.form-group input::placeholder {
  color: var(--color-text-light);
}

.form-group input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(201, 168, 124, 0.12);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  color: white;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
}

.footer-column h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-secondary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1100px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  
  .offering-featured {
    grid-row: auto;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.is-open {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
    gap: 3rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-image {
    order: -1;
    display: flex;
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 320px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-image-wrapper {
    max-width: 320px;
  }
  
  .hero-floating-badge {
    left: auto;
    right: -5%;
    bottom: 10%;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-content {
    padding: 0;
  }
  
  .bloom-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title-serif {
    font-size: 2rem;
  }
  
  .hero-floating-badge {
    display: none;
  }
  
  .bloom-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .community-features li {
    font-size: 0.95rem;
  }
  
  .offering-image-small {
    height: 160px;
  }
}

/* Accessibility: Focus states */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.nav-link:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-image {
    transform: none !important;
  }
  
  .offering-card,
  .testimonial-card,
  .resource-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

/* Print styles */
@media print {
  .site-header,
  .site-footer,
  .hero-scroll-indicator,
  .newsletter,
  .mobile-toggle {
    display: none !important;
  }
  
  body::before {
    display: none !important;
  }
  
  .hero {
    min-height: auto !important;
    padding: 2rem 0 !important;
  }
  
  a {
    text-decoration: underline;
  }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: var(--color-text-muted);
  }
}


/* ═══════════════════════════════════════════════════════════
   IDUN-BLUE PAGE BUILDER BLOCKS — v2 Premium Quality
   All block CSS for mode:"website" pages
   ═══════════════════════════════════════════════════════════ */

/* ── Shared utilities ─────────────────────────────────────── */

.reveal-ed {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-ed.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-ed-delay-1 { transition-delay: 0.1s; }
.reveal-ed-delay-2 { transition-delay: 0.2s; }
.reveal-ed-delay-3 { transition-delay: 0.3s; }
.reveal-ed-delay-4 { transition-delay: 0.4s; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.section-display {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.btn-editorial-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: calc(var(--radius, 6px) * 0.5);
  transition: background-color 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.2s ease;
}
.btn-editorial-primary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

.btn-editorial-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  background-color: transparent;
  color: var(--color-secondary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid rgba(61, 43, 31, 0.35);
  border-radius: calc(var(--radius, 6px) * 0.5);
  transition: border-color 0.25s ease, background-color 0.25s ease,
              color 0.25s ease, transform 0.2s ease;
}
.btn-editorial-ghost:hover {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
  color: #fff;
  transform: translateY(-1px);
}

.link-arrow {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.link-arrow:hover {
  gap: 0.5rem;
  opacity: 0.8;
}

/* ── Subpage Hero (sp-hero) ───────────────────────────────── */

.sp-hero {
  position: relative;
  background-color: var(--color-bg, #FAF8F5);
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.sp-hero--dark {
  background-color: #1C120C;
  color: #FAF8F5;
}

.sp-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.sp-hero__inner--split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.sp-hero__text {
  max-width: 600px;
}

.sp-hero__inner--split .sp-hero__text {
  max-width: none;
}

.sp-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.sp-hero--dark .sp-hero__eyebrow {
  color: var(--color-primary);
}

.sp-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text, #1C120C);
  margin-bottom: 1.5rem;
  white-space: pre-line;
}

.sp-hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.sp-hero--dark .sp-hero__title {
  color: #FAF8F5;
}

.sp-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.sp-hero--dark .sp-hero__sub {
  color: rgba(250, 248, 245, 0.75);
}

.sp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Image side */
.sp-hero__img {
  position: relative;
}

.sp-hero__img::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  background: var(--color-primary);
  opacity: 0.12;
  border-radius: 4px;
  z-index: 0;
}

.sp-hero__img img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(28, 18, 12, 0.18);
}

/* Bottom gradient overlay on image */
.sp-hero__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(28, 18, 12, 0.35), transparent);
  z-index: 2;
  pointer-events: none;
  border-radius: 0 0 4px 4px;
}

@media (max-width: 860px) {
  .sp-hero__inner--split {
    grid-template-columns: 1fr;
  }
  .sp-hero__img {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .sp-hero__title {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }
}

@media (max-width: 560px) {
  .sp-hero {
    padding-top: clamp(6rem, 18vw, 8rem);
  }
  .sp-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .sp-hero__cta .btn-editorial-primary,
  .sp-hero__cta .btn-editorial-ghost {
    text-align: center;
  }
}

/* ── Two Column Section (two-col) ─────────────────────────── */

.two-col {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: var(--color-bg, #FAF8F5);
}

.two-col--warm {
  background-color: #FDF8F3;
}

.two-col__grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.two-col--reversed .two-col__grid {
  grid-template-columns: 55fr 45fr;
}

.two-col--reversed .two-col__img {
  order: 2;
}

.two-col--reversed .two-col__content {
  order: 1;
}

/* Image frame */
.two-col__img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.two-col__img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201, 169, 166, 0.3);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.two-col__img-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.two-col__img:hover .two-col__img-frame img {
  transform: scale(1.025);
}

/* Warm tinted shadow behind image */
.two-col__img {
  position: relative;
}

.two-col__img::after {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  background: var(--color-primary);
  opacity: 0.15;
  border-radius: 4px;
  z-index: -1;
}

/* Content */
.two-col__content {
  max-width: 560px;
}

.two-col--reversed .two-col__content {
  max-width: none;
}

.two-col__content .eyebrow {
  margin-bottom: 1rem;
}

.two-col__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: var(--color-text);
}

.two-col__content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.two-col__content p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.two-col__content ul {
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none;
}

.two-col__content ul li {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(201, 169, 166, 0.15);
}

.two-col__content ul li:last-child {
  border-bottom: none;
}

.two-col__content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.45rem;
  font-size: 0.6rem;
  color: var(--color-primary);
  line-height: 1.65;
}

.two-col__content .btn-editorial-primary {
  margin-top: 0.5rem;
}

@media (max-width: 860px) {
  .two-col__grid,
  .two-col--reversed .two-col__grid {
    grid-template-columns: 1fr;
  }

  .two-col--reversed .two-col__img,
  .two-col--reversed .two-col__content {
    order: unset;
  }

  .two-col__img {
    max-width: 420px;
    margin: 0 auto;
  }

  .two-col__img::after {
    inset: 6px -6px -6px 6px;
  }
}

/* ── Program Modules (prog-modules) ──────────────────────── */

.prog-modules {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: var(--color-bg, #FAF8F5);
}

.prog-modules__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.prog-modules__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.prog-modules__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.prog-modules__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.prog-module {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(201, 169, 166, 0.2);
  align-items: start;
  transition: background-color 0.2s ease;
}

.prog-module:last-child {
  border-bottom: none;
}

.prog-module:first-child {
  border-top: 1px solid rgba(201, 169, 166, 0.2);
}

/* Left border accent on hover */
.prog-module {
  padding-left: 0;
  border-left: 3px solid transparent;
  padding-left: 1.5rem;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  border-radius: 0 4px 4px 0;
}

.prog-module:hover {
  border-left-color: var(--color-primary);
  background-color: rgba(201, 169, 166, 0.05);
}

.prog-module__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-secondary);
  opacity: 0.35;
  line-height: 1;
  text-align: center;
  padding-top: 0.25rem;
  transition: opacity 0.25s ease;
}

.prog-module:hover .prog-module__num {
  opacity: 0.6;
}

.prog-module__body {
  padding-top: 0.25rem;
}

.prog-module__title {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 0.625rem;
}

.prog-module__desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.prog-module__topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.prog-module__topics li {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}

.prog-module__topics li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-size: 0.5rem;
  color: var(--color-secondary);
  opacity: 0.6;
}

@media (max-width: 640px) {
  .prog-module {
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    padding-left: 0.75rem;
  }

  .prog-module__num {
    font-size: 2.25rem;
  }

  .prog-module__topics {
    grid-template-columns: 1fr;
  }
}

/* ── Feature Cards (feat-cards) ──────────────────────────── */

.feat-cards {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: var(--color-bg, #FAF8F5);
}

.feat-cards--warm {
  background-color: #FDFAF7;
}

.feat-cards__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.feat-cards__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.feat-cards__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.feat-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-cards__grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

.feat-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 166, 0.25);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(28, 18, 12, 0.04);
  display: flex;
  flex-direction: column;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 18, 12, 0.12);
  border-color: var(--color-secondary);
}

.feat-card__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.4;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.feat-card:hover .feat-card__num {
  opacity: 0.65;
}

.feat-card__icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.feat-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.feat-card__body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 0;
}

.feat-card .link-arrow {
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .feat-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 560px) {
  .feat-cards__grid,
  .feat-cards__grid--2,
  .feat-cards__grid--4 {
    grid-template-columns: 1fr;
  }

  .feat-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ── Editorial Testimonials (testimonials-editorial) ─────── */

.testimonials-editorial {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: #FDF8F3;
}

.testimonials-editorial .container > .reveal-ed {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testi-editorial-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 166, 0.2);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(28, 18, 12, 0.04);
}

.testi-editorial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(28, 18, 12, 0.1);
}

.testi-editorial-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--color-primary);
  opacity: 0.4;
  margin-bottom: 1rem;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

.testi-editorial-text {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.testi-editorial-author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
}

@media (max-width: 900px) {
  .testimonials-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .testimonials-editorial-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Dark CTA Section (dark-cta) ─────────────────────────── */

.dark-cta {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1C120C;
}

.dark-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
  will-change: transform;
}

.dark-cta:hover .dark-cta__bg {
  transform: scale(1.03);
}

.dark-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 18, 12, 0.88) 0%,
    rgba(28, 18, 12, 0.72) 50%,
    rgba(61, 43, 31, 0.65) 100%
  );
  z-index: 1;
}

.dark-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  max-width: 760px;
  margin: 0 auto;
}

.dark-cta__inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #FAF8F5;
  margin: 0 0 2rem;
  white-space: pre-line;
}

.dark-cta__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(250, 248, 245, 0.72);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.dark-cta__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Ghost button on dark background */
.dark-cta .btn-editorial-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.dark-cta .btn-editorial-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1C120C;
}

.dark-cta .btn-editorial-ghost {
  color: rgba(250, 248, 245, 0.8);
  border-color: rgba(250, 248, 245, 0.35);
}

.dark-cta .btn-editorial-ghost:hover {
  background-color: rgba(250, 248, 245, 0.12);
  border-color: rgba(250, 248, 245, 0.7);
  color: #FAF8F5;
}

@media (max-width: 560px) {
  .dark-cta__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .dark-cta__cta .btn-editorial-primary,
  .dark-cta__cta .btn-editorial-ghost {
    text-align: center;
  }
}

/* ── Opt-In Section (opt-in) ─────────────────────────────── */

.opt-in {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: #FDF8F3;
}

.opt-in--dark {
  background-color: #1C120C;
  color: #FAF8F5;
}

.opt-in__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.opt-in__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-align: left;
}

.opt-in__content {
  max-width: 560px;
  margin: 0 auto;
}

.opt-in__inner--split .opt-in__content {
  margin: 0;
  max-width: none;
}

.opt-in__content .eyebrow {
  margin-bottom: 1rem;
}

.opt-in__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.opt-in--dark .opt-in__content h2 {
  color: #FAF8F5;
}

.opt-in__sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.opt-in--dark .opt-in__sub {
  color: rgba(250, 248, 245, 0.7);
}

.opt-in__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.opt-in__benefits li {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.opt-in--dark .opt-in__benefits li {
  color: rgba(250, 248, 245, 0.75);
}

.opt-in__benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  color: var(--color-secondary);
  top: 0.55rem;
}

.opt-in--dark .opt-in__benefits li::before {
  color: var(--color-primary);
}

.opt-in__form {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 166, 0.5);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  max-width: 480px;
}

.opt-in__form:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 166, 0.2);
}

.opt-in--dark .opt-in__form {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.opt-in__form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: transparent;
  min-width: 0;
}

.opt-in--dark .opt-in__form input[type="email"] {
  color: #FAF8F5;
}

.opt-in--dark .opt-in__form input[type="email"]::placeholder {
  color: rgba(250, 248, 245, 0.5);
}

.opt-in__form button {
  padding: 0.875rem 1.75rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.opt-in__form button:hover {
  background-color: var(--color-secondary);
}

.opt-in__note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.875rem;
}

.opt-in--dark .opt-in__note {
  color: rgba(250, 248, 245, 0.5);
}

.opt-in__img img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .opt-in__inner--split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .opt-in__form {
    margin: 0 auto;
  }
  .opt-in__benefits {
    text-align: center;
  }
}

/* ── Legal Page (legal-page) ─────────────────────────────── */

.legal-page {
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  background-color: var(--color-bg, #FAF8F5);
}

.legal-page__inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 169, 166, 0.3);
}

.legal-page__header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.legal-page__date {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.legal-page__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-secondary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-page__content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-page__content p {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.legal-page__content ul,
.legal-page__content ol {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem 1.5rem;
}

.legal-page__content li {
  margin-bottom: 0.5rem;
}

.legal-page__content a {
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page__content a:hover {
  opacity: 0.75;
}

/* ── Contact Page Block (contact-blk) ────────────────────── */

.contact-blk {
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  background-color: var(--color-bg, #FAF8F5);
}

.contact-blk__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-blk__content .eyebrow {
  margin-bottom: 1.25rem;
}

.contact-blk__content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.contact-blk__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.contact-blk__topics {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.contact-blk__topics li {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  line-height: 1.6;
}

.contact-blk__topics li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.45rem;
  font-size: 0.55rem;
  color: var(--color-primary);
}

.contact-blk__links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-blk__link-item {
  padding: 1.25rem 1.5rem;
  background: #FDF8F3;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 166, 0.25);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-blk__link-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(201, 169, 166, 0.15);
}

.contact-blk__link-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
}

.contact-blk__link-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-secondary);
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: block;
}

.contact-blk__link-text:hover {
  opacity: 0.7;
}

.contact-blk__img img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(28, 18, 12, 0.14);
}

@media (max-width: 768px) {
  .contact-blk__inner {
    grid-template-columns: 1fr;
  }
  .contact-blk__img {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ── Editorial Hero (editorial-hero) ─────────────────────── */

.hero-editorial {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #1C120C;
}

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

.hero-editorial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 18, 12, 0.82) 0%,
    rgba(28, 18, 12, 0.45) 50%,
    rgba(28, 18, 12, 0.15) 100%
  );
}

.hero-editorial__inner {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: clamp(5rem, 10vw, 8rem);
  width: 100%;
  max-width: 760px;
}

.hero-editorial__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero-editorial__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #FAF8F5;
  margin-bottom: 1.5rem;
}

.hero-editorial__sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.75);
  max-width: 480px;
  margin-bottom: 2.75rem;
}

.hero-editorial__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* ── Editorial About (editorial-about) ───────────────────── */

.about-editorial {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: var(--color-bg);
}

.about-editorial__inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-editorial__img {
  position: relative;
}

.about-editorial__img img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.about-editorial__img::after {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  background: var(--color-primary);
  opacity: 0.12;
  border-radius: 4px;
  z-index: -1;
}

.about-editorial__content .eyebrow {
  margin-bottom: 1.25rem;
}

.about-editorial__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-editorial__content p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-editorial__inner {
    grid-template-columns: 1fr;
  }
  .about-editorial__img {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ── Final CTA Editorial (final-cta-editorial) ───────────── */

.final-cta-editorial {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: #FDF8F3;
  text-align: center;
}

.final-cta-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-editorial-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-top: 2rem;
}

.final-cta-detail {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* ── Newsletter Editorial ─────────────────────────────────── */

.newsletter-editorial {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  background-color: #1C120C;
  text-align: center;
}

.newsletter-editorial-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.newsletter-editorial-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newsletter-editorial-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 var(--container-px, 1.5rem);
}

.newsletter-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FAF8F5;
  margin-bottom: 1rem;
}

.newsletter-editorial-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 2rem;
}

.newsletter-form-editorial {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 245, 0.25);
  transition: border-color 0.25s ease;
}

.newsletter-form-editorial:focus-within {
  border-color: var(--color-primary);
}

.newsletter-form-editorial input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #FAF8F5;
  min-width: 0;
}

.newsletter-form-editorial input[type="email"]::placeholder {
  color: rgba(250, 248, 245, 0.4);
}

.newsletter-form-editorial button {
  padding: 0.875rem 1.75rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form-editorial button:hover {
  background-color: var(--color-secondary);
}

.newsletter-privacy {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.4);
  margin-top: 1rem;
}

/* ── Magazine Grid / For You Grid ────────────────────────── */

.magazine-editorial {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: var(--color-bg);
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.mag-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.mag-card__img {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  aspect-ratio: 3 / 4;
}

.mag-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mag-card:hover .mag-card__img img {
  transform: scale(1.04);
}

.mag-card__cat {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.mag-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.mag-card__excerpt {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

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

@media (max-width: 480px) {
  .magazine-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Program Spotlight ───────────────────────────────────── */

.prog-spotlight {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: #FDF8F3;
}

.prog-spotlight__inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.prog-spotlight__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.prog-spotlight__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.prog-spotlight__tagline {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.prog-spotlight__desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.prog-spotlight__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.prog-spotlight__meta-item {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .prog-spotlight__inner {
    grid-template-columns: 1fr;
  }
}

/* ── Community Spotlight ──────────────────────────────────── */

.community-spotlight {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: var(--color-bg);
  text-align: center;
}

.community-spotlight h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.community-spotlight__desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── Resources Grid ──────────────────────────────────────── */

.resources-editorial {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: var(--color-bg);
}

.resources-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.resource-editorial-card {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201, 169, 166, 0.2);
  border-radius: 12px;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease, border-color 0.3s ease;
}

.resource-editorial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(28, 18, 12, 0.1);
  border-color: var(--color-primary);
}

.resource-editorial-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.resource-editorial-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.resource-editorial-name {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.resource-editorial-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .resources-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .resources-editorial-grid {
    grid-template-columns: 1fr;
  }
}

/* ── For You Grid ────────────────────────────────────────── */

.for-you-editorial {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-color: #FDF8F3;
}

.for-you-editorial h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.for-you-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 166, 0.2);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.for-you-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28, 18, 12, 0.1);
}

.for-you-card p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .for-you-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .for-you-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Editorial Statement ──────────────────────────────────── */

.statement-editorial {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.statement-editorial__inner {
  max-width: 720px;
  margin: 0 auto;
}

.statement-editorial__inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0 0 1.5rem;
}

.statement-editorial__inner p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Editorial CTA Blockquote row ────────────────────────── */

.editorial-cta-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--color-text);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* ── Container & global layout helpers ───────────────────── */

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Scrollbar polish ─────────────────────────────────────── */

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 166, 0.45);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 169, 166, 0.7);
}
/* ── FAQ Section (ed-faq) ───────────────────────────────── */
.ed-faq { padding: clamp(5rem,10vw,8rem) 0; background-color: var(--color-bg,#FAF8F5); }
.ed-faq__header { text-align: center; max-width: 640px; margin: 0 auto clamp(3rem,6vw,5rem); }
.ed-faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.ed-faq-item { border-bottom: 1px solid rgba(201,169,166,0.2); }
.ed-faq-item:first-child { border-top: 1px solid rgba(201,169,166,0.2); }
.ed-faq-q { width: 100%; background: none; border: none; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; font-family: var(--font-sans); font-size: 1rem; font-weight: 500; color: var(--color-text,#3D3D3D); cursor: pointer; text-align: left; transition: color 0.2s ease; }
.ed-faq-q:hover { color: var(--color-primary,#8B6F5C); }
.ed-faq-icon { flex-shrink: 0; font-size: 1.25rem; font-weight: 300; color: var(--color-primary,#8B6F5C); transition: transform 0.3s ease; line-height: 1; }
.ed-faq-item.is-open .ed-faq-icon { transform: rotate(45deg); }
.ed-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.ed-faq-item.is-open .ed-faq-a { max-height: 600px; }
.ed-faq-a p { padding: 0 0 1.5rem; font-family: var(--font-sans); font-size: 0.9375rem; line-height: 1.75; color: var(--color-text-muted,#7A7063); }

/* ── Pricing Section (ed-pricing) ──────────────────────── */
.ed-pricing { padding: clamp(5rem,10vw,8rem) 0; background-color: #FDF8F3; }
.ed-pricing__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.ed-pricing__title { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); font-weight: 300; font-style: italic; margin-bottom: 1.5rem; }
.ed-pricing__price { font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,4rem); font-weight: 300; font-style: italic; color: var(--color-primary,#8B6F5C); margin-bottom: 0.5rem; line-height: 1.1; }
.ed-pricing__pnote { font-family: var(--font-sans); font-size: 0.9375rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.ed-pricing__features { list-style: none; padding: 0; margin: 0 auto 2.5rem; max-width: 480px; text-align: left; }
.ed-pricing__features li { font-family: var(--font-sans); font-size: 0.9375rem; color: var(--color-text-muted); padding: 0.5rem 0 0.5rem 1.5rem; position: relative; border-bottom: 1px solid rgba(201,169,166,0.12); }
.ed-pricing__features li:last-child { border-bottom: none; }
.ed-pricing__features li::before { content: '✦'; position: absolute; left: 0; font-size: 0.5rem; color: var(--color-secondary,#C9A87C); top: 0.75rem; }
.ed-pricing__note { font-family: var(--font-sans); font-size: 0.875rem; color: var(--color-text-muted); font-style: italic; margin-bottom: 2rem; }

/* ── Pricing Tiers (ed-tiers) ───────────────────────────── */
.ed-tiers { padding: clamp(5rem,10vw,8rem) 0; background-color: var(--color-bg,#FAF8F5); }
.ed-tiers__header { text-align: center; max-width: 640px; margin: 0 auto clamp(3rem,6vw,5rem); }
.ed-tiers__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,2rem); align-items: start; }
@media (max-width: 768px) { .ed-tiers__grid { grid-template-columns: 1fr; } }
.ed-tier { padding: 2.5rem; background: #fff; border: 1px solid rgba(201,169,166,0.2); border-radius: 4px; position: relative; display: flex; flex-direction: column; gap: 1rem; }
.ed-tier--featured { border-color: var(--color-primary,#8B6F5C); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.ed-tier__badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background: var(--color-primary,#8B6F5C); color: #fff; font-family: var(--font-sans); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.875rem; border-radius: 999px; white-space: nowrap; }
.ed-tier__name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; font-style: italic; color: var(--color-text); }
.ed-tier__desc { font-family: var(--font-sans); font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.5; }
.ed-tier__price { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--color-primary,#8B6F5C); line-height: 1.1; }
.ed-tier__spots { font-family: var(--font-sans); font-size: 0.8125rem; color: var(--color-text-muted); font-style: italic; }
.ed-tier__features { list-style: none; padding: 0; margin: 0; flex: 1; }
.ed-tier__features li { font-family: var(--font-sans); font-size: 0.875rem; color: var(--color-text-muted); padding: 0.4rem 0 0.4rem 1.5rem; position: relative; border-bottom: 1px solid rgba(201,169,166,0.12); }
.ed-tier__features li:last-child { border-bottom: none; }
.ed-tier__features li::before { content: '✦'; position: absolute; left: 0; font-size: 0.5rem; color: var(--color-secondary,#C9A87C); top: 0.65rem; }
.ed-tier .btn-editorial-primary { margin-top: auto; text-align: center; display: block; }

/* ═══════════════════════════════════════════════════════════════════
   TTK-EN landings (2026-04-18) — Come Back to the Body + -meta
   Scope: .block-comparison, .block-features, .block-bonuses,
   .block-timeline, .block-waitlist (TTK-EN pages only where needed)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Comparison: clean editorial two-column ──────────────────────── */
.block-comparison .comparison-grid,
.block-comparison .comparison-grid.comparison--card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  align-items: start !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

.block-comparison .comparison-grid::before,
.block-comparison .comparison-grid::after {
  display: none !important;
  content: none !important;
}

.block-comparison .comparison-col {
  display: block !important;
  visibility: visible !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 18px 14px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  box-shadow: none !important;
  color: #3d2b1f !important;
  overflow: visible !important;
}

.block-comparison .comparison-left {
  color: #5a4f4a !important;
}

.block-comparison .comparison-right {
  color: #3d2b1f !important;
  background: #FDFBF8 !important;
  border: 1px solid rgba(201,169,166,0.3) !important;
  box-shadow: 0 20px 50px rgba(28,18,12,0.06) !important;
  border-radius: 8px !important;
}

.block-comparison .comparison-title {
  font-family: var(--font-heading) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.4rem) !important;
  letter-spacing: -0.01em !important;
  text-align: left !important;
  margin-bottom: clamp(14px, 2vw, 22px) !important;
  padding-bottom: clamp(10px, 1.2vw, 14px) !important;
  border-bottom: 1px solid rgba(201,169,166,0.35) !important;
  color: inherit !important;
}

.block-comparison .comparison-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.block-comparison .comparison-item {
  position: relative !important;
  padding: clamp(10px, 1.3vw, 14px) 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.0625rem) !important;
  line-height: 1.5 !important;
  letter-spacing: 0.005em !important;
  color: inherit !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  border-bottom: 1px solid rgba(107,97,94,0.12) !important;
}

.block-comparison .comparison-left .comparison-item {
  border-bottom-style: dashed !important;
  border-bottom-color: rgba(107,97,94,0.18) !important;
}

.block-comparison .comparison-item:last-child { border-bottom: 0 !important; }

.block-comparison .comparison-item::after,
.block-comparison .comparison-item::before {
  display: none !important;
  content: none !important;
}

.block-comparison .comparison-icon {
  flex: 0 0 auto !important;
  font-weight: 400 !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  margin-top: 0.15em !important;
  text-shadow: none !important;
  transform: none !important;
}

.block-comparison .comparison-left .comparison-icon { color: #b8a9a5 !important; }
.block-comparison .comparison-right .comparison-icon { color: #C9A9A6 !important; }

/* WITHOUT / WITH badges (English) */
.block-comparison .comparison-col::before {
  display: inline-block !important;
  position: static !important;
  font-family: var(--font-sans) !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 4px 12px !important;
  border-radius: 999px !important;
  margin-bottom: 14px !important;
}

.block-comparison .comparison-left::before {
  content: 'WITHOUT' !important;
  background: rgba(107,97,94,0.08) !important;
  color: #6b615e !important;
}

.block-comparison .comparison-right::before {
  content: 'WITH' !important;
  background: rgba(201,169,166,0.16) !important;
  color: #8B6F66 !important;
}

[data-block-id="compare-intro"] .text-content {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem) !important;
  color: #3d2b1f !important;
}

@media (min-width: 760px) {
  .block-comparison .comparison-grid,
  .block-comparison .comparison-grid.comparison--card {
    grid-template-columns: 1fr 1fr !important;
    gap: clamp(28px, 3vw, 48px) !important;
  }
  .block-comparison .comparison-col {
    padding: clamp(22px, 2.5vw, 32px) clamp(18px, 2vw, 24px) !important;
  }
}

/* ─── Feature list: editorial, less boxy ──────────────────────────── */
.block-features .features-grid {
  max-width: 780px !important;
  margin-inline: auto !important;
  gap: 0 !important;
  border-top: 1px solid rgba(201,169,166,0.2) !important;
}

.block-features .feature-item {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: clamp(14px, 2vw, 22px) !important;
  padding: clamp(16px, 2.2vw, 24px) 0 !important;
  border-bottom: 1px solid rgba(201,169,166,0.2) !important;
  background: transparent !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  align-items: start !important;
}

.block-features .feature-icon {
  flex: 0 0 auto !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  text-align: center !important;
  color: #C9A9A6 !important;
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  background: transparent !important;
  border: 1px solid rgba(201,169,166,0.35) !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.block-features .feature-title {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem) !important;
  color: #3d2b1f !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 4px 0 !important;
}

.block-features .feature-desc {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem) !important;
  line-height: 1.6 !important;
  color: #6b615e !important;
  margin: 0 !important;
}

/* ─── Timeline: lighter, editorial ────────────────────────────────── */
.block-timeline .timeline--alternate .timeline-step,
.block-timeline .timeline-step {
  position: relative !important;
  padding-left: clamp(48px, 4vw, 72px) !important;
  border-left: 1px solid rgba(201,169,166,0.3) !important;
  margin-left: clamp(14px, 2vw, 22px) !important;
  padding-bottom: clamp(28px, 3vw, 40px) !important;
}

.block-timeline .timeline-step:last-child {
  padding-bottom: 0 !important;
  border-left: 1px solid transparent !important;
}

.block-timeline .timeline-marker {
  position: absolute !important;
  left: clamp(-18px, -1.5vw, -14px) !important;
  top: 0 !important;
  width: 28px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FDFBF8 !important;
  border: 1px solid rgba(201,169,166,0.45) !important;
  border-radius: 50% !important;
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 0.9375rem !important;
  color: #8B6F66 !important;
}

.block-timeline .timeline-content {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.block-timeline .timeline-content h3,
.block-timeline .timeline-step h3 {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.5rem) !important;
  color: #3d2b1f !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 8px 0 !important;
}

.block-timeline .timeline-content p,
.block-timeline .timeline-step p {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem) !important;
  line-height: 1.65 !important;
  color: #5a4f4a !important;
  margin: 0 !important;
  max-width: 62ch !important;
}

/* ─── Author bio: editorial portrait ──────────────────────────────── */
.author-bio-grid { gap: clamp(28px, 4vw, 56px) !important; }

.author-bio-content {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.author-bio-name {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem) !important;
  letter-spacing: -0.015em !important;
  color: #3d2b1f !important;
}

.author-bio-title {
  font-family: var(--font-sans) !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  color: #8B6F66 !important;
  font-weight: 500 !important;
}

.author-bio-text p {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem) !important;
  line-height: 1.7 !important;
  color: #5a4f4a !important;
}

[data-block-id="creator"] .author-credentials:empty { display: none !important; }

/* ─── Waitlist card: editorial framing ─────────────────────────────── */
.block-waitlist .waitlist-card {
  border: 1px solid rgba(201,169,166,0.35) !important;
  background: #FDFBF8 !important;
  box-shadow: 0 30px 70px rgba(28,18,12,0.06) !important;
}
.block-waitlist .waitlist-headline {
  font-weight: 300 !important;
  letter-spacing: -0.015em !important;
}

/* ─── CTA banner headline: italic serif ───────────────────────────── */
.block-cta-banner .cta-banner-headline {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: -0.015em !important;
}

/* ─── Scroll safety ──────────────────────────────────────────────── */
html, body {
  overflow-y: auto !important;
  height: auto !important;
  min-height: 0 !important;
  position: static !important;
  touch-action: auto !important;
  overscroll-behavior-y: auto !important;
}

:root:has(.block-comparison) .hero-editorial {
  min-height: min(78svh, 720px) !important;
  max-height: none !important;
}

@media (max-width: 760px) {
  :root:has(.block-comparison) .hero-editorial {
    min-height: min(72svh, 620px) !important;
  }
}

/* End TTK-EN landings block */

/* ════════════════════════════════════════════════════════════════════
   LEGACY SALES-PAGE RESCUE — editorial refinement for Hanna
   Applies to: /bloom, /awaken, /retreat, /coaching,
               /helig-intimitet, /konsten-att-ligga
   Pattern: override the legacy .subpage-hero / .feature-cards /
            .prog-modules / .ed-pricing / .ed-tiers / .ed-faq /
            .two-col / .testimonials-editorial / .dark-cta /
            .sp-hero / .feat-cards / .bloom-spotlight rules already
            present in sites.custom_css.

   Principles (Rams / Vignelli / Tufte / Ogilvy / Hara):
   - Less, but better
   - Editorial typography (Cormorant Garamond italic, no uppercase SHOUT)
   - Whitespace as luxury
   - Radii 0-8px (never 12-16px, never 100px/999px pills)
   - No glow shadows; 1px hairline borders or 1 soft shadow only
   - No gradient decoration; solid bg or single cream
   - No uppercase card titles; serif sentence case
   - No translateY(-4px) "lift" hover effects; quieter underlines / color shifts
   - No scale(1.03) image twitches
   - Fluid clamp() typography, mobile-first min-width breakpoints
   - Preserve hierarchy and readability — body 16px, line-height 1.7

   Palette:
   --legacy-cream:      #FAF8F5
   --legacy-cream-warm: #F5EFE6
   --legacy-ink:        #2B1F18  (deep cocoa, replaces pure black)
   --legacy-ink-soft:   #4A3E36
   --legacy-mute:       #8A7D73
   --legacy-rose:       #C9A9A6  (rose accent)
   --legacy-rose-deep:  #B08A85
   --legacy-line:       rgba(43,31,24,0.08)
   --legacy-line-warm:  rgba(176,138,133,0.22)
   ════════════════════════════════════════════════════════════════════ */

/* ─── 0. tokens (scoped so we don't leak into block system) ───── */
.subpage-hero,
.sp-hero,
.feature-cards,
.feat-cards,
.prog-modules,
.program-modules,
.two-col,
.ed-pricing,
.ed-tiers,
.ed-faq,
.dark-cta,
.testimonials-editorial,
.bloom-spotlight,
.opt-in,
.contact-page {
  --legacy-cream: #FAF8F5 !important;
  --legacy-cream-warm: #F5EFE6 !important;
  --legacy-ink: #2B1F18 !important;
  --legacy-ink-soft: #4A3E36 !important;
  --legacy-mute: #8A7D73 !important;
  --legacy-rose: #C9A9A6 !important;
  --legacy-rose-deep: #B08A85 !important;
  --legacy-line: rgba(43, 31, 24, 0.08) !important;
  --legacy-line-warm: rgba(176, 138, 133, 0.22) !important;
  --legacy-radius: 4px !important;
  --legacy-radius-lg: 8px !important;
}

/* ════════════════════════════════════════════════════════════════════
   1. SUBPAGE HERO  (.subpage-hero / .subpage-hero--dark / sp-hero)
   AI-slop fixed: heavy drop shadow on img, gradient overlay on img,
   "warm tinted shadow" offset trick, uppercase tracked eyebrow,
   cramped mobile stack.
   ════════════════════════════════════════════════════════════════════ */

.subpage-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 9vw, 7rem) !important;
  background-color: var(--legacy-cream) !important;
  color: var(--legacy-ink) !important;
  position: relative !important;
  overflow: hidden !important;
}

.subpage-hero::before {
  /* subtle top hairline for quiet separation, no gradient */
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: clamp(120px, 20vw, 240px) !important;
  height: 1px !important;
  background-color: var(--legacy-line-warm) !important;
  opacity: 0.6 !important;
}

.subpage-hero--dark {
  background-color: var(--legacy-ink) !important;
  color: var(--legacy-cream) !important;
}

.subpage-hero--dark::before {
  background-color: rgba(250, 248, 245, 0.18) !important;
}

.subpage-hero__inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(2.5rem, 6vw, 4.5rem) !important;
  align-items: center !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

@media (min-width: 860px) {
  .subpage-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
    gap: clamp(3.5rem, 7vw, 7rem) !important;
  }
}

.subpage-hero--no-image .subpage-hero__inner {
  grid-template-columns: 1fr !important;
  max-width: 720px !important;
  text-align: left !important;
}

.subpage-hero__text {
  max-width: 560px !important;
}

.subpage-hero__eyebrow {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--legacy-rose-deep) !important;
  margin-bottom: 1.5rem !important;
  opacity: 0.9 !important;
}

.subpage-hero--dark .subpage-hero__eyebrow {
  color: var(--legacy-rose) !important;
}

.subpage-hero__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(2.5rem, 6vw, 4.25rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 1.5rem 0 !important;
  color: var(--legacy-ink) !important;
  text-wrap: balance !important;
  max-width: 18ch !important;
}

.subpage-hero--dark .subpage-hero__title {
  color: var(--legacy-cream) !important;
}

.subpage-hero__title em {
  font-style: italic !important;
  color: var(--legacy-rose-deep) !important;
  font-weight: 300 !important;
}

.subpage-hero--dark .subpage-hero__title em {
  color: var(--legacy-rose) !important;
}

.subpage-hero__sub {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: clamp(1rem, 1.6vw, 1.125rem) !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 0 2.5rem 0 !important;
  max-width: 44ch !important;
  font-weight: 400 !important;
}

.subpage-hero--dark .subpage-hero__sub {
  color: rgba(250, 248, 245, 0.78) !important;
}

.subpage-hero__cta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  align-items: center !important;
  margin-top: 0 !important;
}

.subpage-hero__img,
.subpage-hero__img-frame {
  position: relative !important;
  border-radius: var(--legacy-radius-lg) !important;
  overflow: hidden !important;
  box-shadow: none !important; /* kill drop shadow */
}

.subpage-hero__img::before,
.subpage-hero__img::after {
  display: none !important; /* kill "tinted shadow" offset box and bottom gradient */
  content: none !important;
}

.subpage-hero__img img,
.subpage-hero__img-frame img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: var(--legacy-radius-lg) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: filter 0.6s ease !important;
  filter: saturate(0.96) !important;
}

/* mobile: image above text, compact aspect */
@media (max-width: 859px) {
  .subpage-hero__inner { grid-template-columns: 1fr !important; }
  .subpage-hero__img,
  .subpage-hero__img-frame {
    order: -1 !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }
  .subpage-hero__img img,
  .subpage-hero__img-frame img {
    aspect-ratio: 5 / 6 !important;
  }
  .subpage-hero__title { font-size: clamp(2.25rem, 8vw, 3rem) !important; }
}

@media (max-width: 560px) {
  .subpage-hero { padding-top: clamp(5rem, 16vw, 7rem) !important; }
  .subpage-hero__cta {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .subpage-hero__cta > * {
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ── sp-hero (older variant used on some templates) ─────────── */

.sp-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 9vw, 7rem) !important;
  background-color: var(--legacy-cream) !important;
  overflow: hidden !important;
}

.sp-hero--dark {
  background-color: var(--legacy-ink) !important;
  color: var(--legacy-cream) !important;
}

.sp-hero__inner {
  max-width: 1120px !important;
  margin: 0 auto !important;
  gap: clamp(2.5rem, 5vw, 4rem) !important;
}

.sp-hero__inner--split {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(2.5rem, 6vw, 4.5rem) !important;
  align-items: center !important;
}

@media (min-width: 860px) {
  .sp-hero__inner--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
    gap: clamp(3.5rem, 7vw, 7rem) !important;
  }
}

.sp-hero__eyebrow {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--legacy-rose-deep) !important;
  margin-bottom: 1.5rem !important;
}

.sp-hero--dark .sp-hero__eyebrow { color: var(--legacy-rose) !important; }

.sp-hero__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 1.5rem 0 !important;
  color: var(--legacy-ink) !important;
  text-wrap: balance !important;
}

.sp-hero--dark .sp-hero__title { color: var(--legacy-cream) !important; }

.sp-hero__title em {
  font-style: italic !important;
  color: var(--legacy-rose-deep) !important;
}

.sp-hero--dark .sp-hero__title em { color: var(--legacy-rose) !important; }

.sp-hero__sub {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: clamp(1rem, 1.6vw, 1.125rem) !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  max-width: 44ch !important;
  margin: 0 0 2.5rem 0 !important;
}

.sp-hero--dark .sp-hero__sub { color: rgba(250, 248, 245, 0.78) !important; }

.sp-hero__img::before,
.sp-hero__img::after {
  display: none !important;
  content: none !important;
}

.sp-hero__img img {
  box-shadow: none !important;
  border-radius: var(--legacy-radius-lg) !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* ════════════════════════════════════════════════════════════════════
   2. FEATURE CARDS  (.feature-cards / .feature-card / .feat-cards / .feat-card)
   AI-slop fixed: 16px radius, uppercase tracked titles, 3-col dense
   grid, translateY(-4px) lift, heavy hover shadow, 4rem padding,
   decorative giant italic num.
   ════════════════════════════════════════════════════════════════════ */

.feature-cards,
.feat-cards {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background-color: var(--legacy-cream) !important;
}

.feature-cards--warm,
.feat-cards--warm {
  background-color: var(--legacy-cream-warm) !important;
}

.feature-cards__header,
.feat-cards__header {
  text-align: left !important;
  max-width: 640px !important;
  margin: 0 0 clamp(2.75rem, 6vw, 4.5rem) 0 !important;
}

@media (min-width: 760px) {
  .feature-cards__header,
  .feat-cards__header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.feature-cards__eyebrow {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--legacy-rose-deep) !important;
  margin-bottom: 1rem !important;
}

.feature-cards__title,
.feat-cards__header h2 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.875rem, 3.6vw, 2.75rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 0.75rem 0 !important;
  text-wrap: balance !important;
}

.feature-cards__subtitle,
.feat-cards__subtitle {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 !important;
  max-width: 56ch !important;
}

@media (min-width: 760px) {
  .feature-cards__subtitle,
  .feat-cards__subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* grid: mobile 1col, tablet 2col, desktop 3col. Never 4. */
.feature-cards__grid,
.feat-cards__grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(1rem, 2vw, 1.5rem) !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
}

@media (min-width: 640px) {
  .feature-cards__grid,
  .feat-cards__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 980px) {
  .feature-cards__grid,
  .feat-cards__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: clamp(1.25rem, 2vw, 1.75rem) !important;
  }
}

.feature-cards__grid--2,
.feat-cards__grid--2 {
  max-width: 780px !important;
}

@media (min-width: 980px) {
  .feature-cards__grid--2,
  .feat-cards__grid--2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.feature-cards__grid--4,
.feat-cards__grid--4 {
  /* collapse 4-col to 2-col always; 4-col dense rows are AI-slop */
}

@media (min-width: 980px) {
  .feature-cards__grid--4,
  .feat-cards__grid--4 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 920px !important;
  }
}

@media (min-width: 1200px) {
  .feature-cards__grid--4,
  .feat-cards__grid--4 {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1180px !important;
  }
}

/* card itself — 4px radius, hairline border, no hover lift */
.feature-card,
.feat-card {
  background: #FFFFFF !important;
  border: 1px solid var(--legacy-line-warm) !important;
  border-radius: var(--legacy-radius) !important;
  padding: clamp(1.75rem, 3vw, 2.25rem) !important;
  box-shadow: none !important;
  transform: none !important;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
}

.feature-card:hover,
.feat-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--legacy-rose) !important;
  background-color: #FFFDFA !important;
}

.feature-card__num,
.feat-card__num {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: 1.125rem !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--legacy-rose-deep) !important;
  opacity: 1 !important;
  line-height: 1 !important;
  margin: 0 0 1rem 0 !important;
  letter-spacing: 0.02em !important;
}

.feature-card:hover .feat-card__num,
.feat-card:hover .feat-card__num,
.feature-card:hover .feature-card__num {
  opacity: 1 !important;
}

.feature-card__icon,
.feat-card__icon {
  font-size: 1.125rem !important;
  line-height: 1 !important;
  color: var(--legacy-rose-deep) !important;
  margin: 0 0 1rem 0 !important;
  display: block !important;
  opacity: 0.85 !important;
}

/* TITLE: serif, sentence case, NOT uppercase */
.feature-card__title,
.feat-card__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.25rem, 2vw, 1.4rem) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.3 !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 0.75rem 0 !important;
}

.feature-card__body,
.feature-card__desc,
.feat-card__body {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 !important;
  flex: 1 !important;
}

.feature-card__link,
.feat-card .link-arrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  margin-top: 1.25rem !important;
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--legacy-rose-deep) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent !important;
  transition: border-color 0.25s ease !important;
}

.feature-card__link:hover,
.feat-card .link-arrow:hover {
  text-decoration: none !important;
  border-bottom-color: var(--legacy-rose-deep) !important;
}

/* ════════════════════════════════════════════════════════════════════
   3. PROGRAM MODULES  (.prog-modules / .prog-module / .program-modules)
   AI-slop fixed: giant decorative 3rem italic numbers at 0.35 opacity,
   hover-bg tint, left border accent (process-diagram), ✦ bullets.
   Replace with: clean numbered list, no hover-bg, small numerals
   as editorial drop-cap-like accent, bullet list simplified.
   ════════════════════════════════════════════════════════════════════ */

.prog-modules,
.program-modules {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background-color: var(--legacy-cream) !important;
}

.prog-modules__header,
.program-modules__header {
  text-align: left !important;
  max-width: 640px !important;
  margin: 0 0 clamp(3rem, 6vw, 4.5rem) 0 !important;
}

@media (min-width: 760px) {
  .prog-modules__header,
  .program-modules__header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.prog-modules__header h2 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.875rem, 3.6vw, 2.75rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 1rem 0 !important;
  color: var(--legacy-ink) !important;
  text-wrap: balance !important;
}

.prog-modules__subtitle {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 1rem !important;
  color: var(--legacy-ink-soft) !important;
  line-height: 1.7 !important;
  max-width: 52ch !important;
  margin: 0 !important;
}

@media (min-width: 760px) {
  .prog-modules__subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.prog-modules__list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  max-width: 780px !important;
  margin: 0 auto !important;
}

.prog-module {
  display: grid !important;
  grid-template-columns: 48px 1fr !important;
  gap: 1.5rem !important;
  padding: 2rem 0 !important;
  border-bottom: 1px solid var(--legacy-line-warm) !important;
  border-left: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  align-items: start !important;
  transition: none !important;
}

.prog-module:first-child {
  border-top: 1px solid var(--legacy-line-warm) !important;
}

.prog-module:last-child {
  border-bottom: 1px solid var(--legacy-line-warm) !important;
}

.prog-module:hover {
  background-color: transparent !important;
  border-left-color: transparent !important;
}

/* number: quiet numeral, serif italic, smaller */
.prog-module__num {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: 1.375rem !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--legacy-rose-deep) !important;
  opacity: 1 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  padding-top: 0.125rem !important;
  transition: none !important;
  letter-spacing: 0.02em !important;
}

.prog-module:hover .prog-module__num { opacity: 1 !important; }

.prog-module__body,
.prog-module__content {
  padding-top: 0 !important;
}

.prog-module__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.3 !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 0.625rem 0 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.prog-module__desc {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 0 1rem 0 !important;
}

.prog-module__topics {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0.5rem 0 0 0 !important;
}

@media (min-width: 640px) {
  .prog-module__topics {
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 2rem !important;
  }
}

.prog-module__topics li {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.875rem !important;
  color: var(--legacy-ink-soft) !important;
  line-height: 1.6 !important;
  padding: 0.375rem 0 0.375rem 1rem !important;
  position: relative !important;
}

/* replace ✦ with quiet hairline dash */
.prog-module__topics li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.85em !important;
  width: 0.5rem !important;
  height: 1px !important;
  background-color: var(--legacy-rose-deep) !important;
  opacity: 0.55 !important;
  font-size: 0 !important;
}

@media (max-width: 640px) {
  .prog-module {
    grid-template-columns: 36px 1fr !important;
    gap: 1rem !important;
    padding: 1.75rem 0 !important;
  }
  .prog-module__num { font-size: 1.25rem !important; }
  .prog-module__topics { grid-template-columns: 1fr !important; }
}

/* ── program-module (alt card layout) ───────────────────────── */
.program-module {
  display: grid !important;
  grid-template-columns: 2.25rem 1fr !important;
  gap: 1.25rem !important;
  padding: clamp(1.5rem, 2.5vw, 2rem) !important;
  background: #FFFFFF !important;
  border: 1px solid var(--legacy-line-warm) !important;
  border-radius: var(--legacy-radius) !important;
  align-items: start !important;
  box-shadow: none !important;
  transition: border-color 0.3s ease !important;
}

.program-module:hover {
  border-color: var(--legacy-rose) !important;
  box-shadow: none !important;
  transform: none !important;
}

.program-module__num {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: 1.25rem !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--legacy-rose-deep) !important;
  line-height: 1.2 !important;
  padding-top: 0.125rem !important;
}

.program-module__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 0.5rem 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.program-module__desc {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 0 0.75rem 0 !important;
}

/* topic tags: no pills. render as comma-separated inline text tone */
.program-module__topics {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.375rem 1rem !important;
}

.program-module__topic {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: var(--legacy-mute) !important;
  letter-spacing: 0.02em !important;
  position: relative !important;
}

.program-module__topic:not(:last-child)::after {
  content: '·' !important;
  margin-left: 1rem !important;
  color: var(--legacy-rose) !important;
  opacity: 0.6 !important;
  font-weight: 700 !important;
}

/* ════════════════════════════════════════════════════════════════════
   4. ED-PRICING  (.ed-pricing — single-tier centered card)
   AI-slop fixed: centered body copy block, ✦ checkmarks, large serif
   price dominating layout, "pnote" small text feels tacked on.
   Replace with: editorial two-column (title left, price right),
   left-aligned features list, hairline bullets, strong CTA.
   ════════════════════════════════════════════════════════════════════ */

.ed-pricing {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background-color: var(--legacy-cream-warm) !important;
  position: relative !important;
}

.ed-pricing__inner {
  max-width: 680px !important;
  margin: 0 auto !important;
  text-align: left !important;
  padding: clamp(2.5rem, 5vw, 3.5rem) !important;
  background-color: #FFFFFF !important;
  border: 1px solid var(--legacy-line-warm) !important;
  border-radius: var(--legacy-radius-lg) !important;
  box-shadow: none !important;
}

@media (min-width: 640px) {
  .ed-pricing__inner {
    padding: clamp(3rem, 6vw, 4rem) !important;
  }
}

.ed-pricing__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.2 !important;
  margin: 0 0 1.25rem 0 !important;
  color: var(--legacy-ink) !important;
  letter-spacing: -0.01em !important;
  text-wrap: balance !important;
}

.ed-pricing__price {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--legacy-rose-deep) !important;
  margin: 0 0 0.375rem 0 !important;
  line-height: 1 !important;
  letter-spacing: -0.015em !important;
  display: block !important;
}

.ed-pricing__pnote {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.875rem !important;
  color: var(--legacy-mute) !important;
  margin: 0 0 2rem 0 !important;
  letter-spacing: 0.02em !important;
}

.ed-pricing__features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 2rem 0 !important;
  max-width: none !important;
  text-align: left !important;
  border-top: 1px solid var(--legacy-line-warm) !important;
}

.ed-pricing__features li {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.9375rem !important;
  color: var(--legacy-ink-soft) !important;
  padding: 0.875rem 0 0.875rem 1.75rem !important;
  position: relative !important;
  border-bottom: 1px solid var(--legacy-line-warm) !important;
  line-height: 1.55 !important;
}

.ed-pricing__features li:last-child { border-bottom: none !important; }

/* replace ✦ with editorial hairline dash */
.ed-pricing__features li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 1.4em !important;
  width: 0.75rem !important;
  height: 1px !important;
  background-color: var(--legacy-rose-deep) !important;
  opacity: 0.7 !important;
  font-size: 0 !important;
  color: transparent !important;
}

.ed-pricing__note {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  color: var(--legacy-mute) !important;
  font-style: italic !important;
  margin: 1.5rem 0 1.5rem 0 !important;
  line-height: 1.6 !important;
  max-width: 48ch !important;
}

/* CTA button container inside ed-pricing */
.ed-pricing__inner .btn-editorial-primary,
.ed-pricing__inner a[class*="btn"] {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  padding: 1rem 2rem !important;
}

@media (min-width: 640px) {
  .ed-pricing__inner .btn-editorial-primary,
  .ed-pricing__inner a[class*="btn"] {
    display: inline-flex !important;
    width: auto !important;
    min-width: 260px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   5. ED-TIERS  (.ed-tiers / .ed-tier — three-column pricing tiers)
   AI-slop fixed: 999px pill badge, 32px drop shadow on featured tier,
   equal-weight columns, ✦ bullets.
   Replace with: quieter featured state (border + tint, no shadow),
   small cap-text badge in top-left, hairline bullets.
   ════════════════════════════════════════════════════════════════════ */

.ed-tiers {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background-color: var(--legacy-cream) !important;
}

.ed-tiers__header {
  text-align: left !important;
  max-width: 640px !important;
  margin: 0 0 clamp(3rem, 6vw, 4.5rem) 0 !important;
}

@media (min-width: 760px) {
  .ed-tiers__header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.ed-tiers__grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(1.25rem, 2vw, 1.75rem) !important;
  align-items: stretch !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
}

@media (min-width: 860px) {
  .ed-tiers__grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.ed-tier {
  padding: clamp(2rem, 3.5vw, 2.75rem) !important;
  background: #FFFFFF !important;
  border: 1px solid var(--legacy-line-warm) !important;
  border-radius: var(--legacy-radius-lg) !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.875rem !important;
  box-shadow: none !important;
  transition: border-color 0.3s ease !important;
}

.ed-tier:hover {
  border-color: var(--legacy-rose) !important;
  box-shadow: none !important;
  transform: none !important;
}

.ed-tier--featured {
  border: 1px solid var(--legacy-rose-deep) !important;
  background: #FFFDFA !important;
  box-shadow: none !important;
}

.ed-tier__badge {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  left: auto !important;
  transform: none !important;
  background: transparent !important;
  color: var(--legacy-rose-deep) !important;
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--legacy-rose-deep) !important;
  white-space: nowrap !important;
  padding-bottom: 0.125rem !important;
}

.ed-tier__name {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  color: var(--legacy-ink) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.ed-tier__desc {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.9375rem !important;
  color: var(--legacy-ink-soft) !important;
  line-height: 1.55 !important;
  margin: 0 0 0.75rem 0 !important;
}

.ed-tier__price {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.875rem, 3.2vw, 2.5rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--legacy-rose-deep) !important;
  line-height: 1 !important;
  margin: 0.25rem 0 !important;
  letter-spacing: -0.015em !important;
}

.ed-tier__spots {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  color: var(--legacy-mute) !important;
  font-style: italic !important;
  margin: 0 0 0.75rem 0 !important;
}

.ed-tier__features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0.5rem 0 1.5rem 0 !important;
  flex: 1 !important;
  border-top: 1px solid var(--legacy-line-warm) !important;
}

.ed-tier__features li {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.875rem !important;
  color: var(--legacy-ink-soft) !important;
  padding: 0.75rem 0 0.75rem 1.25rem !important;
  position: relative !important;
  border-bottom: 1px solid var(--legacy-line-warm) !important;
  line-height: 1.5 !important;
}

.ed-tier__features li:last-child { border-bottom: none !important; }

.ed-tier__features li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 1.35em !important;
  width: 0.5rem !important;
  height: 1px !important;
  background-color: var(--legacy-rose-deep) !important;
  opacity: 0.65 !important;
  font-size: 0 !important;
  color: transparent !important;
}

.ed-tier .btn-editorial-primary {
  margin-top: auto !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  padding: 0.875rem 1.5rem !important;
}

/* ── ed-price-card (variant — if present) ───────────────────── */
.ed-price-card {
  padding: clamp(2rem, 3.5vw, 2.75rem) !important;
  background: #FFFFFF !important;
  border: 1px solid var(--legacy-line-warm) !important;
  border-radius: var(--legacy-radius-lg) !important;
  box-shadow: none !important;
}

.ed-price-card__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 0.75rem 0 !important;
}

.ed-price-card__price {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--legacy-rose-deep) !important;
  line-height: 1 !important;
  margin: 0 0 0.5rem 0 !important;
}

/* ════════════════════════════════════════════════════════════════════
   6. ED-FAQ  (.ed-faq — accordion list)
   Currently: fine baseline, but tighten. Remove uppercase tracking
   on question, quieter typography, larger answer line-height.
   ════════════════════════════════════════════════════════════════════ */

.ed-faq {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background-color: var(--legacy-cream) !important;
}

.ed-faq__header {
  text-align: left !important;
  max-width: 640px !important;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem) 0 !important;
}

@media (min-width: 760px) {
  .ed-faq__header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.ed-faq__header h2,
.ed-faq__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.875rem, 3.6vw, 2.75rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 1rem 0 !important;
  text-wrap: balance !important;
}

.ed-faq__subtitle {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 !important;
  max-width: 56ch !important;
}

@media (min-width: 760px) {
  .ed-faq__subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.ed-faq__list {
  max-width: 760px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.ed-faq-item,
.ed-faq__item {
  border-bottom: 1px solid var(--legacy-line-warm) !important;
  border-top: none !important;
}

.ed-faq-item:first-child,
.ed-faq__item:first-child {
  border-top: 1px solid var(--legacy-line-warm) !important;
}

.ed-faq-q {
  width: 100% !important;
  background: none !important;
  border: none !important;
  padding: 1.5rem 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 1.5rem !important;
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--legacy-ink) !important;
  cursor: pointer !important;
  text-align: left !important;
  line-height: 1.4 !important;
  transition: color 0.2s ease !important;
}

.ed-faq-q:hover { color: var(--legacy-rose-deep) !important; }

.ed-faq-icon {
  flex-shrink: 0 !important;
  font-size: 1.125rem !important;
  font-weight: 300 !important;
  color: var(--legacy-rose-deep) !important;
  transition: transform 0.3s ease !important;
  line-height: 1 !important;
  padding-top: 0.125em !important;
  opacity: 0.7 !important;
}

.ed-faq-item.is-open .ed-faq-icon,
.ed-faq__item.is-open .ed-faq-icon {
  transform: rotate(45deg) !important;
  opacity: 1 !important;
}

.ed-faq-a {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s ease !important;
}

.ed-faq-item.is-open .ed-faq-a,
.ed-faq__item.is-open .ed-faq-a {
  max-height: 800px !important;
}

.ed-faq-a p {
  padding: 0 0 1.5rem 0 !important;
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.9375rem !important;
  line-height: 1.75 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 !important;
  max-width: 62ch !important;
}

.ed-faq-a p + p { padding-top: 0.75rem !important; }

/* ════════════════════════════════════════════════════════════════════
   7. TWO-COL  (.two-col / .two-col--warm / .two-col--reversed)
   AI-slop fixed: "warm tinted shadow" offset box trick, scale(1.025)
   hover, aspect 4/5 too tall for some content, ✦ bullets with
   underline dividers, 56fr/44fr asymmetry, uppercase nothing but
   the image has a frame 1px inset box-shadow which is fine.
   ════════════════════════════════════════════════════════════════════ */

.two-col {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background-color: var(--legacy-cream) !important;
}

.two-col--warm { background-color: var(--legacy-cream-warm) !important; }

.two-col__grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: center !important;
  gap: clamp(2.5rem, 6vw, 4.5rem) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

@media (min-width: 860px) {
  .two-col__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(3.5rem, 7vw, 7rem) !important;
  }
}

.two-col--reversed .two-col__grid {
  grid-template-columns: 1fr !important;
}

@media (min-width: 860px) {
  .two-col--reversed .two-col__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
  .two-col--reversed .two-col__img { order: 2 !important; }
  .two-col--reversed .two-col__content { order: 1 !important; }
}

/* image: no warm-tinted-shadow offset box, no scale hover */
.two-col__img {
  position: relative !important;
}

.two-col__img::after,
.two-col__img::before {
  display: none !important;
  content: none !important;
}

.two-col__img-frame {
  position: relative !important;
  border-radius: var(--legacy-radius-lg) !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.two-col__img-frame::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(176, 138, 133, 0.22) !important;
  border-radius: var(--legacy-radius-lg) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.two-col__img-frame img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: var(--legacy-radius-lg) !important;
  transform: none !important;
  transition: filter 0.6s ease !important;
  filter: saturate(0.96) !important;
}

.two-col__img:hover .two-col__img-frame img {
  transform: none !important;
}

.two-col__content,
.two-col__body {
  max-width: 560px !important;
}

.two-col--reversed .two-col__content,
.two-col--reversed .two-col__body {
  max-width: 560px !important;
}

.two-col__content .eyebrow,
.two-col__body .eyebrow {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--legacy-rose-deep) !important;
  margin-bottom: 1.25rem !important;
  display: block !important;
}

.two-col__content h2,
.two-col__body h2 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.18 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 1.5rem 0 !important;
  color: var(--legacy-ink) !important;
  text-wrap: balance !important;
}

.two-col__content h3,
.two-col__body h3 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  font-style: normal !important;
  margin: 1.75rem 0 0.625rem 0 !important;
  color: var(--legacy-ink) !important;
  line-height: 1.35 !important;
}

.two-col__content p,
.two-col__body p {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 0 1rem 0 !important;
}

.two-col__content ul,
.two-col__body ul {
  margin: 0.5rem 0 1.5rem 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.two-col__content ul li,
.two-col__body ul li {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
  color: var(--legacy-ink-soft) !important;
  padding: 0.5rem 0 0.5rem 1.25rem !important;
  position: relative !important;
  border-bottom: 1px solid var(--legacy-line-warm) !important;
}

.two-col__content ul li:last-child,
.two-col__body ul li:last-child {
  border-bottom: none !important;
}

.two-col__content ul li::before,
.two-col__body ul li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 1.2em !important;
  width: 0.625rem !important;
  height: 1px !important;
  background-color: var(--legacy-rose-deep) !important;
  opacity: 0.7 !important;
  font-size: 0 !important;
  color: transparent !important;
  line-height: 1 !important;
}

.two-col__content .btn-editorial-primary,
.two-col__body .btn-editorial-primary {
  margin-top: 1rem !important;
}

.two-col__single {
  max-width: 680px !important;
  margin: 0 auto !important;
}

@media (max-width: 859px) {
  .two-col--reversed .two-col__img,
  .two-col--reversed .two-col__content,
  .two-col--reversed .two-col__body { order: unset !important; }
  .two-col__img {
    max-width: 440px !important;
    margin: 0 auto !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   8. TESTIMONIALS EDITORIAL  (.testimonials-editorial / .testi-editorial-card)
   AI-slop fixed: 12px radius, drop shadow, translateY(-3px) hover lift,
   oversized serif quote mark at opacity 0.4, author name in uppercase
   tracked 0.12em.
   Replace with: card as clean quote-block (no shadow, no lift),
   single leading hairline above author, quote mark subtle.
   ════════════════════════════════════════════════════════════════════ */

.testimonials-editorial {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background-color: var(--legacy-cream-warm) !important;
}

.testimonials-editorial .container > .reveal-ed,
.testimonials-editorial__header {
  text-align: left !important;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem) 0 !important;
  max-width: 640px !important;
}

@media (min-width: 760px) {
  .testimonials-editorial .container > .reveal-ed,
  .testimonials-editorial__header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.testimonials-editorial-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(1.25rem, 2vw, 1.75rem) !important;
  align-items: stretch !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

@media (min-width: 760px) {
  .testimonials-editorial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1000px) {
  .testimonials-editorial-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.testi-editorial-card {
  background: #FFFFFF !important;
  border: 1px solid var(--legacy-line-warm) !important;
  border-radius: var(--legacy-radius-lg) !important;
  padding: clamp(2rem, 3vw, 2.5rem) !important;
  position: relative !important;
  transition: border-color 0.3s ease !important;
  box-shadow: none !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
}

.testi-editorial-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--legacy-rose) !important;
}

.testi-editorial-quote-mark {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: 2.25rem !important;
  line-height: 0.8 !important;
  color: var(--legacy-rose) !important;
  opacity: 0.5 !important;
  margin: 0 0 0.75rem 0 !important;
  font-style: italic !important;
  pointer-events: none !important;
  user-select: none !important;
  display: block !important;
}

.testi-editorial-text {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: 1.125rem !important;
  font-style: italic !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 1.5rem 0 !important;
  flex: 1 !important;
  letter-spacing: -0.005em !important;
}

.testi-editorial-author {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: var(--legacy-ink) !important;
  padding-top: 1rem !important;
  border-top: 1px solid var(--legacy-line-warm) !important;
  display: block !important;
}

.testi-editorial-author::before {
  content: '— ' !important;
  color: var(--legacy-rose-deep) !important;
  margin-right: 0.125rem !important;
}

/* ════════════════════════════════════════════════════════════════════
   9. DARK CTA  (.dark-cta)
   AI-slop fixed: 3-stop diagonal gradient overlay, scale(1.03) bg
   on hover, min-height 55vh too tall, "blockquote" feels theatrical.
   Replace with: solid tint overlay (single rgba), no scale hover,
   calmer min-height, tighter max-width, serif italic pull-quote.
   ════════════════════════════════════════════════════════════════════ */

.dark-cta {
  position: relative !important;
  min-height: clamp(380px, 45vh, 520px) !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background-color: var(--legacy-ink) !important;
}

.dark-cta__bg {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
  filter: saturate(0.85) brightness(0.85) !important;
}

.dark-cta:hover .dark-cta__bg {
  transform: none !important;
}

.dark-cta__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(43, 31, 24, 0.72) !important; /* single tint, no gradient */
  z-index: 1 !important;
}

.dark-cta__inner {
  position: relative !important;
  z-index: 2 !important;
  text-align: left !important;
  padding-top: clamp(4rem, 8vw, 6rem) !important;
  padding-bottom: clamp(4rem, 8vw, 6rem) !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  padding-left: clamp(1.25rem, 4vw, 2rem) !important;
  padding-right: clamp(1.25rem, 4vw, 2rem) !important;
}

@media (min-width: 760px) {
  .dark-cta__inner { text-align: center !important; }
}

.dark-cta__inner blockquote {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.625rem, 3vw, 2.5rem) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  color: var(--legacy-cream) !important;
  margin: 0 0 1.75rem 0 !important;
  white-space: normal !important;
  max-width: 24ch !important;
  text-wrap: balance !important;
}

@media (min-width: 760px) {
  .dark-cta__inner blockquote {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.dark-cta__sub {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem) !important;
  color: rgba(250, 248, 245, 0.8) !important;
  line-height: 1.65 !important;
  margin: 0 0 2.25rem 0 !important;
  max-width: 48ch !important;
}

@media (min-width: 760px) {
  .dark-cta__sub {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.dark-cta__cta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.875rem !important;
  align-items: center !important;
}

@media (min-width: 760px) {
  .dark-cta__cta { justify-content: center !important; }
}

.dark-cta .btn-editorial-primary {
  background-color: var(--legacy-rose-deep) !important;
  border-color: var(--legacy-rose-deep) !important;
  color: var(--legacy-cream) !important;
  box-shadow: none !important;
  transform: none !important;
}

.dark-cta .btn-editorial-primary:hover {
  background-color: var(--legacy-cream) !important;
  border-color: var(--legacy-cream) !important;
  color: var(--legacy-ink) !important;
  transform: none !important;
  box-shadow: none !important;
}

.dark-cta .btn-editorial-ghost {
  color: rgba(250, 248, 245, 0.88) !important;
  border-color: rgba(250, 248, 245, 0.32) !important;
  transform: none !important;
  box-shadow: none !important;
}

.dark-cta .btn-editorial-ghost:hover {
  background-color: rgba(250, 248, 245, 0.08) !important;
  border-color: var(--legacy-cream) !important;
  color: var(--legacy-cream) !important;
  transform: none !important;
}

@media (max-width: 560px) {
  .dark-cta__cta {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .dark-cta__cta > * {
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   10. BUTTONS  (.btn-editorial-primary / .btn-editorial-ghost)
   AI-slop fixed: translateY(-1px) lift, drop shadow on hover, 6px
   radius, calc(var(--radius)*0.5) — too clever.
   Replace with: solid color shift on hover, no transform, no shadow,
   flat 4px radius.
   ════════════════════════════════════════════════════════════════════ */

.btn-editorial-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.9375rem 2.25rem !important;
  background-color: var(--legacy-ink) !important;
  color: var(--legacy-cream) !important;
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1px solid var(--legacy-ink) !important;
  border-radius: var(--legacy-radius) !important;
  box-shadow: none !important;
  transform: none !important;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease !important;
  cursor: pointer !important;
  min-height: 48px !important;
}

.btn-editorial-primary:hover {
  background-color: var(--legacy-rose-deep) !important;
  border-color: var(--legacy-rose-deep) !important;
  color: var(--legacy-cream) !important;
  box-shadow: none !important;
  transform: none !important;
}

.btn-editorial-ghost {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.9375rem 2.25rem !important;
  background-color: transparent !important;
  color: var(--legacy-ink) !important;
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1px solid var(--legacy-ink) !important;
  border-radius: var(--legacy-radius) !important;
  box-shadow: none !important;
  transform: none !important;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease !important;
  cursor: pointer !important;
  min-height: 48px !important;
}

.btn-editorial-ghost:hover {
  background-color: var(--legacy-ink) !important;
  color: var(--legacy-cream) !important;
  border-color: var(--legacy-ink) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* link-arrow — editorial small caps link */
.link-arrow {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: var(--legacy-rose-deep) !important;
  text-decoration: none !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  transition: gap 0.2s ease, color 0.2s ease !important;
  border-bottom: 1px solid transparent !important;
  padding-bottom: 0.125rem !important;
}

.link-arrow:hover {
  gap: 0.5rem !important;
  opacity: 1 !important;
  color: var(--legacy-ink) !important;
  border-bottom-color: var(--legacy-ink) !important;
}

/* ════════════════════════════════════════════════════════════════════
   11. EYEBROW / SECTION LABELS
   AI-slop fixed: letter-spacing 0.32em (too airy/stretched).
   Replace with: 0.18em (readable, still editorial).
   ════════════════════════════════════════════════════════════════════ */

.eyebrow,
.section-eyebrow,
.section-label,
.section-label-light {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  color: var(--legacy-rose-deep) !important;
  margin-bottom: 1rem !important;
  display: inline-block !important;
}

.section-label-light { color: var(--legacy-rose) !important; }

.section-display {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.875rem, 3.6vw, 3rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
  color: var(--legacy-ink) !important;
  margin-bottom: 1.5rem !important;
  text-wrap: balance !important;
}

.section-header {
  max-width: 640px !important;
  margin: 0 0 clamp(2.75rem, 6vw, 4.5rem) 0 !important;
  text-align: left !important;
}

@media (min-width: 760px) {
  .section-header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   12. BLOOM SPOTLIGHT  (.bloom-spotlight / .bloom-grid etc.)
   AI-slop fixed: 135deg linear-gradient overlay on image, scale(1.03)
   hover on image, --shadow-lg drop shadow, pulseDot animation on
   "next-start" indicator (process-diagram feel), giant stat numbers.
   ════════════════════════════════════════════════════════════════════ */

.bloom-spotlight {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background: var(--legacy-cream-warm) !important;
}

.bloom-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(2.5rem, 5vw, 4rem) !important;
  align-items: center !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

@media (min-width: 860px) {
  .bloom-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(3rem, 6vw, 5rem) !important;
  }
}

.bloom-image {
  position: relative !important;
  border-radius: var(--legacy-radius-lg) !important;
  overflow: hidden !important;
}

.bloom-image img {
  width: 100% !important;
  height: auto !important;
  border-radius: var(--legacy-radius-lg) !important;
  box-shadow: none !important;
  transition: filter 0.6s ease !important;
  filter: saturate(0.96) !important;
  transform: none !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

.bloom-image:hover img { transform: none !important; }

.bloom-image-overlay {
  display: none !important; /* kill gradient overlay */
}

.bloom-content { padding: 0 !important; }

.bloom-tagline {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.125rem, 2vw, 1.375rem) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 0 1.5rem 0 !important;
  line-height: 1.4 !important;
}

.bloom-description {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 0 2rem 0 !important;
  max-width: 52ch !important;
}

/* benefits list */
.bloom-benefits {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.bloom-benefits li {
  display: flex !important;
  align-items: center !important;
  gap: 0.875rem !important;
  padding: 0.75rem 0 !important;
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: var(--legacy-ink) !important;
  border-top: 1px solid var(--legacy-line-warm) !important;
}

.bloom-benefits li:first-child { border-top: none !important; }
.bloom-benefits li:last-child { border-bottom: 1px solid var(--legacy-line-warm) !important; }

.bloom-spotlight .bloom-benefits li {
  padding: 0.75rem 0 !important;
  font-size: 0.9375rem !important;
}

.benefit-icon {
  color: var(--legacy-rose-deep) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  position: relative !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.benefit-icon::before {
  content: '' !important;
  display: block !important;
  width: 8px !important;
  height: 1px !important;
  background-color: var(--legacy-rose-deep) !important;
  opacity: 0.8 !important;
  mask: none !important;
  -webkit-mask: none !important;
  border-radius: 0 !important;
}

/* stats row — editorial dividers, smaller numerals */
.bloom-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin: 2rem 0 !important;
  padding: 1.5rem 0 !important;
  border-top: 1px solid var(--legacy-line-warm) !important;
  border-bottom: 1px solid var(--legacy-line-warm) !important;
}

.bloom-spotlight .bloom-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin: 0 0 2rem !important;
  padding: 1.5rem 0 !important;
  border-top: 1px solid var(--legacy-line-warm) !important;
  border-bottom: 1px solid var(--legacy-line-warm) !important;
}

.bloom-spotlight .bloom-stats .stat,
.bloom-stats .stat {
  text-align: left !important;
  padding: 0 1.25rem !important;
  border-left: 1px solid var(--legacy-line-warm) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  min-width: 0 !important;
}

.bloom-spotlight .bloom-stats .stat:first-child,
.bloom-stats .stat:first-child {
  border-left: 0 !important;
  padding-left: 0 !important;
}

.bloom-spotlight .bloom-stats .stat-number,
.stat-number {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--legacy-ink) !important;
  line-height: 1 !important;
  letter-spacing: -0.015em !important;
  display: block !important;
}

.bloom-spotlight .bloom-stats .stat-label,
.stat-label {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.6875rem !important;
  color: var(--legacy-mute) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  display: block !important;
  margin-top: 0.25rem !important;
}

.bloom-cta { margin-top: 1.5rem !important; }

/* next-start: no pulse animation, quieter */
.bloom-spotlight .next-start,
.next-start {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 0.8125rem !important;
  color: var(--legacy-mute) !important;
  font-style: italic !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
  margin-bottom: 1.25rem !important;
  letter-spacing: 0.02em !important;
}

.bloom-spotlight .next-start::before,
.next-start::before {
  content: '' !important;
  display: inline-block !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--legacy-rose-deep) !important;
  animation: none !important;
  opacity: 0.9 !important;
  flex-shrink: 0 !important;
}

/* mobile stats: stack with horizontal dividers */
@media (max-width: 560px) {
  .bloom-stats,
  .bloom-spotlight .bloom-stats {
    grid-template-columns: 1fr !important;
  }
  .bloom-stats .stat,
  .bloom-spotlight .bloom-stats .stat {
    border-left: 0 !important;
    padding: 0.875rem 0 !important;
    border-top: 1px solid var(--legacy-line-warm) !important;
  }
  .bloom-stats .stat:first-child,
  .bloom-spotlight .bloom-stats .stat:first-child {
    padding-top: 0 !important;
    border-top: 0 !important;
  }
}

.bloom-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 1.25rem 0 !important;
  text-wrap: balance !important;
}

/* ════════════════════════════════════════════════════════════════════
   13. OPT-IN  (.opt-in — secondary capture section)
   Neutralize — keep calm cream bg, serif title, no shadow on fields.
   ════════════════════════════════════════════════════════════════════ */

.opt-in {
  padding: clamp(5rem, 10vw, 8rem) 0 !important;
  background-color: var(--legacy-cream-warm) !important;
}

.opt-in--dark {
  background-color: var(--legacy-ink) !important;
  color: var(--legacy-cream) !important;
}

.opt-in__inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: clamp(1.5rem, 3vw, 2.25rem) !important;
  max-width: 640px !important;
  margin: 0 auto !important;
}

.opt-in__content .eyebrow {
  margin-bottom: 1rem !important;
}

.opt-in h2,
.opt-in__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.2 !important;
  margin: 0 0 0.75rem 0 !important;
  color: var(--legacy-ink) !important;
  text-wrap: balance !important;
}

.opt-in--dark h2,
.opt-in--dark .opt-in__title {
  color: var(--legacy-cream) !important;
}

.opt-in p,
.opt-in__sub {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 !important;
  max-width: 48ch !important;
}

.opt-in--dark p,
.opt-in--dark .opt-in__sub {
  color: rgba(250, 248, 245, 0.8) !important;
}

/* ════════════════════════════════════════════════════════════════════
   14. CONTACT PAGE  (.contact-page / .contact-blk)
   ════════════════════════════════════════════════════════════════════ */

.contact-page {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem) !important;
  background-color: var(--legacy-cream) !important;
}

.contact-page__inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(2.5rem, 5vw, 4rem) !important;
  align-items: start !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
}

@media (min-width: 860px) {
  .contact-page__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(3rem, 6vw, 5rem) !important;
  }
}

.contact-page--no-image .contact-page__inner {
  grid-template-columns: 1fr !important;
  max-width: 640px !important;
}

.contact-page__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-size: clamp(1.875rem, 3.6vw, 2.75rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
  color: var(--legacy-ink) !important;
  margin: 0 0 1rem 0 !important;
  text-wrap: balance !important;
}

.contact-page__sub {
  font-family: var(--font-sans, 'Manrope', sans-serif) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--legacy-ink-soft) !important;
  margin: 0 0 2rem 0 !important;
  max-width: 48ch !important;
}

.contact-blk__content .eyebrow { margin-bottom: 1rem !important; }

/* ════════════════════════════════════════════════════════════════════
   15. GLOBAL TYPOGRAPHY NUDGES (scoped, quiet)
   ════════════════════════════════════════════════════════════════════ */

/* generic h2/h3 inside editorial sections — anti-uppercase, serif italic */
.subpage-hero h1,
.subpage-hero h2,
.sp-hero h1,
.sp-hero h2,
.feature-cards h2,
.feat-cards h2,
.prog-modules h2,
.program-modules h2,
.ed-pricing h2,
.ed-tiers h2,
.ed-faq h2,
.two-col h2,
.testimonials-editorial h2,
.dark-cta h2,
.opt-in h2,
.bloom-spotlight h2 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
  text-wrap: balance !important;
}

/* kill center-aligned body inside legacy sections (except dark-cta on desktop) */
.subpage-hero__sub,
.sp-hero__sub,
.feature-card__body,
.feat-card__body,
.prog-module__desc,
.two-col__content p,
.two-col__body p,
.bloom-description,
.ed-tier__desc,
.opt-in__sub {
  text-align: left !important;
}

/* image saturation calm across legacy */
.subpage-hero__img img,
.subpage-hero__img-frame img,
.sp-hero__img img,
.two-col__img-frame img,
.bloom-image img,
.dark-cta__bg {
  filter: saturate(0.96) !important;
}

.dark-cta__bg { filter: saturate(0.85) brightness(0.82) !important; }

/* kill global reveal-ed jitters if they cause layout flicker */
.reveal-ed,
.reveal-ed-delay-1,
.reveal-ed-delay-2,
.reveal-ed-delay-3 {
  transform: none !important;
}

/* ════════════════════════════════════════════════════════════════════
   16. ACCESSIBILITY + REDUCED MOTION
   ════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .subpage-hero *,
  .sp-hero *,
  .feature-cards *,
  .feat-cards *,
  .prog-modules *,
  .program-modules *,
  .ed-pricing *,
  .ed-tiers *,
  .ed-faq *,
  .two-col *,
  .testimonials-editorial *,
  .dark-cta *,
  .bloom-spotlight * {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }
}

/* focus states — keyboard visible */
.btn-editorial-primary:focus-visible,
.btn-editorial-ghost:focus-visible,
.link-arrow:focus-visible,
.ed-faq-q:focus-visible,
.feature-card__link:focus-visible {
  outline: 2px solid var(--legacy-rose-deep) !important;
  outline-offset: 3px !important;
  border-radius: var(--legacy-radius) !important;
}

/* ════════════════════════════════════════════════════════════════════
   17. CONTAINER + VERTICAL RHYTHM
   Tighten max-width and ensure generous, consistent whitespace.
   ════════════════════════════════════════════════════════════════════ */

.subpage-hero .container,
.sp-hero .container,
.feature-cards .container,
.feat-cards .container,
.prog-modules .container,
.program-modules .container,
.ed-pricing .container,
.ed-tiers .container,
.ed-faq .container,
.two-col .container,
.testimonials-editorial .container,
.dark-cta .container,
.opt-in .container,
.contact-page .container,
.bloom-spotlight .container {
  max-width: 1200px !important;
  padding-left: clamp(1.25rem, 4vw, 2rem) !important;
  padding-right: clamp(1.25rem, 4vw, 2rem) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ════════════════════════════════════════════════════════════════════
   18. MOBILE CTA STICKY — calm variant
   Existing page injects a sticky CTA on mobile. Tame shadow + radius.
   ════════════════════════════════════════════════════════════════════ */

.idun-mobile-cta-sticky {
  box-shadow: 0 -1px 0 var(--legacy-line-warm) !important;
  background: rgba(250, 248, 245, 0.96) !important;
  backdrop-filter: saturate(1.05) blur(10px) !important;
  -webkit-backdrop-filter: saturate(1.05) blur(10px) !important;
  border-top: 1px solid var(--legacy-line-warm) !important;
}

.idun-mobile-cta-sticky .btn-cta,
.idun-mobile-cta-sticky .btn-editorial-primary {
  border-radius: var(--legacy-radius) !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.8125rem !important;
}

/* ════════════════════════════════════════════════════════════════════
   19. MISC LEGACY KILL-LIST (things we never want to leak through)
   ════════════════════════════════════════════════════════════════════ */

/* ❌ no pill-shaped tags */
.program-module__topic,
.ed-tier__badge,
[class*="__pill"],
[class*="__chip"] {
  border-radius: 0 !important;
}
.ed-tier__badge {
  border-radius: 0 !important; /* override the 999px */
}

/* ❌ no large radii on any editorial card */
.feature-card,
.feat-card,
.testi-editorial-card,
.ed-tier,
.ed-price-card,
.program-module,
.ed-pricing__inner {
  border-radius: var(--legacy-radius) !important;
}
.ed-tier,
.ed-price-card,
.ed-pricing__inner,
.testi-editorial-card {
  border-radius: var(--legacy-radius-lg) !important;
}

/* ❌ no box-shadow as decoration */
.feature-card,
.feat-card,
.feature-card:hover,
.feat-card:hover,
.testi-editorial-card,
.testi-editorial-card:hover,
.ed-tier,
.ed-tier:hover,
.ed-tier--featured,
.ed-pricing__inner,
.sp-hero__img img,
.subpage-hero__img img,
.bloom-image img,
.program-module,
.program-module:hover {
  box-shadow: none !important;
}

/* ❌ no translateY lift on hover */
.feature-card:hover,
.feat-card:hover,
.testi-editorial-card:hover,
.ed-tier:hover,
.btn-editorial-primary:hover,
.btn-editorial-ghost:hover {
  transform: none !important;
}

/* ❌ no scale zoom on image hover */
.two-col__img:hover .two-col__img-frame img,
.bloom-image:hover img,
.dark-cta:hover .dark-cta__bg,
.subpage-hero__img:hover img {
  transform: none !important;
}

/* ❌ no animated pulse dots */
.next-start::before,
.bloom-spotlight .next-start::before {
  animation: none !important;
}
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: none; } 50% { opacity: 1; transform: none; } }

/* ════════════════════════════════════════════════════════════════════
   20. END — legacy rescue complete
   ════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   HANNA GLOBAL EDITORIAL POLISH (2026-04-19)
   Replaces prior ad-hoc overrides. Applied to both hanna-se + hanna-english.
   Goal: scrape AI-slop (boxy cards, glows, gradients, process-diagrams),
   unify typography rhythm, cap hero heights, make comparison bulletproof.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Design tokens: tighten radii, kill glows ───────────────────── */
:root {
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 999px;
  --shadow-glow: none;
}

/* ─── Hero: one authoritative rule, kill stacked !important chain ── */
.hero-editorial {
  min-height: min(88svh, 820px) !important;
  max-height: none !important;
  /* Center content vertically instead of pinning to bottom — avoids the
     "text trapped at the bottom" look when the hero copy is short. */
  align-items: center !important;
  display: flex !important;
}
.hero-editorial::after {
  display: none !important;
  content: none !important;
}
.hero-editorial__bg img {
  animation: none !important;
  transform: scale(1.02) !important;
}
/* Inner content: balanced padding, generous but not overblown. */
.hero-editorial__inner {
  padding-top: clamp(4rem, 8vw, 7rem) !important;
  padding-bottom: clamp(4rem, 8vw, 7rem) !important;
  width: 100% !important;
}
:root:has(.block-comparison) .hero-editorial {
  min-height: min(78svh, 720px) !important;
}
@media (max-width: 760px) {
  .hero-editorial { min-height: min(82svh, 680px) !important; }
  .hero-editorial__inner {
    padding-top: clamp(3rem, 10vw, 5rem) !important;
    padding-bottom: clamp(3rem, 10vw, 5rem) !important;
  }
  :root:has(.block-comparison) .hero-editorial { min-height: min(72svh, 620px) !important; }
}

/* ─── Hero: calm the sub + trust row ─────────────────────────────── */
.hero-editorial__sub {
  max-width: 52ch !important;
}
.hero-badge,
.hero-editorial__eyebrow {
  background: rgba(201,169,166,0.10) !important;
  color: #8B6F66 !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 5px 14px !important;
  border-radius: 999px !important;
  border: 0 !important;
}

/* ─── Kill gradient text globally (a serif warm palette never needs it) */
[class*="gradient-text"],
.hero-editorial__title,
.hero-editorial__sub,
.section-title,
.feature-title,
.bloom-title,
.bonus-title,
.pricing-title,
.cta-banner-headline {
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  background-image: none !important;
}

/* ─── Kill compare maximalist animations (SE legacy) ─────────────── */
[data-block-id="compare"] .comparison-col,
[data-block-id="compare"] .comparison-left,
[data-block-id="compare"] .comparison-right,
[data-block-id="compare"] .comparison-item,
[data-block-id="compare"] .comparison-icon {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  text-shadow: none !important;
}
[data-block-id="compare"] .comparison-grid::before,
[data-block-id="compare"] .comparison-grid::after,
[data-block-id="compare"] .comparison-left .comparison-item::after {
  display: none !important;
  content: none !important;
}
[data-block-id="compare"] .comparison-col:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ─── Comparison: mobile-first, editorial, readable ──────────────── */
.block-comparison .comparison-grid,
.block-comparison .comparison-grid.comparison--card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  align-items: start !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}
.block-comparison .comparison-grid::before,
.block-comparison .comparison-grid::after {
  display: none !important;
  content: none !important;
}
.block-comparison .comparison-col {
  display: block !important;
  visibility: visible !important;
  min-width: 0 !important;
  padding: 18px 14px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  box-shadow: none !important;
  color: #3d2b1f !important;
  overflow: visible !important;
}
.block-comparison .comparison-left {
  color: #5a4f4a !important;
  background: transparent !important;
}
.block-comparison .comparison-right {
  color: #3d2b1f !important;
  background: #FDFBF8 !important;
  border: 1px solid rgba(201,169,166,0.3) !important;
  box-shadow: 0 20px 50px rgba(28,18,12,0.06) !important;
  border-radius: 8px !important;
}
.block-comparison .comparison-title {
  font-family: var(--font-heading) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.4rem) !important;
  letter-spacing: -0.01em !important;
  text-align: left !important;
  margin-bottom: clamp(14px, 2vw, 22px) !important;
  padding-bottom: clamp(10px, 1.2vw, 14px) !important;
  border-bottom: 1px solid rgba(201,169,166,0.35) !important;
  color: inherit !important;
}
.block-comparison .comparison-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.block-comparison .comparison-item {
  position: relative !important;
  padding: clamp(10px, 1.3vw, 14px) 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.0625rem) !important;
  line-height: 1.5 !important;
  color: inherit !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  border-bottom: 1px solid rgba(107,97,94,0.12) !important;
}
.block-comparison .comparison-left .comparison-item {
  border-bottom-style: dashed !important;
  border-bottom-color: rgba(107,97,94,0.18) !important;
}
.block-comparison .comparison-item:last-child {
  border-bottom: 0 !important;
}
.block-comparison .comparison-item::after,
.block-comparison .comparison-item::before {
  display: none !important;
  content: none !important;
}
.block-comparison .comparison-icon {
  flex: 0 0 auto !important;
  font-weight: 400 !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  margin-top: 0.15em !important;
  text-shadow: none !important;
  transform: none !important;
  transition: none !important;
}
.block-comparison .comparison-left .comparison-icon { color: #b8a9a5 !important; }
.block-comparison .comparison-right .comparison-icon { color: #C9A9A6 !important; }
.block-comparison .comparison-col::before {
  display: inline-block !important;
  position: static !important;
  font-family: var(--font-sans) !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 4px 12px !important;
  border-radius: 999px !important;
  margin-bottom: 14px !important;
  top: auto !important;
  left: auto !important;
}
.block-comparison .comparison-left::before {
  content: 'UTAN' !important;
  background: rgba(107,97,94,0.08) !important;
  color: #6b615e !important;
}
.block-comparison .comparison-right::before {
  content: 'MED' !important;
  background: rgba(201,169,166,0.16) !important;
  color: #8B6F66 !important;
}
@media (min-width: 760px) {
  .block-comparison .comparison-grid,
  .block-comparison .comparison-grid.comparison--card {
    grid-template-columns: 1fr 1fr !important;
    gap: clamp(28px, 3vw, 48px) !important;
  }
  .block-comparison .comparison-col {
    padding: clamp(22px, 2.5vw, 32px) clamp(18px, 2vw, 24px) !important;
  }
}

/* ─── Pricing: quiet, editorial (no neon border + strip) ─────────── */
.block-pricing .pricing-card {
  border: 1px solid rgba(201,169,166,0.35) !important;
  border-radius: 10px !important;
  box-shadow: 0 20px 50px rgba(28,18,12,0.06) !important;
  padding: clamp(28px, 4vw, 44px) !important;
}
.block-pricing .pricing-card::after { display: none !important; content: none !important; }
.block-pricing .pricing-card:hover {
  transform: none !important;
  box-shadow: 0 24px 60px rgba(28,18,12,0.08) !important;
}
.block-pricing .pricing-card--highlighted {
  border-color: rgba(201,169,166,0.55) !important;
  box-shadow: 0 30px 70px rgba(28,18,12,0.08) !important;
}
.block-pricing .pricing-badge {
  background: #FDFBF8 !important;
  color: #8B6F66 !important;
  border: 1px solid rgba(201,169,166,0.45) !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  padding: 4px 14px !important;
}
.block-pricing .pricing-title {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #5a4f4a !important;
}
.block-pricing .pricing-amount {
  font-weight: 300 !important;
  color: #3d2b1f !important;
  letter-spacing: -0.02em !important;
}
.block-pricing .pricing-original {
  text-decoration: line-through !important;
  color: #9c8880 !important;
  font-weight: 300 !important;
}

/* ─── CTA banner: refined gradient, italic serif, calmer noise ───── */
.block-cta-banner { padding: clamp(56px, 8vw, 96px) 0 !important; }
.block-cta-banner::before { opacity: 0.15 !important; }
.block-cta-banner .cta-banner-headline {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: -0.015em !important;
  font-size: clamp(1.875rem, 3vw + 1rem, 3rem) !important;
}
.btn-cta-banner {
  box-shadow: 0 4px 14px rgba(0,0,0,0.08) !important;
  border-radius: 999px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}
.btn-cta-banner:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

/* ─── Gallery (testimonial screenshots): constrained, editorial ──── */
.block-gallery .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 28px) !important;
  max-width: 920px !important;
  margin-inline: auto !important;
}
.block-gallery .gallery-item {
  border: 1px solid rgba(201,169,166,0.22) !important;
  border-radius: 8px !important;
  padding: 10px !important;
  background: #FDFBF8 !important;
  box-shadow: 0 10px 30px rgba(28,18,12,0.04) !important;
  overflow: hidden !important;
}
.block-gallery .gallery-item img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 540px !important;
  object-fit: contain !important;
  border-radius: 4px !important;
  background: #fff !important;
}
@media (max-width: 720px) {
  .block-gallery .gallery-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
    gap: 14px !important;
  }
  .block-gallery .gallery-item img { max-height: 520px !important; }
}

/* ─── Block image: soften shadow, center, cap height ─────────────── */
.block-image img {
  box-shadow: 0 14px 36px rgba(28,18,12,0.08) !important;
  max-height: min(72vh, 640px) !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 6px !important;
}
.block-image:hover img {
  transform: none !important;
  box-shadow: 0 14px 36px rgba(28,18,12,0.08) !important;
}
.block-image .container {
  display: flex !important;
  justify-content: center !important;
}

/* ─── Block text: single column, no drop-cap, left aligned ───────── */
.block-text .text-content {
  column-count: 1 !important;
  column-gap: 0 !important;
  max-width: 64ch !important;
  margin-inline: auto !important;
}
.block-text .text-content > p:first-of-type::first-letter {
  all: unset !important;
  font: inherit !important;
}
.block-text p,
.block-text li {
  text-align: left !important;
}

/* ─── Feature list: editorial hairlines, not cards ──────────────── */
.block-features .features-grid {
  max-width: 820px !important;
  margin-inline: auto !important;
  gap: 0 !important;
  border-top: 1px solid rgba(201,169,166,0.22) !important;
  grid-template-columns: 1fr !important;
  display: grid !important;
}
.block-features .feature-item {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: clamp(14px, 2vw, 22px) !important;
  padding: clamp(18px, 2.2vw, 26px) 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(201,169,166,0.22) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  align-items: start !important;
  transform: none !important;
}
.block-features .feature-item:hover {
  transform: none !important;
  box-shadow: none !important;
}
.block-features .feature-icon {
  flex: 0 0 auto !important;
  width: 32px !important;
  min-width: 32px !important;
  height: 32px !important;
  line-height: 30px !important;
  text-align: center !important;
  color: #C9A9A6 !important;
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  font-style: italic !important;
  background: transparent !important;
  border: 1px solid rgba(201,169,166,0.4) !important;
  border-radius: 50% !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.block-features .feature-title {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem) !important;
  color: #3d2b1f !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  margin: 0 0 4px 0 !important;
}
.block-features .feature-desc {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem) !important;
  line-height: 1.6 !important;
  color: #6b615e !important;
  margin: 0 !important;
}

/* ─── Bonus list: editorial rows, not boxy cards ─────────────────── */
.block-bonuses .bonus-list {
  max-width: 820px !important;
  margin-inline: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border-top: 1px solid rgba(201,169,166,0.25) !important;
}
.block-bonuses .bonus-item {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(201,169,166,0.25) !important;
  border-radius: 0 !important;
  padding: clamp(20px, 2.4vw, 28px) 0 !important;
  box-shadow: none !important;
  display: block !important;
  transform: none !important;
}
.block-bonuses .bonus-item:hover {
  transform: none !important;
  box-shadow: none !important;
}
.block-bonuses .bonus-main { display: block !important; }
.block-bonuses .bonus-title {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.625rem) !important;
  color: #3d2b1f !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 8px 0 !important;
}
.block-bonuses .bonus-desc {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem) !important;
  line-height: 1.65 !important;
  color: #5a4f4a !important;
  margin: 0 !important;
  max-width: 62ch !important;
}

/* ─── Timeline: subtle markers, not process-diagram ─────────────── */
.block-timeline .timeline--alternate .timeline-step,
.block-timeline .timeline-step {
  position: relative !important;
  padding-left: clamp(48px, 4vw, 72px) !important;
  border-left: 1px solid rgba(201,169,166,0.3) !important;
  margin-left: clamp(14px, 2vw, 22px) !important;
  padding-bottom: clamp(28px, 3vw, 40px) !important;
}
.block-timeline .timeline-step:last-child {
  padding-bottom: 0 !important;
  border-left: 1px solid transparent !important;
}
.block-timeline .timeline-marker {
  position: absolute !important;
  left: -14px !important;
  top: 0 !important;
  width: 28px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FDFBF8 !important;
  border: 1px solid rgba(201,169,166,0.5) !important;
  border-radius: 50% !important;
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 0.9375rem !important;
  color: #8B6F66 !important;
  box-shadow: none !important;
  transform: none !important;
}
.block-timeline .timeline-marker:hover {
  box-shadow: none !important;
  transform: none !important;
}
.block-timeline .timeline-content {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.block-timeline .timeline-content h3,
.block-timeline .timeline-step h3 {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.5rem) !important;
  color: #3d2b1f !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 8px 0 !important;
}
.block-timeline .timeline-content p,
.block-timeline .timeline-step p {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem) !important;
  line-height: 1.65 !important;
  color: #5a4f4a !important;
  margin: 0 !important;
  max-width: 62ch !important;
}

/* ─── Testimonials: editorial quotes, not boxed cards ────────────── */
.testimonial-card,
.block-testimonials .testimonial-card {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(201,169,166,0.22) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: clamp(24px, 3vw, 36px) 0 !important;
  transform: none !important;
}
.testimonial-card:hover {
  transform: none !important;
  box-shadow: none !important;
}
.testimonial-card blockquote {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.375rem) !important;
  line-height: 1.6 !important;
  color: #3d2b1f !important;
}
.testimonials-grid.style-cards {
  max-width: 880px !important;
  margin-inline: auto !important;
}

/* ─── Stats: quiet, numbers breathe ──────────────────────────────── */
.stats-grid { gap: clamp(24px, 3vw, 48px) !important; }
.stats-item {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: clamp(20px, 2vw, 32px) 12px !important;
  transform: none !important;
}
.stats-item:hover {
  transform: none !important;
  box-shadow: none !important;
}
.stats-value,
.stat-value {
  font-family: var(--font-heading) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem) !important;
  letter-spacing: -0.025em !important;
  color: #3d2b1f !important;
  line-height: 1 !important;
}
.stats-label,
.stat-label {
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #8B6F66 !important;
  margin-top: clamp(6px, 1vw, 10px) !important;
}

/* ─── Author bio: remove card, editorial portrait ────────────────── */
.author-bio-grid { gap: clamp(28px, 4vw, 56px) !important; }
.author-bio-content {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
.author-bio-image img {
  border-radius: 6px !important;
  box-shadow: 0 20px 50px rgba(28,18,12,0.1) !important;
}
.author-bio-name {
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem) !important;
  letter-spacing: -0.015em !important;
  color: #3d2b1f !important;
}
.author-bio-title {
  font-family: var(--font-sans) !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  color: #8B6F66 !important;
  font-weight: 500 !important;
}
.author-bio-text p {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem) !important;
  line-height: 1.7 !important;
  color: #5a4f4a !important;
}

/* ─── Block h2/h3 global rhythm (override theme.ts) ──────────────── */
section.block > .container > h2,
section.block > .container > .reveal-ed > h2,
.block > .container > h2 {
  font-family: var(--font-heading) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem) !important;
  letter-spacing: -0.015em !important;
  line-height: 1.15 !important;
  color: #3d2b1f !important;
  text-align: left !important;
  max-width: 38ch !important;
}

/* ─── Waitlist + optin + contact cards: unified quiet shadow ─────── */
.countdown-unit,
.optin-card,
.contact-form--card,
.waitlist-card,
.form-card {
  box-shadow: 0 14px 40px rgba(28,18,12,0.05) !important;
  border-radius: 8px !important;
  background: #FDFBF8 !important;
  border: 1px solid rgba(201,169,166,0.25) !important;
}

/* ─── Scroll safety (belt and braces) ────────────────────────────── */
html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 0 !important;
  position: static !important;
  touch-action: auto !important;
  overscroll-behavior-y: auto !important;
}

/* ─── Universal: disable hover-lift that feels SaaS-template ─────── */
.feature-item:hover,
.bonus-item:hover,
.testimonial-card:hover,
.pricing-card:hover,
.stats-item:hover,
.blog-card:hover,
.course-card:hover {
  transform: none !important;
}

/* End Hanna global editorial polish */
