/* ===== HOME-SPECIFIC ===== */

    /* HERO — full-width horizontal carousel */
    .hero {
      position: relative;
      width: 100%;
      height: 70vh;
      min-height: 480px;
      max-height: 780px;
      overflow: hidden;
      background: var(--ink);
    }
    .hero-track {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      transition: transform 0.9s cubic-bezier(0.77,0,0.175,1);
    }
    .hero-slide {
      flex: 0 0 100%;
      height: 100%;
      position: relative;
    }
    .hero-slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(20,18,14,0.72) 0%, rgba(20,18,14,0.35) 55%, rgba(20,18,14,0.06) 100%);
    }
    .hero-content {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: calc(var(--nav-h) + 1rem) 2rem 3rem;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .hero-eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.65);
      margin-bottom: 1.25rem;
      display: block;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 5rem);
      font-weight: 300;
      line-height: 0.95;
      color: var(--cream);
      margin-bottom: 1.5rem;
      max-width: 600px;
    }
    .hero-title em { font-style: italic; color: rgba(245,240,232,0.72); }
    .hero-desc {
      font-size: 0.88rem;
      color: rgba(245,240,232,0.68);
      line-height: 1.75;
      max-width: 400px;
      margin-bottom: 2rem;
    }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; pointer-events: all; }
    .hero-ctas .btn { border-color: rgba(245,240,232,0.5); color: var(--cream); }
    .hero-ctas .btn:hover { background: rgba(245,240,232,0.12); }
    .hero-ctas .btn-filled { background: var(--cream); color: var(--ink); border-color: var(--cream); }
    .hero-ctas .btn-filled:hover { background: var(--warm); border-color: var(--warm); }
    .hero-arrow {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
      background: none; border: 1px solid rgba(245,240,232,0.3); color: var(--cream);
      width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .hero-arrow:hover { background: rgba(245,240,232,0.12); }
    .hero-arrow-prev { left: 1.5rem; }
    .hero-arrow-next { right: 1.5rem; }
    .hero-dots {
      position: absolute; bottom: 1.5rem; right: 2rem; z-index: 3;
      display: flex; gap: 6px;
    }
    .hero-dots button {
      width: 24px; height: 3px; border-radius: 2px;
      background: rgba(245,240,232,0.3); border: none; cursor: pointer;
      transition: background 0.3s, width 0.3s; padding: 0;
    }
    .hero-dots button.active { background: var(--cream); width: 36px; }
    @media (max-width: 768px) {
      .hero { height: 56vw; min-height: 220px; max-height: 380px; }
      .hero-arrow { display: none; }
      /* Hide overlay text on mobile — shown below carousel instead */
      .hero-content { display: none; }
      .hero-dots { bottom: 0.75rem; right: 1rem; }
    }
    /* Below-carousel text block — only visible on mobile */
    .hero-below {
      display: none;
    }
    @media (max-width: 768px) {
      .hero-below {
        display: block;
        background: var(--ink);
        color: var(--cream);
        padding: 1.75rem 1.25rem 2rem;
      }
      .hero-below .hero-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(245,240,232,0.55);
        margin-bottom: 0.75rem;
        display: block;
      }
      .hero-below .hero-title {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 300;
        line-height: 1.05;
        color: var(--cream);
        margin-bottom: 1rem;
        max-width: 100%;
      }
      .hero-below .hero-desc {
        font-size: 0.9rem;
        color: rgba(245,240,232,0.65);
        line-height: 1.7;
        margin-bottom: 1.25rem;
      }
      .hero-below .hero-ctas {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
      }
      .hero-below .btn {
        border-color: rgba(245,240,232,0.4);
        color: var(--cream);
        font-size: 0.72rem;
        padding: 0.65rem 1.25rem;
      }
      .hero-below .btn-filled {
        background: var(--cream);
        color: var(--ink);
        border-color: var(--cream);
      }
    }

    /* ===== INTRO STRIP ===== */
    .intro-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--warm);
      padding: 2rem;
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .intro-stat {
      text-align: center;
      min-width: 100px;
    }
    .intro-stat-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--ink);
      line-height: 1;
      display: block;
    }
    .intro-stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-top: 0.35rem;
      display: block;
    }
    @media (max-width: 600px) {
      .intro-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
      }
      .intro-stat {
        padding: 1.5rem 1rem;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        min-width: 0;
      }
      .intro-stat:nth-child(even) { border-right: none; }
      .intro-stat:nth-child(3),
      .intro-stat:nth-child(4) { border-bottom: none; }
    }

    /* ===== SECTION TITLES ===== */
    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 2.5rem;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 300;
    }
    .section-link {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-mid);
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
    }
    .section-link:hover { color: var(--ink); border-color: var(--ink); }

    /* ===== FEATURED WORKS (home preview) ===== */
    .works-section { padding: 5rem 0; }
    .works-preview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .work-card {
      cursor: pointer;
      group: true;
    }
    .work-card-img {
      overflow: hidden;
      border-radius: 2px;
      background: var(--warm);
      margin-bottom: 0.75rem;
      position: relative;
    }
    .work-card-img img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .work-card:hover .work-card-img img { transform: scale(1.04); }
    .work-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(28,26,22,0);
      display: flex;
      align-items: flex-end;
      padding: 1rem;
      transition: background 0.3s;
    }
    .work-card:hover .work-card-overlay { background: rgba(28,26,22,0.18); }
    .work-card-tag {
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream);
      background: var(--accent);
      padding: 0.25rem 0.6rem;
      border-radius: 1px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .work-card:hover .work-card-tag { opacity: 1; }
    .work-card-title {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }
    .work-card-series {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: var(--ink-light);
    }

    /* ===== SERIES GRID ===== */
    .series-section { padding: 5rem 0; background: var(--warm); }
    .series-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      border: 1px solid var(--border);
    }
    .series-card {
      display: block;
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }
    .series-card-img {
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .series-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .series-card:hover .series-card-img img { transform: scale(1.06); }
    .series-card-body {
      padding: 1rem 1.25rem 1.25rem;
      border-top: 1px solid var(--border);
    }
    .series-card-title {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 0.3rem;
    }
    .series-card-desc {
      font-size: 0.75rem;
      color: var(--ink-mid);
      line-height: 1.6;
    }

    /* ===== BIO TEASER ===== */
    .bio-section {
      padding: 5rem 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .bio-img {
      aspect-ratio: 3/4;
      overflow: hidden;
      border-radius: 2px;
    }
    .bio-img img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .bio-eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
    }
    .bio-title {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3vw, 2.75rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }
    .bio-text {
      font-size: 0.88rem;
      color: var(--ink-mid);
      line-height: 1.85;
      margin-bottom: 2rem;
    }
    .bio-timeline {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 2rem;
    }
    .bio-timeline-item {
      display: flex;
      gap: 1.25rem;
      font-size: 0.8rem;
    }
    .bio-timeline-year {
      font-weight: 500;
      color: var(--accent);
      min-width: 80px;
      flex-shrink: 0;
    }
    .bio-timeline-text { color: var(--ink-mid); }

    /* ===== NEWSLETTER SECTION ===== */
    .newsletter-section {
      padding: 5rem 0;
      text-align: center;
      border-top: 1px solid var(--border);
    }
    .newsletter-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 300;
      margin-bottom: 0.75rem;
    }
    .newsletter-section p {
      font-size: 0.85rem;
      color: var(--ink-mid);
      margin-bottom: 1.75rem;
    }
    .newsletter-section-form {
      display: flex;
      max-width: 420px;
      margin: 0 auto;
      gap: 0;
      border: 1px solid var(--ink);
      border-radius: 1px;
      overflow: hidden;
    }
    .newsletter-section-form input[type="email"] {
      flex: 1;
      border: none;
      background: transparent;
      padding: 0.8rem 1rem;
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--ink);
      outline: none;
      min-width: 0;
    }
    .newsletter-section-form input::placeholder { color: var(--ink-light); }
    .newsletter-section-form button {
      background: var(--ink);
      color: var(--cream);
      border: none;
      padding: 0.8rem 1.5rem;
      font-family: var(--font-body);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .newsletter-section-form button:hover { background: var(--accent); }

    @media (max-width: 900px) {
      .works-preview-grid { grid-template-columns: repeat(2, 1fr); }
      .series-grid { grid-template-columns: repeat(2, 1fr); }
      .bio-section { grid-template-columns: 1fr; gap: 2.5rem; }
      .bio-img { max-width: 400px; }
    }
    @media (max-width: 768px) {
      .works-preview-grid { grid-template-columns: 1fr; }
      .series-grid { grid-template-columns: 1fr 1fr; }
      .intro-strip { gap: 2rem; }
    }