    :root {
      --paper: #f7f4ed;
      --paper-soft: #fbf9f4;
      --ink: #191915;
      --muted: #69675f;
      --line: #d8d4cb;
      --charcoal: #282a25;
      --shell: 1280px;
      --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
      --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--paper); }
    body {
      margin: 0;
      min-width: 320px;
      color: var(--ink);
      background:
        radial-gradient(circle at 11% 8%, rgba(40, 36, 28, .035) 0 1px, transparent 1.5px) 0 0 / 17px 19px,
        radial-gradient(circle at 82% 31%, rgba(40, 36, 28, .025) 0 1px, transparent 1.5px) 0 0 / 23px 29px,
        var(--paper-soft);
      font-family: var(--sans);
      font-size: 15px;
      line-height: 1.7;
      letter-spacing: .055em;
    }
    body.is-locked { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input { color: inherit; font: inherit; }
    button { border: 0; background: none; cursor: pointer; }
    :focus-visible { outline: 2px solid #45473f; outline-offset: 3px; }
    [hidden] { display: none !important; }

    .skip-link {
      position: fixed;
      z-index: 1000;
      top: 10px;
      left: 10px;
      padding: 10px 14px;
      color: #fff;
      background: #1e201c;
      transform: translateY(-180%);
    }
    .skip-link:focus { transform: none; }
    .shell { width: min(var(--shell), calc(100% - 64px)); margin-inline: auto; }
    .serif { font-family: var(--serif); }
    .eyebrow {
      margin: 6px 0 0;
      color: #626159;
      font-family: Georgia, serif;
      font-size: 11px;
      line-height: 1;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .site-header {
      position: relative;
      z-index: 30;
      height: 92px;
      background: rgba(250, 248, 242, .97);
    }
    .header-inner {
      height: 100%;
      display: grid;
      grid-template-columns: 210px minmax(0, 1fr) 154px;
      align-items: center;
      gap: 30px;
    }
    .brand { display: inline-flex; align-items: baseline; gap: 8px; width: max-content; }
    .brand-kanji {
      font-family: var(--serif);
      font-size: 42px;
      font-weight: 400;
      line-height: 1;
    }
    .brand-latin { font-family: Georgia, serif; font-size: 12px; letter-spacing: .14em; }
    .desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 52px); white-space: nowrap; }
    .desktop-nav a,
    .new-nav-trigger {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .08em;
    }
    .desktop-nav > a::after,
    .new-nav-trigger::after {
      position: absolute;
      right: 0;
      bottom: 8px;
      left: 0;
      height: 1px;
      content: "";
      background: currentColor;
      transform: scaleX(0);
      transition: transform .2s ease;
    }
    .desktop-nav > a:hover::after,
    .desktop-nav > a:focus-visible::after,
    .new-nav-trigger:hover::after,
    .new-nav-trigger:focus-visible::after,
    .new-nav-trigger[aria-expanded="true"]::after { transform: scaleX(1); }
    .new-nav-wrap { position: relative; }
    .new-nav-trigger { gap: 7px; padding: 0; }
    .new-nav-trigger svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .22s ease; }
    .new-nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
    .mega-menu {
      position: fixed;
      z-index: 70;
      top: 92px;
      left: 50%;
      width: min(920px, calc(100vw - 64px));
      max-height: min(640px, calc(100vh - 124px));
      padding: 28px 34px 32px;
      overflow-y: auto;
      overscroll-behavior: contain;
      scrollbar-gutter: stable;
      border: 1px solid var(--line);
      background: rgba(251,249,244,.99);
      box-shadow: 0 24px 55px rgba(25,24,20,.14);
      white-space: normal;
      transform: translateX(-50%);
    }
    .mega-menu::before { position: absolute; top: -9px; left: var(--mega-arrow-x, 176px); width: 17px; height: 17px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); content: ""; background: var(--paper-soft); transform: rotate(45deg); }
    .mega-menu-title { margin: 0 0 18px; font-family: var(--serif); font-size: 19px; font-weight: 500; letter-spacing: .1em; }
    .mega-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); align-items: start; gap: 18px; }
    .menu-category { border-top: 1px solid var(--line); }
    .menu-category-title { min-height: 48px; display: flex; align-items: center; padding: 0 4px; margin: 0; font-size: 14px; font-weight: 600; }
    .menu-category-children { padding: 3px 0 8px 18px; margin: 0; list-style: none; }
    .menu-category-children a { min-height: 38px; display: flex; align-items: center; color: #57564f; font-size: 13px; transition: color .2s ease, transform .2s ease; }
    .menu-category-children a:hover,
    .menu-category-children a:focus-visible { color: var(--ink); transform: translateX(4px); }
    .header-actions { display: flex; justify-content: flex-end; gap: 2px; }
    .icon-button {
      width: 48px;
      height: 48px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
    }
    .icon-button:hover { background: rgba(25, 25, 21, .05); }
    .icon-button svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.4; }
    .menu-button { display: none; }
    .cart-wrap { position: relative; }
    .cart-count {
      position: absolute;
      z-index: 2;
      top: 1px;
      right: 0;
      min-width: 18px;
      height: 18px;
      display: grid;
      place-items: center;
      padding: 0 4px;
      color: #fff;
      border: 2px solid var(--paper-soft);
      border-radius: 20px;
      background: #d84435;
      font: 700 10px/1 Arial, sans-serif;
      letter-spacing: 0;
    }
    .cart-popover {
      position: absolute;
      z-index: 50;
      top: calc(100% + 8px);
      right: 0;
      width: 420px;
      padding: 22px 24px 24px;
      border: 1px solid var(--line);
      background: var(--paper-soft);
      box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
      font-size: 13px;
    }
    .cart-popover::before { position: absolute; top: -8px; right: 18px; width: 15px; height: 15px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); content: ""; background: var(--paper-soft); transform: rotate(45deg); }
    .cart-popover-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
    .cart-popover-head h2 { margin: 0; font-size: inherit; }
    .cart-items { padding: 6px 0; margin: 0; list-style: none; }
    .cart-item { display: grid; grid-template-columns: 86px minmax(0,1fr) auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid #e8e3da; }
    .cart-item img { width: 86px; height: 104px; object-fit: cover; object-position: center 18%; background: #e9e6df; }
    .cart-item-name { margin: 0 0 9px; font-family: var(--serif); font-size: 14px; font-weight: 600; line-height: 1.55; }
    .cart-item-option { margin: 2px 0 0; color: #68665f; font-size: 12px; }
    .cart-item-price { align-self: center; margin: 0; font: 600 13px/1.7 Arial,sans-serif; text-align: right; white-space: nowrap; }
    .cart-total { display: flex; align-items: center; justify-content: space-between; padding: 18px 0 14px; font-size: 15px; font-weight: 600; }
    .cart-total strong { font: 600 20px/1 Arial,sans-serif; }
    .cart-view { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: center; color: #fff; background: #292a25; font-weight: 600; transition: background-color .22s ease, transform .22s ease; }
    .cart-view:hover,.cart-view:focus-visible { background: #474840; transform: translateY(-2px); }
    .cart-checkout { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; border: 1px solid #292a25; font-weight: 600; text-decoration: none; transition: color .22s ease, background-color .22s ease, transform .22s ease; }
    .cart-checkout:hover,
    .cart-checkout:focus-visible { color: #fff; background: #474840; transform: translateY(-2px); }
    .cart-checkout::after { width:8px;height:8px;content:"";border-top:1px solid currentColor;border-right:1px solid currentColor;transform:rotate(45deg); }

    .hero {
      position: relative;
      height: clamp(560px, 50vw, 740px);
      overflow: hidden;
      background: #eeebe4;
      isolation: isolate;
    }
    .hero-swiper { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
    .hero-swiper .swiper-wrapper { height: 100%; }
    .hero-media { position: relative; width: 100%; height: 100%; }
    .hero-swiper:not(.swiper-initialized) .hero-media:not(:first-child) { display: none; }
    .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
    .hero::after {
      position: absolute;
      z-index: -1;
      inset: 0;
      pointer-events: none;
      content: "";
      background: linear-gradient(90deg, rgba(247, 244, 237, .2) 0 35%, transparent 52%);
    }
    .hero-inner { position: relative; height: 100%; }
    .collection-mark {
      position: absolute;
      top: 25%;
      left: 0;
      width: 72px;
      color: rgba(59, 59, 54, .5);
      font-family: Georgia, serif;
      font-size: 10px;
      line-height: 1.8;
      letter-spacing: .08em;
    }
    .collection-mark::after {
      display: block;
      width: 1px;
      height: 190px;
      margin-top: 20px;
      content: "";
      background: #75766f;
    }
    .hero-copy {
      position: absolute;
      top: 25%;
      left: calc(8.2% + 24px);
      width: calc(39% - 24px);
    }
    .hero-copy h1 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(44px, 4.25vw, 68px);
      font-weight: 400;
      line-height: 1.35;
      letter-spacing: .08em;
    }
    .hero-copy p { margin: 28px 0 22px; font-family: var(--serif); font-size: 16px; letter-spacing: .08em; }
    .text-link {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      gap: 22px;
      border-bottom: 1px solid currentColor;
      font-size: 14px;
      font-weight: 600;
    }
    .text-link::after { width:8px;height:8px;content:"";border-top:1px solid currentColor;border-right:1px solid currentColor;transform:rotate(45deg); }
    .hero-vertical {
      position: absolute;
      top: 17%;
      right: 0;
      height: 53%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      color: #f6f3ec;
      font-family: var(--serif);
      font-size: 14px;
      line-height: 1.9;
      letter-spacing: .18em;
      writing-mode: vertical-rl;
    }
    .hero-vertical::before,
    .hero-vertical::after { width: 1px; height: 45px; flex: 0 0 auto; content: ""; background: rgba(255, 255, 255, .65); }
    .hero-controls {
      position: absolute;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: stretch;
      color: #fff;
      background: rgba(22, 23, 20, .92);
    }
    .hero-count { min-width: 90px; display: grid; place-items: center; padding: 0 16px; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: .12em; }
    .hero-arrow { width: 56px; height: 56px; display: grid; place-items: center; border-left: 1px solid rgba(255,255,255,.12); }
    .hero-arrow span, .rail-arrow span { font-family: Georgia, serif; font-size: 25px; font-weight: 300; line-height: 1; }

    .section { overflow: hidden; }
    .new-arrivals { padding: 78px 0 88px; background: rgba(251, 249, 244, .86); }
    .section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 34px; }
    .section-title { margin: 0; font-family: var(--serif); font-size: clamp(25px, 2vw, 34px); font-weight: 400; line-height: 1.25; letter-spacing: .12em; }
    .section-actions { display: flex; align-items: center; gap: 8px; }
    .view-all { min-height: 44px; display: inline-flex; align-items: center; padding-inline: 8px; font-size: 13px; }
    .rail-arrows { display: flex; }
    .rail-arrow {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.2);
      transition: color .22s ease, background-color .22s ease;
    }
    .rail-arrow + .rail-arrow { border-left: 0; }
    .rail-arrow:hover,
    .rail-arrow:focus-visible { color: #f7f4ed; background: #2d2e29; }
    .rail-arrow.swiper-button-disabled { cursor: not-allowed; opacity: .36; }
    .rail-arrow.swiper-button-lock { display: none; }
    .rail { overflow: hidden; --visible: 5; --gap: 18px; }
    .rail-track { display: flex; }
    .rail:not(.swiper-initialized) .rail-track { gap: var(--gap); }
    .rail:not(.swiper-initialized) .product-card,
    .rail:not(.swiper-initialized) .blog-card { flex: 0 0 calc((100% - (var(--visible) - 1) * var(--gap)) / var(--visible)); }
    .product-card { min-width: 0; height: auto; }
    .product-card a { display: block; transition: transform .32s ease; }
    .product-media { position: relative; aspect-ratio: .8; overflow: hidden; background: #ebe9e4; }
    .product-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .35s ease; }
    .product-card a:hover,
    .product-card a:focus-visible { transform: translateY(-5px); }
    .product-card a:hover img,
    .product-card a:focus-visible img { transform: scale(1.035); }
    .badge {
      position: absolute;
      z-index: 2;
      top: 10px;
      left: 10px;
      padding: 3px 7px 2px;
      color: #f8f5ee;
      background: #34352f;
      font-family: Georgia, serif;
      font-size: 9px;
      line-height: 1.2;
      letter-spacing: .09em;
    }
    .badge.hot { background: #9b6a51; }
    .product-name { margin: 14px 0 4px; overflow: hidden; font-size: 13px; font-weight: 500; line-height: 1.55; text-overflow: ellipsis; white-space: nowrap; }
    .product-price { margin: 0; font-family: Arial, sans-serif; font-size: 14px; letter-spacing: .05em; }

    .story {
      position: relative;
      min-height: 500px;
      display: grid;
      align-items: center;
      overflow: hidden;
      color: #f4f1e9;
      background: #353831;
      isolation: isolate;
    }
    .story-bg {
      position: absolute;
      z-index: -1;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .story-copy { width: 39%; }
    .story h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(34px, 3vw, 48px); font-weight: 400; line-height: 1.6; letter-spacing: .12em; }
    .story p { margin: 0 0 24px; max-width: 430px; font-family: var(--serif); font-size: 15px; line-height: 2.05; }
    .story .text-link { color: #fff; transition: gap .24s ease, opacity .24s ease, transform .24s ease; }
    .story .text-link:hover,
    .story .text-link:focus-visible { gap: 22px; opacity: .78; transform: translateX(4px); }

    .shop-sections { padding: 72px 0 0; background: rgba(251, 249, 244, .88); }
    .category-section { margin-bottom: 64px; }
    .category-swiper { margin-top: 30px; overflow: hidden; --visible: 4; --gap: 14px; }
    .category-grid { display: flex; }
    .category-swiper:not(.swiper-initialized) .category-grid { gap: var(--gap); }
    .category-swiper:not(.swiper-initialized) .category-card { flex: 0 0 calc((100% - (var(--visible) - 1) * var(--gap)) / var(--visible)); }
    .category-card { position: relative; min-width: 0; aspect-ratio: 1.7; display: grid; place-items: center; overflow: hidden; color: #fff; background: #714a38; isolation: isolate; }
    .category-card img {
      position: absolute;
      z-index: -2;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      filter: saturate(.92) contrast(1.02);
      transition: filter .45s ease, transform .55s cubic-bezier(.2,.7,.2,1);
    }
    .category-card::after {
      position: absolute;
      z-index: -1;
      inset: 0;
      content: "";
      background: rgba(24,16,12,.28);
      transition: background-color .4s ease;
    }
    .category-label { text-align: center; text-shadow: 0 1px 8px rgba(0,0,0,.35); transition: transform .35s ease; }
    .category-icon {
      width: 34px;
      height: 34px;
      display: block;
      margin: 0 auto 9px;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.35;
      transition: transform .35s ease;
    }
    .category-card:hover img,
    .category-card:focus-visible img { filter: saturate(1) contrast(1.04); transform: scale(1.02); }
    .category-card:hover::after,
    .category-card:focus-visible::after { background: rgba(24,16,12,.16); }
    .category-card:hover .category-label,
    .category-card:focus-visible .category-label { transform: translateY(-3px); }
    .category-card:hover .category-icon,
    .category-card:focus-visible .category-icon { transform: scale(1.08); }
    .category-ja { display: block; font-family: var(--serif); font-size: 17px; letter-spacing: .12em; }
    .category-en { display: block; margin-top: 4px; font-family: Georgia, serif; font-size: 10px; letter-spacing: .13em; }
    .pickup-rail { --visible: 6; --gap: 14px; }

    .blog-section { padding: 64px 0 80px; background: rgba(251, 249, 244, .8); }
    .blog-rail { --visible: 3; --gap: 18px; }
    .blog-card { min-width: 0; height: auto; }
    .blog-card a { display: block; }
    .blog-media { overflow: hidden; background: #e9e6df; }
    .blog-card img { width: 100%; aspect-ratio: 2.05; object-fit: cover; transition: filter .45s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
    .blog-card a:hover img,
    .blog-card a:focus-visible img { filter: contrast(1.035); transform: scale(1.04); }
    .blog-meta { display: flex; align-items: center; gap: 10px; margin: 12px 0 6px; color: #77756d; font-family: Arial, sans-serif; font-size: 11px; letter-spacing: .04em; }
    .blog-tag { padding: 2px 7px; background: #efede8; font-family: var(--sans); }
    .blog-title {
      width: fit-content;
      margin: 0;
      background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 400;
      line-height: 1.7;
      transition: background-size .35s ease;
    }
    .blog-card a:hover .blog-title,
    .blog-card a:focus-visible .blog-title { background-size: 100% 1px; }

    .site-footer { position: relative; overflow: hidden; background: #efede7; }
    .footer-main {
      position: relative;
      padding: 76px 0 70px;
      overflow: hidden;
      background: #efede7;
    }
    .footer-main::before,
    .footer-main::after {
      position: absolute;
      z-index: 0;
      top: -155px;
      width: 88%;
      height: 220px;
      border-radius: 50%;
      content: "";
      pointer-events: none;
    }
    .footer-main::before { left: -28%; background: rgba(255,255,255,.52); transform: rotate(2deg); }
    .footer-main::after { right: -28%; background: rgba(255,255,255,.4); transform: rotate(-2deg); }
    .footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 76px; }
    .footer-brand .brand { margin-bottom: 28px; }
    .footer-brand p { margin: 0 0 26px; font-family: var(--serif); font-size: 14px; line-height: 2; }
    .socials { display: flex; gap: 8px; }
    .socials a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #c5c2b9; border-radius: 50%; font-family: Georgia, serif; transition: color .25s ease, background-color .25s ease, transform .25s ease; }
    .socials a:hover,
    .socials a:focus-visible { color: #f6f2ea; background: #30312c; transform: translateY(-2px); }
    .socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
    .socials .social-icon-dot { fill: currentColor; stroke: none; }
    .socials .social-icon-fill { fill: currentColor; stroke: none; }
    .footer-column h3 { margin: 4px 0 22px; font-size: 14px; font-weight: 600; }
    .footer-column a { display: block; width: fit-content; min-height: 31px; font-size: 13px; transition: transform .22s ease; }
    .footer-column a:hover,
    .footer-column a:focus-visible { text-decoration: underline; text-underline-offset: 4px; transform: translateX(4px); }
    .copyright { min-height: 44px; display: grid; place-items: center; color: #ddd9cf; background: #25251f; font-family: Arial, sans-serif; font-size: 11px; }
    .to-top { position: absolute; z-index: 3; right: 30px; bottom: 20px; width: 50px; height: 50px; display: grid; place-items: center; color: #eeeae1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; background: #33332c; line-height: 0; transition: background-color .24s ease, box-shadow .24s ease, transform .24s ease; }
    .to-top svg { width: 18px; height: 18px; display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
    .to-top:hover,
    .to-top:focus-visible { background: #4b4b43; box-shadow: 0 8px 20px rgba(0,0,0,.16); transform: translateY(-3px); }

    .search-panel {
      position: fixed;
      z-index: 80;
      top: 92px;
      right: 0;
      left: 0;
      padding: 28px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--paper-soft);
      box-shadow: 0 18px 48px rgba(0,0,0,.1);
    }
    .search-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; width: min(720px, calc(100% - 48px)); margin: auto; }
    .search-form input { min-width: 0; height: 50px; padding: 0 16px; border: 1px solid #bcb8ad; background: #fff; }
    .search-form input:focus { border-color: #3b3c36; outline: none; box-shadow: inset 0 0 0 1px #3b3c36; }
    .search-submit { min-width: 92px; height: 50px; color: #fff; background: #292a25; transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease; }
    .search-submit:hover,
    .search-submit:focus-visible { background: #4b4b43; box-shadow: 0 8px 18px rgba(24,24,20,.15); transform: translateY(-2px); }
    .search-status { grid-column: 1 / -1; min-height: 1.4em; margin: 0; font-size: 13px; }

    .drawer-backdrop { position: fixed; z-index: 90; inset: 0; background: rgba(20,20,17,.46); }
    .mobile-drawer {
      position: fixed;
      z-index: 100;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(88vw, 390px);
      padding: 24px 24px 38px;
      overflow-y: auto;
      background: var(--paper-soft);
      box-shadow: -20px 0 54px rgba(0,0,0,.2);
    }
    .drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
    .drawer-nav > a,
    .drawer-new-toggle { width: 100%; min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 17px; text-align: left; }
    .drawer-new-toggle { justify-content: space-between; }
    .drawer-new-toggle svg,
    .drawer-category-toggle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s ease; }
    .drawer-new-toggle[aria-expanded="true"] svg,
    .drawer-category-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
    .drawer-new-categories { padding: 8px 0 14px 14px; border-bottom: 1px solid var(--line); }
    .drawer-category { border-bottom: 1px solid #e4e0d7; }
    .drawer-category:last-child { border-bottom: 0; }
    .drawer-category-toggle { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 4px; font-weight: 600; text-align: left; }
    .drawer-category-children { padding: 0 0 8px 22px; margin: 0; list-style: none; }
    .drawer-category-children a { min-height: 44px; display: flex; align-items: center; color: #64625b; font-size: 14px; }
    .drawer-search { margin-top: 28px; }
    .drawer-search input { width: 100%; height: 48px; padding: 0 12px; border: 1px solid var(--line); background: #fff; }
    .drawer-search input:focus { border-color: #3b3c36; outline: none; box-shadow: inset 0 0 0 1px #3b3c36; }
    .drawer-search button { width: 100%; height: 48px; margin-top: 8px; color: #fff; background: #292a25; transition: background-color .22s ease, transform .22s ease; }
    .drawer-search button:hover,
    .drawer-search button:focus-visible { background: #4b4b43; transform: translateY(-2px); }

    .article-dialog-backdrop { position: fixed; z-index: 110; inset: 0; background: rgba(24,24,20,.48); }
    .article-dialog {
      position: fixed;
      z-index: 111;
      top: 50%;
      left: 50%;
      width: min(920px, calc(100% - 64px));
      max-height: min(680px, calc(100vh - 48px));
      padding: 54px 58px 58px;
      overflow-y: auto;
      border: 1px solid var(--line);
      background: var(--paper-soft);
      box-shadow: 0 26px 72px rgba(20,20,16,.25);
      transform: translate(-50%, -50%);
    }
    .article-dialog-close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; display: grid; place-items: center; font-size: 25px; line-height: 1; transition: background-color .2s ease, transform .2s ease; }
    .article-dialog-close:hover,
    .article-dialog-close:focus-visible { background: rgba(34,34,29,.06); transform: rotate(5deg); }
    .article-dialog time { display: block; margin-bottom: 16px; color: #77756d; font: 11px/1.5 Arial,sans-serif; letter-spacing: .08em; }
    .article-dialog h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 400; line-height: 1.55; letter-spacing: .08em; }
    .article-dialog p { margin: 0; color: #4f4e48; font-family: var(--serif); font-size: 15px; line-height: 2.1; white-space: pre-line; }

    @media (max-width: 1050px) {
      .site-header { height: 76px; }
      .header-inner { grid-template-columns: 1fr auto; }
      .desktop-nav { display: none; }
      .mega-menu { display: none !important; }
      .menu-button { display: inline-grid; }
      .account-button { display: none; }
      .search-panel { top: 76px; }
      .hero-copy { left: calc(4% + 24px); width: calc(48% - 24px); }
      .hero-vertical { right: 20px; }
      .rail { --visible: 4; }
      .pickup-rail { --visible: 4; }
      .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
      .footer-column:last-child { grid-column: 2; }
    }

    @media (max-width: 720px) {
      body { font-size: 14px; }
      .shell { width: min(100% - 36px, var(--shell)); }
      .site-header { height: 68px; }
      .header-actions { gap: 0; }
      .icon-button { width: 44px; height: 44px; }
      .cart-button { display: inline-grid; }
      .cart-popover { position: fixed; top: 67px; right: 12px; width: min(420px, calc(100vw - 24px)); max-height: calc(100vh - 78px); overflow-y: auto; }
      .cart-popover::before { right: 56px; }
      .brand-kanji { font-size: 32px; }
      .brand-latin { font-size: 9px; }
      .search-panel { top: 68px; }
      .hero { height: 610px; }
      .hero-media img { object-position: 55% center; }
      .hero::after { background: linear-gradient(90deg, rgba(247,244,237,.92), rgba(247,244,237,.52) 58%, rgba(247,244,237,.04)); }
      .collection-mark { top: 30px; left: 4px; }
      .collection-mark::after { height: 70px; margin-top: 12px; }
      .hero-copy { top: 155px; left: 0; width: 85%; }
      .hero-copy h1 { font-size: clamp(34px, 10vw, 44px); }
      .hero-copy p { margin: 20px 0 16px; font-size: 13px; }
      .hero-vertical { display: none; }
      .hero-controls { right: 0; }
      .hero-count { min-width: 72px; }
      .hero-arrow { width: 48px; height: 48px; }
      .new-arrivals, .shop-sections, .blog-section { padding: 52px 0 60px; }
      .shop-sections { padding-bottom: 0; }
      .blog-section { padding-top: 52px; }
      .section-head { align-items: flex-start; margin-bottom: 24px; }
      .section-title { font-size: 24px; }
      .view-all { display: none; }
      .rail { --visible: 2; --gap: 12px; }
      .product-name { font-size: 12px; }
      .product-price { font-size: 13px; }
      .story { min-height: 600px; align-items: end; }
      .story-bg { object-position: 69% center; }
      .story::after { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(0deg, rgba(28,30,26,.94) 0 38%, rgba(28,30,26,.22) 72%, transparent); }
      .story-copy { width: 100%; padding-bottom: 56px; }
      .story h2 { margin-bottom: 18px; font-size: 31px; }
      .story p { max-width: 100%; font-size: 13px; }
      .category-section { margin-bottom: 52px; }
      .category-swiper { margin-top: 22px; --visible: 2; --gap: 10px; }
      .category-card { aspect-ratio: 1.15; }
      .category-ja { font-size: 14px; }
      .blog-rail { --visible: 1; --gap: 18px; }
      .blog-card img { aspect-ratio: 1.9; }
      .footer-main { padding: 54px 0 48px; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-brand { grid-column: auto; }
      .footer-column:last-child { grid-column: auto; }
      .to-top { right: 16px; bottom: 14px; }
      .article-dialog { width: calc(100% - 28px); padding: 48px 24px 32px; }
    }

    /* Native 758 × 2073 calibration. Production rendering never receives this class. */
    html.reference-mode { scroll-behavior: auto; }
    html.reference-mode body { font-size: 8px; letter-spacing: .05em; }
    html.reference-mode .shell { width: 690px; max-width: none; }
    html.reference-mode .site-header { height: 66px; }
    html.reference-mode .header-inner { grid-template-columns: 125px minmax(0, 1fr) 110px; gap: 12px; }
    html.reference-mode .brand { gap: 4px; }
    html.reference-mode .brand-kanji { font-size: 29px; }
    html.reference-mode .brand-latin { font-size: 7px; }
    html.reference-mode .desktop-nav { display: flex; gap: 25px; }
    html.reference-mode .desktop-nav a,
    html.reference-mode .new-nav-trigger { min-height: 36px; font-size: 8px; }
    html.reference-mode .desktop-nav a::after,
    html.reference-mode .new-nav-trigger::after { bottom: 4px; }
    html.reference-mode .header-actions { display: flex; }
    html.reference-mode .menu-button { display: none; }
    html.reference-mode .account-button,
    html.reference-mode .cart-button { display: inline-grid; }
    html.reference-mode .icon-button { width: 34px; height: 44px; }
    html.reference-mode .icon-button svg { width: 18px; height: 18px; }
    html.reference-mode .search-panel { top: 66px; }
    html.reference-mode .hero { height: 390px; }
    html.reference-mode .hero-media img { object-position: 50% top; }
    html.reference-mode .hero::after { background: linear-gradient(90deg, rgba(247,244,237,.12) 0 34%, transparent 50%); }
    html.reference-mode .collection-mark { top: 103px; left: 0; width: 45px; font-size: 5px; line-height: 1.85; }
    html.reference-mode .collection-mark::after { height: 176px; margin-top: 14px; }
    html.reference-mode .hero-copy { top: 93px; left: 92px; width: 255px; }
    html.reference-mode .hero-copy h1 { font-size: 38px; line-height: 1.42; letter-spacing: .08em; }
    html.reference-mode .hero-copy p { margin: 14px 0 13px; font-size: 9px; }
    html.reference-mode .text-link { min-height: 30px; gap: 16px; font-size: 8px; }
    html.reference-mode .text-link::after { font-size: 15px; }
    html.reference-mode .hero-vertical { top: 47px; right: 1px; height: 242px; gap: 12px; font-size: 9px; }
    html.reference-mode .hero-vertical::before,
    html.reference-mode .hero-vertical::after { height: 30px; }
    html.reference-mode .hero-controls { right: 0; }
    html.reference-mode .hero-count { min-width: 70px; font-size: 9px; }
    html.reference-mode .hero-arrow { width: 48px; height: 38px; }
    html.reference-mode .new-arrivals { height: 358px; padding: 43px 0 0; }
    html.reference-mode .section-head { margin-bottom: 20px; }
    html.reference-mode .section-title { font-size: 16px; }
    html.reference-mode .eyebrow { margin-top: 6px; font-size: 6px; }
    html.reference-mode .view-all { min-height: 30px; padding: 0 3px; font-size: 7px; }
    html.reference-mode .rail-arrow { width: 28px; height: 28px; }
    html.reference-mode .rail-arrow span { font-size: 17px; }
    html.reference-mode .rail { --visible: 5; --gap: 10px; }
    html.reference-mode .product-media { aspect-ratio: 130 / 167; }
    html.reference-mode #new-rail .product-media img { transform: scale(1.42); transform-origin: center top; }
    html.reference-mode #new-rail .product-card a:hover img { transform: scale(1.47); }
    html.reference-mode .badge { top: 6px; left: 6px; padding: 2px 4px 1px; font-size: 5px; }
    html.reference-mode .product-name { margin: 10px 0 8px; font-size: 8.5px; }
    html.reference-mode .product-price { font-size: 9.5px; }
    html.reference-mode .story { min-height: 0; height: 299px; }
    html.reference-mode .story-copy { width: 260px; transform: translateY(-15px); }
    html.reference-mode .story h2 { margin: 0 0 16px; font-size: 22px; line-height: 1.5; }
    html.reference-mode .story p { margin-bottom: 13px; max-width: 220px; font-size: 8px; line-height: 1.9; }
    html.reference-mode .shop-sections { height: 503px; padding: 36px 0 0; }
    html.reference-mode .category-section { margin-bottom: 31px; }
    html.reference-mode .category-swiper { margin-top: 17px; --visible: 4; --gap: 8px; }
    html.reference-mode .category-card { height: 134px; aspect-ratio: auto; }
    html.reference-mode .category-card:nth-child(-n+2) img { transform: scale(1.35); transform-origin: center 18%; }
    html.reference-mode .category-icon { width: 23px; height: 23px; margin-bottom: 5px; }
    html.reference-mode .category-ja { font-size: 10px; }
    html.reference-mode .category-en { margin-top: 2px; font-size: 6px; }
    html.reference-mode .pickup-head { margin-bottom: 21px; }
    html.reference-mode .pickup-rail { --visible: 6; --gap: 9px; }
    html.reference-mode .pickup-rail .product-media { aspect-ratio: 108 / 140; }
    html.reference-mode .pickup-rail .product-card:nth-child(3) .product-media img,
    html.reference-mode .pickup-rail .product-card:nth-child(5) .product-media img { transform: scale(1.34); transform-origin: center top; }
    html.reference-mode .blog-section { height: 244px; padding: 31px 0 0; }
    html.reference-mode .blog-section .section-head { margin-bottom: 13px; }
    html.reference-mode .blog-rail { --visible: 3; --gap: 10px; }
    html.reference-mode .blog-card img { height: 109px; aspect-ratio: auto; }
    html.reference-mode .blog-meta { gap: 6px; margin: 6px 0 4px; font-size: 6px; }
    html.reference-mode .blog-tag { padding: 1px 4px; }
    html.reference-mode .blog-title { font-size: 8px; line-height: 1.5; }
    html.reference-mode .site-footer { height: 213px; }
    html.reference-mode .footer-main { height: 180px; padding: 31px 0 0; }
    html.reference-mode .footer-grid { grid-template-columns: 180px 1fr 1fr 1fr; gap: 33px; }
    html.reference-mode .footer-brand .brand { margin-bottom: 18px; }
    html.reference-mode .footer-brand p { margin: 0 0 11px; font-size: 8px; line-height: 1.8; }
    html.reference-mode .socials { gap: 3px; }
    html.reference-mode .socials a { width: 20px; height: 20px; font-size: 7px; }
    html.reference-mode .footer-column:last-child { grid-column: auto; }
    html.reference-mode .footer-column h3 { margin: 2px 0 12px; font-size: 8px; }
    html.reference-mode .footer-column a { min-height: 17px; font-size: 7px; }
    html.reference-mode .copyright { min-height: 0; height: 33px; font-size: 6px; }
    html.reference-mode .to-top { right: 30px; bottom: 8px; width: 36px; height: 36px; font-size: 10px; }
    html.reference-mode .to-top svg { width: 13px; height: 13px; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    }
