*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:        #101527;
      --gold:        #F8A91E;
      --gold-dark:   #DD9933;
      --gold-darker: #CC7E35;
      --teal:        #308382;
      --text:        #666666;
      --dark:        #232323;
      --light-bg:    #F9FAFA;
      --white:       #ffffff;
      --font-head:   'Roboto Slab', serif;
      --font-body:   'Roboto', sans-serif;
      --max-w:       1240px;
      --radius:      8px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-wrap: pretty;            /* avoid widows/orphans in body copy */
    }
    h1, h2, h3, h4, h5, h6 { text-wrap: balance; }   /* balanced heading lines */
    img { display: block; max-width: 100%; }
    a   { text-decoration: none; color: inherit; }

    /* HEADER */
    #site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
    .header-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
      height: 110px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .site-logo img { height: 88px; width: auto; }

    .site-nav { display: flex; align-items: center; gap: 36px; list-style: none; }
    .site-nav > li { position: relative; }
    .site-nav > li > a {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--dark);
      transition: color .2s;
      padding: 8px 0;
      display: inline-block;
    }
    .site-nav > li > a:hover { color: var(--gold-dark); }

    .site-nav .dropdown { display: none; }
    .site-nav li:hover > .dropdown {
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      border: 1px solid #eee;
      border-radius: var(--radius);
      min-width: 170px;
      box-shadow: 0 4px 16px rgba(0,0,0,.1);
      list-style: none;
      padding: 8px 0;
      z-index: 200;
    }
    .site-nav .dropdown li a { display: block; padding: 8px 18px; font-size: 13px; color: var(--dark); white-space: nowrap; }
    .site-nav .dropdown li a:hover { background: var(--light-bg); color: var(--gold-dark); }

    .site-nav .nav-divider {
      display: inline-block;
      width: 1px;
      height: 22px;
      background: #d0d0d0;
      margin: 0 8px;
      vertical-align: middle;
    }
    .nav-login {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--dark);
    }
    .nav-login:hover { color: var(--gold-dark); }

    .hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); }

    /* HERO */
    #hero {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 56px 32px 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .slider { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; background: #eee; }
    .slider-track { display: flex; width: 100%; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
    .slide { flex: 0 0 100%; height: 100%; }
    .slide img { width: 100%; height: 100%; object-fit: cover; }
    .slider-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.85);
      border: none; border-radius: 50%;
      width: 40px; height: 40px;
      font-size: 18px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,.2);
      z-index: 10; color: var(--dark);
    }
    .slider-btn:hover { background: var(--white); }
    .slider-btn.prev { left: 12px; }
    .slider-btn.next { right: 12px; }
    .slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.6); border: none; cursor: pointer; }
    .dot.active { background: var(--white); transform: scale(1.25); }

    .hero-text { text-align: center; }
    .hero-text h2 { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
    .hero-text p { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 16px; }

    .newsletter-form { margin: 28px auto 0; display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
    .newsletter-form input {
      width: 100%; padding: 13px 16px;
      border: 1px solid #ddd; border-radius: var(--radius);
      font-family: var(--font-body); font-size: 14px; color: var(--dark);
      outline: none; background: var(--white);
    }
    .newsletter-form input::-webkit-credentials-auto-fill-button,
    .newsletter-form input::-ms-reveal,
    .newsletter-form input::-ms-clear { display: none !important; }
    .newsletter-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(248,169,30,.15); }

    .btn-subscribe {
      background: var(--gold); color: var(--white); border: none;
      border-radius: var(--radius);
      padding: 9px 18px;
      width: auto;
      align-self: center;
      font-family: var(--font-body); font-size: 12px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      cursor: pointer; transition: background .2s;
    }
    .btn-subscribe:hover { background: var(--gold-dark); }

    /* ICON STRIP */
    #icon-strip { background: var(--navy); padding: 44px 24px; }
    .icon-strip-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); }
    .icon-item { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 16px 12px; border-right: 1px solid rgba(255,255,255,.15); }
    .icon-item:last-child { border-right: none; }
    .icon-item svg { width: 64px; height: 64px; stroke: var(--white); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
    .icon-label { font-family: var(--font-body); font-size: 15px; font-weight: 700; letter-spacing: .08em; color: var(--white); margin-top: 4px; }

    /* HEADLINE BANNER */
    #headline-banner {
      position: relative;
      background-color: var(--gold-darker);
      background-image: url('../images/banner-bg.jpg');
      background-size: cover; background-position: center; background-repeat: no-repeat;
      padding: 96px 32px;
      text-align: center; color: var(--white);
      overflow: hidden;
    }
    #headline-banner::after { content:''; position:absolute; inset:0; background: rgba(204,126,53,.35); pointer-events:none; }
    .headline-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
    .headline-inner .eyebrow { font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: .15em; color: rgba(255,255,255,.95); margin-bottom: 18px; }
    .headline-inner h1 { font-family: var(--font-head); font-size: 52px; font-weight: 700; line-height: 1.15; color: var(--white); text-shadow: 0 2px 24px rgba(0,0,0,.25); }

    /* VIDEO */
    #video-section { background: var(--white); padding: 64px 24px; }
    .video-inner { max-width: 900px; margin: 0 auto; }
    .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.15); background: #000; }
    .video-wrap iframe, .video-wrap .yt-facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
    .yt-facade { cursor: pointer; background-size: cover; background-position: center; background-color: #000; display: flex; align-items: center; justify-content: center; }
    .yt-facade::after { content:''; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(0,0,0,.5)); }
    .yt-play { position: relative; z-index: 2; width: 84px; height: 60px; background: #f00; border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 28px rgba(0,0,0,.4); transition: transform .25s, background .25s; }
    .yt-facade:hover .yt-play { background: #c00; transform: scale(1.06); }
    .yt-play::after { content:''; display: block; width: 0; height: 0; border-left: 22px solid #fff; border-top: 14px solid transparent; border-bottom: 14px solid transparent; margin-left: 6px; }

    /* WORKBOOK */
    #workbook-section { padding: 24px 32px 32px; background: var(--white); }
    .workbook-inner { max-width: var(--max-w); margin: 0 auto; }
    .workbook-banner { width: 100%; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.08); margin-bottom: 20px; }
    .workbook-banner:last-child { margin-bottom: 0; }

    /* BOOK DESCRIPTION */
    #book-description { background: var(--white); padding: 32px 32px 80px; }
    .book-description-inner { max-width: 980px; margin: 0 auto; text-align: center; }
    .book-description-inner h3 { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--dark); margin-bottom: 28px; line-height: 1.4; }
    .book-description-inner p { font-size: 15px; line-height: 1.85; color: var(--text); margin-bottom: 40px; text-align: left; }
    .btn-amazon {
      display: inline-block; background: var(--navy); color: var(--white);
      border-radius: var(--radius); padding: 14px 36px;
      font-family: var(--font-body); font-size: 14px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      transition: background .2s, transform .1s;
    }
    .btn-amazon:hover { background: #1e2a4a; transform: translateY(-2px); }

    /* TEAL HEADER */
    #testimonials-header { background: var(--teal); padding: 72px 24px; text-align: center; }
    #testimonials-header h2 { font-family: var(--font-head); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1.15; }

    /* TESTIMONIALS BODY */
    #testimonials-body { padding: 72px 24px 88px; background: var(--white); }
    .testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .testimonial-card { background: var(--light-bg); border-radius: 12px; padding: 48px 42px 40px; position: relative; }
    .testimonial-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 92px; line-height: .7; color: var(--gold); opacity: .45; position: absolute; top: 26px; left: 28px; }
    .testimonial-card blockquote { font-size: 18px; line-height: 1.7; color: var(--dark); font-style: italic; padding-top: 36px; margin-bottom: 24px; }
    .testimonial-author { display: flex; flex-direction: column; gap: 4px; }
    .testimonial-author a { font-size: 15px; font-weight: 700; color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
    .testimonial-role { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: .08em; }

    /* ORANGE REVIEWS HEADER */
    #reviews-header { background: var(--gold-darker); padding: 36px 24px; text-align: center; }
    #reviews-header h2 { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--white); }

    /* REVIEWS - masonry collage */
    #reviews { padding: 56px 24px 88px; background: var(--white); }
    .reviews-inner { max-width: var(--max-w); margin: 0 auto; }
    .reviews-grid {
      column-count: 3;
      column-gap: 24px;
    }
    .review-img {
      break-inside: avoid;
      margin-bottom: 24px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 14px rgba(0,0,0,.12);
      background: #fff;
      transition: transform .25s, box-shadow .25s;
      cursor: zoom-in;
    }
    .review-img:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.16); }
    .review-img img { width: 100%; height: auto; display: block; }

    /* Review lightbox */
    #review-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.88);
      z-index: 4000;
      align-items: center;
      justify-content: center;
      padding: 32px;
      cursor: zoom-out;
    }
    #review-lightbox.open { display: flex; }
    #review-lightbox img {
      max-width: 95%;
      max-height: 92vh;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }
    #review-lightbox .lb-close {
      position: absolute;
      top: 22px;
      right: 22px;
      background: rgba(255,255,255,.15);
      border: none;
      color: #fff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 22px;
      cursor: pointer;
    }
    #review-lightbox .lb-close:hover { background: rgba(255,255,255,.25); }

    /* FOOTER */
    #site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 72px 32px 0; }
    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 80px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255,255,255,.1);
      align-items: start;
    }
    .footer-left { display: flex; flex-direction: column; gap: 18px; }
    .footer-left h2 {
      font-family: var(--font-head);
      font-size: 28px; font-weight: 700; line-height: 1.25;
      color: var(--white);
    }
    .footer-left p {
      font-size: 14px; line-height: 1.7;
      color: rgba(255,255,255,.7);
      max-width: 520px;
    }

    .footer-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      max-width: 540px;
    }
    .footer-form input {
      padding: 13px 16px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius);
      background: rgba(255,255,255,.07);
      color: var(--white);
      font-family: var(--font-body); font-size: 14px;
      outline: none;
    }
    .footer-form input::-webkit-credentials-auto-fill-button,
    .footer-form input::-ms-reveal,
    .footer-form input::-ms-clear { display: none !important; }
    .footer-form input::placeholder { color: rgba(255,255,255,.4); }
    .footer-form input:focus { border-color: var(--gold); }
    .footer-form button {
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: var(--radius);
      padding: 9px 18px;
      width: auto;
      justify-self: start;
      grid-column: 1 / -1;
      font-family: var(--font-body);
      font-size: 12px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      cursor: pointer;
      white-space: nowrap;
    }
    .footer-form button:hover { background: #e09800; }
    .footer-fineprint {
      font-size: 12px; line-height: 1.6;
      color: rgba(255,255,255,.45);
      max-width: 540px;
      margin-top: 4px;
    }
    .footer-fineprint a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 2px; }
    .footer-fineprint a:hover { color: var(--gold); }

    .footer-right { display: flex; flex-direction: column; gap: 18px; align-items: flex-end; padding-top: 4px; }
    .footer-right .footer-logo img { height: 96px; width: auto; }
    .footer-right ul { list-style: none; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
    .footer-right ul li a {
      font-size: 14px;
      color: rgba(255,255,255,.78);
      transition: color .2s;
      font-weight: 500;
    }
    .footer-right ul li a:hover { color: var(--gold); }

    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }
    .footer-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      transition: background .2s, transform .15s;
    }
    .footer-socials a:hover { background: var(--gold); transform: translateY(-2px); }
    .footer-socials a:hover svg { fill: var(--navy); }
    .footer-socials svg { width: 18px; height: 18px; fill: rgba(255,255,255,.85); transition: fill .2s; }

    .footer-bottom {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 22px 0;
      font-size: 12px;
      color: rgba(255,255,255,.45);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom .legal a {
      color: rgba(255,255,255,.6);
      transition: color .2s;
    }
    .footer-bottom .legal a:hover { color: var(--gold); }
    .footer-bottom .legal .sep {
      margin: 0 10px;
      color: rgba(255,255,255,.3);
    }

    /* SUBSCRIBE POPUP */
    #subscribe-popup {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 3000;
      background: rgba(0,0,0,.55);
      padding: 24px;
      align-items: center;
      justify-content: center;
      animation: popup-fade .25s ease both;
    }
    #subscribe-popup.open { display: flex; }
    @keyframes popup-fade { from { opacity: 0; } to { opacity: 1; } }
    @keyframes popup-pop  { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .popup-card {
      position: relative;
      background: var(--white);
      border-radius: 14px;
      max-width: 900px;
      width: 100%;
      max-height: 92vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
      animation: popup-pop .3s ease both;
    }
    .popup-image {
      position: relative;
      background: linear-gradient(135deg, #2a1810 0%, #1a1a1a 100%);
      min-height: 460px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      overflow: hidden;
    }
    .popup-image::before {
      content: '';
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(circle at 30% 40%, rgba(248,169,30,.18), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(204,126,53,.15), transparent 65%);
    }
    .ebook-cover {
      position: relative;
      width: 240px;
      max-width: 90%;
      aspect-ratio: 3/4;
      border-radius: 8px;
      background: linear-gradient(170deg, #f5e6d3 0%, #e8d5b8 100%);
      box-shadow:
        0 30px 60px rgba(0,0,0,.6),
        0 10px 20px rgba(0,0,0,.4),
        inset 0 0 0 1px rgba(255,255,255,.5);
      transform: rotate(-6deg);
      padding: 28px 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: var(--navy);
      font-family: var(--font-head);
      text-align: center;
    }
    .ebook-cover .brand {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .2em;
      color: var(--gold-darker);
      text-transform: uppercase;
    }
    .ebook-cover .title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 26px;
      line-height: 1.05;
      color: var(--navy);
      text-transform: uppercase;
    }
    .ebook-cover .title .now-what {
      color: var(--gold-darker);
      font-size: 32px;
      display: block;
      margin-top: 8px;
    }
    .ebook-cover .tree {
      font-size: 36px;
      color: var(--gold-darker);
      opacity: .6;
    }
    .popup-body {
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
      overflow-y: auto;
    }
    .popup-eyebrow {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold-darker);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .popup-eyebrow::before {
      content: '';
      display: inline-block;
      width: 36px;
      height: 1px;
      background: var(--dark);
    }
    .popup-body h2 {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 6px;
    }
    .popup-body p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 14px;
    }
    .popup-form { display: flex; flex-direction: column; gap: 12px; }
    .popup-form input {
      width: 100%;
      padding: 13px 16px;
      border: 1px solid #ddd;
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--dark);
      outline: none;
    }
    .popup-form input::-webkit-credentials-auto-fill-button,
    .popup-form input::-ms-reveal,
    .popup-form input::-ms-clear { display: none !important; }
    .popup-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(248,169,30,.15); }
    .popup-form button {
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      padding: 9px 18px;
      width: auto;
      align-self: flex-start;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s;
    }
    .popup-form button:hover { background: var(--gold-dark); }
    .popup-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      background: rgba(0,0,0,.06);
      border: none;
      border-radius: 50%;
      font-size: 18px;
      line-height: 1;
      color: var(--dark);
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, transform .15s;
    }
    .popup-close:hover { background: rgba(0,0,0,.12); transform: scale(1.08); }

    @media (max-width: 720px) {
      .popup-card { grid-template-columns: 1fr; max-height: 95vh; }
      .popup-image { min-height: 180px; }
      .popup-body { padding: 32px 24px; }
      .popup-body h2 { font-size: 22px; }
    }

    /* MOBILE NAV */
    #mobile-nav { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 2000; padding: 80px 32px 32px; flex-direction: column; }
    #mobile-nav.open { display: flex; }
    #mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }
    .mobile-nav-links { list-style: none; display: flex; flex-direction: column; }
    .mobile-nav-links li a { display: block; padding: 16px 0; font-size: 18px; font-weight: 500; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); }
    .mobile-nav-links li a:hover { color: var(--gold); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .reviews-grid { column-count: 2; }
      .headline-inner h1 { font-size: 42px; }
      .footer-inner { gap: 48px; }
    }
    @media (max-width: 768px) {
      .site-nav { display: none; }
      .hamburger { display: flex; }
      #hero { grid-template-columns: 1fr; padding: 36px 20px 48px; gap: 36px; }
      #headline-banner { padding: 64px 24px; }
      .headline-inner h1 { font-size: 32px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .icon-strip-inner { grid-template-columns: repeat(3, 1fr); }
      .icon-item:nth-child(3) { border-right: none; }
      .icon-item:nth-child(4), .icon-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,.15); }
      .footer-inner { grid-template-columns: 1fr; gap: 36px; }
      .footer-right { align-items: flex-start; }
      .footer-right ul { align-items: flex-start; }
      .footer-form { grid-template-columns: 1fr; }
      .reviews-grid { column-count: 1; }
      .header-inner { padding: 0 16px; height: 84px; }
      .site-logo img { height: 64px; }
      #testimonials-header h2 { font-size: 26px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }
    @media (max-width: 480px) {
      .icon-strip-inner { grid-template-columns: repeat(2, 1fr); }
      .icon-item:nth-child(2) { border-right: none; }
      .icon-item:nth-child(3), .icon-item:nth-child(4), .icon-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,.15); }
      .icon-item:nth-child(4) { border-right: none; }
      .icon-item:nth-child(5) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; border-right: none; }
      .headline-inner h1 { font-size: 26px; }
    }
/* ── PAGE-SPECIFIC STYLES ─────────────────────────── */
.page-hero {
  background-color: var(--gold-darker);
  background-image: url('../images/banner-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 32px 90px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(204,126,53,.35);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}
.page-hero .eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .18em;
  color: rgba(255,255,255,.95);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.page-hero p {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,.92);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-body {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 32px 80px;
  color: var(--text);
}
.page-body.wide { max-width: 1100px; }

.page-body h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 18px;
  line-height: 1.25;
}
.page-body h2:first-child { margin-top: 0; }
.page-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 12px;
}
.page-body p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.page-body ul, .page-body ol {
  padding-left: 24px;
  margin-bottom: 22px;
}
.page-body li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.page-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-body a:hover { color: var(--gold-dark); }

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, transform .1s, color .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #1e2a4a; color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}
.feature-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 30px 26px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  margin-top: 0;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .info-block h3 { margin-top: 0; }
.contact-info .info-block p { margin-bottom: 4px; }

.form-styled { display: flex; flex-direction: column; gap: 14px; }
.form-styled label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; display: block; }
.form-styled input, .form-styled textarea, .form-styled select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  background: var(--white);
}
.form-styled textarea { min-height: 140px; resize: vertical; }
.form-styled input:focus, .form-styled textarea:focus, .form-styled select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(248,169,30,.15);
}

.legal-doc h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-doc p { font-size: 15px; margin-bottom: 14px; }
.legal-doc .updated {
  font-size: 13px;
  color: #999;
  font-style: italic;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .page-hero h1 { font-size: 32px; }
  .page-hero { padding: 56px 20px 64px; }
  .feature-grid { grid-template-columns: 1fr; }
  .page-body { padding: 48px 20px 60px; }
}

    /* Text-based footer logo */
    .footer-right .footer-logo {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
      line-height: 1.1;
      font-family: var(--font-head);
      font-weight: 700;
      letter-spacing: .01em;
    }
    .footer-right .footer-logo img { display: none; }
    .footer-right .ft-line1 { color: var(--gold); font-size: 26px; }
    .footer-right .ft-line2 { color: var(--white); font-size: 26px; }

    /* Review masonry - put Jenna in column 1 */
    .reviews-grid .review-img.first-col { break-before: column; }


/* ── BLOG STYLES ──────────────────────────────────────── */

/* Blog index */
.blog-index {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 32px 80px;
}
.blog-index-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.blog-index-header h1 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-index-header p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.post-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.post-card a { color: inherit; text-decoration: none; display: flex; flex-direction: column; height: 100%; }
.post-card-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-darker) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card-cover .cover-emoji { font-size: 72px; opacity: .9; }
.post-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.post-card .post-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.post-card h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.post-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  flex: 1;
}
.post-card .read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-darker);
  margin-top: auto;
  letter-spacing: .02em;
}

/* Blog post */
.post-hero {
  background-color: var(--gold-darker);
  background-image: linear-gradient(rgba(16,21,39,.55), rgba(16,21,39,.55)), url('../images/banner-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 72px 32px 64px;
  text-align: center;
  color: var(--white);
}
.post-hero-inner { max-width: 800px; margin: 0 auto; }
.post-hero .post-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.post-hero h1 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.post-byline {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.post-byline span:not(:last-child)::after { content: '·'; margin-left: 16px; opacity: .6; }

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 28px 80px;
  color: var(--dark);
}

.tldr-box {
  background: #2C7E7C;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 40px;
}
.tldr-box h2 {
  font-family: var(--font-body);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #F6C56A !important;
  margin: 0 0 14px !important;
}
.tldr-box p { font-size: 16px !important; line-height: 1.7; color: #ffffff !important; margin: 0 !important; }
.tldr-box p strong, .tldr-box p em { color: #ffffff !important; }
.tldr-box a { color: #F6C56A; }

.toc {
  background: #fbf6ed;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.toc h2 {
  font-family: var(--font-body);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-darker) !important;
  margin: 0 0 14px !important;
}
.toc ol { padding-left: 22px; margin: 0; }
.toc li {
  font-size: 15px !important;
  margin-bottom: 6px !important;
  line-height: 1.5;
}
.toc a { color: var(--dark); text-decoration: none; border-bottom: 1px dotted #cba662; }
.toc a:hover { color: var(--gold-darker); }

.post-body h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 18px;
  line-height: 1.3;
  scroll-margin-top: 110px;
}
.post-body h3 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 12px;
  line-height: 1.35;
}
.post-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}
.post-body p strong { color: var(--dark); }
.post-body ul, .post-body ol { padding-left: 26px; margin-bottom: 24px; }
.post-body li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 10px;
}
.post-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-body a:hover { color: var(--gold-darker); }
.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--dark);
}

.callout {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2a4a 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 32px 30px;
  margin: 40px 0;
}
.callout h3 {
  font-family: var(--font-head);
  color: var(--white) !important;
  font-size: 20px !important;
  margin: 0 0 12px !important;
}
.callout p { color: rgba(255,255,255,.85) !important; font-size: 15px !important; margin-bottom: 16px !important; }
.callout .btn { display: inline-block; }

/* Embedded resource previews — a doc/video shown inline, linked to where it lives */
.resource-embed {
  margin: 40px 0;
  background: #fbf6ed;
  border-radius: 16px;
  padding: 16px 16px 6px;
}
.resource-embed .re-frame {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 26px rgba(16, 21, 39, .12);
}
.resource-embed img.re-img { display: block; width: 100%; height: auto; }
.resource-embed.re-tall .re-frame { position: relative; max-height: 520px; }
.resource-embed.re-tall .re-frame::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 110px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}
.resource-embed .re-pdf,
.resource-embed .re-canva { position: relative; width: 100%; height: 0; }
.resource-embed .re-pdf { padding-top: 129%; }
.resource-embed .re-canva { padding-top: 100%; }
.resource-embed .re-pdf iframe,
.resource-embed .re-canva iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
.resource-embed figcaption {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 8px 10px;
}
.resource-embed .re-label { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.35; }
.resource-embed .re-label span { display: block; font-weight: 400; color: var(--text); font-size: 13.5px; margin-top: 3px; }
.resource-embed .re-open {
  flex: none; display: inline-block; background: var(--teal); color: #fff !important;
  text-decoration: none !important; padding: 10px 18px; border-radius: 9px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
.resource-embed .re-open:hover { background: #25696a; color: #fff !important; }
@media (max-width: 560px) {
  .resource-embed figcaption { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* In-article content photos (product/curriculum shots, diagrams) */
.post-figure { margin: 38px 0; }
.post-figure a { display: block; }
.post-figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 580px;
  width: auto; height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(16, 21, 39, .12);
}
.post-figure figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text);
  text-align: center;
  line-height: 1.5;
}
.post-figure figcaption a { color: var(--teal); }

/* Inline newsletter subscribe CTA (image links to signup) */
.subscribe-cta { margin: 44px 0; text-align: center; }
.subscribe-cta a { display: inline-block; max-width: 430px; width: 100%; }
.subscribe-cta img {
  display: block; width: 100%; height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(16, 21, 39, .16);
  transition: transform .15s, box-shadow .15s;
}
.subscribe-cta a:hover img { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(16, 21, 39, .22); }

/* Amazon review screenshot (social proof) */
.review-shot { margin: 40px 0; }
.review-shot .rs-card {
  max-width: 580px; margin: 0 auto;
  background: #fff; border-radius: 14px; padding: 16px;
  box-shadow: 0 8px 26px rgba(16, 21, 39, .12);
}
.review-shot img { display: block; width: 100%; height: auto; border-radius: 8px; }
.review-shot figcaption {
  text-align: center; margin-top: 12px; font-size: 13px; color: var(--text);
}
.review-shot figcaption a { color: var(--teal); }
.review-shot .rs-badge { color: var(--gold-darker); font-weight: 600; letter-spacing: .02em; }

/* Product card (workbook SKUs) with optional "New" badge */
.product-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 34px; align-items: center;
  background: #fbf6ed; border-radius: 18px; padding: 30px 34px; margin: 0 0 36px;
}
.product-card .pc-media { position: relative; }
.product-card .pc-media img {
  display: block; width: 100%; height: auto; border-radius: 10px;
  box-shadow: 0 12px 28px rgba(16, 21, 39, .20);
}
.product-card .new-badge {
  position: absolute; top: -12px; left: -12px; z-index: 2;
  background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 9px; box-shadow: 0 5px 14px rgba(16, 21, 39, .22);
}
.product-card .pc-body h2 { margin: 0 0 12px; }
.product-card .pc-body p { margin: 0 0 20px; }
.product-card.is-solo { grid-template-columns: 1fr; }

/* Per-SKU cards shown under each level block — 3 columns so each
   Teacher Guide (row 2) sits directly beneath its Workbook (row 1). */
.sku-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 6px 0 44px; }
.sku-card { display: flex; flex-direction: column; gap: 6px; background: #fff; border-radius: 14px; padding: 22px 18px; text-align: center; box-shadow: 0 6px 18px rgba(16, 21, 39, .08); }
/* Cover image at the top of each card, bled to the card edges */
.sku-card .sku-media { margin: -22px -18px 14px; border-radius: 14px 14px 0 0; overflow: hidden; aspect-ratio: 3 / 4; background: #f3ede2; }
.sku-card .sku-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* Placeholder tile (brand panel + round logo) for SKUs still awaiting a cover */
.sku-card .sku-media.ph { display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #f4eee3 0%, #e4efee 100%); }
.sku-card .sku-media.ph img { width: 58%; height: auto; object-fit: contain; opacity: .92; }
/* Lone trailing reader card sits centered under the 3-up grid */
.sku-grid > .sku-card.reader { grid-column: 2 / 3; }
.sku-card .sku-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-darker); }
.sku-card.tg .sku-tag { color: var(--teal); }
.sku-card.reader .sku-tag { color: var(--navy); }
.sku-card h4 { font-family: var(--font-head); font-size: 17px; color: var(--dark); margin: 2px 0 0; }
.sku-card .sku-meta { font-size: 13px; color: var(--text); margin: 0 0 10px; }
.sku-card .btn { margin-top: auto; width: 100%; padding: 11px 14px; font-size: 12px; }
.sku-card .btn-pending { background: #ececec; color: var(--navy) !important; }
.sku-card .btn-pending:hover { background: #e2e2e2; color: var(--navy) !important; }
.sku-card.is-soon { opacity: .72; }
.sku-card .btn-soon { background: #eef0f2; color: var(--navy) !important; cursor: default; }
@media (max-width: 900px) { .sku-grid { grid-template-columns: repeat(2, 1fr); } .sku-grid > .sku-card.reader { grid-column: auto; } }
@media (max-width: 480px) { .sku-grid { grid-template-columns: 1fr; } }

/* Awards & reviews strip (reused across pages) */
.award-strip { text-align: center; padding: 52px 32px; }
.award-strip.tinted { background: var(--light-bg); }
.award-strip > h2 { font-family: var(--font-head); font-size: 28px; color: var(--dark); font-weight: 700; margin: 0 0 10px; }
.award-strip .award-sub { font-size: 15px; line-height: 1.6; color: var(--text); max-width: 660px; margin: 0 auto 30px; }
.award-seals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; max-width: 940px; margin: 0 auto; }
.award-seal { margin: 0; }
.award-seal img { height: 112px; width: auto; max-width: 100%; object-fit: contain; display: block; margin: 0 auto 14px; filter: grayscale(.2); transition: filter .25s, transform .25s; }
.award-seal:hover img { filter: none; transform: translateY(-2px); }
.award-seal figcaption { font-size: 13px; line-height: 1.5; color: var(--text); }
.award-strip.compact { padding: 40px 32px; }
.award-strip.compact .award-seal img { height: 90px; margin-bottom: 10px; }
.award-quote { font-family: var(--font-head); font-size: 20px; line-height: 1.5; color: var(--dark); font-weight: 500; font-style: italic; max-width: 680px; margin: 34px auto 22px; }
.award-quote cite { display: block; font-style: normal; font-size: 14px; color: var(--text); margin-top: 12px; }
@media (max-width: 680px) { .award-seals { grid-template-columns: repeat(2, 1fr); gap: 24px; } .award-seal img { height: 90px; } }
@media (max-width: 640px) {
  .product-card { grid-template-columns: 1fr; gap: 20px; text-align: center; padding: 26px 22px; }
  .product-card .pc-media { max-width: 210px; margin: 0 auto; }
  .product-card .new-badge { left: auto; right: 10px; }
}

.faq-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid #eee;
}
.faq-section h2 { margin-top: 0; }
.faq-item { margin-bottom: 28px; }
.faq-item h3 {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}
.faq-item p {
  margin-bottom: 0;
  font-size: 16px;
}

.related-posts {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 2px solid #eee;
}
.related-posts h2 { margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 22px 22px 24px;
  transition: background .2s;
}
.related-card:hover { background: #f0e8d6; }
.related-card a { color: inherit; text-decoration: none; }
.related-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-darker);
  margin-bottom: 8px;
  display: block;
}
.related-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 768px) {
  .post-grid { grid-template-columns: 1fr; }
  .blog-index-header h1 { font-size: 32px; }
  .post-hero h1 { font-size: 28px; }
  .post-hero { padding: 48px 20px; }
  .post-body { padding: 36px 20px 56px; }
  .post-body h2 { font-size: 24px; }
  .related-grid { grid-template-columns: 1fr; }
}


/* Blog category nav */
.cat-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.cat-nav a {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark);
  padding: 8px 18px;
  border-radius: 22px;
  background: var(--light-bg);
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}
.cat-nav a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.cat-nav a span { color: var(--text); margin-left: 4px; font-weight: 500; }
.cat-nav a:hover span { color: var(--white); }
.cat-section { margin-top: 64px; }
.cat-section:first-of-type { margin-top: 8px; }
.cat-heading {
  font-family: var(--font-head);
  font-size: 30px; font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  scroll-margin-top: 130px;
}


/* Blog post cover */
.post-cover {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -48px;
  margin-bottom: 32px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  position: relative;
  z-index: 2;
}
.post-cover img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
  .post-cover { margin-top: -24px; border-radius: 10px; }
}

/* Hide emoji cover when post-card-cover has an image */
.post-card-cover.has-image { background: none; padding: 0; }
.post-card-cover.has-image .cover-emoji { display: none; }
.post-card-cover.has-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Button text color rule: navy on light/gold backgrounds, white on dark backgrounds.
   !important guards against container link rules (e.g. .page-body a, .post-body a) tinting buttons. */
.btn-primary, .btn-subscribe, .btn-outline { color: var(--navy) !important; }
.btn-primary:hover, .btn-subscribe:hover { color: var(--navy) !important; }
.btn-dark, .btn-amazon { color: var(--white) !important; }
.btn-dark:hover, .btn-amazon:hover, .btn-outline:hover { color: var(--white) !important; }


/* Auth — "Sign in with Google" nav widget */
.nav-auth, .nav-auth-m { display: inline-flex; align-items: center; }
.ata-auth-chip { display: inline-flex; align-items: center; gap: 8px; }
.ata-auth-pic { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.ata-auth-name { font-weight: 600; color: var(--navy); text-decoration: none; font-size: 14px; }
.ata-auth-name:hover { color: var(--gold-dark); }
.ata-auth-logout { background: none; border: 1px solid #d8d8d8; color: var(--navy); font: inherit; font-size: 12px; padding: 4px 10px; border-radius: 999px; cursor: pointer; }
.ata-auth-logout:hover { background: #f3f3f3; }
.ata-gsi { display: inline-flex; }
.mobile-nav-links .ata-auth-chip { gap: 10px; }
