/* Align — courses page styles (from Website 2.0). */
:root {
      --cream:       #FAF6F1;
      --cream-deep:  #F2EBE0;
      --white:       #FFFFFF;
      --gold:        #C4A882;
      --gold-light:  #D9C4A3;
      --sage:        #7A8C72;
      --sand:        #F0E9DE;
      --sage-medium: #7D8F76;
      --text:        #3A3530;
      --text-muted:  #8A8177;
      --border:      #E8E0D5;
    }

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

    body {
      background: var(--cream);
      color: var(--text);
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      line-height: 1.85;
    }

    /* NAV */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 72px;
      background: rgba(250,246,241,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(232,224,213,0.6);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-logo { display: flex; flex-direction: row; align-items: center; gap: 12px; text-decoration: none; }
    .logo-word { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; font-style: italic; color: var(--text); line-height: 1; letter-spacing: 0.01em; }
    .logo-sub { font-family: 'Raleway', sans-serif; font-size: 8px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); line-height: 1; }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a {
      font-family: 'Raleway', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--sage-medium); }
    .nav-links a.active { color: var(--gold); font-weight: 600; }

    /* SHARED BUTTONS */
    .btn-gold {
      display: inline-block;
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--white);
      border: 1px solid var(--gold);
      padding: 18px 44px;
      text-decoration: none;
      transition: background 0.3s, border-color 0.3s;
      cursor: pointer;
    }
    .btn-gold:hover { background: var(--sage-medium); border-color: var(--sage-medium); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(125,143,118,0.32); }
    .btn-sage-outline {
      display: inline-block;
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      background: transparent;
      color: var(--sage-medium);
      border: 1px solid var(--sage-medium);
      padding: 18px 44px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
      cursor: pointer;
    }
    .btn-sage-outline:hover { background: var(--sage-medium); color: var(--white); }
    .btn-cream {
      display: inline-block;
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      background: var(--cream);
      color: var(--sage-medium);
      border: 1px solid var(--cream);
      padding: 18px 44px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
      cursor: pointer;
    }
    .btn-cream:hover { background: transparent; color: var(--cream); }

    /* EYEBROW */
    .eyebrow {
      font-family: 'Raleway', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }

    /* PAGE HERO */
    .page-hero {
      position: relative;
      padding: 110px 72px 100px;
      background: linear-gradient(135deg, var(--cream-deep) 0%, var(--sand) 60%, var(--cream) 100%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,168,130,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 30%;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(125,143,118,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }
    .page-hero-content .eyebrow { color: var(--gold); margin-bottom: 28px; }
    .page-hero-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 300;
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .page-hero-content h1 em { font-style: italic; color: inherit; }
    .page-hero-content p {
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.9;
      max-width: 520px;
    }

    /* DIVIDER */
    .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 60px 72px;
    }
    .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .divider-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

    /* COURSE CARDS */
    .courses-section {
      padding: 0 72px 100px;
      max-width: 1300px;
      margin: 0 auto;
    }
    .courses-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 300;
      color: var(--text);
      text-align: center;
      margin-bottom: 64px;
    }

    .course-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 40px;
      background: var(--white);
      overflow: hidden;
      border-radius: 4px;
      border: 1px solid rgba(58, 53, 48, 0.05);
      box-shadow:
        0 2px 6px rgba(58, 53, 48, 0.04),
        0 14px 34px rgba(58, 53, 48, 0.09),
        0 36px 72px rgba(58, 53, 48, 0.11);
    }
    .course-card.reverse { direction: rtl; }
    .course-card.reverse > * { direction: ltr; }
    .course-card-image {
      overflow: hidden;
      position: relative;
      min-height: 480px;
      background: var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
    }
    .course-card-image img {
      width: 100%;
      max-width: 420px;
      height: auto;
      object-fit: contain;
      display: block;
      transition: transform 0.5s ease;
    }
    .course-card:hover .course-card-image img { transform: scale(1.04); }
    .course-card-body {
      padding: 64px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--cream-deep);
    }
    .course-tag {
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage-medium);
      margin-bottom: 20px;
      display: block;
    }
    .course-card-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
      font-weight: 300;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .course-card-body h3 em { font-style: italic; color: inherit; }
    .course-card-body p {
      font-size: 14.5px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.95;
      margin-bottom: 32px;
    }
    .course-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 40px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .course-meta-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .course-meta-label {
      font-family: 'Raleway', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .course-meta-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--text);
    }

    /* 1:1 COACHING STRIP */
    .coaching-strip {
      background: var(--sand);
      padding: 100px 72px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }
    .coaching-strip-image {
      position: relative;
      overflow: hidden;
    }
    .coaching-strip-image img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .coaching-strip-image::after {
      content: '';
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(196,168,130,0.35);
      pointer-events: none;
    }
    .coaching-strip-text .eyebrow { color: var(--gold); }
    .coaching-strip-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .coaching-strip-text h2 em { font-style: italic; color: inherit; }
    .coaching-strip-text p {
      font-size: 14.5px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 2;
      margin-bottom: 36px;
    }
    .coaching-strip-text ul {
      list-style: none;
      margin-bottom: 40px;
    }
    .coaching-strip-text ul li {
      font-size: 13.5px;
      font-weight: 300;
      color: var(--text-muted);
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .coaching-strip-text ul li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* CTA */
    .cta-banner {
      background: var(--sage-medium);
      padding: 100px 72px;
      text-align: center;
    }
    .cta-banner .eyebrow { justify-content: center; color: var(--gold-light); }
    .cta-banner h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.2;
      max-width: 600px;
      margin: 0 auto 16px;
    }
    .cta-banner p {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      margin-bottom: 44px;
    }

    /* FOOTER */
    footer {
      background: #5c5248;
      padding: 12px 72px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-logo { display: flex; flex-direction: row; align-items: baseline; gap: 12px; text-decoration: none; }
    .footer-logo .logo-word { color: var(--cream); }
    .footer-logo .logo-sub { color: var(--gold-light); }
    footer p { font-size: 11px; font-weight: 300; letter-spacing: 0.1em; color: var(--text-muted); }
    footer a { font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--white); }

    @media (max-width: 768px) {
      body { overflow-x: hidden; }
      nav { padding: 16px 20px; }
      .nav-links { display: none !important; }
      .nav-toggle { display: flex !important; }

      .page-hero { padding: 80px 20px 60px; min-height: auto; }
      .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .page-hero-content h1 { font-size: 2.4rem; }
      .hero-outcomes { padding: 0; }
      .hero-outcome-item:first-child { padding-top: 22px; border-top: 1px solid var(--border); }

      .divider { padding: 32px 20px; }

      .courses-section { padding: 0 20px 60px; }
      .course-card { grid-template-columns: 1fr; }
      .course-card.reverse { direction: ltr; }
      .course-card-image { min-height: 240px; padding: 32px; }
      .course-card-body { padding: 36px 20px; }

      .btn-gold, .btn-white-outline, .btn-sage-outline, .btn-cream, .btn-outline, .btn-outline-gold { padding: 15px 28px; font-size: 11px; letter-spacing: 0.2em; }

      .coaching-strip { padding: 60px 20px; grid-template-columns: 1fr; gap: 40px; max-width: 100%; }

      section[style*="padding: 100px 72px"] { padding: 60px 20px !important; }

      .cta-banner { padding: 60px 20px; }
      .cta-banner h2 { font-size: 2rem; }

      footer { padding: 28px 20px; flex-direction: column; gap: 12px; text-align: center; }
    }

    /* MOBILE NAV TOGGLE */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px 4px;
      z-index: 101;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* MOBILE NAV OVERLAY */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(250,246,241,0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 44px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Raleway', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--sage-medium); }
    .mobile-nav a.active { color: var(--gold); font-weight: 600; }

    /* HERO SPLIT */
    .page-hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      width: 100%;
    }
    .page-hero-inner .page-hero-content { max-width: none; }
    .hero-outcomes {
      display: flex;
      flex-direction: column;
    }
    .hero-outcome-item {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
    }
    .hero-outcome-item:first-child { border-top: 1px solid var(--border); }
    .hero-outcome-icon {
      color: var(--text-muted);
      flex-shrink: 0;
    }
    .hero-outcome-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--text);
      line-height: 1.45;
    }
