/* ============================================================
       DESIGN SYSTEM
    ============================================================ */
    :root {
      --ivory:    #F3EDE0;
      --cream:    #FAF6EE;
      --ink:      #18130E;
      --ash:      #6B5D52;
      --fog:      #DDD5C8;
      --walnut:   #5C3A1E;
      --clay:     #8B3629;
      --brass:    #A87B3A;
      --forest:   #3A4A35;
      --navy:     #1C2840;
      --midnight: #08090E;
      --shadow:   rgba(24,19,14,.08);

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'EB Garamond', Georgia, serif;

      --space-xs:  .375rem;
      --space-sm:  .75rem;
      --space-md:  1.5rem;
      --space-lg:  3rem;
      --space-xl:  5rem;
      --space-2xl: 8rem;

      --radius: 2px;
      --transition: .25s ease;
      --max-w: 1140px;
      --text-max: 680px;
    }

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

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      overflow-x: hidden;
      background: var(--ivory);
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 1.125rem;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* Texture overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: .5;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; font-family: var(--font-body); }

    /* Accessible keyboard focus */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 2px solid var(--brass);
      outline-offset: 2px;
    }

    /* Skip-to-content link */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 1000;
      background: var(--ink);
      color: var(--cream);
      padding: .75rem 1.25rem;
      font-family: var(--font-body);
      font-size: .9rem;
    }
    .skip-link:focus {
      left: var(--space-sm);
      top: var(--space-sm);
    }

    /* Shared utility: real <img> filling a positioned photo container */
    .bg-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    h1, h2, h3, h4, h5 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: -.01em;
    }

    p { max-width: var(--text-max); }

    /* Utility */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    .text-center { text-align: center; }
    .text-center p { margin: 0 auto; }

    .eyebrow {
      display: block;
      font-family: var(--font-body);
      font-size: .8rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ash);
      margin-bottom: var(--space-sm);
    }

    .rule {
      border: none;
      border-top: 1px solid var(--fog);
      margin: var(--space-lg) 0;
    }

    .rule--short {
      width: 48px;
      border-top: 2px solid var(--brass);
      margin: var(--space-md) 0;
    }

    .rule--center {
      margin-left: auto;
      margin-right: auto;
    }

    /* ============================================================
       MAKER'S MARK SYSTEM
       The mark is a circle inside a square — locked, not reinterpreted.
       Used as stamp, seal, watermark, divider accent. Never larger than the name.
    ============================================================ */

    /* Inline SVG helper — sets the mark's color and size */
    .mark {
      display: inline-block;
      line-height: 0;
      flex-shrink: 0;
    }
    .mark svg { display: block; }

    /* Mark as a mid-section divider: ——— ○□ ——— */
    .mark-divider {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      margin: var(--space-lg) 0;
    }
    .mark-divider::before,
    .mark-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--fog);
    }
    .mark-divider.center { justify-content: center; }
    .mark-divider.center::before,
    .mark-divider.center::after { max-width: 80px; }

    /* Mark as a small stamp — on book covers, cards, woodworking pieces */
    .mark-stamp {
      display: inline-block;
      opacity: .55;
      color: var(--brass);
    }
    .mark-stamp--light { color: rgba(250,246,238,.55); opacity: 1; }
    .mark-stamp--ink   { color: var(--ink); opacity: .2; }

    /* Mark as a large footer seal */
    .mark-seal {
      display: block;
      color: rgba(243,237,224,.18);
      margin: 0 auto var(--space-lg);
    }

    /* Mark as a faint hero watermark */
    .mark-watermark {
      position: absolute;
      pointer-events: none;
      color: var(--ink);
      opacity: .03;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: .875rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .75rem 2rem;
      border: 1px solid currentColor;
      border-radius: var(--radius);
      transition: all var(--transition);
      cursor: pointer;
      background: transparent;
    }

    .btn--dark {
      color: var(--cream);
      background: var(--ink);
      border-color: var(--ink);
    }
    .btn--dark:hover { background: var(--walnut); border-color: var(--walnut); }

    .btn--outline {
      color: var(--ink);
      border-color: var(--ink);
    }
    .btn--outline:hover { background: var(--ink); color: var(--cream); }

    .btn--ghost {
      color: var(--ash);
      border-color: var(--fog);
    }
    .btn--ghost:hover { color: var(--ink); border-color: var(--ink); }

    /* Section spacing */
    .section { padding: var(--space-lg) 0; }
    .section--lg { padding: var(--space-2xl) 0; }
    .section--sm { padding: var(--space-lg) 0; }
    .section--cream { background: var(--cream); }
    .section--ink { background: var(--ink); color: var(--ivory); }
    .section--walnut { background: var(--walnut); color: var(--ivory); }

    /* ============================================================
       NAV
    ============================================================ */
    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--ivory);
      border-bottom: 1px solid var(--fog);
      transition: box-shadow var(--transition);
    }
    .site-nav.scrolled { box-shadow: 0 2px 24px var(--shadow); }

    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: .625rem;
      cursor: pointer;
      flex-shrink: 0;
      margin-right: var(--space-lg);
    }

    .nav-mark {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    .tagline-mark {
      width: .65em;
      height: .65em;
      flex-shrink: 0;
      vertical-align: middle;
      margin: 0 1.05em;
      position: relative;
      top: -.05em;
    }

    .nav-name {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap;
      color: var(--clay);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: var(--space-lg);
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: .8rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ash);
      transition: color var(--transition);
      cursor: pointer;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--ink); }

    .nav-social {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      margin-left: var(--space-md);
    }
    .nav-social a {
      display: flex;
      color: var(--brass);
      cursor: pointer;
      transition: color var(--transition);
    }
    .nav-social a:hover { color: var(--ink); }
    .nav-social svg { width: 16px; height: 16px; }

    .nav-toggle {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      min-width: 44px;
      min-height: 44px;
      padding: 4px;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--ink);
      transition: all var(--transition);
    }

    /* Mobile nav */
    .nav-mobile {
      display: none;
      position: fixed;
      inset: 68px 0 0 0;
      background: var(--cream);
      z-index: 99;
      padding: var(--space-lg) var(--space-md) calc(var(--space-lg) + 24px);
      flex-direction: column;
      gap: var(--space-md);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--ink);
      cursor: pointer;
      transition: color var(--transition);
      flex-shrink: 0;
    }
    .nav-mobile a:hover { color: var(--clay); }

    /* ============================================================
       PAGE SYSTEM
    ============================================================ */
    .page { padding-top: 68px; }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      min-height: auto;
      display: flex;
      align-items: flex-start;
      position: relative;
      overflow: hidden;
      padding: var(--space-xl) 0 var(--space-xl);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(92,58,30,.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(139,54,41,.04) 0%, transparent 60%);
    }

    .hero-inner {
      position: relative;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-2xl);
      align-items: start;
    }

    .hero-content {}

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      margin-bottom: var(--space-md);
    }
    .hero-eyebrow span {
      font-size: .75rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--ash);
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--brass);
    }
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--brass);
    }

    .hero-name {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7.5vw, 6.5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: var(--space-sm);
    }
    .hero-name strong {
      display: inline;
      font-weight: 300;
    }

    .hero-tagline {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      font-weight: 300;
      font-style: italic;
      color: var(--ash);
      margin-bottom: var(--space-lg);
      letter-spacing: .02em;
    }

    .hero-copy {
      font-size: 1rem;
      color: var(--ash);
      line-height: 1.8;
      margin-bottom: var(--space-lg);
      max-width: 460px;
    }

    .hero-actions {
      display: flex;
      gap: var(--space-sm);
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
      margin-top: var(--space-lg);
    }

    .hero-image-block {
      aspect-ratio: 3/4;
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
    }



    .hero-image-caption {
      position: absolute;
      bottom: var(--space-md);
      left: var(--space-md);
      right: var(--space-md);
      font-family: var(--font-body);
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(250,246,238,.6);
    }

    .hero-image-accent {
      position: absolute;
      top: -24px;
      right: -24px;
      width: 120px;
      height: 120px;
      border: 1px solid var(--fog);
      border-radius: 50%;
      opacity: .3;
    }

    /* ============================================================
       STATEMENT
    ============================================================ */
    .statement {
      padding: var(--space-2xl) 0;
    }

    .statement-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 var(--space-md);
      text-align: center;
    }

    .statement-quote {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3.5vw, 2.2rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      color: var(--ink);
      margin-bottom: var(--space-lg);
    }

    .statement-body {
      font-size: 1.05rem;
      color: var(--ash);
      line-height: 1.85;
      margin: 0 auto var(--space-md);
    }

    /* ============================================================
       FEATURED WORK GRID
    ============================================================ */
    .work-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--fog);
      border: 1px solid var(--fog);
    }

    .work-card {
      background: var(--cream);
      padding: var(--space-lg);
      cursor: pointer;
      transition: background var(--transition);
      display: flex;
      flex-direction: column;
    }
    .work-card:hover { background: var(--ivory); }

    .work-card-icon {
      width: 40px;
      height: 40px;
      margin-bottom: var(--space-md);
      color: var(--brass);
    }

    .work-card-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: var(--space-xs);
    }

    .work-card-sub {
      font-size: .8rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ash);
      margin-bottom: var(--space-md);
    }

    .work-card-desc {
      font-size: .95rem;
      color: var(--ash);
      line-height: 1.7;
      flex: 1;
      margin-bottom: var(--space-md);
      max-width: 100%;
    }

    .work-card-link {
      font-size: .75rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--clay);
      display: flex;
      align-items: center;
      gap: .375rem;
      transition: gap var(--transition);
    }
    .work-card:hover .work-card-link { gap: .625rem; }

    /* ============================================================
       BOOKS SECTION
    ============================================================ */
    .books-grid {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
    }
    .books-grid-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
    .books-grid-row--2up {
      grid-template-columns: repeat(2, 1fr);
      max-width: 760px;
    }

    .book-card {
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .book-card > .btn {
      margin-top: auto;
      align-self: flex-start;
    }

    .book-cover {
      aspect-ratio: 2/3;
      margin-bottom: var(--space-md);
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }

    .book-cover-inner {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: var(--space-lg);
      text-align: center;
      position: relative;
    }

    .book-cover--bar {
    }
    .book-cover--bar .book-cover-inner { opacity: 0 !important; }
    .book-cover--bar .book-cover-badge { opacity: 0 !important; }
    .book-cover--liam {
    }
    .book-cover--liam .book-cover-inner { opacity: 0 !important; }
    .book-cover--liam .book-cover-badge { opacity: 0 !important; }
    .book-cover--remnants1 {
    }
    .book-cover--remnants1 .book-cover-inner { opacity: 0 !important; }
    .book-cover--remnants1 .book-cover-badge { opacity: 0 !important; }
    .book-cover--remnants2 {
    }
    .book-cover--remnants2 .book-cover-inner { opacity: 0 !important; }
    .book-cover--remnants2 .book-cover-badge { opacity: 0 !important; }
    .book-cover--remnants3 {
      background: linear-gradient(160deg, #141818 0%, #1E2C28 60%, #0C1410 100%);
    }

    .book-cover--ihearyou {
    }
    .book-cover--ihearyou .book-cover-inner { opacity: 0 !important; }
    .book-cover--ihearyou .book-cover-badge { opacity: 0 !important; }

    .book-cover--fromyourdad {
    }
    .book-cover--fromyourdad .book-cover-inner { opacity: 0 !important; }
    .book-cover--fromyourdad .book-cover-badge { opacity: 0 !important; }

    .book-cover--iam {
      background: #08090E;
    }
    .book-cover--iam .book-cover-inner { opacity: 0 !important; }
    .book-cover--iam .book-cover-badge { opacity: 0 !important; }

    .book-cover-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: .5rem;
    }
    .book-cover-line {
      width: 32px;
      height: 1px;
      background: var(--brass);
      margin: .5rem auto;
    }
    .book-cover-author {
      font-size: .7rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(250,246,238,.5);
    }
    .book-cover-badge {
      position: absolute;
      top: var(--space-sm);
      right: var(--space-sm);
      font-size: .6rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      background: var(--clay);
      color: var(--cream);
      padding: .25rem .5rem;
      border-radius: var(--radius);
    }

    .book-card-genre {
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: .375rem;
    }

    .book-card-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      margin-bottom: .25rem;
    }

    .book-card-subtitle {
      font-size: .875rem;
      color: var(--ash);
      margin-bottom: var(--space-sm);
      line-height: 1.4;
    }

    .book-card-desc {
      font-size: .925rem;
      color: var(--ash);
      line-height: 1.7;
      margin-bottom: var(--space-md);
    }

    /* ============================================================
       ARTWORK GALLERY PREVIEW
    ============================================================ */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-sm);
    }

    .gallery-grid--main {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: var(--radius);
    }
    .gallery-item:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-thumb {
      width: 100%;
      height: 100%;
      min-height: 180px;
      display: block;
      transition: transform .5s ease;
    }
    .gallery-item:hover .gallery-thumb { transform: scale(1.03); }

    .gallery-thumb--1 { background: linear-gradient(135deg, #8B6B4A 0%, #5C3A1E 40%, #3A200A 100%); }
    .gallery-thumb--2 { background: linear-gradient(135deg, #6B4A3A 0%, #8B3629 60%, #5A1A0F 100%); }
    .gallery-thumb--3 { background: linear-gradient(135deg, #3A4A35 0%, #5A7055 40%, #2A3830 100%); }
    .gallery-thumb--4 { background: linear-gradient(135deg, #B8923B 0%, #8B6A20 50%, #5C3A1E 100%); }
    .gallery-thumb--5 { background: linear-gradient(135deg, #4A3A5A 0%, #6B5A7A 50%, #2A1A3A 100%); }
    .gallery-thumb--6 { background: linear-gradient(135deg, #2A3830 0%, #4A5E45 50%, #1A2820 100%); }
    .gallery-thumb--7 { background: linear-gradient(135deg, #5C3A1E 0%, #8B6B4A 40%, #B8923B 100%); }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(24,19,14,.8) 0%, transparent 50%);
      opacity: 0;
      transition: opacity var(--transition);
      display: flex;
      align-items: flex-end;
      padding: var(--space-md);
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }

    .gallery-overlay-text {
      color: var(--cream);
    }
    .gallery-overlay-text .title {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 500;
    }
    .gallery-overlay-text .meta {
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(250,246,238,.6);
    }

    /* ============================================================
       WOODWORKING
    ============================================================ */
    .wood-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
      align-items: center;
    }

    .wood-image {
      aspect-ratio: 4/3;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }

    .wood-image-thumb {
      width: 100%;
      height: 100%;
      background: linear-gradient(145deg, #C4A882 0%, #8B6D4A 30%, #5C3A1E 70%, #3A200A 100%);
    }

    .wood-tag {
      position: absolute;
      bottom: var(--space-md);
      left: var(--space-md);
      background: var(--cream);
      padding: .25rem .625rem;
      font-size: .7rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ash);
    }

    .wood-content {}
    .wood-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      margin-bottom: var(--space-md);
    }
    .wood-content p {
      color: var(--ash);
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    .wood-materials {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      margin-bottom: var(--space-lg);
    }

    .material-tag {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ash);
      border: 1px solid var(--fog);
      padding: .25rem .75rem;
      border-radius: 100px;
    }

    /* ============================================================
       JOURNAL PREVIEW
    ============================================================ */
    .journal-list { display: flex; flex-direction: column; gap: 0; }

    .journal-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: var(--space-lg);
      padding: var(--space-lg) 0;
      border-bottom: 1px solid var(--fog);
      cursor: pointer;
      transition: background var(--transition);
    }
    .journal-item:first-child { border-top: 1px solid var(--fog); }

    .journal-date {
      text-align: right;
      padding-top: .25rem;
    }
    .journal-date .month {
      display: block;
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ash);
    }
    .journal-date .day {
      display: block;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 300;
      line-height: 1;
      color: var(--ink);
    }

    .journal-content {}
    .journal-category {
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: .375rem;
    }
    .journal-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 500;
      margin-bottom: var(--space-sm);
      line-height: 1.2;
    }
    .journal-excerpt {
      font-size: .95rem;
      color: var(--ash);
      line-height: 1.7;
      max-width: 600px;
    }

    /* ============================================================
       ABOUT PREVIEW / SPLIT
    ============================================================ */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-2xl);
      align-items: center;
    }

    .split-image {
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, #2A2018 0%, #4A3020 40%, #2A1810 100%);
      border-radius: var(--radius);
      position: relative;
    }

    .split-image-caption {
      position: absolute;
      bottom: var(--space-md);
      left: var(--space-md);
      font-size: .7rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(250,246,238,.4);
    }

    .split-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 400;
      margin-bottom: var(--space-md);
    }
    .split-content p {
      color: var(--ash);
      line-height: 1.85;
      margin-bottom: var(--space-md);
    }

    /* ============================================================
       NEWSLETTER
    ============================================================ */
    .newsletter-wrap {
      text-align: center;
      max-width: 560px;
      margin: 0 auto;
    }

    .newsletter-wrap h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      margin-bottom: var(--space-sm);
    }

    .newsletter-wrap p {
      color: rgba(250,246,238,.7);
      line-height: 1.7;
      margin: 0 auto var(--space-lg);
    }

    .newsletter-form {
      display: flex;
      gap: var(--space-sm);
      justify-content: center;
      flex-wrap: wrap;
    }

    .newsletter-input {
      flex: 1;
      min-width: 200px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.2);
      color: var(--cream);
      font-family: var(--font-body);
      font-size: .9rem;
      padding: .75rem 1.25rem;
      border-radius: var(--radius);
      transition: border-color var(--transition);
    }
    .newsletter-input::placeholder { color: rgba(250,246,238,.35); }
    .newsletter-input:focus { border-color: rgba(255,255,255,.4); }
    .newsletter-input:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

    .newsletter-btn {
      background: var(--brass);
      color: var(--ink);
      border: none;
      font-family: var(--font-body);
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .75rem 1.75rem;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background var(--transition);
      white-space: nowrap;
    }
    .newsletter-btn:hover { background: #C4A038; }

    .newsletter-note {
      font-size: .75rem;
      letter-spacing: .08em;
      color: rgba(250,246,238,.35);
      margin-top: var(--space-sm);
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .site-footer {
      background: var(--ink);
      color: var(--ivory);
      padding: var(--space-xl) 0 var(--space-lg);
    }

    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: var(--space-lg);
      margin-bottom: var(--space-xl);
    }

    .footer-brand {}
    .footer-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: .08em;
      margin-bottom: var(--space-sm);
    }
    .footer-tagline {
      font-size: .85rem;
      color: rgba(243,237,224,.45);
      line-height: 1.6;
      max-width: 220px;
    }

    .footer-col-title {
      font-size: .7rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: var(--space-md);
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .footer-col ul a {
      font-size: .875rem;
      color: rgba(243,237,224,.5);
      cursor: pointer;
      transition: color var(--transition);
    }
    .footer-col ul a:hover { color: var(--ivory); }

    .footer-bottom {
      border-top: 1px solid rgba(243,237,224,.1);
      padding-top: var(--space-md);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-md);
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: .75rem;
      color: rgba(196,83,42,.6);
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    .footer-social a {
      display: flex;
      color: var(--brass);
      opacity: .6;
      cursor: pointer;
      transition: opacity var(--transition);
    }
    .footer-social a:hover { opacity: 1; }
    .footer-social svg { width: 17px; height: 17px; }

    /* ============================================================
       PAGE: ABOUT
    ============================================================ */
    .page-header {
      padding: var(--space-xl) 0 var(--space-md);
      border-bottom: 1px solid var(--fog);
    }

    .page-header-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    .page-header h1 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 300;
      letter-spacing: -.02em;
      margin-bottom: var(--space-sm);
    }

    .page-header p {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-style: italic;
      color: var(--ash);
      font-weight: 300;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: var(--space-2xl);
      align-items: start;
    }

    .about-sidebar {}
    .about-portrait {
      aspect-ratio: 3/4;
      border-radius: var(--radius);
      margin-bottom: var(--space-md);
      position: relative;
      overflow: hidden;
    }

    .about-sidebar-note {
      font-size: .825rem;
      color: var(--ash);
      line-height: 1.6;
      font-style: italic;
    }

    .about-body h2 {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 400;
      margin-bottom: var(--space-md);
      margin-top: var(--space-xl);
    }
    .about-body h2:first-child { margin-top: 0; }

    .about-body p {
      font-size: 1.05rem;
      color: var(--ash);
      line-height: 1.9;
      margin-bottom: var(--space-md);
      max-width: 100%;
    }

    .about-body blockquote {
      border-left: 3px solid var(--brass);
      padding: var(--space-md) var(--space-lg);
      margin: var(--space-lg) 0;
      background: var(--cream);
    }
    .about-body blockquote p {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-style: italic;
      color: var(--ink);
      font-weight: 300;
    }

    .credentials-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-sm) var(--space-lg);
      margin: var(--space-md) 0;
    }
    .credential-item {
      font-size: .875rem;
      color: var(--ash);
      display: flex;
      align-items: flex-start;
      gap: var(--space-xs);
    }
    .credential-item::before {
      content: '—';
      color: var(--brass);
      flex-shrink: 0;
    }

    /* ============================================================
       PAGE: BOOKS
    ============================================================ */
    .books-feature {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: var(--space-2xl);
      align-items: start;
      padding: var(--space-xl) 0;
      border-bottom: 1px solid var(--fog);
    }
    .books-feature:last-child { border-bottom: none; }

    .book-feature-cover {
      aspect-ratio: 2/3;
      border-radius: var(--radius);
      overflow: hidden;
      flex-shrink: 0;
    }

    .book-feature-content {}
    .book-feature-content .genre {
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: var(--space-sm);
    }
    .book-feature-content h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: .375rem;
    }
    .book-feature-content .subtitle {
      font-size: 1rem;
      color: var(--ash);
      margin-bottom: var(--space-lg);
      line-height: 1.4;
    }
    .book-feature-content p {
      font-size: 1rem;
      color: var(--ash);
      line-height: 1.85;
      margin-bottom: var(--space-md);
    }
    .book-status {
      display: inline-flex;
      align-items: center;
      gap: .375rem;
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: var(--space-lg);
    }
    .book-status::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--clay);
    }

    .themes-list {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-xs);
      margin-top: var(--space-md);
    }
    .theme-tag {
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ash);
      border: 1px solid var(--fog);
      padding: .2rem .625rem;
      border-radius: 100px;
    }

    /* ============================================================
       PAGE: ARTWORK
    ============================================================ */
    .filter-bar {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      margin-bottom: var(--space-lg);
      flex-wrap: wrap;
    }

    .filter-btn {
      font-family: var(--font-body);
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ash);
      background: transparent;
      border: 1px solid var(--fog);
      padding: .375rem .875rem;
      border-radius: 100px;
      cursor: pointer;
      transition: all var(--transition);
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--ink);
      color: var(--cream);
      border-color: var(--ink);
    }

    .artwork-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }

    .artwork-card {
      cursor: pointer;
    }

    .artwork-frame {
      aspect-ratio: 4/5;
      background: var(--cream);
      border: 12px solid var(--cream);
      box-shadow: 0 2px 20px rgba(24,19,14,.08), inset 0 0 0 1px var(--fog);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: var(--space-sm);
      transition: box-shadow var(--transition);
    }
    .artwork-card:hover .artwork-frame {
      box-shadow: 0 8px 40px rgba(24,19,14,.14), inset 0 0 0 1px var(--fog);
    }

    .artwork-thumb {
      width: 100%;
      height: 100%;
    }
    .artwork-thumb--1 { background: linear-gradient(135deg, #8B6B4A 0%, #C4A882 40%, #8B6B4A 100%); }
    .artwork-thumb--2 { background: linear-gradient(135deg, #8B3629 0%, #C45A45 40%, #5A1A0F 100%); }
    .artwork-thumb--3 { background: linear-gradient(135deg, #3A4A35 0%, #7A9A75 40%, #2A3830 100%); }
    .artwork-thumb--4 { background: linear-gradient(160deg, #B8923B 0%, #E8C870 50%, #8B6A20 100%); }
    .artwork-thumb--5 { background: linear-gradient(135deg, #2A2035 0%, #6A5A80 50%, #1A1025 100%); }
    .artwork-thumb--6 { background: linear-gradient(135deg, #1A2820 0%, #5A8055 50%, #0A1810 100%); }
    .artwork-thumb--7 { background: linear-gradient(135deg, #5C3A1E 0%, #A87B3A 50%, #3A200A 100%); }
    .artwork-thumb--8 { background: linear-gradient(135deg, #2A1818 0%, #8B3629 50%, #1A0808 100%); }
    .artwork-thumb--9 { background: linear-gradient(135deg, #18241A 0%, #3A6035 50%, #0A1408 100%); }

    .artwork-info {}
    .artwork-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: .2rem;
    }
    .artwork-meta {
      font-size: .78rem;
      color: var(--ash);
    }
    .artwork-price {
      font-size: .78rem;
      color: var(--clay);
      margin-top: .2rem;
    }

    /* ============================================================
       PAGE: WOODWORKING
    ============================================================ */
    .wood-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-2xl);
      align-items: center;
      padding: var(--space-xl) 0;
    }

    .wood-intro-text h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400;
      margin-bottom: var(--space-md);
    }
    .wood-intro-text p {
      color: var(--ash);
      line-height: 1.85;
      margin-bottom: var(--space-md);
    }

    .wood-portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--fog);
      margin: var(--space-xl) 0;
    }

    .wood-piece {
      background: var(--cream);
      overflow: hidden;
      cursor: pointer;
    }

    .wood-piece-image {
      aspect-ratio: 4/3;
    }
    .wood-piece-image--1 { background: linear-gradient(145deg, #C4A882 0%, #8B6D4A 30%, #5C3A1E 100%); }
    .wood-piece-image--2 { background: linear-gradient(145deg, #A87B3A 0%, #7A5A20 40%, #4A3010 100%); }
    .wood-piece-image--3 { background: linear-gradient(145deg, #8B6D4A 0%, #5C3A1E 40%, #3A200A 100%); }
    .wood-piece-image--4 { background: linear-gradient(145deg, #D4B890 0%, #A87B3A 40%, #7A5A20 100%); }

    .wood-piece-info {
      padding: var(--space-md) var(--space-lg);
    }
    .wood-piece-info .title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      margin-bottom: .25rem;
    }
    .wood-piece-info .material {
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ash);
    }
    .wood-piece-info .desc {
      font-size: .9rem;
      color: var(--ash);
      line-height: 1.7;
      margin-top: var(--space-sm);
    }

    .process-note {
      background: var(--walnut);
      color: var(--ivory);
      padding: var(--space-xl) var(--space-2xl);
      border-radius: var(--radius);
      margin: var(--space-xl) 0;
    }
    .process-note p {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 300;
      line-height: 1.6;
      color: rgba(243,237,224,.9);
      max-width: 100%;
    }

    /* ============================================================
       PAGE: JOURNAL
    ============================================================ */
    .journal-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: var(--space-2xl);
      align-items: start;
    }

    .journal-sidebar {}
    .journal-sidebar h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: var(--space-md);
    }

    .category-list {
      list-style: none;
      display: flex;
      flex-direction: column;
    }

    .category-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .625rem 0;
      border-bottom: 1px solid var(--fog);
      cursor: pointer;
      font-size: .9rem;
      color: var(--ash);
      transition: color var(--transition);
    }
    .category-list li:hover { color: var(--ink); }
    .category-list li span { font-size: .75rem; color: var(--fog); }
    .category-list li:hover span { color: var(--ash); }

    /* ============================================================
       PAGE: CONTACT
    ============================================================ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: var(--space-2xl);
      align-items: start;
    }

    .contact-info h2 {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 400;
      margin-bottom: var(--space-md);
    }
    .contact-info p {
      color: var(--ash);
      line-height: 1.8;
      margin-bottom: var(--space-lg);
    }

    .contact-reasons {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }
    .contact-reasons li {
      font-size: .9rem;
      color: var(--ash);
      padding-left: var(--space-md);
      position: relative;
    }
    .contact-reasons li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--brass);
    }

    .contact-form {
      background: var(--cream);
      padding: var(--space-lg);
      border-radius: var(--radius);
    }

    .form-group {
      margin-bottom: var(--space-md);
    }
    .form-group label {
      display: block;
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ash);
      margin-bottom: .375rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: var(--ivory);
      border: 1px solid var(--fog);
      color: var(--ink);
      font-family: var(--font-body);
      font-size: .95rem;
      padding: .75rem 1rem;
      border-radius: var(--radius);
      outline: none;
      transition: border-color var(--transition);
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--ash);
    }
    .form-group input:focus-visible,
    .form-group textarea:focus-visible,
    .form-group select:focus-visible {
      outline: 2px solid var(--brass);
      outline-offset: 1px;
    }
    .form-group textarea { min-height: 140px; resize: vertical; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .hero { min-height: auto; padding: var(--space-xl) 0; }

      .work-grid { grid-template-columns: 1fr 1fr; }
      .books-grid-row { grid-template-columns: 1fr; gap: var(--space-xl); }
      .books-feature { grid-template-columns: 1fr; }
      .book-feature-cover { max-width: 280px; }

      .gallery-grid--main { grid-template-columns: 1fr 1fr; }
      .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

      .wood-grid { grid-template-columns: 1fr; }
      .split { grid-template-columns: 1fr; }
      .split-image { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .about-sidebar { display: flex; flex-direction: column; align-items: center; text-align: center; }
      .about-portrait { width: 100%; max-width: 320px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .artwork-grid { grid-template-columns: 1fr 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .journal-grid { grid-template-columns: 1fr; }
      .journal-sidebar { display: none; }
      .wood-intro-grid { grid-template-columns: 1fr; }
      .wood-portfolio-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-social { display: none; }
      .nav-toggle { display: flex; }
    }

    @media (max-width: 640px) {
      .work-grid { grid-template-columns: 1fr; }
      .books-grid-row { grid-template-columns: 1fr; }
      .gallery-grid--main { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: span 1; }
      .artwork-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .credentials-list { grid-template-columns: 1fr; }
      .process-note { padding: var(--space-lg); }
      .hero-actions { flex-direction: column; align-items: flex-start; }
    }

    /* ============================================================
       SECTION TITLES
    ============================================================ */
    .section-header {
      margin-bottom: var(--space-xl);
    }
    .section-header.center {
      text-align: center;
    }
    .section-header.center .rule--short {
      margin-left: auto;
      margin-right: auto;
    }
    .section-header h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400;
      letter-spacing: -.01em;
    }
    .section-header p {
      color: var(--ash);
      font-size: 1rem;
      line-height: 1.7;
      margin-top: var(--space-sm);
    }

    /* ============================================================
       PAGE: FINDING LIAM'S VOICE
    ============================================================ */
    .section--forest  { background: var(--forest); color: var(--ivory); }
    .section--hope    { background: #EEF2EB; color: var(--ink); }

    /* Book hero — intimate, family-centered */
    .liam-hero {
      min-height: 60vh;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, #1E2A1A 0%, #2A3C24 50%, #18261A 100%);
      color: var(--ivory);
      position: relative;
      overflow: hidden;
      padding: var(--space-2xl) 0;
    }
    .liam-hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(90,140,80,.12) 0%, transparent 70%);
    }
    .liam-hero-inner {
      position: relative;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }
    .liam-hero-kicker {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(243,237,224,.45);
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    .liam-hero-kicker::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: #7AAB6A;
    }
    .liam-hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -.02em;
      margin-bottom: var(--space-sm);
    }
    .liam-hero-subtitle {
      font-size: clamp(.9rem, 1.8vw, 1.1rem);
      color: rgba(243,237,224,.65);
      line-height: 1.6;
      max-width: 580px;
      margin-bottom: var(--space-md);
    }
    .liam-hero-authors {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      font-weight: 300;
      color: #7AAB6A;
      margin-bottom: var(--space-lg);
    }
    .liam-hero-mark {
      display: flex;
      align-items: center;
      gap: .625rem;
      margin-bottom: var(--space-xl);
    }
    .liam-hero-mark span {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(243,237,224,.3);
    }

    /* "I Did It" moment — the emotional heart */
    .liam-moment {
      background: var(--ink);
      color: var(--ivory);
      padding: var(--space-2xl) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .liam-moment-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(90,140,80,.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .liam-moment-inner {
      position: relative;
      max-width: 820px;
      margin: 0 auto;
      padding: 0 var(--space-md);
    }
    .liam-moment-setup {
      font-family: var(--font-display);
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 300;
      color: rgba(243,237,224,.55);
      line-height: 1.8;
      margin-bottom: var(--space-xl);
      font-style: italic;
    }
    .liam-moment-words {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 10vw, 8rem);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -.02em;
      color: var(--ivory);
      margin-bottom: var(--space-lg);
    }
    .liam-moment-attr {
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(243,237,224,.3);
      margin-bottom: var(--space-2xl);
    }
    .liam-moment-reaction {
      font-family: var(--font-display);
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-style: italic;
      color: rgba(243,237,224,.6);
      line-height: 1.7;
      border-top: 1px solid rgba(243,237,224,.1);
      padding-top: var(--space-xl);
    }

    /* Who this book is for */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      margin: var(--space-lg) 0;
    }
    .who-card {
      background: var(--cream);
      border: 1px solid var(--fog);
      padding: var(--space-md) var(--space-lg);
      border-radius: var(--radius);
      display: flex;
      align-items: flex-start;
      gap: var(--space-sm);
    }
    .who-card::before {
      content: '—';
      color: #7AAB6A;
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: .1rem;
    }
    .who-card p {
      font-size: .95rem;
      color: var(--ash);
      line-height: 1.5;
      max-width: 100%;
    }

    /* Theme list */
    .theme-pills {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      margin: var(--space-md) 0;
    }
    .theme-pill {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #3A5A30;
      background: #DDE8D8;
      border: 1px solid #C0D4B8;
      padding: .3rem .75rem;
      border-radius: 100px;
    }

    /* Companion book card */
    .companion-card {
      background: var(--cream);
      border: 1px solid var(--fog);
      border-radius: var(--radius);
      padding: var(--space-xl);
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: var(--space-xl);
      align-items: center;
    }
    .companion-cover {
      aspect-ratio: 3/4;
      background: linear-gradient(145deg, #3A5A30 0%, #5A8050 40%, #2A4020 100%);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: var(--space-md);
      text-align: center;
      gap: .5rem;
    }
    .companion-cover-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--cream);
      line-height: 1.2;
    }
    .companion-cover-line { width: 28px; height: 1px; background: rgba(250,246,238,.4); }
    .companion-cover-sub {
      font-size: .65rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(250,246,238,.45);
      line-height: 1.4;
    }
    .companion-content h3 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: .375rem;
    }
    .companion-content .sub {
      font-size: .95rem;
      color: var(--ash);
      margin-bottom: var(--space-md);
      font-style: italic;
    }
    .companion-content p {
      font-size: .975rem;
      color: var(--ash);
      line-height: 1.8;
      margin-bottom: var(--space-sm);
    }
    .companion-pills {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-xs);
      margin-top: var(--space-md);
    }

    @media (max-width: 760px) {
      .who-grid { grid-template-columns: 1fr 1fr; }
      .companion-card { grid-template-columns: 1fr; }
      .companion-cover { max-width: 180px; }
    }
    @media (max-width: 520px) {
      .who-grid { grid-template-columns: 1fr; }
      .liam-moment-words { font-size: clamp(3rem, 18vw, 5rem); }
    }

    /* Print prevention */
    @media print { .site-nav, .nav-mobile { display: none; } }

    /* Smooth fade-in on page load */
    .page { animation: fadeIn .35s ease; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ===============================
       REMNANTS SERIES PAGE
    =============================== */
    .remnants-hero {
      min-height: 85vh;
      display: flex;
      align-items: flex-end;
      padding-bottom: var(--space-2xl);
      background: linear-gradient(175deg, #080A0C 0%, #111620 35%, #0A0E12 70%, #060809 100%);
      position: relative;
      overflow: hidden;
    }
    .remnants-hero-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 40% at 50% 70%, rgba(196,83,42,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 30% at 30% 50%, rgba(74,85,96,0.12) 0%, transparent 55%);
      pointer-events: none;
    }
    .remnants-hero-bg {
      position: absolute;
      inset: 0;
      background: url('remnants-hero-bg.jpg') center center / cover no-repeat;
      opacity: .28;
      filter: grayscale(.15);
      pointer-events: none;
    }
    .remnants-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(175deg, rgba(8,10,12,0.2) 0%, rgba(17,22,32,0.26) 35%, rgba(10,14,18,0.36) 70%, rgba(6,8,9,0.48) 100%);
    }
    .remnants-hero-inner {
      position: relative;
      z-index: 1;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-lg);
      width: 100%;
    }
    .remnants-series-kicker {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(196,83,42,.75);
      margin-top: calc(var(--space-xl) / 4);
      margin-bottom: var(--space-md);
    }
    .remnants-title {
      font-family: var(--font-display);
      font-size: clamp(4rem, 14vw, 11rem);
      font-weight: 700;
      color: var(--ivory);
      line-height: .9;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: var(--space-xl);
      text-shadow: 0 2px 60px rgba(0,0,0,.9), 0 0 35px rgba(196,83,42,.65), 0 0 80px rgba(196,83,42,.4);
    }

    .remnants-mark {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      margin-bottom: var(--space-lg);
    }
    .remnants-mark-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(196,83,42,.35), transparent);
    }
    .remnants-mark-icon {
      flex-shrink: 0;
      opacity: .65;
      position: relative;
      z-index: 1;
    }
    .remnants-mark-icon-glow {
      display: inline-flex;
      flex-shrink: 0;
      border-radius: 50%;
      animation: markGlow 3.5s ease-in-out infinite;
    }
    @keyframes markGlow {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(196,83,42,0);
      }
      50% {
        box-shadow: 0 0 14px 6px rgba(196,83,42,.65), 0 0 28px 10px rgba(196,83,42,.3);
      }
    }
    .remnants-tagline {
      font-size: clamp(.9rem, 1.6vw, 1.1rem);
      color: rgba(232,228,220,.5);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: var(--space-xl);
    }
    .remnants-themes {
      display: flex;
      gap: var(--space-md);
      flex-wrap: wrap;
      align-items: center;
    }
    .remnants-theme-item {
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(232,228,220,.4);
      cursor: default;
      transition: color var(--transition);
    }
    .remnants-theme-item:hover { color: rgba(196,83,42,.9); }
    .remnants-theme-item.cycle-active { color: rgba(196,83,42,.9); }
    .remnants-theme-sep {
      width: 1px;
      height: 12px;
      background: rgba(232,228,220,.15);
    }

    .remnants-trilogy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
      margin-top: calc(var(--space-xl) / 2);
    }
    .remnants-book {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }
    .remnants-book-num {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 400;
      letter-spacing: .12em;
      color: rgba(196,83,42,.8);
      margin-bottom: calc(var(--space-md) * -1 + .25rem);
    }
    .remnants-book-cover {
      aspect-ratio: 2/3;
      border-radius: var(--radius);
      overflow: hidden;
    }
    .remnants-book-title {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 500;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: .375rem;
    }

    @media (max-width: 640px) {
      .remnants-trilogy-grid { grid-template-columns: 1fr; }
    }
  
    /* ============================================================
       MUSIC / INSTRUMENTS PAGE
    ============================================================ */
    .guitar-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }

    .guitar-card {
      background: var(--cream);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .guitar-photo {
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, #1a1a1a 0%, #2a2520 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .guitar-photo-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .75rem;
      opacity: .18;
    }

    .guitar-photo-placeholder svg {
      width: 52px;
      height: 52px;
    }

    .guitar-photo-placeholder span {
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ivory);
      font-family: var(--font-body);
    }

    /* When real photo is embedded */
    .guitar-photo--real {
      background-size: cover;
      background-position: center;
    }
    .guitar-photo--real .guitar-photo-placeholder {
      display: none;
    }

    .guitar-info {
      padding: var(--space-md) var(--space-lg);
    }

    .guitar-year {
      font-size: .7rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: .375rem;
    }

    .guitar-name {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: .25rem;
    }

    .guitar-model {
      font-size: .8rem;
      letter-spacing: .06em;
      color: var(--ash);
      margin-bottom: var(--space-sm);
    }

    .guitar-note {
      font-size: .9rem;
      color: var(--ash);
      line-height: 1.7;
    }

    @media (max-width: 760px) {
      .guitar-grid { grid-template-columns: 1fr; }
    }


    .guitar-photo--nash { }
    .guitar-photo--nash .guitar-photo-placeholder { opacity: 0 !important; pointer-events: none; }

    /* ============================================================
       GUITAR LIGHTBOX
    ============================================================ */
    .guitar-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,8,5,.93);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .guitar-lightbox.open { display: flex; }

    .lightbox-img-wrap {
      position: relative;
      max-width: 90vw;
      max-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-img {
      max-width: 90vw;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 4px;
      display: block;
    }

    .lightbox-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(243,237,224,.12);
      border: 1px solid rgba(243,237,224,.2);
      color: var(--ivory);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }
    .lightbox-btn:hover { background: rgba(243,237,224,.22); }
    .lightbox-btn--prev { left: -56px; }
    .lightbox-btn--next { right: -56px; }

    .lightbox-close {
      position: absolute;
      top: var(--space-md);
      right: var(--space-md);
      background: none;
      border: none;
      color: rgba(243,237,224,.5);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
      padding: .25rem;
      transition: color .2s;
    }
    .lightbox-close:hover { color: var(--ivory); }

    .lightbox-counter {
      margin-top: var(--space-md);
      font-size: .75rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(243,237,224,.4);
    }

    .lightbox-dots {
      display: flex;
      gap: .5rem;
      margin-top: var(--space-sm);
    }

    .lightbox-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(243,237,224,.25);
      cursor: pointer;
      transition: background .2s;
    }
    .lightbox-dot.active { background: var(--brass); }

    .guitar-photo { cursor: pointer; }
    .guitar-photo::after {
      content: 'View Gallery';
      position: absolute;
      bottom: var(--space-sm);
      left: 50%;
      transform: translateX(-50%);
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ivory);
      background: rgba(10,8,5,.55);
      padding: .3rem .75rem;
      border-radius: 2rem;
      opacity: 0;
      transition: opacity .25s;
      white-space: nowrap;
      pointer-events: none;
    }
    .guitar-photo:hover::after { opacity: 1; }

    .guitar-photo--blackfalcon { }
    .guitar-photo--blackfalcon .guitar-photo-placeholder { opacity: 0 !important; pointer-events: none; }

    .guitar-photo--whitefalcon { }
    .guitar-photo--whitefalcon .guitar-photo-placeholder { opacity: 0 !important; pointer-events: none; }
    .guitar-photo--silverfalcon { }
    .guitar-photo--silverfalcon .guitar-photo-placeholder { opacity: 0 !important; pointer-events: none; }

        .guitar-photo--billymorrison {
    }
    .guitar-photo--billymorrison .guitar-photo-placeholder { opacity: 0 !important; pointer-events: none; }

    .guitar-photo--lespaul {
    }
    .guitar-photo--lespaul .guitar-photo-placeholder { opacity: 0 !important; pointer-events: none; }
    .guitar-photo--streetbass { }
    .guitar-photo--streetbass .guitar-photo-placeholder { opacity: 0 !important; pointer-events: none; }
    .guitar-photo--fleajazz { }
    .guitar-photo--fleajazz .guitar-photo-placeholder { opacity: 0 !important; pointer-events: none; }


    /* Music page — kid photo intro */
    .music-origin {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: var(--space-2xl);
      padding: var(--space-md) 0;
    }
    .music-origin-photo img {
      width: 100%;
      display: block;
    }
    .music-origin-text .eyebrow {
      display: block;
      margin-bottom: var(--space-sm);
    }
    .music-origin-text h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.6rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: var(--space-md);
    }
    .music-origin-text p {
      color: var(--ash);
      font-size: .95rem;
      line-height: 1.7;
    }
    @media (max-width: 700px) {
      .music-origin { grid-template-columns: 1fr; }
    }

    /* Behind the Bar — dedicated page (amber/whiskey palette) */
    .bar-hero {
      min-height: 60vh;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, #2A1E14 0%, #3C2A18 50%, #261A10 100%);
      color: var(--ivory);
      position: relative;
      overflow: hidden;
      padding: var(--space-2xl) 0;
    }
    .bar-hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(196,140,60,.14) 0%, transparent 70%);
    }
    .bar-hero-inner {
      position: relative;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }
    .bar-hero-kicker {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(243,237,224,.45);
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    .bar-hero-kicker::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: #C48C3C;
    }
    .bar-hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -.02em;
      margin-bottom: var(--space-sm);
    }
    .bar-hero-subtitle {
      font-size: clamp(.9rem, 1.8vw, 1.1rem);
      color: rgba(243,237,224,.65);
      line-height: 1.6;
      max-width: 580px;
      margin-bottom: var(--space-md);
    }
    .bar-hero-author {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      font-weight: 300;
      color: #C48C3C;
      margin-bottom: var(--space-lg);
    }
    .bar-hero-mark {
      display: flex;
      align-items: center;
      gap: .625rem;
      margin-bottom: var(--space-xl);
    }
    .bar-hero-mark span {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(243,237,224,.3);
    }

    /* The closing line — emotional beat */
    .bar-moment {
      background: var(--ink);
      color: var(--ivory);
      padding: var(--space-2xl) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .bar-moment-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,140,60,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .bar-moment-inner {
      position: relative;
      max-width: 820px;
      margin: 0 auto;
      padding: 0 var(--space-md);
    }
    .bar-moment-setup {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 3vw, 2rem);
      font-weight: 300;
      color: var(--ivory);
      line-height: 1.6;
      margin-bottom: var(--space-lg);
    }
    .bar-moment-words {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 500;
      font-style: italic;
      line-height: 1.4;
      color: #C48C3C;
      margin-bottom: var(--space-md);
    }
    .bar-moment-reaction {
      font-size: 1rem;
      color: rgba(243,237,224,.6);
      line-height: 1.8;
      border-top: 1px solid rgba(243,237,224,.1);
      padding-top: var(--space-xl);
      margin-top: var(--space-lg);
    }

    /* Who this book is for — amber accent */
    .bar-who-card {
      background: var(--cream);
      border: 1px solid var(--fog);
      padding: var(--space-md) var(--space-lg);
      border-radius: var(--radius);
      display: flex;
      align-items: flex-start;
      gap: var(--space-sm);
    }
    .bar-who-card::before {
      content: '—';
      color: #C48C3C;
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: .1rem;
    }
    .bar-who-card p {
      font-size: .95rem;
      color: var(--ash);
      line-height: 1.5;
      max-width: 100%;
    }
    .bar-theme-pill {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #6B4A20;
      background: #EFE0C8;
      border: 1px solid #DCC49A;
      padding: .3rem .75rem;
      border-radius: 100px;
    }

    /* From Your Dad — dedicated page (navy/parchment/gold palette) */
    .fyd-hero {
      min-height: 60vh;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, #1A2438 0%, #243353 50%, #131B2C 100%);
      color: var(--ivory);
      position: relative;
      overflow: hidden;
      padding: var(--space-2xl) 0;
    }
    .fyd-hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(168,123,58,.16) 0%, transparent 70%);
    }
    .fyd-hero-inner {
      position: relative;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }
    .fyd-hero-kicker {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(243,237,224,.45);
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    .fyd-hero-kicker::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--brass);
    }
    .fyd-hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -.02em;
      margin-bottom: var(--space-sm);
    }
    .fyd-hero-subtitle {
      font-size: clamp(.9rem, 1.8vw, 1.1rem);
      color: rgba(243,237,224,.65);
      line-height: 1.6;
      max-width: 580px;
      margin-bottom: var(--space-md);
    }
    .fyd-hero-author {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      font-weight: 300;
      color: var(--brass);
      margin-bottom: var(--space-lg);
    }
    .fyd-hero-mark {
      display: flex;
      align-items: center;
      gap: .625rem;
      margin-bottom: var(--space-xl);
    }
    .fyd-hero-mark span {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(243,237,224,.3);
    }

    /* Core message — the heart of the book */
    .fyd-moment {
      background: var(--navy);
      color: var(--ivory);
      padding: var(--space-2xl) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .fyd-moment-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(168,123,58,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .fyd-moment-inner {
      position: relative;
      max-width: 820px;
      margin: 0 auto;
      padding: 0 var(--space-md);
    }
    .fyd-moment-setup {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 3vw, 2rem);
      font-weight: 300;
      color: var(--ivory);
      line-height: 1.6;
      margin-bottom: var(--space-lg);
    }
    .fyd-moment-words {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 500;
      font-style: italic;
      line-height: 1.4;
      color: var(--brass);
      margin-bottom: var(--space-md);
    }
    .fyd-moment-reaction {
      font-size: 1rem;
      color: rgba(243,237,224,.6);
      line-height: 1.8;
      border-top: 1px solid rgba(243,237,224,.1);
      padding-top: var(--space-xl);
      margin-top: var(--space-lg);
    }
    .fyd-theme-pill {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #8B6420;
      background: #F0E4C8;
      border: 1px solid #DDC79A;
      padding: .3rem .75rem;
      border-radius: 100px;
    }
    .section--navy { background: var(--navy); color: var(--ivory); }

    /* ============================================================
       I Am — dedicated page (midnight/space/gold palette)
    ============================================================ */
    .iam-hero {
      min-height: 65vh;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, #060810 0%, #0C1020 55%, #050709 100%);
      color: var(--ivory);
      position: relative;
      overflow: hidden;
      padding: var(--space-2xl) 0;
    }
    .iam-hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 70% at 70% 40%, rgba(70,120,200,.1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 25% 60%, rgba(168,123,58,.12) 0%, transparent 60%);
    }
    .iam-hero-inner {
      position: relative;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }
    .iam-hero-kicker {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(243,237,224,.4);
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    .iam-hero-kicker::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--brass);
    }
    .iam-hero-title {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 300;
      letter-spacing: .08em;
      line-height: 1;
      margin-bottom: var(--space-xs);
    }
    .iam-hero-subtitle {
      font-size: clamp(.85rem, 1.6vw, 1rem);
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(243,237,224,.4);
      margin-bottom: var(--space-md);
    }
    .iam-hero-author {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      font-weight: 300;
      color: var(--brass);
      margin-bottom: var(--space-lg);
    }
    .iam-hero-mark {
      display: flex;
      align-items: center;
      gap: .625rem;
      margin-bottom: var(--space-xl);
    }
    .iam-hero-mark span {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(243,237,224,.28);
    }

    /* Completeness — the emotional center */
    .iam-moment {
      background: var(--midnight);
      color: var(--ivory);
      padding: var(--space-2xl) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .iam-moment-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(70,120,200,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .iam-moment-inner {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 var(--space-md);
    }
    .iam-moment-setup {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2.8vw, 1.8rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(243,237,224,.65);
      line-height: 1.7;
      margin-bottom: var(--space-lg);
    }
    .iam-moment-words {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 400;
      letter-spacing: .12em;
      line-height: 1.2;
      color: var(--ivory);
      margin-bottom: var(--space-md);
    }
    .iam-moment-sub {
      font-size: .95rem;
      color: rgba(243,237,224,.45);
      line-height: 1.8;
      border-top: 1px solid rgba(243,237,224,.08);
      padding-top: var(--space-xl);
      margin-top: var(--space-lg);
    }
    .iam-theme-pill {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #7A6020;
      background: rgba(168,123,58,.12);
      border: 1px solid rgba(168,123,58,.3);
      padding: .3rem .75rem;
      border-radius: 100px;
    }
    .section--midnight { background: var(--midnight); color: var(--ivory); }
