/* unspoken design system - shared across all templates */


  :root{
    --ink:#1a1815;
    --paper:#efeae0;
    --mist:#b3ab99;
    --ember:#8c3f2a;
    --gold:#b7924f;
    --line: rgba(26,24,21,0.14);
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    font-weight:300;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}

  .serif{font-family:'Playfair Display', serif;}
  .eyebrow{
    font-family:'Inter', sans-serif;
    font-size:11px;
    letter-spacing:0.28em;
    text-transform:uppercase;
    color:var(--ember);
    font-weight:500;
  }

  .reveal{opacity:0; transform:translateY(24px); transition:opacity 1s ease, transform 1s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1; transform:none; transition:none;}
    *{animation:none !important;}
  }

  /* ---------- header ----------
     All selectors here are namespaced (.unspoken-header, .unspoken-nav,
     .unspoken-nav-toggle, .unspoken-mobile-*) rather than bare tags/generic
     class names - WoodMart's own header-builder CSS targets bare <header>,
     .nav-toggle, .mobile-menu etc. extensively, and generic names WERE
     colliding with it (invisible nav text, a stray duplicate "Menu"
     button showing even on desktop). Namespacing everything here is what
     actually fixes that, permanently - not just !important patches. */
  header.unspoken-header{
    position:fixed; top:0; left:0; right:0; z-index:50;
    display:flex; align-items:center; justify-content:flex-start;
    padding:26px var(--edge-gap);
    background:transparent;
    border-bottom:1px solid transparent;
    color:var(--ink) !important;
    transition:background-color .45s ease, padding .45s ease, border-color .45s ease;
  }
  header.unspoken-header.is-scrolled{
    padding:14px var(--edge-gap);
    background:var(--ink);
    border-bottom:1px solid rgba(239,234,224,0.08);
    color:#efeae0 !important;
  }
  .unspoken-header .unspoken-wordmark{ display:flex; align-items:center; position:relative; z-index:2; }
  .unspoken-logo-stack{ position:relative; display:block; height:26px; }
  .unspoken-logo-stack img{
    height:26px; width:auto; display:block;
    transition:opacity .45s ease;
  }
  .unspoken-logo-stack img.is-ink{ opacity:1; }
  .unspoken-logo-stack img.is-paper{ position:absolute; top:0; left:0; opacity:0; }
  header.unspoken-header.is-scrolled .unspoken-logo-stack img.is-ink{ opacity:0; }
  header.unspoken-header.is-scrolled .unspoken-logo-stack img.is-paper{ opacity:1; }

  .unspoken-header .unspoken-nav{
    display:flex; gap:34px; font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
    margin-left:48px;
  }
  .unspoken-header .unspoken-nav a{position:relative; padding-bottom:4px; color:inherit !important; opacity:1 !important; text-decoration:none !important;}
  .unspoken-header .unspoken-nav a::after{
    content:''; position:absolute; left:0; bottom:0; width:0%; height:1px; background:currentColor;
    transition:width .4s ease;
  }
  .unspoken-header .unspoken-nav a:hover::after{width:100%;}

  /* cart icon: sits between the nav links and the mobile hamburger,
     always visible (desktop + mobile). Uses currentColor so it inherits
     the same dark<->light crossfade as the rest of the header via the
     .unspoken-header / .unspoken-header.is-scrolled color rules. */
  .unspoken-cart-link{
    position:relative; display:flex; align-items:center; margin-left:28px;
    color:inherit; flex-shrink:0;
  }
  .unspoken-cart-icon{ width:20px; height:20px; display:block; }
  .unspoken-cart-count{
    position:absolute; top:-8px; right:-9px;
    min-width:16px; height:16px; padding:0 3px; border-radius:50%;
    background:var(--ember); color:var(--paper) !important;
    font-family:'Inter', sans-serif; font-size:10px; font-weight:600; line-height:16px; text-align:center;
  }
  /* the header's own cart icon is desktop-only - on mobile it moves inside
     the full-screen menu instead, next to the logo, so the logo and the
     hamburger stay cleanly on the same line in the compact header bar. */
  @media (max-width:860px){ .unspoken-cart-link-desktop{ display:none !important; } }

  /* mobile hamburger icon (☰), not text - small, unobtrusive, always
     pinned to the far right regardless of what else is in the header */
  .unspoken-nav-toggle{
    display:none !important; position:relative; margin-left:auto;
    width:24px; height:16px; background:none; border:none; padding:0; cursor:pointer;
  }
  .unspoken-nav-toggle span{
    position:absolute; left:0; right:0; height:2px; background:currentColor; border-radius:1px;
    transition:transform .35s ease, opacity .35s ease, top .35s ease;
  }
  .unspoken-nav-toggle span:nth-child(1){ top:0; }
  .unspoken-nav-toggle span:nth-child(2){ top:7px; }
  .unspoken-nav-toggle span:nth-child(3){ top:14px; }

  @media (max-width:860px){
    .unspoken-header .unspoken-nav{display:none !important;}
    .unspoken-nav-toggle{display:block !important;}
    /* on scroll, the logo floats to the true center of the compact bar -
       a little playful detail, only while the toggle sits pinned right */
    header.unspoken-header.is-scrolled .unspoken-wordmark{
      position:absolute; left:50%; transform:translateX(-50%);
    }
  }

  .unspoken-mobile-menu{
    position:fixed; inset:0; z-index:100;
    background:var(--ink); color:var(--paper);
    display:flex; flex-direction:column;
    padding:26px 6vw;
    opacity:0; pointer-events:none;
    transform:translateY(-12px);
    transition:opacity .4s ease, transform .4s ease;
  }
  .unspoken-mobile-menu.open{ opacity:1; pointer-events:auto; transform:translateY(0); }
  .unspoken-mobile-menu-top{ display:flex; align-items:center; justify-content:space-between; }
  .unspoken-mobile-menu-top .unspoken-wordmark{ font-family:'Playfair Display', serif; font-style:italic; font-size:22px; color:var(--paper) !important; }
  .unspoken-mobile-menu-top .unspoken-cart-link{ color:var(--paper); margin-left:0; }
  .unspoken-mobile-close{
    position:relative; margin-left:auto; z-index:2;
    width:40px; height:40px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background:rgba(239,234,224,0.08) !important; border:1px solid rgba(239,234,224,0.28) !important;
    color:var(--paper); font-size:15px; cursor:pointer;
    box-shadow:none !important; padding:0 !important;
    transition:background .3s ease, transform .3s ease;
  }
  .unspoken-mobile-close:hover{ background:rgba(239,234,224,0.16) !important; transform:scale(1.06); }
  .unspoken-mobile-nav{
    flex:1; display:flex; flex-direction:column; justify-content:center; gap:22px;
  }
  .unspoken-mobile-nav a{
    font-family:'Playfair Display', serif; font-style:italic; font-weight:400;
    font-size:clamp(32px,9vw,52px); line-height:1.2;
    opacity:.85; color:var(--paper) !important; transition:opacity .3s ease, color .3s ease;
  }
  .unspoken-mobile-nav a:hover{ opacity:1; color:var(--ember) !important; }
  .unspoken-mobile-menu-bottom{
    display:flex; align-items:center; gap:26px; font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  }
  .unspoken-mobile-menu-bottom a{ color:rgba(239,234,224,0.65) !important; transition:color .3s ease; }
  .unspoken-mobile-menu-bottom a:hover{ color:var(--paper) !important; }

  /* ---------- hero ---------- */
  .hero{
    position:relative; min-height:100svh;
    display:flex; flex-direction:column; justify-content:center;
    padding:90px var(--edge-gap) 8vh; overflow:hidden;
  }
  .hero-bg{
    position:absolute; inset:0;
    background:
      radial-gradient(ellipse 70% 60% at 30% 20%, rgba(140,63,42,0.10), transparent 60%),
      linear-gradient(180deg, #efeae0 0%, #e7e0d1 60%, #ded4c0 100%);
  }
  /* "whisper" ghost words - used in the hero, and reused (via the same
     classes) on a few other home-page sections. Color adapts automatically:
     muted-dark by default (light sections), muted-light on dark sections
     like Community (see .whisper-layer--dark below). */
  .hero-ghosts, .whisper-layer{ position:absolute; inset:0; z-index:1; overflow:hidden; pointer-events:none; }
  .hero-ghost, .whisper-word{
    position:absolute; font-family:'Playfair Display', serif; font-style:italic; color:var(--mist);
    opacity:0; white-space:nowrap; animation:heroGhostFade 9s ease-in-out infinite;
  }
  .whisper-layer--dark .whisper-word{ color:#8a8072; }
  @keyframes heroGhostFade{
    0%{ opacity:0; transform:translateY(8px) scale(.98); }
    12%{ opacity:.55; transform:translateY(0) scale(1); }
    55%{ opacity:.5; }
    72%{ opacity:0; transform:translateY(-8px) scale(1.02); }
    100%{ opacity:0; }
  }
  @media (prefers-reduced-motion: reduce){ .hero-ghost, .whisper-word{ animation:none; opacity:.35; } }
  @media (max-width:760px){ .whisper-layer{ display:none; } }
  .hero-content{position:relative; z-index:2; max-width:960px;}
  .hero-kicker{
    font-size:11px; letter-spacing:.32em; text-transform:uppercase; color:var(--ember);
    margin-bottom:22px; display:flex; align-items:center; gap:14px;
  }
  .hero-kicker .rule{width:38px; height:1px; background:var(--ember);}
  h1.hero-title{
    font-family:'Playfair Display', serif; font-weight:400;
    font-size:clamp(42px, 8vw, 104px); line-height:0.98; letter-spacing:-0.01em;
  }
  h1.hero-title em{font-style:italic; color:var(--ember);}
  .hero-break{display:inline;}
  @media (min-width:768px){
    h1.hero-title{ font-size:clamp(42px, 6.2vw, 88px); white-space:nowrap; }
    .hero-break{display:none;}
  }
  .hero-sub{margin-top:26px; max-width:520px; font-size:16px; line-height:1.75; color:#4a463f;}
  .hero-actions{margin-top:74px; display:flex; align-items:center; gap:30px; flex-wrap:wrap;}
  .btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:15px 30px; background:var(--ink); color:var(--paper);
    font-size:12px; letter-spacing:.18em; text-transform:uppercase;
    border-radius:2px; transition:background .35s ease, transform .35s ease;
  }
  .btn:hover{background:var(--ember); transform:translateY(-2px);}
  .btn-ghost{
    font-size:12px; letter-spacing:.18em; text-transform:uppercase;
    border-bottom:1px solid var(--line); padding-bottom:4px;
  }
  .scroll-cue{
    position:absolute; right:var(--edge-gap); bottom:6vh; z-index:2;
    display:flex; flex-direction:column; align-items:center; gap:10px;
    font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:#6b665c;
  }
  .scroll-cue .stem{width:1px; height:50px; background:linear-gradient(var(--ink), transparent); animation:stem 2.4s ease-in-out infinite;}
  @keyframes stem{0%,100%{opacity:.25} 50%{opacity:1}}

  section{position:relative; padding:70px var(--edge-gap);}
  .section-head{
    display:flex; align-items:baseline; justify-content:space-between; gap:24px;
    margin-bottom:70px; flex-wrap:wrap;
  }
  .section-title{
    font-family:'Playfair Display', serif; font-weight:400;
    font-size:clamp(30px,4.2vw,54px); line-height:1.05;
  }
  .section-title em{font-style:italic; color:var(--ember);}
  .section-note{max-width:340px; font-size:13px; line-height:1.7; color:#6b665c;}

  /* ---------- about / manifesto ---------- */
  #about{ padding-top:40px; }
  .about{ max-width:760px; }
  .about-body p{ font-size:19px; line-height:1.95; color:#3a362f; margin-bottom:26px; max-width:640px; }
  .about-body p:last-child{ font-family:'Playfair Display', serif; font-style:italic; font-size:24px; color:var(--ink); }

  /* ---------- exhibition: artwork carousel ---------- */
  .art-carousel-section{ position:relative; }
  .art-track-wrap{
    position:relative;
    margin:0 calc(-1 * var(--edge-gap));
  }
  .art-track{
    display:flex; gap:32px;
    overflow-x:auto; scroll-snap-type:x mandatory;
    padding:0 var(--edge-gap) 10px;
    cursor:grab;
    scrollbar-width:none;
  }
  .art-track.dragging{ cursor:grabbing; scroll-snap-type:none; }
  .art-track::-webkit-scrollbar{ display:none; }
  .art-slide{
    position:relative; flex:0 0 auto;
    width:min(46vw, 460px);
    aspect-ratio:4/5;
    scroll-snap-align:center;
    opacity:.4; transform:scale(.92);
    transition:opacity .5s ease, transform .5s ease;
    box-shadow:0 40px 80px -35px rgba(26,24,21,0.4);
  }
  .art-slide.active{ opacity:1; transform:scale(1); }
  .art-slide .art-canvas{ width:100%; height:100%; position:relative; overflow:hidden; user-select:none; -webkit-user-drag:none; background:var(--ink); }
  .art-slide .art-canvas img{ width:100%; height:100%; object-fit:cover; pointer-events:none; }
  .art-slide .art-canvas svg{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
  .art-slide .art-tag{
    position:absolute; top:22px; left:0;
    font-size:10px; letter-spacing:.2em; text-transform:uppercase;
    color:var(--paper); background:rgba(26,24,21,0.5); padding:6px 12px 6px 16px;
  }
  @media (max-width:760px){ .art-slide{ width:82vw; } }
  .art-slide{ cursor:pointer; }

  /* ---------- artwork product modal ---------- */
  .art-modal{
    position:fixed; inset:0; z-index:200;
    background:rgba(15,13,11,0.94);
    backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
    display:grid; justify-items:center; align-items:safe center;
    overflow-y:auto;
    padding:5vh var(--edge-gap);
    opacity:0; pointer-events:none;
    transition:opacity .45s ease;
  }
  .art-modal.open{ opacity:1; pointer-events:auto; }
  .unspoken-art-modal-close{
    position:fixed; top:22px; right:22px; z-index:220;
    width:40px; height:40px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background:rgba(15,13,11,0.55); border:1px solid rgba(239,234,224,0.28);
    backdrop-filter:blur(4px);
    color:var(--paper); font-size:16px; line-height:1; cursor:pointer;
    transition:background .3s ease, transform .3s ease;
  }
  .unspoken-art-modal-close:hover{ background:rgba(15,13,11,0.85); transform:scale(1.08); }
  .unspoken-art-modal-nav{
    position:absolute; top:50%; translate:0 -50%;
    width:52px; height:52px; border-radius:50%;
    background:rgba(239,234,224,0.1); border:1px solid rgba(239,234,224,0.25);
    color:var(--paper); display:flex; align-items:center; justify-content:center;
    font-size:18px; cursor:pointer; transition:background .3s ease; z-index:2;
  }
  .unspoken-art-modal-nav:hover{ background:rgba(239,234,224,0.22); }
  .unspoken-art-modal-nav.prev{ left:2vw; } .unspoken-art-modal-nav.next{ right:2vw; }
  @media (max-width:760px){ .unspoken-art-modal-nav{ display:none; } }

  .art-modal-body{
    width:100%; max-width:1080px; max-height:88vh;
    display:grid; grid-template-columns:1.05fr 0.95fr;
    background:var(--ink); color:var(--paper);
    box-shadow:0 60px 120px -40px rgba(0,0,0,0.6);
    transform:scale(0.92) translateY(30px); opacity:0;
    transition:transform .55s cubic-bezier(.16,1,.3,1), opacity .45s ease;
  }
  .art-modal.open .art-modal-body{ transform:scale(1) translateY(0); opacity:1; }
  .art-modal-visual{ position:relative; background:#0f0d0b; aspect-ratio:4/5; max-height:80vh; overflow:hidden; }
  @keyframes unspokenKenBurns{ 0%{ transform:scale(1); } 100%{ transform:scale(1.09); } }
  .art-modal-visual .kb-wrap{ width:100%; height:100%; overflow:hidden; }
  .art-modal-visual .kb-wrap img{
    width:100%; height:100%; object-fit:cover; display:block;
    animation:unspokenKenBurns 11s ease-in-out infinite alternate;
  }
  .art-modal-text > *{ opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .55s cubic-bezier(.16,1,.3,1); }
  .art-modal-text.revealed > *{ opacity:1; transform:translateY(0); }
  .art-modal-text.revealed > *:nth-child(1){ transition-delay:.04s; }
  .art-modal-text.revealed > *:nth-child(2){ transition-delay:.09s; }
  .art-modal-text.revealed > *:nth-child(3){ transition-delay:.14s; }
  .art-modal-text.revealed > *:nth-child(4){ transition-delay:.19s; }
  .art-modal-text.revealed > *:nth-child(5){ transition-delay:.24s; }
  .art-modal-text.revealed > *:nth-child(6){ transition-delay:.29s; }
  .art-modal-text.revealed > *:nth-child(7){ transition-delay:.34s; }
  .art-modal-tabs{
    position:absolute; top:20px; left:20px; z-index:2;
    display:flex; gap:6px; background:rgba(15,13,11,0.5); border-radius:20px; padding:4px;
  }
  .art-modal-tab{
    padding:7px 16px; font-size:10.5px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--mist); border-radius:16px; cursor:pointer; transition:background .3s ease, color .3s ease;
  }
  .art-modal-tab.active{ background:var(--paper); color:var(--ink); }
  .art-modal-view{ display:none; width:100%; height:100%; align-items:center; justify-content:center; }
  .art-modal-view.active{ display:flex; }
  .art-modal-view svg{ width:100%; height:100%; }
  .art-modal-view.room{ background:linear-gradient(180deg,#e2ddd0,#cfc8b8); }

  .art-modal-text{
    padding:48px 44px; overflow-y:auto;
    display:flex; flex-direction:column; gap:14px;
  }
  .art-modal-count{ font-family:'Playfair Display', serif; font-style:italic; font-size:14px; color:var(--mist); }
  .art-modal-text .artist{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }
  .art-modal-text .title{
    font-family:'Playfair Display', serif; font-style:italic; font-weight:400;
    font-size:clamp(28px,3.4vw,42px); line-height:1.1;
  }
  .art-modal-specs{
    display:grid; grid-template-columns:1fr 1fr; gap:10px 20px;
    padding:18px 0; margin:6px 0; border-top:1px solid rgba(239,234,224,0.14); border-bottom:1px solid rgba(239,234,224,0.14);
  }
  .art-modal-specs div{ display:flex; flex-direction:column; gap:3px; }
  .art-modal-specs .label{ font-size:9.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--mist); }
  .art-modal-specs .value{ font-size:14px; color:var(--paper); }
  .art-modal-text .story{ font-size:14.5px; line-height:1.8; color:#cdc6b6; max-width:440px; }
  .art-modal-price-row{ display:flex; align-items:baseline; justify-content:space-between; margin-top:10px; }
  .art-modal-price{ font-family:'Playfair Display', serif; font-size:28px; }
  .art-modal-avail{ font-size:11.5px; color:var(--mist); }
  .art-modal-actions{ display:flex; flex-direction:column; gap:10px; margin-top:6px; }
  .art-modal-buy{
    padding:16px 20px; text-align:center; background:var(--paper); color:var(--ink);
    font-size:11.5px; letter-spacing:.18em; text-transform:uppercase;
    transition:background .3s ease, color .3s ease; cursor:pointer; border:none;
  }
  .art-modal-buy:hover{ background:var(--ember); color:var(--paper); }
  .art-modal-inquire{
    text-align:center; font-size:11px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--mist); border-bottom:1px solid rgba(239,234,224,0.3); padding-bottom:3px; align-self:center;
    transition:color .3s ease, border-color .3s ease;
  }
  .art-modal-inquire:hover{ color:var(--paper); border-color:var(--paper); }
  @media (max-width:820px){
    .art-modal-body{ grid-template-columns:1fr; overflow-y:auto; }
    .art-modal-visual{ aspect-ratio:4/5; }
  }
  @media (max-width:760px){
    .art-modal{ padding:0; }
    .art-modal-body{ max-width:none; max-height:100vh; height:100vh; }
    .art-modal-visual{ max-height:38vh; aspect-ratio:auto; }
    /* show the whole artwork on mobile - no cropping, no continuous
       zoom/pan (which was cutting pieces of the painting off and made it
       feel "zoomed in" rather than clear). */
    .art-modal-visual .kb-wrap img{
      object-fit:contain !important;
      animation:none !important;
      transform:none !important;
    }
  }

  .unspoken-car-arrow{
    position:absolute; top:50%; translate:0 -50%;
    width:52px; height:52px; border-radius:50%;
    background:var(--paper); border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    font-size:18px; z-index:5; transition:background .3s ease, transform .3s ease;
  }
  .unspoken-car-arrow:hover{ background:var(--ink); color:var(--paper); }
  .unspoken-car-arrow.prev{ left:14px; } .unspoken-car-arrow.next{ right:14px; }
  @media (max-width:760px){ .unspoken-car-arrow{ display:none; } }

  .art-caption{
    margin-top:48px;
    display:grid; grid-template-columns:auto 1fr auto; align-items:end; gap:32px;
  }
  .art-count{
    font-family:'Playfair Display', serif; font-style:italic; font-size:20px; color:var(--mist);
  }
  .art-count b{ color:var(--ink); font-weight:400; }
  .art-caption-main{ transition:opacity .35s ease; }
  .art-caption-main h3{
    font-family:'Playfair Display', serif; font-style:italic; font-weight:400;
    font-size:clamp(24px,3vw,36px); line-height:1.2;
  }
  .art-caption-main p{ margin-top:6px; font-size:13px; color:#6b665c; }
  .art-caption-foot{ display:flex; flex-direction:column; align-items:flex-end; gap:8px; text-align:right; }
  .art-caption-foot .price{ font-family:'Playfair Display', serif; font-size:18px; color:var(--ink); }
  .art-caption-foot .acquire{
    font-size:11px; letter-spacing:.14em; text-transform:uppercase;
    border-bottom:1px solid var(--ink); padding-bottom:2px;
    transition:color .3s ease, border-color .3s ease;
  }
  .art-caption-foot .acquire:hover{ color:var(--ember); border-color:var(--ember); }
  @media (max-width:700px){
    .art-caption{ grid-template-columns:1fr; text-align:left; gap:10px; }
    .art-caption-foot{ align-items:flex-start; text-align:left; }
  }

  /* painterly placeholder canvases — abstract, non-representational */
  .art-canvas.c1{ background:
      radial-gradient(circle at 30% 30%, rgba(239,234,224,0.5), transparent 55%),
      linear-gradient(145deg, #8c3f2a 0%, #5c2919 55%, #1a1815 100%); }
  .art-canvas.c3{ background:
      radial-gradient(circle at 70% 40%, rgba(183,146,79,0.55), transparent 60%),
      linear-gradient(160deg, #2a2620 0%, #1a1815 70%); }
  .art-canvas.c6{ background:
      radial-gradient(circle at 60% 25%, rgba(239,234,224,0.35), transparent 60%),
      linear-gradient(135deg, #1a1815 0%, #8c3f2a 100%); }
  .art-canvas.c7{ background:
      radial-gradient(circle at 45% 60%, rgba(140,63,42,0.45), transparent 55%),
      linear-gradient(200deg, #b3ab99 0%, #4a463f 60%, #1a1815 100%); }

  /* ---------- pieces strip: clothing + sound, quieter, secondary to the art ---------- */
  .pieces-intro{
    display:flex; align-items:baseline; justify-content:space-between; gap:20px; flex-wrap:wrap;
  }
  .pieces-intro .eyebrow{ color:var(--mist); }
  .pieces-grid{
    margin-top:34px;
    display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line);
  }
  .piece{ background:var(--paper); padding:26px; display:flex; flex-direction:column; gap:14px; }
  .piece-visual{ aspect-ratio:5/4; position:relative; overflow:hidden; background:var(--ink); }
  .piece-visual img{ width:100%; height:100%; object-fit:cover; }
  .piece-visual .waveform-mini{ position:absolute; inset:0; opacity:.5; }
  .piece h4{
    font-family:'Playfair Display', serif; font-style:italic; font-weight:400; font-size:20px;
  }
  .piece .pmeta{ font-size:11.5px; color:#6b665c; line-height:1.5; }
  .piece .pfoot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; padding-top:10px; }
  .piece .price{ font-family:'Playfair Display', serif; font-size:15px; }
  .piece .acquire{
    font-size:10.5px; letter-spacing:.14em; text-transform:uppercase;
    border-bottom:1px solid var(--ink); padding-bottom:2px;
    transition:color .3s ease, border-color .3s ease;
  }
  .piece .acquire:hover{ color:var(--ember); border-color:var(--ember); }
  @media (max-width:760px){ .pieces-grid{grid-template-columns:1fr;} }

  /* ---------- artists ---------- */
  .artist-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line); }
  .artist-card{ background:var(--paper); position:relative; overflow:hidden; aspect-ratio:3/4; transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease; }
  .artist-card:hover{ transform:translateY(-8px); box-shadow:0 30px 50px -25px rgba(26,24,21,0.4); }
  .artist-card img{
    width:100%; height:100%; object-fit:cover; filter:grayscale(65%) contrast(1.05);
    transition:filter .6s ease, transform .8s ease;
  }
  .artist-card:hover img{ filter:grayscale(0%) contrast(1.05); transform:scale(1.08); }
  .artist-info{
    position:absolute; left:0; right:0; bottom:0; padding:22px;
    background:linear-gradient(0deg, rgba(15,13,11,0.88), transparent 80%);
    color:var(--paper); display:flex; flex-direction:column; gap:4px;
    transform:translateY(6px); transition:transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .artist-card:hover .artist-info{ transform:translateY(0); }
  .artist-info .name{ font-family:'Playfair Display', serif; font-style:italic; font-size:22px; }
  .artist-info .role{ font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }
  .artist-info .statement{ font-size:11.5px; line-height:1.5; color:#cdc6b6; margin-top:6px; max-width:220px; }
  @media (max-width:760px){ .artist-grid{grid-template-columns:repeat(2,1fr);} }
  .artist-card{ cursor:pointer; }

  /* ---------- artist modal ---------- */
  .artist-modal{
    position:fixed; inset:0; z-index:200;
    background:rgba(15,13,11,0.92);
    backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
    display:flex; align-items:center; justify-content:center;
    padding:6vh var(--edge-gap);
    opacity:0; pointer-events:none;
    transition:opacity .45s ease;
  }
  .artist-modal.open{ opacity:1; pointer-events:auto; }
  .unspoken-artist-modal-close{
    position:fixed; top:22px; right:22px; z-index:220;
    width:40px; height:40px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background:rgba(15,13,11,0.55); border:1px solid rgba(239,234,224,0.28);
    backdrop-filter:blur(4px);
    color:var(--paper); font-size:16px; line-height:1; cursor:pointer;
    transition:background .3s ease, transform .3s ease;
  }
  .unspoken-artist-modal-close:hover{ background:rgba(15,13,11,0.85); transform:scale(1.08); }
  .artist-modal-body{
    width:100%; max-width:980px;
    display:grid; grid-template-columns:0.9fr 1.1fr; gap:0;
    background:var(--ink); color:var(--paper);
    box-shadow:0 60px 120px -40px rgba(0,0,0,0.6);
    max-height:82vh;
    transform:scale(0.96) translateY(14px); opacity:0;
    transition:transform .45s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
  }
  .artist-modal.open .artist-modal-body{ transform:scale(1) translateY(0); opacity:1; }
  .artist-modal-photo{ position:relative; overflow:hidden; aspect-ratio:3/4; }
  @keyframes unspokenKenBurnsArtist{ 0%{ transform:scale(1) translateY(0); } 100%{ transform:scale(1.1) translateY(-1%); } }
  .artist-modal-photo .kb-wrap{ width:100%; height:100%; overflow:hidden; }
  .artist-modal-photo .kb-wrap img{
    width:100%; height:100%; object-fit:cover; filter:grayscale(15%) contrast(1.05);
    animation:unspokenKenBurnsArtist 13s ease-in-out infinite alternate;
  }
  .artist-modal-text > *{ opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .55s cubic-bezier(.16,1,.3,1); }
  .artist-modal-text.revealed > *{ opacity:1; transform:translateY(0); }
  .artist-modal-text.revealed > *:nth-child(1){ transition-delay:.04s; }
  .artist-modal-text.revealed > *:nth-child(2){ transition-delay:.09s; }
  .artist-modal-text.revealed > *:nth-child(3){ transition-delay:.14s; }
  .artist-modal-text.revealed > *:nth-child(4){ transition-delay:.19s; }
  .artist-modal-text.revealed > *:nth-child(5){ transition-delay:.24s; }
  .artist-modal-text{
    padding:52px 46px; display:flex; flex-direction:column; justify-content:center; gap:16px;
    overflow-y:auto;
  }
  .artist-modal-text .role{ font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); }
  .artist-modal-text .name{
    font-family:'Playfair Display', serif; font-style:italic; font-weight:400;
    font-size:clamp(32px,4vw,48px); line-height:1.1;
  }
  .artist-modal-text .bio{ font-size:15px; line-height:1.85; color:#cdc6b6; max-width:420px; }
  .artist-modal-text .ig{
    margin-top:8px; align-self:flex-start;
    font-size:11px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--paper) !important; border-bottom:1px solid var(--paper); padding-bottom:3px;
    transition:color .3s ease, border-color .3s ease;
  }
  .artist-modal-text .ig:hover{ color:var(--ember); border-color:var(--ember); }
  .artist-modal-count{ font-family:'Playfair Display', serif; font-style:italic; font-size:14px; color:var(--mist); }
  @media (max-width:760px){
    .artist-modal{ padding:0; }
    .artist-modal-body{ grid-template-columns:1fr; overflow-y:auto; max-height:100vh; height:100vh; max-width:none; }
    .artist-modal-photo{ aspect-ratio:4/3; }
    .artist-modal-text{ padding:32px 28px; }
  }

  .unspoken-artist-modal-nav{
    position:absolute; top:50%; translate:0 -50%;
    width:52px; height:52px; border-radius:50%;
    background:rgba(239,234,224,0.1); border:1px solid rgba(239,234,224,0.25);
    color:var(--paper);
    display:flex; align-items:center; justify-content:center;
    font-size:18px; cursor:pointer; transition:background .3s ease;
  }
  .unspoken-artist-modal-nav:hover{ background:rgba(239,234,224,0.22); }
  .unspoken-artist-modal-nav.prev{ left:2vw; } .unspoken-artist-modal-nav.next{ right:2vw; }
  @media (max-width:760px){ .unspoken-artist-modal-nav{ display:none; } }

  /* ---------- community ---------- */
  .community{ background:var(--paper); color:var(--ink); display:flex; flex-direction:column; gap:56px; align-items:flex-start; }
  .community .section-title{ color:var(--ink); }
  .community .eyebrow{ color:var(--ember) !important; }
  .community-copy p{ font-size:16px; line-height:1.85; color:#4a463f; max-width:560px; margin-bottom:20px; }
  .community .btn-ghost{ color:var(--ink); border-color:var(--line); }

  /* full-width row of icon-only social links, replacing the old
     text-label footer-style links for a cleaner, more premium look */
  .social-row{
    width:100%; display:flex; align-items:center; justify-content:space-between; gap:28px;
  }
  .social-row a{
    flex:1; display:flex; align-items:center; justify-content:center;
    aspect-ratio:1; max-height:88px; border-radius:50%; border:1px solid rgba(74,53,32,0.35);
    color:#5c4530; position:relative;
    transition:background .4s ease, border-color .4s ease, color .4s ease, transform .4s ease;
  }
  .social-row a svg{ width:30px; height:30px; position:relative; z-index:1; }
  .social-row a::before{
    content:''; position:absolute; inset:0; border-radius:50%;
    background:linear-gradient(135deg, #3f2e1d, #5c4530);
    opacity:0; transition:opacity .4s ease;
  }
  .social-row a:hover{ border-color:transparent; color:var(--paper); transform:translateY(-4px); }
  .social-row a:hover::before{ opacity:1; }
  .social-row .divider{ flex:0 0 auto; width:1px; height:34px; background:rgba(74,53,32,0.2); }
  @media (max-width:760px){
    .social-row a{ max-height:64px; }
    .social-row a svg{ width:24px; height:24px; }
    .social-row{ gap:16px; }
    .social-row .divider{ height:24px; }
  }

  /* ---------- "Unspoken Flow — by OMONYMA" compact block ---------- */
  .flow-block{
    width:100%; border-top:1px solid var(--line); padding-top:44px;
    display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
  }
  .flow-copy{ max-width:520px; }
  .flow-eyebrow{
    display:flex; align-items:center; gap:10px; font-size:11px; letter-spacing:.16em;
    text-transform:uppercase; color:var(--mist); margin-bottom:14px;
  }
  .flow-title{
    font-family:'Playfair Display', serif; font-style:italic; font-weight:400;
    font-size:clamp(22px,2.6vw,30px); margin-bottom:10px;
  }
  .flow-title em{ color:var(--ember); }
  .flow-copy p{ font-size:14.5px; line-height:1.75; color:#6b665c; }
  .yiannis-trigger{
    color:var(--ink); border-bottom:1px solid var(--mist); cursor:pointer;
    transition:color .3s ease, border-color .3s ease;
  }
  .yiannis-trigger:hover{ color:var(--ember); border-color:var(--ember); }
  .flow-cta{
    margin-top:16px; display:inline-flex; align-items:center; gap:8px;
    font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink);
    border-bottom:1px solid var(--ink); padding-bottom:3px;
  }
  .flow-sponsor{ display:flex; flex-direction:column; align-items:flex-end; gap:8px; flex:0 0 auto; }
  .flow-sponsor .label{ font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--mist); }
  .flow-sponsor img{ height:52px; width:auto; }
  @media (max-width:760px){
    .flow-block{ flex-direction:column; align-items:flex-start; }
    .flow-sponsor{ align-items:flex-start; }
  }

  /* ---------- journal ---------- */
  .journal-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
  .journal-card img{ width:100%; aspect-ratio:4/3; object-fit:cover; filter:grayscale(35%); transition:filter .5s ease; }
  .journal-card:hover img{ filter:grayscale(0%); }
  .journal-card .eyebrow{ margin-top:20px; }
  .journal-card h3{
    font-family:'Playfair Display', serif; font-weight:400; font-style:italic;
    font-size:22px; margin:10px 0 12px; line-height:1.3;
  }
  .journal-card p{ font-size:14px; line-height:1.7; color:#6b665c; }
  .journal-card .read-more{
    display:inline-block; margin-top:14px; font-size:11px; letter-spacing:.16em;
    text-transform:uppercase; border-bottom:1px solid var(--ink); padding-bottom:2px;
  }
  @media (max-width:860px){ .journal-grid{grid-template-columns:1fr; gap:60px;} }

  footer{ padding:100px var(--edge-gap) 50px; display:flex; flex-direction:column; gap:60px; }
  .footer-top{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; }
  .footer-mark{ font-family:'Playfair Display', serif; font-style:italic; font-size:clamp(40px,7vw,86px); }
  .footer-links{ display:flex; gap:40px; flex-wrap:wrap; font-size:12px; letter-spacing:.14em; text-transform:uppercase; }
  .footer-links a{ border-bottom:1px solid transparent; padding-bottom:3px; transition:border-color .3s; }
  .footer-links a:hover{ border-color:var(--ink); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap;
    border-top:1px solid var(--line); padding-top:26px; font-size:11px; letter-spacing:.08em; color:#6b665c;
  }
