    /* ═══════════════════════════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════════════════════════ */
    :root {
      /* Palette — a quiet gallery wall so the paintings carry the color */
      --plaster:    #F5F2EC;   /* warm off-white wall */
      --surface:    #FBFAF6;
      --card:       #FFFFFF;
      --ink:        #1C1A17;   /* near-black */
      --ink-soft:   #3A3630;
      --ink-muted:  #6E685D;
      --accent:     #8C5E26;   /* warm antique bronze / gold */
      --accent-deep:#6F4A1D;
      --border:     #E4DECF;   /* hairline matting */
      --border-soft:#EEE9DC;

      /* Type */
      --font-display: "Fraunces", Georgia, "Times New Roman", serif;
      --font-body:    "DM Sans", system-ui, -apple-system, sans-serif;

      --text-xs:   0.78rem;
      --text-sm:   0.9rem;
      --text-base: 1.0625rem;
      --text-lg:   1.2rem;
      --text-xl:   1.5rem;
      --text-2xl:  clamp(1.75rem, 1.2rem + 2.4vw, 2.75rem);
      --text-3xl:  clamp(2.5rem, 1.4rem + 5vw, 5.25rem);

      /* Spacing scale */
      --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
      --sp-5: 24px; --sp-6: 32px; --sp-8: 48px; --sp-10: 64px;
      --sp-12: 80px; --sp-16: 120px;

      --radius-sm: 4px;
      --radius-md: 10px;

      --shadow-sm: 0 1px 2px rgba(28,26,23,0.04), 0 4px 16px rgba(28,26,23,0.06);
      --shadow-lg: 0 18px 50px rgba(28,26,23,0.16);

      --dur-fast: 0.2s;
      --dur-mid: 0.45s;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);

      --maxw: 1200px;
    }

    /* ═══════════════════════════════════════════════════════════
       RESET / BASE
    ═══════════════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    body {
      font-family: var(--font-body);
      font-size: var(--text-base);
      line-height: 1.7;
      color: var(--ink-soft);
      background: var(--plaster);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

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

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

    h1, h2, h3 {
      font-family: var(--font-display);
      color: var(--ink);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.01em;
    }

    .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--sp-5); }

    .eyebrow {
      font-family: var(--font-body);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .skip-link {
      position: absolute; left: -999px; top: 0;
      background: var(--ink); color: #fff; padding: var(--sp-3) var(--sp-5);
      z-index: 200; border-radius: 0 0 var(--radius-sm) 0;
    }
    .skip-link:focus { left: 0; }

    :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

    /* ═══════════════════════════════════════════════════════════
       HEADER / NAV
    ═══════════════════════════════════════════════════════════ */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: #ffffff;
      border-bottom: 1px solid var(--border-soft);
      transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
    }
    .site-header.scrolled {
      border-bottom-color: var(--border);
      box-shadow: 0 6px 24px rgba(28,26,23,0.06);
    }

    .nav {
      display: flex; align-items: center; justify-content: space-between;
      height: 88px;
    }

    .brand {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: var(--ink);
      display: flex; align-items: baseline; gap: 0.5ch;
    }
    .brand b { font-weight: 600; }
    .brand span { color: var(--accent); }

    .brand-logo { display: inline-flex; align-items: center; }
    .brand-logo img {
      height: 60px; width: auto; display: block;
      mix-blend-mode: multiply;
    }

    .nav-menu { display: flex; align-items: center; gap: var(--sp-6); list-style: none; }

    .nav-link {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--ink-soft);
      padding: var(--sp-2) 0;
      position: relative;
      transition: color var(--dur-fast);
    }
    .nav-link::after {
      content: ""; position: absolute; left: 0; bottom: -2px;
      width: 0; height: 1.5px; background: var(--accent);
      transition: width var(--dur-mid) var(--ease);
    }
    .nav-link:hover, .nav-link[aria-current="page"] { color: var(--ink); }
    .nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }

    /* Dropdown */
    .nav-item { position: relative; }
    .nav-item.has-menu > .nav-link { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
    .nav-item.has-menu > .nav-link svg { transition: transform var(--dur-fast); }
    .submenu {
      position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
      min-width: 230px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      padding: var(--sp-2);
      list-style: none;
      opacity: 0; visibility: hidden;
      transition: opacity var(--dur-fast), transform var(--dur-fast), visibility var(--dur-fast);
    }
    .submenu li a {
      display: block;
      padding: 10px var(--sp-4);
      font-size: var(--text-sm);
      color: var(--ink-soft);
      border-radius: var(--radius-sm);
      text-transform: lowercase;
      transition: background var(--dur-fast), color var(--dur-fast);
    }
    .submenu li a:hover { background: var(--plaster); color: var(--accent); }
    .nav-item.has-menu:hover .submenu,
    .nav-item.has-menu:focus-within .submenu {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
    }
    .nav-item.has-menu:hover > .nav-link svg { transform: rotate(180deg); }

    .menu-toggle {
      display: none;
      background: none; border: none; cursor: pointer;
      width: 44px; height: 44px;
      color: var(--ink);
    }
    .menu-toggle svg { width: 26px; height: 26px; }

    /* ═══════════════════════════════════════════════════════════
       SLOGAN BAND (below the logo)
    ═══════════════════════════════════════════════════════════ */
    .slogan-band {
      margin-top: 88px;
      background: var(--plaster);
      text-align: center;
      padding: clamp(var(--sp-8), 4vw, var(--sp-10)) var(--sp-5) clamp(var(--sp-6), 3vw, var(--sp-8));
    }
    .slogan-band .eyebrow { display: block; margin-bottom: var(--sp-4); }
    .slogan {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.6rem);
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    .slogan em { font-style: italic; font-weight: 400; color: var(--accent); }

    /* ═══════════════════════════════════════════════════════════
       HERO (clean image, no overlaid text)
    ═══════════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      height: clamp(46vh, 38vh + 14vw, 72vh);
      overflow: hidden;
    }
    .hero picture, .hero img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
    }

    /* ═══════════════════════════════════════════════════════════
       SECTION SCAFFOLD
    ═══════════════════════════════════════════════════════════ */
    .section { padding: clamp(var(--sp-12), 8vw, var(--sp-16)) 0; }
    .section--tight { padding: clamp(var(--sp-10), 6vw, var(--sp-12)) 0; }

    .section-head { max-width: 60ch; margin-bottom: var(--sp-10); }
    .section-head h2 { font-size: var(--text-2xl); margin-top: var(--sp-3); }

    /* ── Artist statement ── */
    .statement { background: var(--surface); }
    .statement__grid {
      display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(var(--sp-8), 6vw, var(--sp-16));
      align-items: start;
    }
    .statement__lead {
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 1.1rem + 1.6vw, 2.1rem);
      font-weight: 300;
      line-height: 1.3;
      color: var(--ink);
    }
    .statement__lead .sig { color: var(--accent); font-style: italic; }
    .statement__body p { color: var(--ink-muted); }
    .statement__body p + p { margin-top: var(--sp-5); }
    .statement__rule {
      width: 56px; height: 2px; background: var(--accent); margin-bottom: var(--sp-6);
    }

    /* ── Collections ── */
    .collections-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .collection {
      background: var(--card);
      padding: clamp(var(--sp-6), 4vw, var(--sp-10)) clamp(var(--sp-5), 3vw, var(--sp-8));
      display: flex; flex-direction: column;
      min-height: 248px;
      position: relative;
      transition: background var(--dur-mid) var(--ease);
    }
    .collection::before {
      content: ""; position: absolute; inset: 14px;
      border: 1px solid var(--accent);
      opacity: 0; transform: scale(1.02);
      transition: opacity var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease);
      pointer-events: none;
    }
    .collection:hover { background: var(--surface); }
    .collection:hover::before { opacity: 0.32; transform: scale(1); }
    .collection__num {
      font-family: var(--font-display);
      font-size: var(--text-sm);
      color: var(--ink-muted);
      letter-spacing: 0.05em;
    }
    .collection__name {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
      margin-top: var(--sp-2);
      text-transform: lowercase;
    }
    .collection__desc {
      margin-top: auto;
      padding-top: var(--sp-6);
      font-size: var(--text-sm);
      color: var(--ink-muted);
      line-height: 1.6;
    }
    .collection__cta {
      margin-top: var(--sp-5);
      display: inline-flex; align-items: center; gap: 7px;
      font-size: var(--text-sm); font-weight: 600; color: var(--accent);
    }
    .collection__cta svg { transition: transform var(--dur-fast); }
    .collection:hover .collection__cta svg { transform: translateX(5px); }

    /* ── Featured works ── */
    .featured { background: var(--surface); }
    .featured-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5);
    }
    .work {
      position: relative; overflow: hidden;
      border-radius: var(--radius-sm);
      background: var(--card);
      box-shadow: var(--shadow-sm);
      aspect-ratio: 3 / 4;
    }
    .work img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s var(--ease);
    }
    .work::after {
      content: ""; position: absolute; inset: 0;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.0);
      transition: box-shadow var(--dur-mid);
    }
    .work:hover img { transform: scale(1.05); }
    .work:hover::after { box-shadow: inset 0 0 0 8px rgba(255,255,255,0.9); }

    .featured__cta { text-align: center; margin-top: var(--sp-10); }

    .btn {
      display: inline-flex; align-items: center; gap: var(--sp-3);
      font-family: var(--font-body);
      font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em;
      padding: var(--sp-4) var(--sp-8);
      border-radius: 100px;
      border: 1px solid var(--ink);
      color: var(--ink);
      background: transparent;
      transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
    }
    .btn:hover { background: var(--ink); color: #fff; }
    .btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
    .btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

    /* ═══════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════ */
    .site-footer {
      background: var(--ink);
      color: rgba(255,255,255,0.72);
      padding: clamp(var(--sp-12), 6vw, var(--sp-16)) 0 var(--sp-8);
    }
    .footer__grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-10);
    }
    .footer__brand .brand { color: #fff; margin-bottom: var(--sp-4); }
    .footer__brand .brand span { color: #DCBA85; }
    .footer__brand p {
      font-size: var(--text-sm); line-height: 1.8; max-width: 38ch;
      color: rgba(255,255,255,0.6);
    }
    .footer__col-title {
      font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(255,255,255,0.45);
      margin-bottom: var(--sp-4);
    }
    .footer__links { list-style: none; }
    .footer__links li + li { margin-top: var(--sp-3); }
    .footer__links a {
      font-size: var(--text-sm); color: rgba(255,255,255,0.66);
      text-transform: lowercase; transition: color var(--dur-fast);
    }
    .footer__links a:hover { color: #fff; }
    .footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: var(--sp-10) 0 var(--sp-5); }
    .footer__bottom {
      display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between;
      font-size: var(--text-xs); color: rgba(255,255,255,0.4);
    }
    .footer__bottom a { color: rgba(255,255,255,0.66); }
    .footer__bottom a:hover { color: #fff; }

    /* ═══════════════════════════════════════════════════════════
       REVEAL ANIMATIONS
    ═══════════════════════════════════════════════════════════ */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
    .reveal.is-visible { opacity: 1; transform: none; }
    .stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
    .stagger.is-visible > * { opacity: 1; transform: none; }
    .stagger.is-visible > *:nth-child(2) { transition-delay: 0.07s; }
    .stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
    .stagger.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
    .stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
    .stagger.is-visible > *:nth-child(6) { transition-delay: 0.35s; }

    /* ═══════════════════════════════════════════════════════════
       INTERIOR PAGE HERO
    ═══════════════════════════════════════════════════════════ */
    .page-hero {
      margin-top: 88px;
      background: var(--plaster);
      text-align: center;
      padding: clamp(var(--sp-10), 6vw, var(--sp-12)) var(--sp-5) clamp(var(--sp-8), 4vw, var(--sp-10));
      border-bottom: 1px solid var(--border-soft);
    }
    .page-hero .eyebrow { display: block; margin-bottom: var(--sp-4); }
    .page-hero h1 {
      font-size: var(--text-3xl);
      font-weight: 300;
      letter-spacing: -0.015em;
    }
    .page-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
    .page-hero__intro {
      margin: var(--sp-5) auto 0;
      max-width: 56ch;
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.45rem);
      color: var(--ink-muted);
      line-height: 1.45;
    }

    /* ═══════════════════════════════════════════════════════════
       BIOGRAPHY
    ═══════════════════════════════════════════════════════════ */
    .bio__grid {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: clamp(var(--sp-8), 5vw, var(--sp-12));
      align-items: start;
    }
    .bio__portrait {
      position: sticky; top: 116px;
      background: var(--card);
      padding: var(--sp-3) var(--sp-3) 0;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      border-radius: var(--radius-sm);
      margin: 0;
    }
    .bio__portrait img { width: 100%; display: block; border-radius: 2px; }
    .bio__portrait figcaption {
      text-align: center;
      font-size: var(--text-xs); letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--ink-muted);
      padding: var(--sp-4) 0;
    }
    .bio__body .bio__rule { width: 56px; height: 2px; background: var(--accent); margin-bottom: var(--sp-6); }
    .bio__body h2 { font-size: var(--text-2xl); margin-bottom: var(--sp-6); }
    .bio__body p { color: var(--ink-muted); }
    .bio__body p + p { margin-top: var(--sp-5); }
    .pull-quote {
      margin: var(--sp-8) 0;
      padding-left: var(--sp-6);
      border-left: 2px solid var(--accent);
      font-family: var(--font-display);
      font-style: italic; font-weight: 300;
      font-size: clamp(1.3rem, 1rem + 1.1vw, 1.75rem);
      line-height: 1.35;
      color: var(--ink);
    }
    .bio__sign {
      margin-top: var(--sp-8);
      font-family: var(--font-display);
      font-style: italic;
      font-size: var(--text-lg);
      color: var(--accent);
    }

    @media (max-width: 860px) {
      .bio__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
      .bio__portrait { position: static; max-width: 400px; margin: 0 auto; }
    }

    /* ═══════════════════════════════════════════════════════════
       GALLERY
    ═══════════════════════════════════════════════════════════ */
    .gallery-hint {
      text-align: center;
      font-size: var(--text-sm);
      color: var(--ink-muted);
      margin-bottom: var(--sp-8);
      letter-spacing: 0.02em;
    }
    .gallery {
      column-width: 300px;
      column-gap: var(--sp-5);
    }
    .piece {
      break-inside: avoid;
      display: block; width: 100%;
      margin: 0 0 var(--sp-5);
      padding: 0; border: 0; background: none;
      text-align: left; cursor: zoom-in;
      font: inherit; color: inherit;
    }
    .piece__frame {
      position: relative; overflow: hidden; display: block;
      background: var(--card);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      border-radius: var(--radius-sm);
      padding: var(--sp-2);
      transition: box-shadow var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease);
    }
    .piece__frame img { width: 100%; display: block; border-radius: 2px; transition: transform 0.7s var(--ease); }
    .piece:hover .piece__frame { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .piece:hover .piece__frame img { transform: scale(1.03); }
    .piece__cap {
      display: block;
      margin-top: var(--sp-3);
      font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--ink-muted);
    }

    /* Other collections */
    .othercol { background: var(--surface); }
    .othercol__grid { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
    .othercol__grid a {
      padding: var(--sp-3) var(--sp-5);
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: var(--text-sm); text-transform: lowercase;
      color: var(--ink-soft);
      transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
    }
    .othercol__grid a:hover { border-color: var(--accent); color: var(--accent); }
    .othercol__grid a[aria-current="page"] { background: var(--accent); border-color: var(--accent); color: #fff; }

    /* ═══════════════════════════════════════════════════════════
       LIGHTBOX
    ═══════════════════════════════════════════════════════════ */
    .lb { position: fixed; inset: 0; z-index: 200; display: none; }
    .lb.open { display: grid; place-items: center; }
    .lb__backdrop { position: absolute; inset: 0; background: rgba(18,16,13,0.94); }
    .lb__stage {
      position: relative; z-index: 1; margin: 0;
      max-width: min(92vw, 1100px);
      display: flex; flex-direction: column; align-items: center; gap: var(--sp-4);
    }
    .lb__img {
      max-width: 100%; max-height: 82vh; object-fit: contain;
      background: #fff; padding: 10px; border-radius: 2px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    }
    .lb__cap {
      display: flex; align-items: center; gap: var(--sp-4);
      color: rgba(255,255,255,0.82); font-size: var(--text-sm);
      letter-spacing: 0.14em; text-transform: uppercase;
    }
    .lb__cap b { color: var(--accent); font-weight: 600; }
    .lb__btn {
      position: absolute; z-index: 2;
      background: rgba(255,255,255,0.10); color: #fff;
      border: 1px solid rgba(255,255,255,0.22);
      width: 52px; height: 52px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      cursor: pointer; backdrop-filter: blur(4px);
      transition: background var(--dur-fast), border-color var(--dur-fast);
    }
    .lb__btn:hover { background: rgba(255,255,255,0.20); border-color: rgba(255,255,255,0.4); }
    .lb__close { top: clamp(16px, 3vw, 28px); right: clamp(16px, 3vw, 28px); }
    .lb__prev { left: clamp(12px, 3vw, 32px); top: 50%; transform: translateY(-50%); }
    .lb__next { right: clamp(12px, 3vw, 32px); top: 50%; transform: translateY(-50%); }
    @media (max-width: 600px) {
      .lb__prev { left: 10px; } .lb__next { right: 10px; }
      .lb__btn { width: 44px; height: 44px; }
    }

    /* ═══════════════════════════════════════════════════════════
       IMPRESSIONS (testimonials + studio)
    ═══════════════════════════════════════════════════════════ */
    .testimonials { column-width: 360px; }

    .studio { background: var(--surface); }
    .studio__grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(var(--sp-8), 5vw, var(--sp-12));
      align-items: center;
    }
    .studio__media {
      margin: 0;
      background: var(--card);
      padding: var(--sp-3) var(--sp-3) 0;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      border-radius: var(--radius-sm);
    }
    .studio__media img { width: 100%; display: block; border-radius: 2px; }
    .studio__media figcaption {
      text-align: center; font-size: var(--text-xs); letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--ink-muted); padding: var(--sp-4) 0;
    }
    .cta-card h2 { font-size: var(--text-2xl); margin-bottom: var(--sp-4); }
    .cta-card p { color: var(--ink-muted); margin-bottom: var(--sp-6); }
    @media (max-width: 860px) {
      .studio__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
    }

    /* ═══════════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════════ */
    @media (max-width: 980px) {
      .statement__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
      .collections-grid { grid-template-columns: repeat(2, 1fr); }
      .featured-grid { grid-template-columns: repeat(2, 1fr); }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
      .footer__brand { grid-column: 1 / -1; }
    }

    @media (max-width: 760px) {
      .menu-toggle { display: inline-flex; }
      .nav-menu {
        position: fixed; inset: 88px 0 auto 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--plaster);
        border-bottom: 1px solid var(--border);
        padding: 0 var(--sp-5);
        max-height: 0; overflow: hidden;
        visibility: hidden; opacity: 0;
        box-shadow: var(--shadow-lg);
        transition: max-height var(--dur-mid) var(--ease), opacity var(--dur-mid) var(--ease), visibility var(--dur-mid);
      }
      .nav-menu.open {
        max-height: calc(100dvh - 88px);
        overflow-y: auto;
        visibility: visible; opacity: 1;
        padding-top: var(--sp-4); padding-bottom: var(--sp-6);
      }
      .nav-menu > li { border-bottom: 1px solid var(--border-soft); }
      .nav-link { display: block; padding: var(--sp-4) 0; font-size: var(--text-lg); }
      .nav-link::after { display: none; }
      .submenu {
        position: static; transform: none; opacity: 1; visibility: visible;
        box-shadow: none; border: none; background: transparent; padding: 0 0 var(--sp-3) var(--sp-4);
        max-height: 0; overflow: hidden;
        transition: max-height var(--dur-mid) var(--ease);
      }
      .nav-item.has-menu.open .submenu { max-height: 360px; }
      .nav-item.has-menu:hover .submenu { opacity: 1; } /* keep static on mobile */
    }

    @media (max-width: 540px) {
      .collections-grid { grid-template-columns: 1fr; }
      .featured-grid { grid-template-columns: 1fr 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .reveal, .stagger > * { opacity: 1; transform: none; }
      html { scroll-behavior: auto; }
    }

    /* ═══════════════════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════════════════ */
    .contact__grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: clamp(var(--sp-8), 5vw, var(--sp-12));
      align-items: start;
    }
    .contact__card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      padding: clamp(var(--sp-6), 4vw, var(--sp-8));
    }
    .contact__card h2 { font-size: var(--text-xl); margin-bottom: var(--sp-2); }
    .contact__card .note { font-size: var(--text-sm); color: var(--ink-muted); margin-bottom: var(--sp-6); }
    .cognito { min-height: 320px; }

    .contact__media {
      background: var(--card);
      padding: var(--sp-3) var(--sp-3) 0;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      border-radius: var(--radius-sm);
      margin: 0;
    }
    .contact__media img { width: 100%; display: block; border-radius: 2px; }
    .contact__media figcaption {
      text-align: center; font-size: var(--text-xs); letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--ink-muted); padding: var(--sp-4) 0;
    }
    .contact__direct {
      margin-top: var(--sp-6);
      padding: var(--sp-5) var(--sp-6);
      background: var(--surface);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
    }
    .contact__direct .eyebrow { display: block; margin-bottom: var(--sp-2); }
    .contact__direct a {
      display: inline-flex; align-items: center; gap: var(--sp-3);
      font-family: var(--font-display); font-style: italic;
      font-size: var(--text-lg); color: var(--accent);
    }
    .contact__direct a:hover { color: var(--accent-deep); }

    @media (max-width: 860px) {
      .contact__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
      .contact__media { max-width: 460px; margin: 0 auto; }
    }

    /* ═══════════════════════════════════════════════════════════
       COLLECTIONS INDEX
    ═══════════════════════════════════════════════════════════ */
    .coll-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(var(--sp-6), 3vw, var(--sp-8));
    }
    .coll-card { display: flex; flex-direction: column; }
    .coll-card__media {
      position: relative; overflow: hidden;
      aspect-ratio: 4 / 5;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      border-radius: var(--radius-sm);
      background: var(--card);
    }
    .coll-card__media img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.7s var(--ease);
    }
    .coll-card__media::after {
      content: ""; position: absolute; inset: 12px;
      border: 1px solid rgba(255,255,255,0.9);
      opacity: 0; transition: opacity var(--dur-mid) var(--ease);
      pointer-events: none;
    }
    .coll-card:hover .coll-card__media img { transform: scale(1.05); }
    .coll-card:hover .coll-card__media::after { opacity: 1; }
    .coll-card__num {
      margin-top: var(--sp-5);
      font-family: var(--font-display);
      font-size: var(--text-sm); color: var(--ink-muted); letter-spacing: 0.05em;
    }
    .coll-card__name {
      font-family: var(--font-display); font-style: italic;
      font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
      color: var(--ink); text-transform: lowercase;
      margin-top: var(--sp-1);
    }
    .coll-card__desc {
      margin-top: var(--sp-2);
      font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.6;
    }
    .coll-card__cta {
      margin-top: var(--sp-3);
      display: inline-flex; align-items: center; gap: 7px;
      font-size: var(--text-sm); font-weight: 600; color: var(--accent);
    }
    .coll-card__cta svg { transition: transform var(--dur-fast); }
    .coll-card:hover .coll-card__cta svg { transform: translateX(5px); }
    @media (max-width: 980px) { .coll-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .coll-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════════════════════════
       PAGE-HERO ACTIONS (error / thank-you)
    ═══════════════════════════════════════════════════════════ */
    .page-hero__actions {
      display: flex; flex-wrap: wrap; gap: var(--sp-4);
      justify-content: center; margin-top: var(--sp-8);
    }
    .page-hero__check {
      display: inline-flex; align-items: center; justify-content: center;
      width: 64px; height: 64px; margin-bottom: var(--sp-5);
      border-radius: 50%;
      color: var(--accent);
      background: rgba(140,94,38,0.10);
      border: 1px solid rgba(140,94,38,0.28);
    }

