
/* === GENESIS OVERRIDE === */
body.page-template-page-learn .site-inner { margin: 0 auto !important; max-width: 100vw !important; padding: 0 !important; }
body.page-template-page-learn .content-sidebar-wrap,
body.page-template-page-learn .content,
body.page-template-page-learn .entry,
body.page-template-page-learn article.page,
body.page-template-page-learn .entry-content { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; float: none !important; border: none !important; }
body.page-template-page-learn .entry-content > * { max-width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; margin-left: 0 !important; margin-right: 0 !important; }
body.page-template-page-learn .entry-header,
body.page-template-page-learn .breadcrumb { display: none !important; }


    
    
    
    

    /* ========================================
       RESET & BASE
       ======================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

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

    body {
      font-family: 'Cormorant Garamond', 'adobe-caslon-pro', 'Georgia', serif;
      color: #334B51;
      background: #F5F4F2;
      line-height: 1.7;
      font-size: 17px;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ========================================
       DESIGN TOKENS
       ======================================== */
    :root {
      --cloud: #F5F4F2;
      --sand: #ECE8E5;
      --teal: #334B51;
      --teal-deep: #2A3E43;
      --sage: #7F7F73;
      --white: #FFFFFF;
      --text-dark: #334B51;
      --text-light: #ECE8E5;

      --font-serif: 'Cormorant Garamond', 'adobe-caslon-pro', 'Georgia', serif;
      --font-sans: 'Moderat', 'Source Sans 3', 'Helvetica Neue', sans-serif;

      --container: 1200px;
      --container-narrow: 860px;
      --gutter: 24px;
    }

    /* ========================================
       TYPOGRAPHY
       ======================================== */
    .eyebrow {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      line-height: 1.4;
    }

    .h1-serif {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.2;
    }

    .h2-serif {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.25;
    }

    .h3-serif {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(20px, 2.2vw, 26px);
      line-height: 1.3;
    }

    /* ========================================
       BUTTONS
       ======================================== */
    .btn-ghost {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 14px 32px;
      border: 1px solid;
      border-radius: 0;
      background: transparent;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
      line-height: 1;
    }

    .btn-ghost--light {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .btn-ghost--light:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--white);
    }

    .btn-ghost--dark {
      color: var(--teal);
      border-color: var(--teal);
    }

    .btn-ghost--dark:hover {
      background: var(--teal);
      color: var(--white);
    }

    .btn-ghost--sage {
      color: var(--sage);
      border-color: var(--sage);
    }

    .btn-ghost--sage:hover {
      background: var(--sage);
      color: var(--white);
    }

    /* ========================================
       CONTAINER
       ======================================== */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

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

    /* ========================================
       ANNOUNCEMENT BAR
       ======================================== */
    .announcement-bar {
      background: var(--sand);
      text-align: center;
      padding: 10px var(--gutter);
    }

    .announcement-bar p {
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--teal);
    }

    .announcement-bar a {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* ========================================
       NAVIGATION
       ======================================== */
    .nav {
      background: var(--white);
      border-bottom: 1px solid rgba(51, 75, 81, 0.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px var(--gutter);
      max-width: var(--container);
      margin: 0 auto;
    }

    .nav__logo {
      font-family: var(--font-serif);
      font-size: 36px;
      font-weight: 400;
      color: var(--teal);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav__link {
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 400;
      color: var(--teal);
      transition: opacity 0.2s;
      position: relative;
    }

    .nav__link:hover {
      opacity: 0.7;
    }

    .nav__link--dropdown {
      cursor: pointer;
    }

    .nav__link--dropdown::after {
      content: '';
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid var(--teal);
      margin-left: 6px;
      vertical-align: middle;
      opacity: 0.5;
    }

    .nav__dropdown {
      position: absolute;
      top: 100%;
      left: -16px;
      background: var(--white);
      border: 1px solid rgba(51, 75, 81, 0.08);
      padding: 12px 0;
      min-width: 200px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(4px);
      transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
      z-index: 10;
    }

    .nav__link--dropdown:hover .nav__dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav__dropdown a {
      display: block;
      padding: 8px 20px;
      font-family: var(--font-sans);
      font-size: 13px;
      color: var(--teal);
      transition: background 0.15s;
    }

    .nav__dropdown a:hover {
      background: var(--cloud);
    }

    .nav__cta {
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.09em;
      color: var(--teal);
      border: 1px solid var(--teal);
      padding: 10px 20px;
      border-radius: 0;
      transition: background 0.25s, color 0.25s;
    }

    .nav__cta:hover {
      background: var(--teal);
      color: var(--white);
    }

    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .nav__hamburger span {
      width: 24px;
      height: 1.5px;
      background: var(--teal);
      display: block;
    }

    .nav__mobile-overlay {
      position: fixed;
      inset: 0;
      background: var(--white);
      z-index: 200;
      padding: 60px 32px;
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .nav__mobile-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    .nav__mobile-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      border: none;
      font-size: 32px;
      color: var(--teal);
      cursor: pointer;
    }

    .nav__mobile-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .nav__mobile-links a {
      font-family: var(--font-serif);
      font-size: 28px;
      font-style: italic;
      color: var(--teal);
    }

    .nav__mobile-links .sub-link {
      font-size: 22px;
      padding-left: 20px;
      opacity: 0.7;
    }

    /* ========================================
       SECTION 1: HERO (Teal)
       ======================================== */
    .hero {
      background: var(--teal);
      color: var(--white);
      padding: 80px 0 100px;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero__eyebrow {
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 28px;
    }

    .hero__headline {
      color: var(--text-light);
      margin-bottom: 32px;
    }

    .hero__rule {
      width: 48px;
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      margin-bottom: 32px;
    }

    .hero__body {
      color: rgba(255, 255, 255, 0.85);
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 520px;
    }

    .hero__image {
      display: flex;
      justify-content: center;
    }

    .hero__photo {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 15%;
      filter: brightness(0.95) contrast(1.05);
    }

    /* ========================================
       SECTION 1B: CREDENTIALS (directly under hero)
       ======================================== */
    .credentials-bar {
      background: var(--teal-deep);
      padding: 48px 0 52px;
    }

    .credentials-bar .section-label {
      text-align: center;
      margin-bottom: 32px;
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    .credentials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      max-width: 960px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.08);
    }

    .credential {
      text-align: center;
      padding: 24px 16px;
      background: var(--teal-deep);
    }

    .credential__value {
      font-family: var(--font-serif);
      font-size: 15px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.5;
    }

    /* ========================================
       SECTION 2: MASTERCLASSES — Tier 1 (Cream)
       ======================================== */
    .masterclasses {
      background: var(--cloud);
      padding: 88px 0 96px;
    }

    .section-eyebrow {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-subhead {
      text-align: center;
      margin-bottom: 52px;
      color: var(--teal);
    }

    .mc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .mc-card {
      background: var(--white);
      border: 1px solid rgba(51, 75, 81, 0.1);
      border-top: none;
      display: flex;
      flex-direction: column;
      border-radius: 0;
      overflow: hidden;
    }

    /* Masterclass card visual header */
    .mc-card__visual {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .mc-card__visual--reset {
      background: linear-gradient(135deg, #334B51 0%, #4A6B73 40%, #334B51 100%);
    }
    .mc-card__visual--narcissist {
      background: linear-gradient(135deg, #3D4B51 0%, #334B51 50%, #2A4048 100%);
    }
    .mc-card__visual--workaholism {
      background: linear-gradient(135deg, #2A3E43 0%, #3A5158 40%, #2A3E43 100%);
    }

    .mc-card__visual-inner {
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 0 20px;
    }

    .mc-card__visual-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 12px;
      opacity: 0.4;
    }

    .mc-card__visual-icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: rgba(255,255,255,0.5);
      stroke-width: 1.5;
    }

    .mc-card__visual-title {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: 18px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.3;
      max-width: 220px;
      margin: 0 auto;
    }

    /* Decorative lines on visual */
    .mc-card__visual::before {
      content: '';
      position: absolute;
      top: 16px;
      left: 16px;
      right: 16px;
      bottom: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mc-card__body {
      padding: 24px 24px 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .mc-card__month {
      font-family: var(--font-sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 10px;
    }

    .mc-card__title {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: 19px;
      line-height: 1.3;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .mc-card__desc {
      font-family: var(--font-serif);
      font-size: 14px;
      line-height: 1.6;
      color: rgba(51, 75, 81, 0.75);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .mc-card__includes {
      font-family: var(--font-sans);
      font-size: 11px;
      line-height: 1.5;
      color: var(--sage);
      margin-bottom: 20px;
    }

    .mc-card__btn {
      display: block;
      text-align: center;
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--teal);
      border: 1px solid var(--teal);
      padding: 12px 20px;
      background: transparent;
      border-radius: 0;
      cursor: pointer;
      transition: background 0.25s, color 0.25s;
      line-height: 1;
      margin-top: auto;
    }

    .mc-card__btn:hover {
      background: var(--teal);
      color: var(--white);
    }

    /* ========================================
       SECTION 3: RECOVERY COURSES — Tier 2 (Teal)
       ======================================== */
    .recovery {
      background: var(--teal);
      color: var(--white);
      padding: 100px 0 110px;
    }

    .recovery .section-eyebrow {
      color: rgba(255, 255, 255, 0.5);
    }

    .recovery__headline {
      text-align: center;
      margin-bottom: 20px;
      color: var(--text-light);
    }

    .recovery__intro {
      text-align: center;
      font-family: var(--font-serif);
      font-size: 17px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.7);
      max-width: 600px;
      margin: 0 auto 56px;
    }

    .recovery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 960px;
      margin: 0 auto 56px;
    }

    .recovery-card {
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 36px 32px 32px;
      display: flex;
      flex-direction: column;
    }

    .recovery-card__title {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: 24px;
      color: var(--text-light);
      margin-bottom: 14px;
      line-height: 1.25;
    }

    .recovery-card__desc {
      font-family: var(--font-serif);
      font-size: 15px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .recovery-card__meta {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 16px;
    }

    .recovery-card__label {
      font-family: var(--font-sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    .recovery__note {
      text-align: center;
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 28px;
    }

    .recovery__cta {
      text-align: center;
    }

    /* ========================================
       SECTION 4: FIXING THE FOUNDATIONS — Tier 3 (Sand)
       ======================================== */
    .ftf {
      background: var(--sand);
      padding: 0;
      position: relative;
    }

    .ftf__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 640px;
    }

    .ftf__image-col {
      background: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

    /* FTF image column — ocean background with overlay */
    .ftf__image-col {
      background: url('https://anniewright.com/wp-content/uploads/2026/03/Misty_seascape_morning_fog_ocean_061146aa4e.jpeg') center/cover no-repeat;
    }

    .ftf__image-col::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20, 35, 40, 0.45) 0%, rgba(20, 35, 40, 0.55) 50%, rgba(20, 35, 40, 0.40) 100%);
    }

    .ftf__overlay-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 60px 40px;
      max-width: 380px;
    }

    .ftf__overlay-eyebrow {
      font-family: var(--font-sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 28px;
    }

    .ftf__overlay-title {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(30px, 3vw, 44px);
      color: #FFFFFF;
      line-height: 1.2;
      margin-bottom: 24px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .ftf__overlay-rule {
      width: 48px;
      height: 1px;
      background: rgba(255, 255, 255, 0.5);
      margin: 0 auto 24px;
    }

    .ftf__overlay-subtitle {
      font-family: var(--font-serif);
      font-size: 16px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .ftf__overlay-author {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 36px;
    }

    .ftf__content-col {
      padding: 80px 64px 80px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .ftf__badge {
      font-family: var(--font-sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage);
      border: 1px solid var(--sage);
      padding: 6px 14px;
      display: inline-block;
      margin-bottom: 28px;
      align-self: flex-start;
    }

    .ftf__title {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(32px, 3.5vw, 48px);
      line-height: 1.15;
      color: var(--teal);
      margin-bottom: 24px;
    }

    .ftf__subtitle {
      font-family: var(--font-serif);
      font-size: 18px;
      line-height: 1.65;
      color: var(--teal);
      margin-bottom: 28px;
      max-width: 460px;
    }

    .ftf__rule {
      width: 40px;
      height: 1px;
      background: var(--sage);
      border: none;
      margin-bottom: 28px;
      opacity: 0.5;
    }

    .ftf__desc {
      font-family: var(--font-serif);
      font-size: 15px;
      line-height: 1.7;
      color: rgba(51, 75, 81, 0.75);
      margin-bottom: 32px;
      max-width: 440px;
    }

    /* FTF Waitlist Form */
    .ftf__form {
      max-width: 440px;
    }

    .ftf__form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .ftf__input {
      font-family: var(--font-sans);
      font-size: 14px;
      padding: 14px 16px;
      border: 1px solid rgba(51, 75, 81, 0.2);
      border-radius: 0;
      background: var(--white);
      color: var(--teal);
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

    .ftf__input::placeholder {
      color: var(--sage);
      font-size: 13px;
    }

    .ftf__input:focus {
      border-color: var(--teal);
    }

    .ftf__submit {
      display: block;
      width: 100%;
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--teal);
      border: 1px solid var(--teal);
      padding: 16px 32px;
      border-radius: 0;
      cursor: pointer;
      transition: background 0.25s, opacity 0.25s;
      line-height: 1;
    }

    .ftf__submit:hover {
      background: var(--teal-deep);
      border-color: var(--teal-deep);
    }

    .ftf__submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .ftf__message {
      font-family: var(--font-sans);
      font-size: 13px;
      margin-top: 12px;
      min-height: 20px;
    }

    .ftf__message--success {
      color: #437A22;
    }

    .ftf__message--error {
      color: #A12C7B;
    }

    .ftf__timing {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--sage);
      margin-top: 16px;
    }

    /* ========================================
       SECTION 5: QUOTE + CTA (Cloud)
       ======================================== */
    .quote-section {
      background: var(--cloud);
      padding: 100px 0 110px;
    }

    .quote-section__inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .quote-section__quote {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(20px, 2.4vw, 26px);
      line-height: 1.5;
      color: var(--teal);
      margin-bottom: 20px;
    }

    .quote-section__attribution {
      font-family: var(--font-sans);
      font-size: 13px;
      font-weight: 400;
      color: var(--sage);
      letter-spacing: 0.03em;
    }

    /* ========================================
       SECTION 6: FINAL CTA (Teal)
       ======================================== */
    .final-cta {
      background: var(--teal);
      color: var(--white);
      padding: 100px 0 110px;
      text-align: center;
    }

    .final-cta__headline {
      color: var(--text-light);
      margin-bottom: 24px;
    }

    .final-cta__body {
      font-family: var(--font-serif);
      font-size: 17px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.8);
      max-width: 600px;
      margin: 0 auto 44px;
    }

    .final-cta__buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background: var(--teal-deep);
      color: rgba(255, 255, 255, 0.7);
      padding: 64px 0 40px;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer__logo {
      font-family: var(--font-serif);
      font-size: 32px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 8px;
    }

    .footer__license {
      font-family: var(--font-sans);
      font-size: 12px;
      opacity: 0.5;
    }

    .footer__heading {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 16px;
    }

    .footer__link {
      display: block;
      font-family: var(--font-sans);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer__link:hover {
      color: rgba(255, 255, 255, 0.9);
    }

    .footer__social-icons {
      display: flex;
      gap: 16px;
    }

    .footer__social-icon {
      width: 20px;
      height: 20px;
      fill: rgba(255, 255, 255, 0.5);
      transition: fill 0.2s;
    }

    .footer__social-icon:hover {
      fill: rgba(255, 255, 255, 0.8);
    }

    .footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
    }

    .footer__copyright {
      font-family: var(--font-sans);
      font-size: 12px;
      opacity: 0.4;
    }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 900px) {
      .nav__links { display: none; }
      .nav__hamburger { display: flex; }

      .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .hero__image {
        order: -1;
      }

      .hero__photo {
        max-width: 300px;
        margin: 0 auto;
      }

      .hero__body {
        margin-left: auto;
        margin-right: auto;
      }

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

      .mc-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }

      .recovery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
      }

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

      .ftf__image-col {
        min-height: 360px;
      }

      .ftf__content-col {
        padding: 56px 32px;
      }

      .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding: 48px 0 64px;
      }

      .hero__body {
        font-size: 15px;
      }

      .masterclasses {
        padding: 56px 0 64px;
      }

      .section-eyebrow {
        margin-bottom: 12px;
      }

      .section-subhead {
        margin-bottom: 32px;
      }

      .credentials-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
      }

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

      .ftf__image-col {
        min-height: 320px;
      }

      .ftf__content-col {
        padding: 40px 24px;
      }

      .ftf__title {
        font-size: 28px;
      }

      .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .final-cta__buttons {
        flex-direction: column;
        align-items: center;
      }
    }
  