

  /* BREADCRUMB */
  .breadcrumb {
    background: var(--warm-white);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--warm-grey);
  }
  .breadcrumb-inner {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-soft);
  }
  .breadcrumb-inner a {
    color: var(--charcoal-soft);
    text-decoration: none;
    transition: color 0.3s;
  }
  .breadcrumb-inner a:hover { color: var(--teal-dark); }
  .breadcrumb-inner span { margin: 0 0.5rem; opacity: 0.4; }
  .breadcrumb-inner .current { color: var(--teal-dark); }

  /* INTRO SECTION */
  .intro-section {
    padding: 5rem 0;
    background: var(--cream);
  }
  .intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .intro-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.75rem;
  }
  .intro-text h2 em { font-style: italic; }
  .intro-text p {
    font-size: 0.95rem;
    line-height: 1.95;
    color: var(--charcoal-soft);
    margin-bottom: 1.25rem;
  }
  .intro-text p.lead {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.75;
  }

  /* PRICING CARD */
  .pricing-card {
    background: var(--dark-bg);
    padding: 2.5rem;
    position: sticky;
    top: 7rem;
  }
  .pricing-card-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
  }
  .pricing-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }
  .pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(250,247,242,0.1);
  }
  .pricing-row:last-of-type { border-bottom: none; }
  .pricing-row-label {
    font-size: 0.85rem;
    color: rgba(250,247,242,0.6);
  }
  .pricing-row-value {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--cream);
  }
  .pricing-card-cta {
    display: block;
    text-align: center;
    margin-top: 1.75rem;
    padding: 1rem;
    background: var(--teal-dark);
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: background 0.3s;
  }
  .pricing-card-cta:hover { background: var(--teal); }
  .pricing-card-note {
    font-size: 0.75rem;
    color: rgba(250,247,242,0.4);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
  }

  /* AUDIO PLAYER SECTION */
  .audio-section {
    background: var(--dark-bg);
    padding: 4rem 0;
  }
  .audio-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
  }
  .audio-text h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  .audio-text h3 em { font-style: italic; color: var(--gold-pale); }
  .audio-text p {
    font-size: 0.9rem;
    color: rgba(250,247,242,0.6);
    line-height: 1.8;
  }
  .audio-embed {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(90,171,184,0.2);
    position: relative;
    background-size: cover;
    background-position: center;
  }
  .audio-embed::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17,29,31,0.55);
    z-index: 1;
  }
  .audio-embed iframe {
    position: relative;
    z-index: 2;
    background: transparent;
  }

  /* SCIENCE SECTION */
  .science-section {
    background: var(--warm-white);
    padding: 6rem 0;
  }
  .science-header {
    max-width: 700px;
    margin-bottom: 4rem;
  }
  .science-header h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }
  .science-header h2 em { font-style: italic; }
  .science-header p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--charcoal-soft);
  }
  .science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5px;
    background: var(--warm-grey);
    border: 1.5px solid var(--warm-grey);
  }
  .science-card {
    background: var(--warm-white);
    padding: 2.5rem 2rem;
  }
  .science-card .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.25rem;
    display: block;
    color: var(--gold);
  }
  .science-card .icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .science-card h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.85rem;
    color: var(--charcoal);
  }
  .science-card p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--charcoal-soft);
    margin-bottom: 0.75rem;
  }
  .science-card .result {
    font-size: 0.8rem;
    color: var(--teal-dark);
    font-style: italic;
    border-top: 1px solid var(--warm-grey);
    padding-top: 0.85rem;
    margin-top: 0.85rem;
  }
  .science-card.summary {
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .science-card.summary p {
    color: rgba(250,247,242,0.65);
  }
  .science-card.summary h3 {
    color: var(--cream);
  }
  .science-card.summary a {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid var(--teal);
    padding-bottom: 3px;
    transition: color 0.3s;
  }
  .science-card.summary a:hover { color: var(--teal-dark); }

  /* JOURNEY FLOW SECTION */
  .journey-section {
    background: var(--dark-bg);
    padding: 6rem 0;
  }
  .journey-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .journey-header h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
  }
  .journey-header h2 em { font-style: italic; color: var(--gold-pale); }
  .journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  .journey-step {
    text-align: center;
    padding: 0 1rem;
  }
  .journey-step-number {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .journey-step h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.75rem;
  }
  .journey-step p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(250,247,242,0.55);
  }

  /* WHO ITS FOR SECTION */
  .who-section {
    background: var(--cream);
    padding: 6rem 0;
  }
  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .who-image {
    position: relative;
  }
  .who-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
  }
  .who-image::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    border: 1px solid var(--teal);
    z-index: -1;
  }
  .who-text h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.75rem;
  }
  .who-text h2 em { font-style: italic; }
  .who-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .who-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .who-item-marker {
    width: 24px;
    height: 24px;
    border: 1px solid var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--teal-dark);
    margin-top: 2px;
  }
  .who-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--charcoal-soft);
    margin: 0;
  }

  /* PREPARATION SECTION */
  .prep-section {
    background: var(--warm-white);
    padding: 6rem 0;
  }
  .prep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .prep-card {
    background: var(--cream);
    padding: 2.5rem;
    border-left: 2px solid var(--gold);
  }
  .prep-card h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
  }
  .prep-card p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--charcoal-soft);
  }

  /* FAQ SECTION */
  .faq-section {
    background: var(--cream);
    padding: 6rem 0;
  }
  .faq-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .faq-header h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 300;
  }
  .faq-header h2 em { font-style: italic; }
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--warm-grey);
  }
  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.75rem 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .faq-question:hover { color: var(--teal-dark); }
  .faq-icon {
    font-size: 1.2rem;
    color: var(--teal);
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.75rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--charcoal-soft);
    margin: 0;
  }

  /* TESTIMONIAL */
  .testimonial-feature {
    background: var(--dark-bg);
    padding: 5rem 0;
    text-align: center;
  }
  .testimonial-feature-inner {
    max-width: 750px;
    margin: 0 auto;
  }
  .testimonial-feature p.quote {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }
  .testimonial-feature .author {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
  }
  .testimonial-feature .role {
    font-size: 0.8rem;
    color: rgba(250,247,242,0.4);
    margin-top: 0.25rem;
  }

  /* FINAL CTA */
  .final-cta {
    position: relative;
    height: 50vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .final-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('bowls.jpg');
    background-size: cover;
    background-position: center;
  }
  .final-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,29,31,0.75);
  }
  .final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
  }
  .final-cta-content h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .final-cta-content h2 em { font-style: italic; color: var(--gold-pale); }
  .final-cta-content p {
    font-size: 0.9rem;
    color: rgba(250,247,242,0.7);
    margin-bottom: 2rem;
  }

  @media (max-width: 900px) {
    .intro-grid, .audio-inner, .who-grid, .prep-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .pricing-card { position: static; }
    .who-image { order: -1; }
  }
