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

    :root {
      --gold: #c9a84c;
      --gold-light: #e8d48b;
      --gold-dark: #a07c2a;
      --black: #0a0a0a;
      --black-light: #141414;
      --black-medium: #1a1a1a;
      --cream: #f5f0e6;
      --white: #ffffff;
      --gray: #888;
      --font-display: 'Cinzel', serif;
      --font-body: 'Cormorant Garamond', serif;
      --font-ui: 'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--black);
      color: var(--cream);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ——— TEXTURE OVERLAY ——— */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(255,255,255,0.008) 2px,
          rgba(255,255,255,0.008) 4px
        ),
        repeating-linear-gradient(
          90deg,
          transparent,
          transparent 3px,
          rgba(255,255,255,0.005) 3px,
          rgba(255,255,255,0.005) 6px
        );
      pointer-events: none;
      z-index: 1;
    }

    /* ——— NAVIGATION ——— */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.4s ease;
      background: transparent;
    }

    nav.scrolled {
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 0.8rem 3rem;
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-logo {
      font-family: var(--font-display);
      color: var(--gold);
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      line-height: 1.2;
    }

    .nav-logo-small {
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      opacity: 0.8;
    }

    .nav-logo-main {
      font-size: 0.85rem;
      letter-spacing: 0.2em;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-family: var(--font-ui);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .nav-links a:hover {
      opacity: 1;
      color: var(--gold);
    }

    .nav-cta {
      font-family: var(--font-ui);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--black) !important;
      background: var(--gold);
      padding: 0.6rem 1.5rem;
      text-decoration: none;
      opacity: 1 !important;
      transition: all 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--gold-light) !important;
      color: var(--black) !important;
    }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 101;
    }

    .mobile-toggle span {
      width: 24px;
      height: 1.5px;
      background: var(--gold);
      transition: all 0.3s ease;
    }

    /* ——— HERO ——— */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      text-align: center;
      padding: 6rem 2rem 4rem;
    }

    /* Radial glow - inspired by book cover orb */
    .hero-glow {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 30%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      filter: blur(40px);
      pointer-events: none;
    }

    .hero-award {
      font-family: var(--font-ui);
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.3s forwards;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-award::before,
    .hero-award::after {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }

    .hero-pretitle {
      font-family: var(--font-display);
      font-size: clamp(1rem, 2vw, 1.3rem);
      letter-spacing: 0.15em;
      color: var(--gold-light);
      margin-bottom: 0.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.5s forwards;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.7s forwards;
      background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-family: var(--font-body);
      font-size: clamp(1rem, 1.8vw, 1.25rem);
      font-weight: 300;
      font-style: italic;
      color: var(--cream);
      opacity: 0;
      animation: fadeUp 1s ease 0.9s forwards;
      max-width: 600px;
      margin: 0 auto 0.8rem;
    }

    .hero-latin {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-style: italic;
      letter-spacing: 0.2em;
      color: var(--gray);
      text-transform: uppercase;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 1.1s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1s ease 1.3s forwards;
    }

    .btn {
      font-family: var(--font-ui);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      text-decoration: none;
      transition: all 0.4s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 10px 40px rgba(201, 168, 76, 0.2);
    }

    .btn-outline {
      background: transparent;
      color: var(--gold);
      border: 1px solid rgba(201, 168, 76, 0.4);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      background: rgba(201, 168, 76, 0.08);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      animation: fadeUp 1s ease 1.5s forwards;
    }

    .hero-scroll span {
      display: block;
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      margin: 0 auto;
    }

    /* ——— SECTIONS ——— */
    section {
      position: relative;
      z-index: 2;
    }

    .section-pad {
      padding: 8rem 2rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-family: var(--font-ui);
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .section-label::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--gold);
    }

    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 500;
      color: var(--gold);
      line-height: 1.2;
      margin-bottom: 2rem;
      background: linear-gradient(180deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ——— PORTRAIT / ABOUT ——— */
    .about {
      background: var(--black-light);
    }

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

    .portrait-frame {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }

    .portrait-circle {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(201, 168, 76, 0.3);
      position: relative;
    }

    .portrait-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.1);
    }

    .portrait-glow {
      position: absolute;
      inset: -20px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-text p {
      font-size: 1.15rem;
      font-weight: 300;
      color: rgba(245, 240, 230, 0.8);
      margin-bottom: 1.5rem;
    }

    .about-quote {
      font-style: italic;
      font-size: 1.3rem;
      color: var(--gold-light);
      border-left: 2px solid var(--gold);
      padding-left: 1.5rem;
      margin: 2rem 0;
    }

    .about-quote cite {
      display: block;
      font-style: normal;
      font-size: 0.85rem;
      color: var(--gray);
      margin-top: 0.8rem;
      font-family: var(--font-ui);
      letter-spacing: 0.05em;
    }

    /* ——— FILM SECTION ——— */
    .film {
      background: var(--black);
    }

    .film-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .film-video {
      position: relative;
      aspect-ratio: 16/9;
      background: var(--black-medium);
      border: 1px solid rgba(201, 168, 76, 0.15);
      overflow: hidden;
      cursor: pointer;
    }

    .film-video::after {
      content: '▶';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--gold);
      border-radius: 50%;
      color: var(--gold);
      font-size: 1.2rem;
      padding-left: 4px;
      transition: all 0.3s ease;
    }

    .film-video:hover::after {
      background: var(--gold);
      color: var(--black);
    }

    .film-video img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
    }

    .film-info p {
      font-size: 1.15rem;
      font-weight: 300;
      color: rgba(245, 240, 230, 0.8);
      margin-bottom: 1.5rem;
    }

    .film-credits {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(201, 168, 76, 0.15);
    }

    .film-credits dt {
      font-family: var(--font-ui);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }

    .film-credits dd {
      font-size: 1rem;
      color: var(--cream);
      margin-bottom: 1.2rem;
    }

    /* ——— BOOK SECTION ——— */
    .book {
      background: var(--black-light);
    }

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

    .book-cover-wrapper {
      position: relative;
      perspective: 1000px;
    }

    .book-cover {
      width: 100%;
      max-width: 488px;
      margin: 0 auto;
      display: block;
      box-shadow:
        -20px 20px 60px rgba(0,0,0,0.5),
        0 0 80px rgba(201, 168, 76, 0.05);
      transition: transform 0.6s ease;
    }

    .book-cover:hover {
      transform: rotateY(-5deg) scale(1.02);
    }

    .book-info p {
      font-size: 1.15rem;
      font-weight: 300;
      color: rgba(245, 240, 230, 0.8);
      margin-bottom: 1.5rem;
    }

    .book-features {
      margin: 2rem 0;
      display: grid;
      gap: 1rem;
    }

    .book-feature {
      display: flex;
      gap: 1rem;
      align-items: start;
    }

    .book-feature-icon {
      width: 24px;
      height: 24px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.2rem;
    }

    .book-feature-icon svg {
      width: 10px;
      height: 10px;
      fill: var(--gold);
    }

    .book-feature span {
      font-size: 1rem;
      color: rgba(245, 240, 230, 0.7);
    }

    /* ——— TESTIMONIALS ——— */
    .testimonials {
      background: var(--black);
      text-align: center;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(201, 168, 76, 0.1);
      padding: 2.5rem;
      text-align: left;
      transition: all 0.4s ease;
    }

    .testimonial-card:hover {
      border-color: rgba(201, 168, 76, 0.25);
      background: rgba(201, 168, 76, 0.03);
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      margin-bottom: 1.5rem;
    }

    .testimonial-card blockquote {
      font-size: 1.1rem;
      font-style: italic;
      font-weight: 300;
      color: rgba(245, 240, 230, 0.85);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .testimonial-card cite {
      font-style: normal;
      font-family: var(--font-ui);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .testimonial-card cite span {
      display: block;
      color: var(--gray);
      margin-top: 0.3rem;
      font-size: 0.65rem;
      letter-spacing: 0.05em;
      text-transform: none;
    }

    /* ——— SUBSCRIBE / CTA ——— */
    .subscribe {
      background: var(--black-light);
      text-align: center;
    }

    .subscribe .container {
      max-width: 700px;
    }

    .subscribe-heading {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      color: var(--gold);
      margin-bottom: 1rem;
      background: linear-gradient(180deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .subscribe p {
      font-size: 1.1rem;
      font-weight: 300;
      color: rgba(245, 240, 230, 0.7);
      margin-bottom: 2.5rem;
    }

    .subscribe-plans {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .plan-card {
      border: 1px solid rgba(201, 168, 76, 0.2);
      padding: 2rem;
      transition: all 0.4s ease;
      /* ———cursor: pointer;——— */
    }

    .plan-card:hover, .plan-card.featured {
      border-color: var(--gold);
      background: rgba(201, 168, 76, 0.05);
    }

    .plan-card.featured {
      position: relative;
    }

    .plan-card.featured::after {
      content: 'BEST VALUE';
      position: absolute;
      top: -10px;
      right: 1.5rem;
      font-family: var(--font-ui);
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      background: var(--gold);
      color: var(--black);
      padding: 0.3rem 0.8rem;
    }

    .plan-price {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--gold);
    }

    .plan-price span {
      font-size: 0.9rem;
      color: var(--gray);
      font-family: var(--font-body);
    }

    .plan-name {
      font-family: var(--font-ui);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cream);
      margin-top: 0.5rem;
    }

    /* ——— STEPPING STONE ——— */
    .stepping-stone {
      background: var(--black);
      overflow: hidden;
    }

    .stepping-stone-content {
      max-width: 700px;
    }

    .stepping-stone-content p {
      font-size: 1.15rem;
      font-weight: 300;
      color: rgba(245, 240, 230, 0.8);
      margin-bottom: 1.5rem;
    }

    /* ——— FOOTER ——— */
    footer {
      background: var(--black-light);
      border-top: 1px solid rgba(201, 168, 76, 0.1);
      padding: 4rem 2rem 2rem;
      position: relative;
      z-index: 2;
    }

    .footer-grid {
      max-width: 1288px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1.92fr;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }

    .footer-brand h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      letter-spacing: 0.15em;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-size: 0.9rem;
      color: var(--gray);
      font-weight: 300;
    }

    .footer-book h4 {
      font-family: var(--font-ui);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .footer-book p {
      font-family: var(--font-ui);
      font-size: 0.75rem;
      color: var(--gray);
      font-weight: 300;
      line-height: 1.7;
      margin: 0;
    }

    .footer-col h4 {
      font-family: var(--font-ui);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .footer-col a {
      display: block;
      font-family: var(--font-ui);
      font-size: 0.8rem;
      color: var(--gray);
      text-decoration: none;
      margin-bottom: 0.6rem;
      transition: color 0.3s ease;
    }

    .footer-col a:hover {
      color: var(--cream);
    }

    .footer-bottom {
      max-width: 1288px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-family: var(--font-ui);
      font-size: 0.7rem;
      color: rgba(255,255,255,0.3);
    }

    /* ——— GOLD DIVIDER ——— */
    .divider {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 2rem;
      opacity: 0.5;
    }

    /* ——— ANIMATIONS ——— */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ——— MOBILE ——— */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      nav.scrolled { padding: 0.8rem 1.5rem; }

      .mobile-toggle { display: flex; }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(201, 168, 76, 0.1);
      }

      .nav-links.open { right: 0; }

      .about-grid,
      .film-content,
      .book-layout,
      .testimonial-grid,
      .subscribe-plans {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .portrait-frame { max-width: 280px; }

      .section-pad { padding: 5rem 1.5rem; }

      .hero { padding: 5rem 1.5rem 3rem; }
    }

    @media (max-width: 550px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    }

    /* ——— VIDEO MODAL ——— */
    .video-modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .video-modal.active { display: flex; }

    .video-modal-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: none;
      border: none;
      color: var(--cream);
      font-size: 1.5rem;
      cursor: pointer;
      font-family: var(--font-ui);
    }

    .video-modal-content {
      width: 100%;
      max-width: 900px;
      aspect-ratio: 16/9;
    }

    .video-modal-content iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    /* ——— HERO BACKGROUND IMAGE ——— */
    .hero {
      background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 50%, var(--black) 100%),
                  url('images/hero-bill-writing.jpg') center top / cover no-repeat;
    }

    /* ——— PHOTO GALLERY ——— */
    .gallery {
      background: var(--black);
      overflow: hidden;
    }

    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 4px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(30%);
      transition: all 0.6s ease;
    }

    .gallery-item:hover img {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
      pointer-events: none;
    }

    .gallery-caption {
      position: absolute;
      bottom: 0.8rem;
      left: 0.8rem;
      right: 0.8rem;
      font-family: var(--font-ui);
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      color: var(--cream);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 2;
    }

    .gallery-item:hover .gallery-caption {
      opacity: 1;
    }

    @media (max-width: 900px) {
      .gallery-strip {
        grid-template-columns: repeat(3, 1fr);
      }
      .gallery-item:nth-child(4),
      .gallery-item:nth-child(5) {
        display: none;
      }
    }

    /* ——— FULL-WIDTH IMAGE BREAK ——— */
    .image-break {
      position: relative;
      height: 60vh;
      min-height: 400px;
      overflow: hidden;
    }

    .image-break img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(40%);
    }

    .image-break-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%);
    }

    .image-break-text {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 2;
    }

    .image-break-text blockquote {
      font-family: var(--font-body);
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-style: italic;
      font-weight: 300;
      color: var(--cream);
      max-width: 700px;
      line-height: 1.6;
    }

    .image-break-text cite {
      display: block;
      font-style: normal;
      font-family: var(--font-ui);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 1rem;
    }

    /* ——— STEPPING STONES IMAGE LAYOUT ——— */
    .stepping-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .stepping-img-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border: 1px solid rgba(201,168,76,0.15);
      filter: grayscale(30%);
      transition: filter 0.4s ease;
    }

    .stepping-img-grid img:hover {
      filter: grayscale(0%);
    }

    @media (max-width: 900px) {
      .stepping-img-grid { grid-template-columns: 1fr; }
      .image-break { height: 40vh; min-height: 280px; }
    }
  
    /* ——— MEMBER AUTH NAV ——— */
    .nav-auth {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-left: 1rem;
    }

    .nav-auth a, .nav-auth button {
      font-family: var(--font-ui);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: none;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .nav-auth .auth-login {
      color: var(--cream);
      opacity: 0.7;
    }

    .nav-auth .auth-login:hover {
      opacity: 1;
      color: var(--gold);
    }

    .nav-auth .auth-signup {
      color: var(--black);
      background: var(--gold);
      padding: 0.5rem 1.2rem;
    }

    .nav-auth .auth-signup:hover {
      background: var(--gold-light);
    }

    .nav-auth .auth-account {
      color: var(--cream);
      opacity: 0.7;
    }

    .nav-auth .auth-account:hover {
      opacity: 1;
      color: var(--gold);
    }

    .nav-auth .auth-logout {
      color: var(--gray);
      font-size: 0.65rem;
    }

    .nav-auth .auth-logout:hover {
      color: var(--cream);
    }

    /* Show/hide based on member status */
    [data-ms-content="members"] { display: none; }
    [data-ms-content="!members"] { display: block; }

    /* ——— MEMBERS PAGE ——— */
    .members-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }

    .members-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 2rem;
      transition: all 0.4s ease;
    }

    .members-card:hover {
      border-color: rgba(201,168,76,0.3);
      background: rgba(201,168,76,0.03);
    }

    .members-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .members-card p {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(245,240,230,0.7);
      margin-bottom: 1.2rem;
    }

    @media (max-width: 900px) {
      .members-grid { grid-template-columns: 1fr; }
      .nav-auth { margin-left: 0; }
    }
