  :root {
    --ink: #1a1612;
    --cream: #f5efe6;
    --paper: #faf6ee;
    --terracotta: #b8593a;
    --terracotta-deep: #8f4128;
    --sage: #6b7a5a;
    --warm-gray: #8a7d6b;
    --rule: #d9cfbf;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; }
  .display-italic { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }

  /* ================ NAV ================ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
  }
  nav.scrolled { border-bottom-color: var(--rule); }

  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-logo span { font-style: italic; color: var(--terracotta); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
  }
  .nav-links a:hover { color: var(--terracotta); }

  .nav-cta {
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--ink);
    border-radius: 999px;
    transition: all 0.2s ease;
  }
  .nav-cta:hover {
    background: var(--ink);
    color: var(--paper) !important;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 0.25rem;
    line-height: 0;
  }
  .menu-toggle svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  .menu-toggle .menu-icon-close { display: none; }
  .menu-toggle.is-open .menu-icon-open { display: none; }
  .menu-toggle.is-open .menu-icon-close { display: block; }

  /* ================ NAV SOCIALS ================ */
  .nav-socials {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: 1.75rem;
    padding-left: 1.75rem;
    border-left: 1px solid var(--rule);
  }
  .nav-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--ink);
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .nav-social:hover {
    background: var(--terracotta);
    color: var(--paper);
    transform: translateY(-1px);
  }
  .nav-social svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  /* ================ HERO ================ */
  .hero {
    min-height: 100vh;
    /* dvh accounts for iOS Safari's collapsing browser chrome — newer browsers
       use this; older ones fall back to the vh value above. */
    min-height: 100dvh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--cream);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background:
      radial-gradient(circle at 80% 30%, rgba(184, 89, 58, 0.12) 0%, transparent 55%),
      radial-gradient(circle at 20% 70%, rgba(107, 122, 90, 0.08) 0%, transparent 45%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-headline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  .hero-headline-row h1 {
    margin-bottom: 0;
    min-width: 0;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    font-weight: 500;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--terracotta);
  }
  .hero .hero-eyebrow {
    color: var(--cream);
    opacity: 0.7;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--cream);
  }
  .hero h1 .italic {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 300;
  }
  .hero h1 .headline-line-2 {
    font-size: 0.78em;
    display: inline-block;
    white-space: nowrap;
  }
  /* Allow the second line to wrap on narrow screens; otherwise it overflows
     the viewport and gets clipped by body's overflow-x: hidden. */
  @media (max-width: 600px) {
    .hero h1 .headline-line-2 { white-space: normal; }
  }

  .hero-tagline {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.78;
    max-width: 520px;
    margin-bottom: 2.5rem;
  }

  .hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
  }
  .btn-primary:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
  }
  .btn-secondary {
    background: var(--cream);
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 999px;
  }
  .btn-secondary:hover {
    background: var(--ink);
    color: var(--paper);
  }
  .hero .btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
  }
  .hero .btn-secondary:hover {
    background: var(--cream);
    color: var(--ink);
  }
  .btn-arrow { transition: transform 0.25s ease; }
  .btn:hover .btn-arrow { transform: translateX(4px); }

  .hero-portrait {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 22, 18, 0.15);
    background: var(--cream);
  }

  .hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .portrait-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--cream);
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(26, 22, 18, 0.12);
    z-index: 2;
  }
  .portrait-badge-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--terracotta);
    font-weight: 500;
  }
  .portrait-badge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-gray);
    margin-top: 0.4rem;
  }

  /* ================ SOCIAL STRIP ================ */
  .social-strip {
    background: var(--ink);
    color: var(--cream);
    padding: 3rem 2rem;
    overflow: hidden;
  }
  /* Inline variant — sits inside another section with rounded corners and tight margins */
  .social-strip-inline {
    border-radius: 4px;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
  }
  .social-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .social-stat {
    text-align: center;
    border-right: 1px solid rgba(245, 239, 230, 0.15);
    padding: 0.5rem 0;
  }
  .social-stat:last-child { border-right: none; }
  .social-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 400;
  }
  .social-stat-num .italic { font-style: italic; color: var(--terracotta); }
  .social-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
  }

  /* ================ SECTION SHARED ================ */
  section {
    padding: 7rem 2rem;
    position: relative;
  }
  .section-inner {
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::before {
    content: '§';
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-style: italic;
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  .section-title .italic { font-style: italic; color: var(--terracotta); font-weight: 300; }

  /* ================ ABOUT ================ */
  .about {
    background: var(--cream);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
  }
  .about-image-stack {
    position: relative;
    aspect-ratio: 3/4;
  }
  .about-image-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3d342a 0%, #1a1612 100%);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(26, 22, 18, 0.2);
    overflow: hidden;
  }
  .about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .about-quote-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--paper);
    padding: 1.75rem;
    max-width: 240px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(26, 22, 18, 0.15);
  }
  .about-quote-card .quote-mark {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 3rem;
    line-height: 0.5;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    display: block;
  }
  .about-quote-card p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--ink);
  }

  .about-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink);
    opacity: 0.88;
  }
  .about-content p:first-of-type {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--ink);
    opacity: 1;
    margin-bottom: 1.75rem;
  }
  .about-content p:first-of-type .italic {
    font-style: italic;
    color: var(--terracotta);
  }

  .about-meta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .about-meta-item {
    font-size: 0.85rem;
  }
  .about-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-gray);
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
  }
  .about-meta-value {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
  }

  /* ================ PODCAST ================ */
  .podcast {
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
    position: relative;
    /* Override global section padding — handle our own spacing */
    padding: 4rem 2rem 5rem;
  }

  .podcast-stack {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .podcast .section-label {
    color: var(--terracotta);
    justify-content: center;
    margin-bottom: 2rem;
  }

  /* The wave - scales based on scroll progress.
     transform-origin: center bottom means it shrinks UPWARD from its
     bottom edge, leaving the title position untouched.
     margin-top (set by JS, becomes negative) pulls the shrinking wave
     up toward the label, closing the empty space above it. */
  .podcast-wave {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(var(--wave-scale, 1));
    transform-origin: center bottom;
    margin-top: var(--wave-margin-top, 0rem);
  }
  .podcast-wave-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at center, rgba(184, 89, 58, 0.18) 0%, transparent 60%);
    pointer-events: none;
    opacity: var(--glow-opacity, 1);
  }
  .podcast-wave img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
    animation: wave-pulse 4s ease-in-out infinite;
  }

  @keyframes wave-pulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
  }

  /* Content that fades in as user scrolls */
  .podcast-content {
    opacity: var(--content-opacity, 0);
    transform: translateY(var(--content-translate, 30px));
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
  }

  .podcast-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--cream);
  }
  .podcast-title .italic {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 300;
  }

  .podcast-description {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .podcast-description:last-of-type {
    margin-bottom: 1.75rem;
  }

  .podcast-coming-soon {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--terracotta);
    color: var(--cream);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 2px;
    font-weight: 500;
  }

  .podcast-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  .platform-pill {
    padding: 0.6rem 1.2rem;
    background: rgba(245, 239, 230, 0.08);
    border: 1px solid rgba(245, 239, 230, 0.2);
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .platform-pill:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
  }

  /* ================ WORK WITH ME ================ */
  .work {
    background: var(--paper);
  }
  .work-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 5rem;
  }
  .work-header .section-label { justify-content: center; }
  .work-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink);
    opacity: 0.8;
    max-width: 600px;
    margin: 1.5rem auto 0;
  }

  .demographics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule);
    margin-bottom: 5rem;
    border: 1px solid var(--rule);
  }
  .demo-card {
    background: var(--paper);
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 0;
    overflow: hidden;
  }
  .demo-num {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    font-weight: 400;
  }
  .demo-num .italic { font-style: italic; }
  .demo-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-gray);
    line-height: 1.4;
  }

  .work-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .category-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--rule);
    transition: all 0.3s ease;
  }
  .category-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-3px);
  }
  .category-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
  }
  .category-title {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .category-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
  }

  .work-cta-block {
    background: var(--ink);
    color: var(--cream);
    padding: 4rem 3rem;
    border-radius: 4px;
    text-align: center;
  }
  .work-cta-block h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 400;
  }
  .work-cta-block h3 .italic { font-style: italic; color: var(--terracotta); }
  .work-cta-block p {
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .work-cta-block .btn-primary {
    background: var(--terracotta);
  }
  .work-cta-block .btn-primary:hover {
    background: var(--cream);
    color: var(--ink);
  }

  /* ================ SHOP / FINDS ================ */
  /* (Finds section CSS removed — no corresponding HTML.) */

  /* ================ FAQ ================ */
  .faq {
    background: var(--cream);
    color: var(--ink);
    padding: 7rem 2rem;
    position: relative;
  }
  .faq-inner {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .faq h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin: 1rem 0 1.25rem;
    font-weight: 400;
  }
  .faq h2 .italic { font-style: italic; color: var(--terracotta); }
  .faq-sub {
    font-size: 1.05rem;
    opacity: 0.75;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .faq-list {
    border-top: 1px solid rgba(26, 22, 18, 0.15);
  }
  .faq-item {
    border-bottom: 1px solid rgba(26, 22, 18, 0.15);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 0;
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: color 0.2s ease;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--terracotta); }
  .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
  }
  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    top: 50%;
    left: 50%;
    transition: transform 0.3s ease;
  }
  .faq-icon::before {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%);
  }
  .faq-icon::after {
    width: 1.5px;
    height: 14px;
    transform: translate(-50%, -50%);
  }
  .faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }
  .faq-answer {
    padding: 0 0 1.8rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    opacity: 0.85;
    max-width: 680px;
  }
  .faq-answer a {
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .faq-answer a:hover { color: var(--terracotta-deep); }

  /* ================ CONNECT ================ */
  .connect {
    background: var(--ink);
    color: var(--cream);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .connect::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184, 89, 58, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .connect-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .connect h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  .connect h2 .italic { font-style: italic; color: var(--terracotta); }
  .connect-sub {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contact form */
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .form-field {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
  }
  .form-row .form-field { margin-bottom: 0; }
  .form-field label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    color: var(--cream);
    font-weight: 500;
  }
  .form-field input,
  .form-field textarea {
    background: rgba(245, 239, 230, 0.06);
    border: 1px solid rgba(245, 239, 230, 0.18);
    color: var(--cream);
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 3px;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    box-sizing: border-box;
  }
  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: rgba(245, 239, 230, 0.1);
  }
  .form-field textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
    line-height: 1.5;
  }
  .form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  .form-submit-row {
    text-align: center;
    margin-top: 0.5rem;
  }
  .form-submit {
    background: var(--terracotta);
    color: var(--cream);
    border: none;
    padding: 1rem 2.5rem;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    font-weight: 500;
    transition: background 0.25s, transform 0.25s;
  }
  .form-submit:hover {
    background: var(--terracotta-deep);
    transform: translateY(-2px);
  }
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  .form-status {
    margin-top: 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-align: center;
    /* Always rendered (no display:none) so aria-live announcements fire when text appears.
       Visually invisible when empty: zero padding, transparent border. */
    padding: 0;
    border: 1px solid transparent;
    background: transparent;
    color: var(--cream);
    transition: padding 0.2s, background 0.2s, border-color 0.2s;
  }
  .form-status.success,
  .form-status.error {
    padding: 1rem 1.25rem;
  }
  .form-status.success {
    background: rgba(184, 89, 58, 0.18);
    border-color: var(--terracotta);
  }
  .form-status.error {
    background: rgba(220, 80, 80, 0.18);
    border-color: #dc6464;
  }
  /* ================ FOOTER ================ */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(245, 239, 230, 0.1);
  }
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 500;
  }
  .footer-logo .italic { font-style: italic; color: var(--terracotta); }
  .footer-meta {
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: right;
  }
  .footer-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1rem;
    opacity: 0.8;
    text-align: center;
    flex: 1;
    min-width: 200px;
  }

  /* ================ RESPONSIVE ================ */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.25rem; }
    .nav-links {
      position: fixed;
      top: 0; right: -100%;
      width: 75%;
      max-width: 320px;
      height: 100vh;
      height: 100dvh;
      background: var(--paper);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 1.5rem;
      transition: right 0.3s ease;
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
      align-items: flex-start;
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; }
    .menu-toggle { display: block; z-index: 101; }

    /* Keep social icons visible on mobile, sized down a touch */
    .nav-socials {
      margin-left: 0;
      padding-left: 0;
      border-left: none;
      gap: 0.4rem;
      margin-right: 0.5rem;
    }
    .nav-social {
      width: 32px;
      height: 32px;
    }
    .nav-social svg { width: 20px; height: 20px; }

    .hero { padding: 7rem 1.25rem 4rem; }
    .hero-headline-row {
      gap: 1.25rem;
    }
    .hero-portrait { width: 150px; height: 150px; }

    section { padding: 5rem 1.25rem; }

    .social-strip-inline { padding: 1.5rem 0.75rem; }
    .social-strip-inner {
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
    }
    .social-stat {
      border-right: 1px solid rgba(245, 239, 230, 0.15);
      padding: 0.25rem 0;
      min-width: 0;
      overflow: hidden;
    }
    .social-stat:last-child { border-right: none; }
    .social-stat-num { font-size: 1.5rem; }
    .social-stat-label { font-size: 0.6rem; letter-spacing: 0.1em; }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
    .about-image-stack { max-width: 400px; margin: 0 auto; width: 100%; }
    .about-quote-card { right: 0; }
    .about-meta { grid-template-columns: 1fr; gap: 1.25rem; }

    /* Demographics: keep 4 across on mobile, just smaller. Saves a lot of scroll. */
    .demographics {
      grid-template-columns: repeat(4, 1fr);
      margin-bottom: 3rem;
    }
    .demo-card {
      padding: 1.25rem 0.5rem;
    }
    .demo-num {
      font-size: 1.6rem;
      margin-bottom: 0.4rem;
    }
    .demo-label {
      font-size: 0.6rem;
      letter-spacing: 0.1em;
    }

    /* Categories: 2x2 grid on mobile instead of stacked, with tighter padding */
    .work-categories {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 3rem;
    }
    .category-card {
      padding: 1.5rem 1.25rem;
    }
    .category-num {
      font-size: 0.85rem;
      margin-bottom: 0.5rem;
    }
    .category-title {
      font-size: 1.15rem;
      margin-bottom: 0.6rem;
    }
    .category-desc {
      font-size: 0.85rem;
      line-height: 1.5;
    }

    .work-cta-block { padding: 3rem 1.5rem; }

    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .form-field { margin-bottom: 1.25rem; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-meta { text-align: center; }
  }

  /* ================ FADE IN ANIMATIONS ================ */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ================================================================ */
  /* ================ AFFILIATE PAGE (affiliates.html) ================ */
  /* ================================================================ */

  /* --- Intro / header band --- */
  .affiliate-intro {
    background: var(--paper);
    padding: 9rem 2rem 4rem;
  }
  .affiliate-intro .section-inner {
    max-width: 760px;
  }
  .affiliate-intro .section-label {
    margin-bottom: 1.5rem;
  }
  .affiliate-intro h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }
  .affiliate-intro p.lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 2rem;
  }

  /* --- FTC disclosure box --- */
  .affiliate-disclosure {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--terracotta);
    background: rgba(184, 89, 58, 0.06);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink);
    font-style: italic;
  }
  .affiliate-disclosure strong {
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--terracotta);
    display: block;
    margin-bottom: 0.5rem;
  }

  /* --- Brand section --- */
  .affiliate-brand {
    padding: 5rem 2rem;
    border-top: 1px solid var(--rule);
  }
  .affiliate-brand:nth-of-type(even) { background: var(--cream); }
  .affiliate-brand:nth-of-type(odd)  { background: var(--paper); }
  .affiliate-brand .section-inner {
    max-width: 1100px;
  }

  /* Brand header: name + tagline */
  .brand-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  /* Wordmark style — used when no logo image is provided.
     To swap in a real logo image, replace .brand-name with
     <img src="..." class="brand-logo-img" alt="Brand Name"> */
  .brand-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
  }
  .brand-logo-img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
    display: block;
  }
  .brand-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--warm-gray);
    margin-top: 0.75rem;
  }

  /* "Why I love it" blurb */
  .brand-blurb {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: center;
    color: var(--ink);
  }

  /* Product grid — always 3 across, even on mobile (per spec) */
  .brand-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .brand-product {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    overflow: hidden;
    background: var(--cream);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .affiliate-brand:nth-of-type(odd) .brand-product { background: var(--cream); }
  .affiliate-brand:nth-of-type(even) .brand-product { background: var(--paper); }
  .brand-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(26, 22, 18, 0.10);
  }
  .brand-product img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
  }

  /* Discount code pill */
  .brand-code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .brand-code-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--warm-gray);
  }
  .brand-code-value {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: 1px dashed var(--terracotta);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    background: rgba(184, 89, 58, 0.04);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    user-select: all;
  }
  .brand-code-value:hover {
    background: var(--terracotta);
    color: var(--paper);
  }
  .brand-code-copied {
    font-size: 0.75rem;
    color: var(--terracotta);
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .brand-code-copied.is-visible { opacity: 1; }

  /* --- Mobile tweaks --- */
  @media (max-width: 600px) {
    .affiliate-intro { padding: 7rem 1.25rem 3rem; }
    .affiliate-brand { padding: 3.5rem 1.25rem; }
    .brand-products { gap: 0.5rem; }
    .brand-blurb { font-size: 1rem; }
  }
