:root {
      color-scheme: only light;
      --ink: #12100e;
      --sand: #f5e6d8;
      --coral: #f08b5a;
      --teal: #2fa7b8;
      --gold: #f2b134;
      --violet: #7b4dc4;
      --paper: #fcf4ea;
      --stroke: rgba(18, 16, 14, 0.15);
      --shadow: 0 28px 80px rgba(18, 16, 14, 0.12);
    }

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

    body {
      font-family: "Fraunces", serif;
      background: radial-gradient(circle at 10% 20%, #fff8f1 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(47, 167, 184, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(240, 139, 90, 0.25) 0%, transparent 50%),
        #faf2e8;
      color: var(--ink);
      line-height: 1.6;
    }

    p {
      color: rgba(18, 16, 14, 0.85);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: linear-gradient(120deg, rgba(18, 16, 14, 0.04) 1px, transparent 1px),
        linear-gradient(60deg, rgba(18, 16, 14, 0.04) 1px, transparent 1px);
      background-size: 120px 120px;
      pointer-events: none;
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
      cursor: zoom-in;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero {
      padding: 88px 0 64px;
    }

    .hero-grid {
      display: grid;
      gap: 48px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      gap: 12px;
      align-items: center;
      font-family: "Bebas Neue", sans-serif;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-size: 14px;
      color: rgba(18, 16, 14, 0.7);
    }

    .eyebrow::before {
      content: "";
      width: 40px;
      height: 2px;
      background: var(--coral);
      display: inline-block;
    }

    h1 {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(48px, 7vw, 92px);
      letter-spacing: 0.02em;
      line-height: 0.95;
      margin: 16px 0 20px;
    }

    .hero p {
      font-size: 18px;
      max-width: 520px;
      color: rgba(18, 16, 14, 0.8);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid var(--stroke);
      background: #fff;
      font-size: 14px;
      font-family: "Bebas Neue", sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .pill:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .collage {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(2, 1fr);
    }

    .collage figure {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--stroke);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .collage figure.large {
      grid-column: span 2;
    }

    section {
      padding: 64px 0;
    }

    .section-title {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .section-title h2 {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(38px, 5vw, 58px);
      letter-spacing: 0.04em;
    }

    .section-title p {
      max-width: 640px;
      color: rgba(18, 16, 14, 0.7);
    }

    .facets {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-auto-flow: dense;
    }

    .facet-card.wide {
      grid-column: span 2;
    }

    .facet-card {
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid var(--stroke);
      background: #fff;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      min-height: 420px;
    }

    .facet-card img {
      width: 100%;
      height: 320px;
      object-fit: contain;
      background: #fdf7f0;
    }

    .facet-card .content {
      padding: 20px 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .facet-card h3 {
      font-family: "Bebas Neue", sans-serif;
      font-size: 28px;
      letter-spacing: 0.04em;
    }


    .gallery {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-auto-flow: dense;
    }

    .childhood-grid {
      grid-auto-rows: 160px;
    }

    .childhood-grid figure {
      height: 100%;
    }

    .childhood-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .childhood-grid .wide {
      grid-column: span 2;
      grid-row: span 2;
    }

    .childhood-grid .tall {
      grid-row: span 2;
    }

    .gallery figure {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--stroke);
      background: #fff;
      box-shadow: var(--shadow);
      position: relative;
      height: 320px;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #fdf7f0;
    }

    .gallery .wide {
      grid-column: span 2;
    }

    .gallery figcaption {
      position: absolute;
      inset: auto 16px 16px 16px;
      background: rgba(18, 16, 14, 0.7);
      color: #fff;
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-family: "Bebas Neue", sans-serif;
    }


    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 10, 0.85);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
      z-index: 999;
    }

    .lightbox.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox-image {
      max-width: min(1200px, 92vw);
      max-height: 85vh;
      border-radius: 16px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
      background: #000;
      cursor: default;
    }

    .lightbox-caption {
      color: #fff;
      text-align: center;
      max-width: 80ch;
    }

    .lightbox-close {
      position: absolute;
      top: 24px;
      right: 24px;
      border: none;
      border-radius: 999px;
      padding: 8px 14px;
      background: #fff;
      font-family: "Bebas Neue", sans-serif;
      letter-spacing: 0.08em;
      cursor: pointer;
    }

    .back-to-top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 48px;
      height: 48px;
      border-radius: 999px;
      border: 1px solid var(--stroke);
      background: #fdf7f0;
      box-shadow: var(--shadow);
      font-family: "Bebas Neue", sans-serif;
      font-size: 20px;
      cursor: pointer;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 998;
    }

    .back-to-top.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .back-to-top:hover {
      background: #e7d4c4;
      box-shadow: var(--shadow);
    }


    footer {
      padding: 40px 0 72px;
      background: rgba(18, 16, 14, 0.06);
      border-top: 1px solid rgba(18, 16, 14, 0.15);
      text-align: center;
      color: rgba(18, 16, 14, 0.85);
    }

    footer a {
      color: rgba(18, 16, 14, 0.9);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 600;
    }

    .reveal {
      animation: rise 0.9s ease both;
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    @keyframes rise {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        animation: none;
      }
      .pill:hover {
        transform: none;
      }
    }

    @media (max-width: 720px) {
      .hero {
        padding-top: 64px;
      }
      .collage {
        grid-template-columns: 1fr;
      }
      .collage figure.large {
        grid-column: auto;
      }
      .facets {
        grid-template-columns: 1fr;
      }
      .facet-card.wide {
        grid-column: auto;
      }
      .childhood-grid .wide,
      .childhood-grid .tall {
        grid-column: auto;
        grid-row: auto;
      }
      .childhood-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }
      .childhood-grid figure {
        height: auto;
      }
      .childhood-grid img {
        height: auto;
      }
      .gallery {
        grid-template-columns: 1fr;
      }
      .gallery .wide {
        grid-column: auto;
      }
    }
