  :root {
    --ink: #0D1B2A;
    --cream: #f5f0e8;
    --parchment: #ede5d0;
    --pine: #0A2540;
    --pine-mid: #029FD4;
    --pine-light: #4DB8E0;
    --snow: #faf8f4;
    --gold: #EEAB46;
    --gold-light: #F2C46A;
    --rust: #8b3a2a;
    --slate: #4a5568;
    --rule: #EEAB46;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden;
  }

  /* Visually hidden but accessible to screen readers and search engines */
  .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }

  /* ─── HERO ─── */

  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(2,30,55,0.22) 0%,
      rgba(2,30,55,0.10) 40%,
      rgba(2,30,55,0.45) 85%,
      rgba(2,30,55,0.72) 100%
    );
    z-index: 1;
  }
  .hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 2rem;
    width: 100%;
    max-width: 1200px;
  }

  .hero {
    background: var(--pine);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
  }

  /* Mountain silhouette */
  .hero-mountain {
    display: none;
  }

  /* Snow dots */
  .snowflakes {
    position: absolute; inset: 0; pointer-events: none;
  }
  .snowflakes span {
    position: absolute;
    width: 3px; height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: snowfall linear infinite;
  }
  @keyframes snowfall {
    0%   { opacity: 0; transform: translateY(-20px) translateX(0); }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(110vh) translateX(30px); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem 8rem;
    max-width: 900px;
    animation: fadeUp 1s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--snow);
    line-height: 1.05;
    margin-bottom: 0.5rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(245,240,232,0.75);
    margin-bottom: 2.5rem;
    line-height: 1.5;
  }

  .hero-rule {
    width: 80px; height: 2px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
  }

  .hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--snow);
    margin-bottom: 3rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.8rem;
    border: 2px solid var(--gold);
    transition: all 0.3s;
    margin: 0.4rem;
  }
  .btn-primary:hover {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
  }

  .btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--snow);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.8rem;
    border: 2px solid rgba(245,240,232,0.4);
    transition: all 0.3s;
    margin: 0.4rem;
  }
  .btn-ghost:hover {
    border-color: var(--snow);
    background: rgba(245,240,232,0.08);
  }

  .scroll-cue {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    color: rgba(245,240,232,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bob 2s ease-in-out infinite;
  }
  .scroll-cue::after {
    content: '↓';
    font-size: 1.2rem;
  }
  @keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
  }

  /* ─── SECTIONS ─── */
  section { padding: 6rem 1.5rem; }

  .container { max-width: 1080px; margin: 0 auto; }
  .container-narrow { max-width: 720px; margin: 0 auto; }

  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--pine-mid);
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }

  .gold-rule {
    width: 60px; height: 3px;
    background: var(--gold);
    margin-bottom: 2rem;
  }



  /* Mistral script font — used for Once & Future throughout */
  .once-future {
    font-family: 'Mistral', 'Great Vibes', cursive;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.01em;
  }

  /* ─── JACKET TITLE TREATMENT ─── */
  .jacket-title-block {
    text-align: right;
    margin-bottom: 0;
    align-self: flex-start;
    padding-top: 4rem;
  }
  .hero-title-group {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .hero-lower-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    padding-bottom: 1rem;
  }
  .jacket-jay,
  .jacket-peak {
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(5rem, 14vw, 10rem);
    color: #ffffff;
    letter-spacing: 0.12em;
    line-height: 0.92;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    display: block;
  }
  .jacket-snowflake-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.2rem 0;
  }
  .jacket-rule-left,
  .jacket-rule-right {
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.55);
  }
  .jacket-snowflake {
    width: clamp(36px, 5vw, 54px);
    height: clamp(36px, 5vw, 54px);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  }
  .jacket-script {
    font-family: 'Mistral', 'Great Vibes', cursive;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--gold-light);
    line-height: 1.1;
    margin: 0.2rem 0 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.55);
    letter-spacing: 0.01em;
  }
  .jacket-sub {
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: clamp(0.75rem, 1.6vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: none;
    color: rgba(245,240,232,0.82);
    margin-bottom: 0.6rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }
  .jacket-byline {
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(245,240,232,0.7);
    text-transform: none;
    margin-top: 0.3rem;
  }
  .hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2.5rem 0 2.5rem;
  }


  .jacket-logo-img {
    width: clamp(280px, 65vw, 680px);
    display: block;
    margin: 0 auto 0.4rem;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.55));
  }

  /* ─── BOOK SHOWCASE ─── */
  .book-section { background: var(--snow); }

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

  @media (max-width: 768px) {
    .book-grid { grid-template-columns: 1fr; gap: 3rem; }
  }

  /* Book cover mockup */
  .book-mockup {
    position: relative;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 9rem;
  }

  .book-3d {
    transform: rotateY(-20deg) rotateX(3deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    cursor: pointer;
    filter: drop-shadow(30px 20px 40px rgba(26,20,16,0.45));
  }
  .book-3d:hover {
    transform: rotateY(-8deg) rotateX(1deg);
  }

  .book-cover {
    width: clamp(260px, 28vw, 360px);
    background: var(--pine);
    border-radius: 2px 6px 6px 2px;
    overflow: hidden;
    position: relative;
    align-self: stretch;
  }

  .book-cover-inner {
    background: linear-gradient(170deg, #1e3820 0%, #2a4a2e 50%, #1a2e1c 100%);
    padding: 2.5rem 2rem 2rem;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(238,171,70,0.3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }
  .book-cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Mountain illustration on cover */
  .cover-mountain-art {
    position: absolute;
    bottom: 60px; left: 0; right: 0;
    height: 120px;
    opacity: 0.35;
  }

  .cover-top-ornament {
    text-align: center;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .cover-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--snow);
    font-size: 1.75rem;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }
  .cover-title em { color: var(--gold-light); font-style: italic; display: block; font-size: 1.2rem; }

  .cover-subtitle-bar {
    background: rgba(238,171,70,0.15);
    border-top: 1px solid rgba(238,171,70,0.5);
    border-bottom: 1px solid rgba(238,171,70,0.5);
    padding: 0.5rem;
    text-align: center;
    margin: 1rem 0;
  }

  .cover-subtitle-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(245,240,232,0.8);
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .cover-image-placeholder {
    background: linear-gradient(180deg, rgba(77,184,224,0.3) 0%, rgba(26,46,28,0.8) 100%);
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
    border: 1px solid rgba(238,171,70,0.2);
    position: relative;
    overflow: hidden;
  }

  .cover-author {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
  }

  .book-spine {
    position: absolute;
    left: -22px; top: 0; bottom: 0;
    width: 22px;
    background: linear-gradient(90deg, #0f1e10, #1a2e1c);
    border-radius: 2px 0 0 2px;
    transform: rotateY(90deg);
    transform-origin: right center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset -4px 0 8px rgba(0,0,0,0.4);
  }

  .spine-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    white-space: nowrap;
  }

  /* Book details */
  .book-pitch p {
    margin-bottom: 1.2rem;
    color: var(--slate);
  }

  .book-pitch p:first-of-type {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ink);
  }

  .book-specs {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--parchment);
    border-left: 4px solid var(--gold);
  }

  .spec {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .spec-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pine-mid);
    font-family: 'Cormorant Garamond', serif;
  }
  .spec-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
  }


  /* Buy section title logo */
  .buy-title-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.4rem;
    flex-wrap: wrap;
  }
  .buy-logo-img {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  }
  .buy-once-future {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-light);
    line-height: 1;
  }

  /* ─── BUY NOW ─── */
  .buy-section {
    background: #029FD4;
    position: relative;
    overflow: hidden;
  }
  .buy-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  }

  .buy-section .section-title { color: var(--snow); }
  .buy-section .section-label { color: var(--gold-light); }
  .buy-section .gold-rule { background: var(--gold); }

  .buy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  @media (max-width: 700px) {
    .buy-grid {
      grid-template-columns: 1fr;
    }
  }

  .buy-card {
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(238,171,70,0.55);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
  }
  .buy-card:hover {
    background: rgba(0,0,0,0.25);
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  .buy-card.featured {
    border-color: var(--gold);
    background: rgba(0,0,0,0.22);
  }
  .buy-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    white-space: nowrap;
  }

  .buy-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  }

  .buy-card h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .buy-card p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
  }

  .price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    display: block;
  }
  .price-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
  }

  .btn-buy {
    display: inline-block;
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
  }

  .btn-buy-gold {
    background: var(--gold);
    color: var(--ink);
  }
  .btn-buy-gold:hover { background: var(--gold-light); }

  .btn-buy-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.7);
  }
  .btn-buy-outline:hover { border-color: #ffffff; background: rgba(0,0,0,0.28); }

  /* Stripe / PayPal note */
  .payment-note {
    text-align: center;
    margin-top: 3rem;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
  }
  .payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
  }
  .payment-badge {
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    font-family: 'Cormorant Garamond', serif;
  }

  /* ─── ABOUT BOOK ─── */
  .about-book-section { background: var(--parchment); }

  .chapter-list {
    list-style: none;
    margin-top: 2rem;
  }
  .chapter-list li {
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid rgba(238,171,70,0.25);
    position: relative;
    color: var(--slate);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
  }
  .chapter-list li::before {
    content: '❧';
    position: absolute;
    left: 0;
    color: var(--gold);
  }
  .chapter-list li strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section { background: var(--snow); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
  }

  .testimonial-card {
    background: var(--cream);
    border: 1px solid rgba(238,171,70,0.2);
    padding: 2.5rem 2rem 2rem;
    position: relative;
  }
  .testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem; left: 1rem;
    line-height: 1;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate);
    margin-bottom: 1.5rem;
    position: relative;
  }

  .testimonial-author {
    border-top: 1px solid rgba(238,171,70,0.3);
    padding-top: 1rem;
  }
  .testimonial-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
  }
  .testimonial-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--pine-mid);
    line-height: 1.4;
  }
  .testimonial-title a {
    color: var(--pine-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ─── ABOUT AUTHOR ─── */
  .author-section { background: var(--cream); }

  .author-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }
  .author-grid > div:first-child {
    display: flex;
    justify-content: center;
  }
  @media (max-width: 700px) {
    .author-grid { grid-template-columns: 1fr; }
  }

  .author-portrait {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #2a4a2e 0%, #1a2e1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--parchment);
    box-shadow: 8px 8px 0 var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(245,240,232,0.5);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
  }

  .author-portrait-ski {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    opacity: 0.12;
  }

  .author-bio p {
    margin-bottom: 1.2rem;
    color: var(--slate);
  }
  .author-bio p:first-of-type {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
  }

  .credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
  }
  .cred-badge {
    background: var(--parchment);
    border: 1px solid rgba(238,171,70,0.3);
    padding: 0.4rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--pine);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #029FD4;
    color: #ffffff;
    text-align: center;
    padding: 3rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    line-height: 2;
  }
  footer strong { color: #ffffff; }
  .footer-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
  }
  .footer-logo-img {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  }
  .footer-once-future {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--gold-light);
    display: block;
    line-height: 1;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    transition: all 0.4s;
  }
  nav.scrolled {
    background: rgba(26,20,16,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    padding: 0.85rem 2.5rem;
  }
  .nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1;
    gap: 0.15rem;
  }
  .nav-logo-img {
    height: 22px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
  }
  .nav-once-future {
    font-size: 0.95rem;
    color: var(--gold-light);
    display: block;
    line-height: 1;
  }
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.95);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }

  /* ─── HAMBURGER ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }
  .nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  @media (max-width: 600px) {
    .nav-hamburger { display: flex; }
    nav { padding: 1rem 1.5rem; }
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 0;
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(26,20,16,0.98);
      padding: 5rem 2rem 2rem;
      z-index: 100;
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(238,171,70,0.15); }
    .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; }
  }

  /* ─── PULL QUOTE BAND ─── */
  .pull-quote-band {
    background: var(--gold);
    padding: 3rem 1.5rem;
    text-align: center;
  }
  .pull-quote-band p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--ink);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* Stripe payment form */
  .stripe-form {
    background: rgba(245,240,232,0.05);
    border: 1px solid rgba(238,171,70,0.2);
    padding: 2rem;
    margin-top: 2rem;
  }

  #card-element {
    background: rgba(245,240,232,0.08);
    padding: 1rem;
    border: 1px solid rgba(238,171,70,0.3);
    color: white;
    margin: 1rem 0;
  }

  .stripe-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .stripe-submit:hover { background: var(--gold-light); }


  /* ─── GALLERY ─── */
  .gallery-section { background: var(--parchment); }

  .spread-viewer {
    margin: 0 auto 3rem;
    max-width: 960px;
  }

  .spread-frame {
    position: relative;
    border: 6px solid var(--snow);
    box-shadow:
      0 4px 6px rgba(26,20,16,0.08),
      0 20px 60px rgba(26,20,16,0.18),
      0 0 0 1px rgba(238,171,70,0.15);
    overflow: hidden;
    cursor: zoom-in;
    transition: box-shadow 0.3s;
  }
  .spread-frame:hover {
    box-shadow:
      0 4px 6px rgba(26,20,16,0.12),
      0 30px 80px rgba(26,20,16,0.28),
      0 0 0 1px rgba(238,171,70,0.3);
  }

  .spread-img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }
  .spread-frame:hover .spread-img {
    transform: scale(1.015);
  }

  .spread-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(26,20,16,0.75));
    padding: 2rem 1.5rem 1rem;
    color: rgba(245,240,232,0.85);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed; inset: 0;
    z-index: 999;
    background: rgba(10,8,6,0.93);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
  }
  .lightbox.open { display: flex; }
  .lightbox img {
    max-width: 94vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 80px rgba(0,0,0,0.6);
  }
  .lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    color: rgba(245,240,232,0.6);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: var(--gold-light); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .gallery-thumb {
    overflow: hidden;
    position: relative;
    border: 4px solid var(--snow);
    box-shadow: 0 4px 20px rgba(26,20,16,0.12);
    cursor: zoom-in;
  }
  .gallery-thumb img {
    width: 100%; display: block;
    transition: transform 0.4s;
  }
  .gallery-thumb:hover img { transform: scale(1.04); }


  .lb-nav {
    background: none;
    border: 2px solid rgba(245,240,232,0.3);
    color: rgba(245,240,232,0.8);
    font-size: 1.8rem;
    width: 52px; height: 52px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .lb-nav:hover { border-color: var(--gold-light); color: var(--gold-light); }
  .lb-count {
    position: absolute;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    color: rgba(245,240,232,0.45);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
  }
  .lightbox { gap: 1.5rem; }

  @media (max-width: 600px) {
    .lightbox img {
      max-width: 100vw;
      max-height: 85vh;
    }
    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
      width: 44px;
      height: 44px;
      font-size: 1.4rem;
      background: rgba(10,8,6,0.55);
    }
    #lightbox-prev { left: 0.75rem; }
    #lightbox-next { right: 0.75rem; }
  }

