
    :root {
      color-scheme: light dark;
      --paper: #f4f0e4;
      --paper-2: #e9e2d1;
      --ink: #1e2119;
      --muted: #5f6255;
      --olive: #39442e;
      --olive-soft: #71805a;
      --mustard: #d2a11e;
      --mustard-soft: #eccd68;
      --line: rgba(30, 33, 25, .18);
      --shadow: 0 24px 70px rgba(36, 39, 27, .16);
      --page: min(1440px, calc(100vw - 48px));
      --ease: cubic-bezier(.16, 1, .3, 1);
      --serif: Didot, "Bodoni MT", "Times New Roman", serif;
    }

    @media (prefers-color-scheme: dark) {
      :root {
        --paper: #151812;
        --paper-2: #20251b;
        --ink: #f4efdf;
        --muted: #c6c3b5;
        --olive: #9ea979;
        --olive-soft: #77835e;
        --mustard: #e0b53a;
        --mustard-soft: #6f5a24;
        --line: rgba(244, 239, 223, .18);
        --shadow: 0 30px 80px rgba(0, 0, 0, .34);
      }
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      overflow-x: clip;
      background: var(--paper);
      color: var(--ink);
      font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
      line-height: 1.55;
      text-rendering: optimizeLegibility;
    }
    button, input, select, textarea { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    a { color: inherit; }
    img, iframe { display: block; max-width: 100%; }
    ::selection { color: var(--ink); background: var(--mustard-soft); }

    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 80;
      opacity: .055;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
    }

    .topbar {
      position: fixed;
      top: max(14px, env(safe-area-inset-top));
      left: 50%;
      z-index: 60;
      width: min(820px, calc(100vw - 28px));
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px 10px 20px;
      background: color-mix(in srgb, var(--paper) 86%, transparent);
      border: 1px solid var(--line);
      border-radius: 999px;
      box-shadow: 0 10px 32px rgba(30, 33, 25, .08);
      backdrop-filter: blur(16px);
    }
    .topbar .topnav { display: flex; gap: clamp(12px, 3vw, 30px); }
    .nav-burger, .mobile-nav { display: none; }
    .topbar .topnav a {
      text-decoration: none;
      font-size: 13px;
      font-weight: 650;
      letter-spacing: .01em;
    }
    .mini-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 16px;
      border-radius: 999px;
      background: var(--mustard);
      color: #1d2117;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
    }
    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      flex: none;
    }
    .nav-burger span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: var(--ink);
      transition: transform .3s ease, opacity .3s ease;
    }
    .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; }
    @media (max-width: 760px) {
      .topbar { justify-content: space-between; padding: 7px 8px 7px 10px; }
      .topbar .topnav { display: none; }
      .nav-burger { display: inline-flex; }
      .mini-cta { min-height: 36px; font-size: 12px; padding: 0 14px; white-space: nowrap; }
      .mobile-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: block;
        background: color-mix(in srgb, var(--paper) 96%, transparent);
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: 0 18px 44px rgba(30, 33, 25, .14);
        backdrop-filter: blur(16px);
        padding: 8px;
        z-index: 61;
      }
      .mobile-nav[hidden] { display: none; }
      .mobile-nav a {
        display: block;
        padding: 13px 16px;
        border-radius: 12px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 650;
        color: var(--ink);
      }
      .mobile-nav a:hover, .mobile-nav a:active { background: color-mix(in srgb, var(--mustard) 18%, transparent); }
    }

    /* Subpage header: same pill look as the homepage topbar. No burger here,
       so on small screens the nav scrolls horizontally instead of wrapping. */
    .site-header {
      position: fixed;
      top: max(14px, env(safe-area-inset-top));
      left: 50%;
      z-index: 60;
      width: min(820px, calc(100vw - 28px));
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px 10px 20px;
      background: color-mix(in srgb, var(--paper) 86%, transparent);
      border: 1px solid var(--line);
      border-radius: 999px;
      box-shadow: 0 10px 32px rgba(30, 33, 25, .08);
      backdrop-filter: blur(16px);
    }
    .site-header .brand {
      font-family: var(--serif);
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      color: var(--ink);
      white-space: nowrap;
      flex: none;
    }
    .site-header nav {
      display: flex;
      gap: clamp(10px, 2.4vw, 24px);
      overflow-x: auto;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .site-header nav::-webkit-scrollbar { display: none; }
    .site-header nav a {
      text-decoration: none;
      font-size: 13px;
      font-weight: 650;
      letter-spacing: .01em;
      white-space: nowrap;
      color: var(--ink);
    }
    .site-header nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }
    .site-header .mini-cta { flex: none; }
    @media (max-width: 760px) {
      .site-header { gap: 10px; padding: 8px 10px 8px 16px; border-radius: 22px; }
      .site-header .brand { font-size: 15px; }
      .site-header .mini-cta { min-height: 36px; font-size: 12px; padding: 0 14px; white-space: nowrap; }
    }

    /* ---- Subpage shared layout ---- */
    .artist-page, .reviews-page, .collection-hero { padding: 132px 0 64px; }
    .artist-page h1, .reviews-page h1, .collection-hero h1 {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(40px, 6vw, 72px);
      line-height: 1.02;
      margin: 18px 0 12px;
      letter-spacing: -0.01em;
    }
    .artist-page .lede, .reviews-page .lede, .collection-hero .lede {
      font-size: clamp(17px, 2vw, 21px);
      color: var(--muted);
      max-width: 44ch;
      margin: 0 0 18px;
    }
    .site-footer {
      border-top: 1px solid var(--line);
      margin-top: 40px;
      padding: 34px 0 46px;
      color: var(--muted);
      font-size: 14px;
    }
    .site-footer p { margin: 6px 0; }
    .site-footer a { color: inherit; }

    /* Artist page */
    .artist-portrait { margin: 34px 0 8px; max-width: 420px; }
    .artist-portrait img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 18px;
      box-shadow: var(--shadow);
      transform: rotate(-1.2deg);
      background: var(--paper-2);
    }
    .artist-caption { margin-top: 14px; font-size: 14px; color: var(--muted); }
    .artist-bio { max-width: 62ch; margin: 26px 0; font-size: 17px; line-height: 1.75; }
    .artist-bio p { margin: 0 0 16px; }
    .artist-facts {
      list-style: none;
      margin: 8px 0 30px;
      padding: 20px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      flex-wrap: wrap;
      gap: 12px 34px;
    }
    .artist-facts li { font-size: 15px; color: var(--muted); }
    .artist-facts strong { color: var(--ink); }
    .artist-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

    /* Reviews page */
    .review-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin: 30px 0 40px;
    }
    .review-card {
      margin: 0;
      padding: 26px 26px 20px;
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-radius: 18px;
    }
    .review-card p {
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1.45;
      margin: 0 0 14px;
    }
    .review-card footer { font-size: 13px; color: var(--muted); }
    .review-card footer a { color: var(--olive); }
    .reviews-cta {
      text-align: center;
      padding: 40px 24px;
      border: 1px dashed var(--line);
      border-radius: 22px;
      margin-bottom: 20px;
    }
    .reviews-cta p { margin: 0 0 18px; color: var(--muted); font-size: 16px; }

    /* Collection pages */
    .collection-hero .section-shell { max-width: 900px; }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 34px;
    }
    .status-badge.made-to-order { background: var(--olive); color: var(--paper); }
    .shop .section-shell > p { margin-top: 34px; }
    @media (max-width: 900px) {
      .product-grid { grid-template-columns: 1fr 1fr; }
      .review-list { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .artist-page, .reviews-page, .collection-hero { padding: 112px 0 48px; }
      .product-grid { grid-template-columns: 1fr; }
      .artist-portrait { max-width: 100%; }
    }

    .hero-scroll { height: 190vh; position: relative; }
    .hero {
      position: sticky;
      top: 0;
      height: 100vh;
      min-height: 650px;
      overflow: hidden;
      display: grid;
      place-items: center;
      perspective: 1400px;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 49.85%, var(--line) 50%, transparent 50.15%),
        linear-gradient(transparent 49.85%, var(--line) 50%, transparent 50.15%);
      background-size: 84px 84px;
      mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 70%, transparent);
      opacity: .25;
      transform: translateY(calc(var(--hero-p, 0) * -40px));
    }
    .hero-inner {
      position: relative;
      width: var(--page);
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
      align-items: center;
      gap: clamp(30px, 6vw, 90px);
      padding-top: 70px;
    }
    .hero-copy { position: relative; z-index: 8; }
    .hero-kicker {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--olive);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .hero-kicker::before {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--mustard);
    }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, .display {
      font-family: Didot, "Bodoni MT", "Times New Roman", serif;
      font-weight: 500;
      letter-spacing: -.045em;
      line-height: .95;
    }
    h1 { font-size: clamp(58px, 7.2vw, 106px); margin-bottom: 28px; }
    h1 em { color: var(--olive); font-style: italic; }
    .hero-tagline {
      font-family: Didot, "Bodoni MT", "Times New Roman", serif;
      font-size: clamp(30px, 3.4vw, 50px);
      line-height: .95;
      margin: 0 0 22px;
    }
    .hero-tagline em { color: var(--olive); font-style: italic; }
    .hero-lede {
      max-width: 560px;
      margin-bottom: 34px;
      color: var(--muted);
      font-size: clamp(17px, 1.6vw, 21px);
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border: 1px solid var(--ink);
      border-radius: 2px;
      background: transparent;
      color: var(--ink);
      text-decoration: none;
      font-weight: 780;
      cursor: pointer;
      transition: background .25s ease, color .25s ease, border-color .25s ease;
    }
    .button.primary { background: var(--olive); border-color: var(--olive); color: var(--paper); }
    .button:hover, .button:focus-visible { background: var(--ink); color: var(--paper); outline: none; }
    .button.primary:hover, .button.primary:focus-visible { background: var(--mustard); border-color: var(--mustard); color: #1e2119; }

    .art-stage {
      position: relative;
      height: min(72vh, 700px);
      min-height: 480px;
      transform-style: preserve-3d;
      isolation: isolate;
    }
    .art-shadow {
      position: absolute;
      left: 18%;
      right: 4%;
      bottom: 2%;
      height: 22%;
      border-radius: 50%;
      background: rgba(30, 33, 25, .23);
      filter: blur(30px);
      transform: rotateX(78deg) translateZ(-140px) scale(calc(1 - var(--scatter, 0) * .25));
      opacity: calc(.6 - var(--scatter, 0) * .25);
    }
    .art-piece {
      position: absolute;
      transform-style: preserve-3d;
      will-change: transform;
      transition: filter .3s ease;
      box-shadow: var(--shadow);
    }
    .piece-a {
      inset: 13% 8% 10% 20%;
      background: var(--olive);
      clip-path: polygon(8% 5%, 89% 0, 100% 84%, 18% 100%, 0 38%);
      transform: translate3d(calc(var(--scatter, 0) * 130px), calc(var(--scatter, 0) * -90px), calc(var(--scatter, 0) * 220px)) rotateY(calc(-8deg + var(--scatter, 0) * 34deg)) rotateZ(calc(3deg + var(--scatter, 0) * 8deg));
    }
    .piece-b {
      inset: 24% 20% 18% 8%;
      background: var(--mustard);
      clip-path: polygon(5% 13%, 91% 0, 100% 78%, 66% 100%, 0 78%);
      transform: translate3d(calc(var(--scatter, 0) * -170px), calc(var(--scatter, 0) * -25px), calc(var(--scatter, 0) * 110px)) rotateX(calc(8deg + var(--scatter, 0) * -26deg)) rotateY(calc(4deg + var(--scatter, 0) * -22deg)) rotateZ(-8deg);
    }
    .piece-c {
      left: 26%; top: 11%; width: 52%; height: 72%;
      border-radius: 48% 42% 47% 50%;
      border: 18px solid color-mix(in srgb, var(--paper) 88%, transparent);
      background:
        repeating-linear-gradient(90deg, transparent 0 10px, color-mix(in srgb, var(--paper) 78%, transparent) 10px 13px),
        var(--olive-soft);
      transform: translate3d(calc(var(--scatter, 0) * 34px), calc(var(--scatter, 0) * 140px), calc(80px + var(--scatter, 0) * 330px)) rotateY(calc(-12deg + var(--scatter, 0) * 48deg)) rotateZ(11deg);
      overflow: hidden;
    }
    .piece-c::after {
      content: "";
      position: absolute;
      left: 18%; right: 18%; bottom: -18%; height: 38%;
      background: repeating-linear-gradient(90deg, var(--paper) 0 4px, transparent 4px 13px);
      transform: rotate(-5deg);
    }
    .piece-d {
      left: 48%; top: 34%; width: 30%; aspect-ratio: 1;
      border: 14px solid var(--mustard-soft);
      border-radius: 50%;
      background: color-mix(in srgb, var(--paper) 82%, transparent);
      transform: translate3d(calc(var(--scatter, 0) * 210px), calc(var(--scatter, 0) * 90px), calc(150px + var(--scatter, 0) * 220px)) rotateX(calc(64deg - var(--scatter, 0) * 42deg)) rotateY(calc(var(--scatter, 0) * -35deg));
    }
    .piece-e {
      left: 20%; top: 21%; width: 24%; height: 29%;
      border-radius: 45% 55% 38% 62%;
      background: var(--paper);
      border: 1px solid var(--line);
      transform: translate3d(calc(var(--scatter, 0) * -130px), calc(var(--scatter, 0) * 120px), calc(200px + var(--scatter, 0) * 170px)) rotateY(calc(14deg + var(--scatter, 0) * -58deg)) rotateZ(-16deg);
    }
    .piece-e::before, .piece-e::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: var(--mustard);
    }
    .piece-e::before { width: 20%; aspect-ratio: 1; left: 20%; top: 24%; }
    .piece-e::after { width: 34%; aspect-ratio: 1; right: 16%; bottom: 14%; background: var(--olive-soft); }
    .art-label {
      position: absolute;
      right: 0;
      bottom: 2%;
      z-index: 8;
      max-width: 190px;
      padding: 14px 16px;
      background: var(--ink);
      color: var(--paper);
      font-size: 12px;
      letter-spacing: .03em;
      transform: translate3d(calc(var(--scatter, 0) * 70px), calc(var(--scatter, 0) * -40px), 260px) rotate(-3deg);
      box-shadow: var(--shadow);
    }
    .scroll-note {
      position: absolute;
      bottom: 28px;
      left: 50%;
      z-index: 10;
      transform: translateX(-50%);
      display: grid;
      place-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
      opacity: calc(1 - var(--hero-p, 0) * 2);
    }
    .scroll-note::after {
      content: "";
      width: 1px;
      height: 34px;
      background: var(--ink);
      animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse { 50% { transform: scaleY(.45); transform-origin: top; opacity: .35; } }

    /* ---- Ambient life: a hand-drawn SVG bloom + drifting sparkles ---- */
    .hero-flower {
      position: absolute;
      right: 0;
      bottom: 4%;
      width: clamp(190px, 24vw, 300px);
      height: auto;
      z-index: 6;
      transform-origin: 50% 96%;
      filter: drop-shadow(0 18px 22px rgba(30, 33, 25, .25));
    }
    .hero-sparkles {
      position: absolute;
      inset: 0;
      z-index: 5;
      pointer-events: none;
      overflow: hidden;
    }
    .spark {
      position: absolute;
      width: var(--s, 10px);
      height: var(--s, 10px);
      background: var(--c, var(--mustard));
      clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
      opacity: 0;
    }
    @media (prefers-reduced-motion: no-preference) {
      .hero-flower { animation: flowerIn 1.2s cubic-bezier(.3, 1.3, .4, 1) .2s both, flowerSway 8s ease-in-out 1.6s infinite; }
      @keyframes flowerIn { from { scale: .6; opacity: 0; } to { scale: 1; opacity: 1; } }
      @keyframes flowerSway { 0%, 100% { rotate: -2.5deg; translate: 0 0; } 50% { rotate: 2.5deg; translate: 0 -10px; } }
      .spark { animation: sparkTwinkle var(--t, 3.6s) ease-in-out var(--dl, 0s) infinite, sparkDrift 12s linear var(--dl, 0s) infinite; }
      @keyframes sparkTwinkle { 0%, 100% { opacity: 0; scale: .4; } 50% { opacity: var(--o, .8); scale: 1; } }
      @keyframes sparkDrift { to { translate: 14px -48px; } }
      .art-piece { animation: idleBob 7s ease-in-out infinite; }
      .piece-a { animation-delay: -1s; }
      .piece-b { animation-delay: -2.6s; }
      .piece-c { animation-delay: -4.2s; }
      .piece-d { animation-delay: -5.5s; }
      .piece-e { animation-delay: -3.4s; }
      @keyframes idleBob { 50% { translate: 0 -12px; } }
    }

    section { position: relative; }
    .section-shell { width: var(--page); margin-inline: auto; }
    .intro { padding: 150px 0 110px; }
    .intro-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: clamp(42px, 10vw, 140px);
      align-items: start;
    }
    .section-index {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--olive);
      font-size: 13px;
      font-weight: 850;
    }
    .section-index::before { content: ""; width: 34px; height: 2px; background: var(--mustard); }
    h2 { font-size: clamp(52px, 7vw, 92px); margin-bottom: 30px; }
    .intro-copy p { color: var(--muted); font-size: 18px; max-width: 630px; }
    .proof-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 48px;
      background: var(--line);
      border-block: 1px solid var(--line);
    }
    .proof-row div { padding: 23px 18px; background: var(--paper); }
    .proof-row strong { display: block; font-family: Didot, serif; font-size: 28px; color: var(--olive); }
    .proof-row span { font-size: 12px; color: var(--muted); }

    /* Living collage for "01 · The practice" — real studio photos, gently drifting. */
    .practice-collage { position: relative; height: 560px; margin-top: 40px; }
    .pcard {
      position: absolute;
      margin: 0;
      width: 64%;
      background: var(--paper);
      padding: 10px 10px 36px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }
    .pcard img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
    .pc-a { top: 0; left: 0; z-index: 1; transform: rotate(-4deg); animation: drift-a 12s ease-in-out infinite alternate; }
    .pc-b { top: 110px; right: 0; width: 58%; z-index: 2; transform: rotate(3deg); animation: drift-b 15s ease-in-out infinite alternate; }
    .pc-c { bottom: 0; left: 10%; width: 60%; z-index: 3; transform: rotate(-2deg); animation: drift-c 13s ease-in-out infinite alternate; }
    @keyframes drift-a { to { transform: rotate(-2.5deg) translateY(-14px); } }
    @keyframes drift-b { to { transform: rotate(4.5deg) translateY(12px); } }
    @keyframes drift-c { to { transform: rotate(-3.5deg) translateY(-10px) translateX(10px); } }
    .pcard-note {
      position: absolute;
      bottom: 6px; right: 4%;
      z-index: 4;
      background: var(--olive);
      color: var(--paper);
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 10px 16px;
      transform: rotate(2deg);
    }

    .collections {
      padding: 70px 0 150px;
      perspective: 1300px;
    }
    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 58px;
    }
    .section-heading h2 { max-width: 760px; margin-bottom: 0; }
    .section-heading p { max-width: 380px; margin: 0 0 8px; color: var(--muted); }
    .collection-list { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
    .collection-card {
      --tx: 0deg;
      --ty: 0deg;
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "visual visual"
        "body link";
      gap: 0 18px;
      padding: 0 0 24px;
      background: var(--paper-2);
      border: 1px solid var(--line);
      transform-style: preserve-3d;
      transform: perspective(1100px) rotateX(var(--tx)) rotateY(var(--ty));
      transition: transform .18s ease, background .35s ease, color .35s ease;
      will-change: transform;
    }
    .collection-card:hover { background: var(--olive); color: var(--paper); }
    .collection-card:hover p, .collection-card:hover .card-count { color: color-mix(in srgb, var(--paper) 76%, transparent); }
    .collection-card[data-collection] { cursor: pointer; }
    .collection-card[data-collection]:focus-visible { outline: 2px solid var(--mustard); outline-offset: 3px; }
    .collection-visual {
      grid-area: visual;
      position: relative;
      width: 100%;
      height: 148px;
      overflow: hidden;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
    }
    .collection-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .collection-visual::before, .collection-visual::after { content: ""; position: absolute; }
    .v-resin::before { inset: 20px; border-radius: 48% 52% 42% 58%; background: var(--mustard); }
    .v-resin::after { width: 52px; height: 52px; right: 26px; top: 16px; border: 8px solid var(--olive); border-radius: 50%; }
    .v-macrame::before { inset: 14px 26px; background: repeating-linear-gradient(90deg, var(--olive) 0 4px, transparent 4px 12px); }
    .v-macrame::after { left: 26px; right: 26px; top: 14px; height: 7px; background: var(--mustard); transform: rotate(-5deg); }
    .v-upcycle::before { width: 54px; height: 78px; left: calc(50% - 78px); top: 34px; border: 8px solid var(--olive); border-radius: 9px 9px 3px 3px; }
    .v-upcycle::after { width: 48px; height: 48px; right: calc(50% - 72px); bottom: 24px; background: var(--mustard); clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%); }
    .v-wedding::before { width: 76px; height: 76px; left: calc(50% - 38px); top: 36px; border: 10px solid var(--mustard); border-radius: 50%; }
    .v-wedding::after { width: 44px; height: 44px; left: calc(50% - 22px); top: 52px; border: 4px solid var(--olive); border-radius: 50%; }
    .collection-body { grid-area: body; padding: 22px 26px 0; }
    .card-count { font-size: 11px; font-weight: 850; color: var(--muted); }
    .collection-card h3 { margin: 4px 0 8px; font-family: Didot, serif; font-size: clamp(26px, 2.4vw, 34px); font-weight: 500; }
    .collection-card p { margin: 0; color: var(--muted); font-size: 15px; }
    .card-link {
      grid-area: link;
      align-self: end;
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      margin-right: 26px;
      border: 1px solid currentColor;
      border-radius: 50%;
      text-decoration: none;
      font-size: 22px;
    }

    .shop { padding: 10px 0 150px; }
    .shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .product-card { background: var(--paper-2); border: 1px solid var(--line); }
    .product-art { position: relative; height: 310px; overflow: hidden; background: var(--olive); }
    .product-art::before, .product-art::after { content: ""; position: absolute; }
    .product-art.flower::before { width: 190px; height: 190px; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(12deg); border-radius: 48% 52% 45% 55%; background: color-mix(in srgb, var(--paper) 82%, transparent); box-shadow: inset 0 0 0 20px var(--mustard); }
    .product-art.flower::after { width: 56px; height: 56px; left: calc(50% - 28px); top: calc(50% - 28px); border-radius: 50%; background: var(--olive-soft); box-shadow: -72px 12px 0 var(--mustard-soft), 70px -14px 0 var(--mustard); }
    .product-art.clock { background: var(--mustard); }
    .product-art.clock::before { width: 210px; height: 210px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 16px solid var(--olive); border-radius: 50%; background: var(--paper-2); }
    .product-art.clock::after { width: 3px; height: 78px; left: 50%; top: 31%; background: var(--olive); transform-origin: bottom; transform: rotate(35deg); box-shadow: 0 55px 0 0 var(--olive); }
    .product-art.lantern::before { width: 120px; height: 180px; left: 50%; top: 54%; transform: translate(-50%,-50%); border: 14px solid var(--mustard); border-radius: 18px 18px 4px 4px; }
    .product-art.lantern::after { width: 110px; height: 110px; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(18deg); background: var(--paper-2); clip-path: polygon(50% 0, 61% 34%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 34%); }
    .product-info { padding: 24px; }
    .product-info h3 { margin: 8px 0 10px; font-family: Didot, serif; font-size: 30px; font-weight: 500; }
    .product-info p { min-height: 72px; margin-bottom: 20px; color: var(--muted); }
    .product-meta { display: flex; justify-content: space-between; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; }
    .product-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 18px; }
    .product-actions .button { min-height: 46px; padding-inline: 15px; }
    .product-actions .view-link { display: grid; place-items: center; width: 48px; border: 1px solid var(--ink); text-decoration: none; }

    .process {
      padding: 130px 0;
      overflow: hidden;
      background: var(--olive);
      color: var(--paper);
      perspective: 1500px;
    }
    .process::before {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      right: -140px;
      top: 60px;
      border: 1px solid color-mix(in srgb, var(--paper) 25%, transparent);
      border-radius: 50%;
    }
    .process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
    .process h2 { color: var(--paper); }
    .process-steps { counter-reset: step; }
    .step {
      counter-increment: step;
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 20px;
      padding: 26px 0;
      border-bottom: 1px solid color-mix(in srgb, var(--paper) 24%, transparent);
    }
    .step:first-child { border-top: 1px solid color-mix(in srgb, var(--paper) 24%, transparent); }
    .step::before { content: "0" counter(step); color: var(--mustard); font-weight: 850; }
    .step h3 { margin: 0 0 7px; font-family: Didot, serif; font-size: 26px; font-weight: 500; }
    .step p { margin: 0; color: color-mix(in srgb, var(--paper) 74%, transparent); }

    .instagram { padding: 150px 0; }
    .instagram .section-heading { align-items: center; }
    .shuffle-button {
      min-height: 46px;
      padding: 0 17px;
      border: 1px solid var(--ink);
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      font-weight: 800;
    }
    .shuffle-button:hover, .shuffle-button:focus-visible { background: var(--mustard); color: #1e2119; outline: none; }
    .ig-strip-viewport { width: 100vw; margin-left: calc(50% - 50vw); position: relative; }
    .ig-strip {
      display: flex;
      gap: 22px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 14px max(24px, calc((100vw - 1440px) / 2 + 24px)) 30px;
      scrollbar-width: thin;
      scrollbar-color: var(--mustard) transparent;
    }
    .ig-strip:focus-visible { outline: 2px solid var(--mustard); outline-offset: -2px; }
    .ig-media { aspect-ratio: 9 / 16; overflow: hidden; background: #14120c; }
    .ig-media img, .ig-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ig-card {
      position: relative;
      flex: 0 0 clamp(300px, 30vw, 400px);
      scroll-snap-align: start;
      min-width: 0;
      border: 1px solid var(--line);
      background: var(--paper-2);
      box-shadow: 0 15px 40px rgba(30, 33, 25, .08);
      overflow: hidden;
      transition: transform .45s var(--ease), box-shadow .45s var(--ease);
    }
    .ig-card:hover { transform: translateY(-6px) rotate(.35deg); box-shadow: var(--shadow); }
    .embed-card {
      position: relative;
      min-height: 430px;
      background:
        linear-gradient(135deg, color-mix(in srgb, var(--mustard) 22%, var(--paper-2)), var(--paper-2));
    }
    .embed-card::before {
      content: "Loading studio piece…";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 30px;
      color: var(--muted);
      font-family: Didot, serif;
      font-size: 24px;
      text-align: center;
    }
    .embed-card .instagram-media {
      position: relative;
      z-index: 1;
      margin: 0 !important;
      min-width: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    .ig-strip-controls {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      padding: 0 max(24px, calc((100vw - 1440px) / 2 + 24px)) 6px;
    }
    .ig-arrow {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      font-size: 20px;
      cursor: pointer;
      transition: background .3s var(--ease), transform .3s var(--ease);
    }
    .ig-arrow:hover { background: var(--mustard); transform: translateY(-2px); }
    .ig-meta {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      min-height: 98px;
      padding: 18px 20px;
      background: var(--paper);
    }
    .ig-meta strong { display: block; font-family: Didot, serif; font-size: 22px; line-height: 1.05; }
    .ig-meta span { color: var(--muted); font-size: 12px; }
    .like-link {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      text-decoration: none;
      font-size: 19px;
    }
    .like-link:hover, .like-link:focus-visible { color: #b63d32; border-color: currentColor; outline: none; }
    .ig-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }
    .ig-footer p { margin: 0; color: var(--muted); }

    /* "04 · The studio" — a walk-through 3D studio. Scroll drives the camera. */
    .studio3d-scroll { position: relative; height: 520vh; background: #191712; }
    .studio3d-stage {
      position: sticky; top: 0; height: 100vh; height: 100svh;
      overflow: hidden; perspective: 1050px;
      background: radial-gradient(120% 100% at 50% 0%, #2e2b20 0%, #1c1a14 55%, #12110c 100%);
    }
    .studio3d-world { position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform; }
    .st-wall {
      position: absolute; inset: 0; z-index: 1;
      background:
        radial-gradient(46% 34% at 50% 40%, rgba(210,161,30,.16), transparent 70%),
        radial-gradient(24% 20% at 22% 34%, rgba(210,161,30,.08), transparent 70%),
        radial-gradient(24% 20% at 78% 34%, rgba(210,161,30,.08), transparent 70%),
        linear-gradient(#2b2820, #211e16 62%, #171510);
    }
    .studio3d-world { z-index: 2; }
    .st-desk {
      position: absolute; left: -10%; bottom: -16%; z-index: 3;
      width: 120%; height: 34%;
      transform: rotateX(57deg);
      transform-origin: 50% 100%;
      background:
        radial-gradient(70% 130% at 32% 0%, rgba(210,161,30,.22), transparent 62%),
        linear-gradient(180deg, #4c3f29 0%, #342b1b 52%, #201a10 100%);
      border-top: 2px solid rgba(210,161,30,.38);
      filter: blur(1.5px);
      pointer-events: none;
    }
    .st-prop { position: absolute; filter: blur(2px); opacity: .9; }
    .st-tape {
      left: 18%; top: 30%; width: 120px; height: 120px; border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, transparent 34%, rgba(210,161,30,.85) 36%, rgba(150,114,20,.9) 62%, rgba(90,68,14,.95) 64%);
      transform: rotate(-14deg);
    }
    .st-pencil {
      left: 58%; top: 44%; width: 300px; height: 14px; border-radius: 7px;
      background: linear-gradient(180deg, #d2a11e 0%, #8a6a12 55%, #5e4a0e 100%);
      transform: rotate(9deg);
    }
    .st-spool {
      left: 76%; top: 22%; width: 92px; height: 110px; border-radius: 12px;
      background:
        linear-gradient(180deg, rgba(244,240,228,.25), transparent 30%),
        repeating-linear-gradient(180deg, #71805a 0 7px, #5b6a46 7px 14px);
      transform: rotate(6deg);
    }
    .st-frame {
      position: absolute; left: 50%; top: 46%;
      width: min(300px, 64vw);
      transform: translate(-50%, -50%) translate3d(var(--fx), var(--fy), var(--fz));
      margin: 0; cursor: pointer;
    }
    .st-frame:focus-visible { outline: 2px solid var(--mustard); outline-offset: 6px; }
    .st-mat {
      background: #f2ecdc;
      padding: 12px 12px 0;
      border: 12px solid transparent;
      border-image: linear-gradient(135deg, #4a3a22, #2c2314 60%, #4a3a22) 1;
      box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 4px 18px rgba(0,0,0,.5);
      transition: transform .45s var(--ease);
    }
    .st-frame:hover .st-mat, .st-frame:focus-visible .st-mat { transform: scale(1.035); }
    .st-mat img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #e4dcc6; }
    .st-plate {
      margin: 10px -12px 0;
      background: linear-gradient(180deg, #dcb13c, #b8891a);
      color: #221c0d;
      font-size: 10.5px; font-weight: 800;
      letter-spacing: .14em; text-transform: uppercase;
      text-align: center;
      padding: 9px 8px;
    }
    .st-plate small { display: block; font-weight: 600; letter-spacing: .08em; opacity: .75; margin-top: 3px; font-size: 10px; }
    .st-vignette {
      position: absolute; inset: 0; z-index: 4; pointer-events: none;
      background: radial-gradient(92% 92% at 50% 44%, transparent 52%, rgba(0,0,0,.6) 100%);
    }
    .st-ui { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
    .st-head {
      position: absolute; top: max(88px, 11vh); left: 50%;
      transform: translateX(-50%);
      width: var(--page); text-align: center;
      transition: opacity .5s ease, transform .5s ease;
    }
    .st-head .section-index { justify-content: center; color: #b9b4a4; }
    .st-head .section-index::before { background: var(--mustard); }
    .st-head h2 {
      font-family: Didot, "Bodoni MT", "Times New Roman", serif;
      font-weight: 500; color: #f4efdf;
      font-size: clamp(42px, 6vw, 78px);
      line-height: 1.02; margin: 16px 0 12px;
    }
    .st-hint { color: #c9c4b2; font-size: 14px; letter-spacing: .06em; }
    .st-hint .scroll-cue {
      display: inline-block; margin-left: 8px;
      animation: cue-bob 1.8s ease-in-out infinite;
      color: var(--mustard);
    }
    @keyframes cue-bob { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
    .st-ui.walk .st-head { opacity: 0; transform: translate(-50%, -26px); }
    .st-progress {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      width: min(420px, 68vw);
      opacity: 0; transition: opacity .5s ease;
    }
    .st-ui.walk .st-progress { opacity: 1; }
    .st-track { height: 2px; background: rgba(244,239,223,.2); border-radius: 2px; overflow: hidden; }
    .st-fill { display: block; height: 100%; width: 0; background: var(--mustard); }
    .st-count { margin-top: 10px; text-align: center; color: #c9c4b2; font-size: 12px; letter-spacing: .24em; }
    .st-count b { color: #f4efdf; font-weight: 800; }
    .st-end {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%) scale(.94);
      width: min(420px, 86vw);
      background: var(--paper); color: var(--ink);
      border: 1px solid var(--mustard);
      box-shadow: var(--shadow);
      padding: 34px 30px; text-align: center;
      opacity: 0; pointer-events: none;
      transition: opacity .6s ease, transform .6s var(--ease);
    }
    .st-ui.done .st-end { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
    .st-end-kicker { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
    .st-end-line { font-family: Didot, serif; font-size: 26px; line-height: 1.25; margin: 0 0 20px; }
    @media (prefers-reduced-motion: reduce) {
      .studio3d-scroll { height: auto; }
      .studio3d-stage { position: relative; height: auto; perspective: none; padding: 90px 0; }
      .studio3d-world { position: static; transform: none !important; }
      .st-wall, .st-desk, .st-vignette, .st-progress, .st-hint { display: none; }
      .st-frame { position: relative; left: auto; top: auto; transform: none; margin: 26px auto; }
      .st-head { position: static; transform: none; margin-bottom: 10px; }
      .st-ui { position: static; }
      .st-end { position: static; transform: none; opacity: 1; margin: 30px auto 0; }
    }
    @media (max-width: 700px) {
      .st-frame { width: min(240px, 62vw); }
      .st-head h2 { font-size: clamp(38px, 11vw, 54px); }
    }

    /* "06 · The artist" — Leena as a sticker on the page, words floating around her. */
    .artist { padding: 130px 0 110px; overflow: hidden; }
    
    .artist-top h2 {
      font-family: Didot, "Bodoni MT", "Times New Roman", serif;
      font-weight: 500;
      font-size: clamp(36px, 4.4vw, 60px);
      line-height: 1.02;
      margin: 14px 0 6px;
    }
    .artist-top .section-index { justify-content: center; }
    
    
    
    
    
    .chip::before {
      content: ""; position: absolute;
      top: -11px; left: 50%;
      width: 56px; height: 19px;
      transform: translateX(-50%) rotate(-4deg);
      background: rgba(210, 161, 30, .55);
      border-left: 1px dashed rgba(30,33,25,.25);
      border-right: 1px dashed rgba(30,33,25,.25);
    }
    
    
    
    
    
    @keyframes chip-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
    
    .artist-caption strong { font-family: Didot, serif; font-size: 20px; font-weight: 500; color: var(--ink); letter-spacing: 0; display: block; margin-bottom: 4px; }
    
    .artist-copy .lede { font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--ink); }
    .artist-copy p { color: var(--muted); line-height: 1.7; }
    .artist-copy p + p { margin-top: 14px; }
    
    .artist-facts li { font-size: 13px; letter-spacing: .06em; color: var(--muted); }
    .artist-facts li strong { color: var(--olive); font-family: Didot, serif; font-size: 17px; letter-spacing: 0; margin-right: 6px; }
    @media (max-width: 820px) {
      .artist { padding: 90px 0 70px; }
      
      
      
      
      
      .chip::before { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      
    }

    .commission { padding: 80px 0 150px; }
    .commission-panel {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      min-height: 690px;
      background: var(--mustard);
      color: #1e2119;
      box-shadow: var(--shadow);
    }
    .commission-copy {
      position: relative;
      padding: clamp(44px, 7vw, 90px);
      overflow: hidden;
    }
    .commission-copy::after {
      content: "";
      position: absolute;
      left: -90px;
      bottom: -120px;
      width: 360px;
      height: 360px;
      border: 40px solid rgba(57, 68, 46, .22);
      border-radius: 50%;
    }
    .commission-copy h2 { font-size: clamp(58px, 7vw, 88px); }
    .commission-copy p { position: relative; z-index: 2; max-width: 450px; font-size: 18px; }
    .contact-links { position: relative; z-index: 2; display: grid; gap: 12px; margin-top: 40px; }
    .contact-links a { width: fit-content; font-weight: 850; text-underline-offset: 5px; }
    .commission-form {
      align-self: stretch;
      display: grid;
      align-content: center;
      gap: 20px;
      padding: clamp(36px, 6vw, 80px);
      background: var(--paper);
      color: var(--ink);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    label { display: grid; gap: 8px; font-size: 12px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
    input, select, textarea {
      width: 100%;
      padding: 14px 0;
      border: 0;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
      color: var(--ink);
      outline: none;
      text-transform: none;
    }
    textarea { min-height: 120px; resize: vertical; }
    input:focus, select:focus, textarea:focus { border-color: var(--mustard); box-shadow: 0 1px 0 var(--mustard); }
    .form-note { min-height: 24px; margin: 0; color: var(--muted); font-size: 13px; }
    .form-submit { justify-self: start; min-width: 190px; }

    .site-footer {
      width: var(--page);
      margin-inline: auto;
      padding: 34px 0 max(38px, env(safe-area-inset-bottom));
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 13px;
    }
    .site-footer a { text-underline-offset: 4px; }

    .reveal {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1) rotateX(0);
      transform-origin: 50% 0;
    }
    .reveal.revealing { animation: cinematicReveal 1.15s var(--ease) both; }
    @keyframes cinematicReveal {
      from { opacity: .18; transform: translate3d(0, 70px, -280px) scale(.78) rotateX(9deg); }
      to { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotateX(0); }
    }
    .collection-card.revealing:nth-child(2) { animation-delay: .08s; }
    .collection-card.revealing:nth-child(3) { animation-delay: .16s; }
    .collection-card.revealing:nth-child(4) { animation-delay: .24s; }

    /* ---- Shop: dynamic product cards ---- */
    #collection-products .product-visual { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--olive); }
    #collection-products .product-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .status-badge {
      position: absolute; top: 12px; left: 12px; z-index: 2;
      padding: 6px 12px; border-radius: 999px;
      font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
      background: var(--mustard); color: #1d2117;
    }
    /* Badges anchor to their card visual on every page, not just the homepage shop. */
    .product-visual { position: relative; }
    .status-badge.available { background: var(--olive); color: var(--paper); }
    .status-badge.sold { background: var(--ink); color: var(--paper); }
    .shop-loading { grid-column: 1 / -1; color: var(--muted); font-size: 17px; }
    .product-price { font-family: Didot, "Bodoni MT", "Times New Roman", serif; font-size: 28px; }

    /* ---- Quick-view modal ---- */
    .qv-backdrop {
      position: fixed; inset: 0; z-index: 100;
      display: grid; place-items: center; padding: 20px;
      background: rgba(20, 22, 16, .62); backdrop-filter: blur(6px);
    }
    .qv-backdrop[hidden] { display: none; }
    .qv-modal {
      width: min(940px, 100%); max-height: 90vh; overflow: auto;
      background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow);
    }
    .qv-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .qv-media { position: relative; background: var(--olive); min-height: 340px; }
    .qv-media img, .qv-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .qv-media video { aspect-ratio: 4 / 5; background: #000; }
    .qv-body { padding: clamp(24px, 4vw, 44px); }
    .qv-body h3 { margin: 10px 0 12px; font-family: Didot, serif; font-size: clamp(28px, 3.4vw, 40px); font-weight: 500; }
    .qv-body p { color: var(--muted); }
    .qv-specs { display: grid; gap: 10px; margin: 20px 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; }
    .qv-specs dt { font-weight: 800; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--olive); }
    .qv-specs dd { margin: 2px 0 0; color: var(--muted); }
    .qv-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
    .qv-close {
      position: sticky; top: 0; float: right; margin: 12px;
      width: 42px; height: 42px; border-radius: 50%;
      border: 1px solid var(--line); background: var(--paper);
      font-size: 20px; line-height: 1; cursor: pointer;
    }
    .qv-notice, .qv-success {
      margin-top: 18px; padding: 16px 18px; border: 1px solid var(--line);
      background: var(--paper-2); font-size: 14px; color: var(--muted);
    }
    .qv-success { border-color: var(--olive); }
    .qv-success strong { color: var(--olive); }

    /* ---- FAQ ---- */
    .faq { padding: 120px 0 40px; }
    .faq-list { max-width: 860px; margin-top: 44px; }
    .faq-item { border-top: 1px solid var(--line); }
    .faq-item:last-child { border-bottom: 1px solid var(--line); }
    .faq-item summary {
      cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
      padding: 24px 0;
      font-family: Didot, "Bodoni MT", "Times New Roman", serif;
      font-size: clamp(21px, 2.6vw, 30px); font-weight: 500;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary .plus { color: var(--mustard); font-size: 1.3em; line-height: 1; flex: none; }
    .faq-item .faq-a { padding: 0 0 28px; color: var(--muted); max-width: 700px; font-size: 17px; }

    /* Three-photo strip under the shop heading */
    .shop-photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 6px 0 52px; }
    .sps-card { margin: 0; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); box-shadow: 0 15px 40px rgba(30, 33, 25, .08); }
    .sps-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .8s var(--ease); }
    .sps-card:hover img { transform: scale(1.05); }
    .sps-card figcaption { padding: 12px 16px; font-family: Didot, "Bodoni MT", "Times New Roman", serif; font-size: 19px; }
    /* Store collections (compact two-column grid) */
    .collections-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .collection-tile-btn { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 0; cursor: pointer; font: inherit; color: inherit; text-decoration: none; }
    .collection-tile-visual { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 14px; background: var(--olive); }
    .collection-tile-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
    .collection-tile-btn:hover .collection-tile-visual img,
    .collection-tile-btn:focus-visible .collection-tile-visual img { transform: scale(1.04); }
    .collection-tile-info { display: block; padding: 16px 4px 0; }
    .collection-tile-name { display: block; font-family: var(--serif); font-size: 26px; margin: 6px 0 4px; }
    .collection-tile-tag { display: block; opacity: .75; font-size: 15px; margin-bottom: 8px; }
    .collection-view h3 { font-family: var(--serif); font-size: 34px; margin: 18px 0 6px; }
    .collection-tagline { opacity: .75; margin: 0 0 22px; }
    #collection-back { margin-bottom: 6px; }
    /* Contact reveal */
    .contact-details { margin-top: 12px; }
    .contact-details p { margin: 6px 0; }
    .contact-details a { color: inherit; }
    /* Quick-view scrollable media gallery */
    .qv-gallery-wrap { position: relative; height: 100%; }
    .qv-gallery {
      position: relative;
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      aspect-ratio: 4 / 5;
      max-height: 76vh;
      background: #14160f;
      scrollbar-width: none;
    }
    .qv-gallery::-webkit-scrollbar { display: none; }
    .qv-slide {
      position: relative;
      flex: 0 0 100%;
      scroll-snap-align: center;
      display: grid;
      place-items: center;
      overflow: hidden;
      min-width: 0;
    }
    .qv-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .qv-slide video { width: 100%; height: 100%; object-fit: contain; background: #000; }
    .qv-slide-embed { padding: 16px; }
    .qv-slide-embed .embed-card { width: 100%; max-width: 360px; min-height: 280px; }
    .qv-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: rgba(244, 240, 228, .94);
      color: var(--ink);
      font-size: 18px;
      cursor: pointer;
      z-index: 2;
    }
    .qv-prev { left: 10px; }
    .qv-next { right: 10px; }
    .qv-dots {
      position: absolute;
      left: 0; right: 0; bottom: 12px;
      display: flex; gap: 8px; justify-content: center;
      z-index: 2;
    }
    .qv-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      border: 1px solid var(--paper);
      background: rgba(244, 240, 228, .45);
      padding: 0;
      cursor: pointer;
    }
    .qv-dot.active { background: var(--mustard); border-color: var(--mustard); }

    @media (max-width: 900px) {
      :root { --page: min(100% - 30px, 720px); }
      .topbar { justify-content: center; padding-inline: 8px; }
      .hero-scroll { height: auto; }
      .hero { position: relative; height: auto; min-height: 0; padding: 130px 0 84px; }
      .hero-inner { grid-template-columns: 1fr; gap: 30px; padding: 0; }
      .hero-copy { text-align: left; }
      .hero-kicker { margin-bottom: 18px; }
      h1 { max-width: 680px; }
      .art-stage { height: 520px; min-height: 0; width: min(100%, 600px); margin-inline: auto; }
      .scroll-note { display: none; }
      .intro-grid, .process-grid, .commission-panel { grid-template-columns: 1fr; }
      .intro { padding: 100px 0 70px; }
      .section-heading { display: grid; }
      .collection-list { gap: 18px; }
      .collection-visual { height: 120px; }
      .shop-grid { grid-template-columns: 1fr 1fr; }
      .product-card:last-child { grid-column: 1 / -1; }
      .ig-card { flex: 0 0 min(74vw, 380px); }
      .process-grid { gap: 34px; }
      .commission-panel { min-height: 0; }
      .qv-grid { grid-template-columns: 1fr; }
      .qv-media { min-height: 260px; }
      .practice-collage { height: 460px; max-width: 540px; }
    }

    @media (max-width: 620px) {
      :root { --page: calc(100% - 26px); }
      .mini-cta { padding-inline: 13px; }
      h1 { font-size: clamp(50px, 16vw, 74px); }
      h2 { font-size: clamp(44px, 13vw, 66px); }
      .hero { padding-top: 116px; }
      .hero-lede { font-size: 16px; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .button { width: 100%; }
      .art-stage { height: 390px; }
      .hero-flower { width: min(52vw, 220px); right: -4px; bottom: 0; }
      .piece-c { border-width: 10px; }
      .piece-d { border-width: 9px; }
      .intro-grid { gap: 28px; }
      .proof-row { grid-template-columns: 1fr; }
      .collection-list { grid-template-columns: 1fr; }
      .card-link { width: 46px; height: 46px; }
      .collections, .instagram, .shop { padding-block: 90px; }
      .shop-grid { grid-template-columns: 1fr; }
      .product-card:last-child { grid-column: auto; }
      .process { padding-block: 90px; }
      .ig-card { flex: 0 0 82vw; }
      .practice-collage { height: 400px; margin-top: 28px; }
      .pc-b { top: 80px; }
      .shop-photo-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 40px;
        padding-bottom: 6px;
      }
      .sps-card { flex: 0 0 74vw; scroll-snap-align: start; }
      .sps-card:nth-child(2) { transform: none; }
      .ig-footer { display: grid; }
      .ig-footer .button { width: 100%; }
      .commission { padding: 20px 0 90px; }
      .commission-copy, .commission-form { padding: 34px 24px; }
      .form-row { grid-template-columns: 1fr; }
      .site-footer { align-items: flex-start; flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
      .hero-scroll { height: auto; }
      .hero { position: relative; height: auto; min-height: 760px; }
      .art-piece, .art-shadow, .art-label, .hero::before { transform: none !important; }
      .reveal { opacity: 1; transform: none; }
    }
    @media (max-width: 760px) {
      .collections-grid { grid-template-columns: 1fr; }
    }
  
/* ============ ARTIST — sticker dipped on the page ============ */
.artist{ position:relative; padding:60px 0 110px; overflow:hidden; }
.artist-giant{
  position:absolute; top:6px; left:50%; transform:translateX(-50%);
  font-family:Didot,"Bodoni MT",Bodoni,"Playfair Display",Georgia,serif;
  font-size:clamp(120px,22vw,300px); line-height:1; white-space:nowrap;
  color:transparent; -webkit-text-stroke:1.5px rgba(107,122,58,.28);
  pointer-events:none; user-select:none; z-index:0;
}
.artist-grid{
  position:relative; z-index:1; max-width:1120px; margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:minmax(0,5fr) minmax(0,6fr); gap:48px; align-items:center;
}
.sticker-zone{ position:relative; margin-top:0; }
.sticker{
  position:relative; rotate:-5deg; transform-origin:50% 20%;
  opacity:0; translate:0 26px; scale:.94;
  transition:opacity .7s ease, translate .7s cubic-bezier(.2,.7,.2,1), scale .7s cubic-bezier(.2,.7,.2,1);
}
.artist.in .sticker{ opacity:1; translate:0 0; scale:1; }
.sticker img{
  display:block; width:min(340px,72vw); height:auto; margin:0 auto;
  filter:
    drop-shadow(3px 0 0 #fff) drop-shadow(-3px 0 0 #fff)
    drop-shadow(0 3px 0 #fff) drop-shadow(0 -3px 0 #fff)
    drop-shadow(2px 2px 0 #fff) drop-shadow(-2px -2px 0 #fff)
    drop-shadow(-2px 2px 0 #fff) drop-shadow(2px -2px 0 #fff)
    drop-shadow(0 22px 28px rgba(70,58,25,.28));
}
.sticker-imgwrap{ position:relative; width:fit-content; margin:0 auto; }
.tape{
  position:absolute; top:-12px; width:92px; height:28px;
  background:repeating-linear-gradient(45deg,rgba(217,164,25,.85) 0 8px,rgba(217,164,25,.65) 8px 16px);
  box-shadow:0 2px 5px rgba(70,58,25,.25); opacity:.92;
}
.tape.t1{ left:-36px; top:36%; transform:rotate(66deg); }
.tape.t2{ right:-36px; top:36%; transform:rotate(-66deg);
  background:repeating-linear-gradient(45deg,rgba(107,122,58,.85) 0 8px,rgba(107,122,58,.65) 8px 16px); }
.badge{
  position:absolute; right:2%; bottom:16%; width:118px; height:118px;
  transform:rotate(12deg); display:grid; place-items:center; text-align:center;
  filter:drop-shadow(0 8px 14px rgba(70,58,25,.3));
  opacity:0; scale:.6; transition:opacity .5s ease .45s, scale .5s cubic-bezier(.34,1.56,.64,1) .45s;
}
.artist.in .badge{ opacity:1; scale:1; }
.badge svg{ position:absolute; inset:0; width:100%; height:100%; }
.badge span{
  position:relative; font-size:12px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  color:#fff; line-height:1.35; padding:0 18px;
}
.doodle-note{
  position:static; width:fit-content; margin:16px auto 0; transform:rotate(-4deg);
  font-family:"Segoe Script","Bradley Hand","Comic Sans MS",cursive;
  font-size:20px; color:#4c5727;
  background:rgba(255,253,246,.9); padding:6px 16px; border-radius:3px;
  box-shadow:0 3px 8px rgba(70,58,25,.22);
  opacity:0; transition:opacity .5s ease .6s; white-space:nowrap;
}
.artist.in .doodle-note{ opacity:1; }
.doodle{ position:absolute; color:#b9860f; opacity:.8; pointer-events:none; }
.doodle.d1{ top:6%; right:6%; animation:spin 14s linear infinite; }
.doodle.d2{ bottom:22%; left:-30px; animation:bob 5s ease-in-out infinite; }
@keyframes spin{ to{ transform:rotate(360deg);} }
@keyframes bob{ 0%,100%{ translate:0 0;} 50%{ translate:0 -10px;} }
.eyebrow{
  font-size:12px; letter-spacing:.22em; text-transform:uppercase; color:#4c5727;
  margin-bottom:14px; font-weight:700;
}
.artist-copy h2{
  font-family:Didot,"Bodoni MT",Bodoni,"Playfair Display",Georgia,serif;
  font-weight:500; font-size:clamp(34px,4.6vw,54px); line-height:1.08; margin-bottom:20px;
}
.artist-copy p.body{ font-size:17px; line-height:1.75; color:#3d372e; margin-bottom:14px; max-width:46ch; }
.facts{
  list-style:none; display:flex; flex-wrap:wrap; gap:10px; margin:26px 0 8px; padding:0;
}
.facts li{
  font-size:13px; font-weight:600; letter-spacing:.04em; color:#4c5727;
  border:1.5px solid rgba(107,122,58,.45); border-radius:999px; padding:8px 16px; background:rgba(255,255,255,.5);
}
.artist-copy .cta{
  display:inline-block; margin-top:26px; text-decoration:none; color:#fff; font-weight:700; font-size:15px;
  background:#2b2620; padding:15px 30px; border-radius:999px; letter-spacing:.02em;
  transition:transform .25s ease, background .25s ease;
}
.artist-copy .cta:hover{ transform:translateY(-2px); background:#1d1913; }
@media (prefers-reduced-motion: no-preference){
  .artist.in .sticker{ animation:stickerFloat 7s ease-in-out 1.2s infinite; }
  @keyframes stickerFloat{ 0%,100%{ rotate:-5deg; } 50%{ rotate:-3.4deg; } }
}
@media (max-width:860px){
  .artist-grid{ grid-template-columns:1fr; gap:20px; }
  .sticker-zone{ margin-top:0; }
  .sticker img{ width:min(240px,60vw); }
  .doodle-note{ font-size:18px; }
  .badge{ width:96px; height:96px; }
}

/* ============ Flower-bud preloader (branded loading moment) ============ */
#loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  transition: transform .8s cubic-bezier(.76, 0, .24, 1);
}
body.loaded #loader { transform: translateY(-101%); }
.loader-bud { width: 76px; height: 76px; transform-origin: 50% 80%; }
.loader-word { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin: 0; }
.loader-word strong { color: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  .loader-bud { animation: budBloom 1.6s ease-in-out infinite; }
  @keyframes budBloom { 0%, 100% { transform: scale(.84) rotate(-4deg); } 50% { transform: scale(1.06) rotate(3deg); } }
}

/* ============ Hero 3D flower stage (replaces the static SVG bloom) ============ */
.flower-stage {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 3 / 4;
  z-index: 6;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
#flower3d { position: absolute; inset: 0; }
#flower3d canvas { display: block; width: 100% !important; height: 100% !important; }
.flower-fallback { position: absolute; inset: 0; display: grid; place-items: center; }
.flower-fallback[hidden] { display: none; }
.flower-fallback .hero-flower { position: static; width: 72%; height: auto; }
.flower-hint {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin: 0; pointer-events: none;
}
.hint-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mustard); }
@media (prefers-reduced-motion: no-preference) {
  .hint-dot { animation: hintPulse 2.2s ease-in-out infinite; }
  @keyframes hintPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .45; } }
}
@media (max-width: 900px) {
  .flower-stage { width: min(56vw, 250px); right: -6px; bottom: 0; }
}
