:root {
    /* ——— WARM DEEP GREEN × COPPER GOLD × SOFT WHITE ——— */
    --ink: #F0EBE0;
    --ink-2: rgba(240, 235, 224, 0.90);
    --ink-mute: rgba(240, 235, 224, 0.38);
    --paper: #1C2A16;
    --paper-2: #26351f;
    --bg: #121b0f;
    --bg-2: #22331b;
    --card: #ffffff;          /* pure white paper for cards */
    --card-2: #f5f3ee;        /* very faint warm white for variety */
    --hot: #c9ab4a;
    --gold: #C9904A;
    /* tags */
    --tag-y: #f0ede4;
    --tag-b: rgba(240,237,228,0.5);
    --tag-g: rgba(240,237,228,0.7);
    --tag-p: #c9a84c;
    --rule: rgba(240, 235, 224, 0.18);
    --rule-2: rgba(240, 235, 224, 0.07);
  }
body {
  font-weight: 400;
  line-height: 1.7;
}

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

  /* ——— Tiny texture overlay for paper feel (disabled — perf) ——— */
/* ——— HERO ——— */
  .hero {
    min-height: 92vh;
    padding: 132px max(56px, 7vw) 52px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
    position: relative;
    isolation: isolate;
  }
  /* E — halftone dot field (low density, top-fade) */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
      radial-gradient(120% 90% at 70% 30%, rgba(240,235,224,0.055), transparent 46%),
      radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1.4px);
    background-size: auto, 18px 18px;
    background-position: center, 0 0;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  }
  /* B — deep red spotlight glow (top-right), gentle pulse */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(38% 48% at 75% 36%, rgba(201, 144, 74, 0.30) 0%, rgba(201, 144, 74, 0.14) 28%, rgba(201, 144, 74, 0.045) 52%, transparent 76%),
      radial-gradient(42% 58% at 28% 28%, rgba(240, 235, 224, 0.075) 0%, rgba(240, 235, 224, 0.026) 36%, transparent 70%),
      radial-gradient(90% 95% at 50% 115%, rgba(0,0,0,0.42) 0%, transparent 48%),
      linear-gradient(115deg, rgba(255,255,255,0.038), transparent 34%);
    mix-blend-mode: screen;
    animation: heroGlow 9s ease-in-out infinite;
  }
  @keyframes heroGlow {
    0%, 100% { opacity: 0.72; transform: translate3d(0, 0, 0) scale(1); }
    50%      { opacity: 0.95; transform: translate3d(-1%, 0.6%, 0) scale(1.02); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero::after { animation: none; }
  }
  .hero-left {
    position: relative;
    z-index: 2;
    max-width: 640px;
    text-align: left;
  }
  .hero-super {
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--hot);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .hero-super::before {
    content: "—";
    font-weight: 700;
  }
  .hero-super .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 1.4s ease-in-out infinite; }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

  .hero-title {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 4.15vw, 58px);
    line-height: 1.22;
    letter-spacing: 0;
    margin-bottom: 28px;
    text-shadow: 0 0 26px rgba(240,235,224,0.055);
  }
  .hero-title .hl {
    background: none;
    color: var(--ink);
    padding: 0;
    border-bottom: 2px solid var(--hot);
  }
  .hero-title .red { color: var(--hot); }
  .hero-title .tilt { display: inline-block; transform: none; }
  .hero-title .en {
    display: block;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    letter-spacing: 0.02em;
    color: var(--ink-2);
    margin-top: 24px;
    font-weight: 900;
  }
  .hero-title .en s {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 10px;
  }
  .hero-title .en .affirm {
    font-style: normal;
    color: var(--ink);
    background: var(--hot);
    padding: 2px 8px 3px;
    margin-left: 2px;
    display: inline-block;
    transform: skew(-4deg);
  }

  .hero-lede {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 2;
    color: var(--ink-2);
    max-width: 520px;
    font-weight: 500;
  }
  .hero-lede-sub {
    max-width: 620px;
    margin-top: 16px;
    color: rgba(240, 235, 224, 0.58);
  }
  .hero-lede mark {
    background: transparent;
    color: var(--ink);
    padding: 0 2px;
    border-bottom: 1px solid var(--hot);
  }
  .hero-lede .hot { color: var(--hot); font-weight: 700; }

  .hero-meta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
  }
  .tag {
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 500;
    padding: 6px 10px;
    background: var(--paper);
    border: 1px solid var(--rule);
    text-transform: uppercase;
  }
  .tag.y { background: transparent; color: var(--ink); border-color: var(--rule); }
  .tag.b { background: transparent; color: var(--ink); border-color: var(--rule); }
  .tag.g { background: transparent; color: var(--ink); border-color: var(--rule); }
  .tag.p { background: transparent; color: var(--hot); border-color: var(--hot); }
  .tag.k { background: transparent; color: var(--ink); border-color: var(--hot); }

  /* Hero right — magazine cover mock stack */
  .hero-right {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 490px;
    z-index: 1;
    opacity: 0.82;
    pointer-events: auto;
  }
  .hero-right::before {
    content: "";
    position: absolute;
    inset: -70px -90px -40px -80px;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(closest-side at 58% 34%, rgba(201,144,74,0.34), rgba(201,144,74,0.12) 42%, transparent 78%),
      radial-gradient(closest-side at 36% 62%, rgba(240,235,224,0.12), transparent 70%);
    filter: blur(10px);
    opacity: 0.95;
  }
  .cover-mock {
    position: absolute;
    z-index: 1;
    background: var(--card);
    border: 1px solid var(--card);
    box-shadow: 22px 28px 55px rgba(0,0,0,0.34), 0 0 0 1px rgba(239,232,214,0.04);
    overflow: hidden;
    width: 196px;
    aspect-ratio: 3/4;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
    color: #111;
  }
  .cover-mock:hover { transform: translate(-2px, -4px) rotate(-1deg) !important; }
  .cover-mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .cm-1 { top: 28px; right: 108px; transform: rotate(-8deg); z-index: 4; }
  .cm-2 { top: 18px; right: 286px; transform: rotate(6deg); z-index: 2; }
  .cm-3 { top: 246px; right: 324px; transform: rotate(-5deg); z-index: 3; }
  .cm-4 { top: 202px; right: 150px; transform: rotate(4deg); z-index: 5; }
  .cm-5 { top: 258px; right: 28px; transform: rotate(-2deg); z-index: 1; }
  .cm-inner { padding: 18px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
  .cm-logo {
    font-family: "Archivo Black", sans-serif;
    font-size: 36px;
    line-height: 0.9;
    letter-spacing: -0.03em;
  }
  .cm-1 .cm-logo { color: var(--ink); }
  .cm-1 .cm-logo em { color: var(--hot); font-style: normal; }
  .cm-tag {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    font-weight: 500;
    text-transform: uppercase;
  }
  .cm-title {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.1;
  }
  .cm-title .ul { text-decoration: underline wavy; text-underline-offset: 4px; }
  .cm-barcode {
    position: absolute;
    bottom: 14px; right: 14px;
    width: 36px; height: 22px;
    background: repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 3px, currentColor 3px 4px, transparent 4px 5px);
    opacity: 0.7;
  }

  .hero-foot {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 24px;
    margin-top: 0;
    border-top: 1px solid var(--rule);
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-foot-left {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .hero-foot-left b { font-family: "Archivo Black", sans-serif; font-size: 14px; letter-spacing: 0.05em; }
  .scroll-cue {
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
  }
  .scroll-cue .arr {
    display: inline-block;
    animation: bob 1.8s ease-in-out infinite;
  }
  @keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

  /* ——— MARQUEE ——— */
  .marquee {
    background: #f4f0e7;
    color: var(--paper);
    overflow: hidden;
    padding: 10px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .marquee-track {
    display: flex;
    gap: 40px;
    animation: scroll 50s linear infinite;
    white-space: nowrap;
    font-family: "Archivo Black", sans-serif;
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
  .marquee-track .star { color: var(--gold); }
  .marquee-track em { font-style: normal; color: var(--gold); }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ——— SECTION ——— */
  section { padding: 124px 56px; position: relative; scroll-margin-top: 96px; }
  .sec-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 68px;
    color: var(--ink);
  }
  .sec-num-wrap {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
  }
  .sec-num {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(34px, 4.8vw, 72px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ink);
  }
  .sec-num .hash { color: var(--gold); }
  .sec-title {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 2.7vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .sec-title .en {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--hot);
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  .sec-head-side {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-align: right;
    color: var(--ink-2);
    line-height: 1.7;
    max-width: 240px;
  }

  /* ——— CONCEPT ——— */
  #concept { background: var(--bg-2); color: var(--ink); }
  .concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .concept-left .big {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: clamp(30px, 4.2vw, 62px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
  }
  .concept-left .big em {
    font-style: normal;
    background: var(--hot);
    color: #fff;
    padding: 0 6px;
  }
  .concept-left .big .red { color: var(--hot); }
  .concept-left .body {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 2.1;
    color: var(--ink-2);
    text-align: justify;
  }
  .concept-left .body p + p { margin-top: 1em; }
  .concept-left .body b { background: linear-gradient(180deg, transparent 60%, var(--hot) 60%); padding: 0 2px; }

  /* Process strip (how it works) */
  .process {
    background: var(--paper);
    padding: 32px;
    border: 2px solid var(--ink);
    box-shadow: 18px 24px 42px rgba(0,0,0,0.30), 0 0 0 1px rgba(239,232,214,0.04);
    position: relative;
    color: var(--ink);
  }
  .process::before {
    content: "HOW IT WORKS";
    position: absolute;
    top: -14px; left: 20px;
    background: var(--hot);
    color: var(--paper);
    padding: 4px 10px;
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 500;
  }
  .process h3 {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 24px;
    margin-top: 8px;
  }
  .process ol {
    list-style: none;
    counter-reset: step;
  }
  .process ol li {
    counter-increment: step;
    padding: 18px 0 18px 56px;
    border-bottom: 1px solid var(--rule);
    position: relative;
    font-size: 14px;
    line-height: 1.7;
  }
  .process ol li:last-child { border-bottom: none; }
  .process ol li::before {
    content: "0" counter(step);
    position: absolute;
    left: 0; top: 18px;
    font-family: "Archivo Black", sans-serif;
    font-size: 24px;
    color: var(--hot);
    letter-spacing: -0.03em;
  }
  .process ol li b {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
  }

  /* ——— WORKS / ARCHIVE ——— */
  #works { background: var(--bg); padding-bottom: 72px; }
  .works-intro {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 17px;
    line-height: 2;
    max-width: 680px;
    margin-bottom: 40px;
    color: var(--ink-2);
  }
  .works-intro b { background: var(--hot); color: #fff; padding: 0 4px; }

  .works-feed {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .work-row {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 32px;
    padding: 44px 24px;
    background: rgba(240, 235, 224, 0.035);
    border-top: 1px solid var(--rule);
    align-items: start;
  }
  .work-row:first-child { border-top: 2px solid var(--ink); }
  .work-row:nth-child(even) {
    background: rgba(201, 144, 74, 0.08);
  }
  .work-no {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--hot);
  }
  .work-no b {
    display: block;
    font-family: "Archivo Black", sans-serif;
    font-size: 60px;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-top: 4px;
  }
  .work-meta-line {
    margin-top: 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    line-height: 1.9;
    color: var(--ink-2);
  }
  .work-meta-line dt { color: var(--hot); display: inline; margin-right: 6px; }
  .work-meta-line dd { display: inline; }
  .work-meta-line dd::after { content: ""; display: block; height: 2px; }

  .work-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    column-gap: 32px;
    align-items: start;
  }
  .work-body h3 {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.4;
    margin-bottom: 8px;
    grid-column: 1;
  }
  .work-body h3 .motif {
    background: var(--ink); color: var(--paper);
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 2px 10px;
    letter-spacing: 0.1em;
    margin-right: 10px;
    vertical-align: middle;
    text-transform: uppercase;
  }
  .work-sub {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--hot);
    margin-bottom: 16px;
    text-transform: uppercase;
    grid-column: 1;
  }
  .work-desc {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 2;
    color: var(--ink-2);
    max-width: 560px;
    margin-bottom: 16px;
    text-align: justify;
    grid-column: 1;
  }
  .work-quote {
    border-left: 3px solid var(--hot);
    padding: 4px 14px;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: var(--ink-2);
    background: rgba(201, 168, 76, 0.06);
    grid-column: 1;
  }
  .work-quote small { display: block; color: var(--hot); font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.1em; margin-top: 6px; }

  .work-thumb {
    background: var(--card);
    border: 1px solid var(--card);
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    transition: transform 0.5s cubic-bezier(0.2,0.7,0.3,1);
    box-shadow: 18px 24px 42px rgba(0,0,0,0.30), 0 0 0 1px rgba(239,232,214,0.04);
    grid-column: 2;
    grid-row: 1 / span 4;
  }
  .work-thumb:hover { transform: translate(-2px, -4px) rotate(-0.5deg); }
  .work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .work-thumb-label {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--paper);
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    padding: 3px 8px;
    z-index: 2;
    text-transform: uppercase;
  }
  .work-thumb-note {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 26, 20, 0.5);
    color: #ffffff;
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    padding: 6px 10px;
    line-height: 1.5;
    backdrop-filter: blur(4px);
  }

  /* Placeholder cover (when no real image) */
  .work-thumb.ph {
    background: var(--placeholder-bg, var(--paper));
    color: var(--placeholder-fg, var(--ink));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    position: relative;
  }
  .ph-cover {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .ph-top {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
  }
  .ph-logo {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 0.88;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .ph-logo.serif { font-family: "Noto Serif JP", serif; font-weight: 900; letter-spacing: -0.01em; }
  .ph-head {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .ph-head .em { background: currentColor; color: var(--placeholder-bg, var(--paper)); padding: 0 4px; }

  .works-more {
    display: flex;
    justify-content: center;
    padding: 60px 0 20px;
  }
  .btn-more {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    font-weight: 500;
    padding: 16px 30px;
    background: var(--ink);
    color: var(--paper);
    border: 2px solid var(--ink);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-transform: uppercase;
  }
  .btn-more:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }

  /* ——— VOICE ——— */
  #gallery { background: var(--bg-2); color: var(--ink); }
  .voice-gallery-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--hot) rgba(255,255,255,0.08);
  }
  .voice-gallery-wrap::-webkit-scrollbar { height: 10px; }
  .voice-gallery-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); }
  .voice-gallery-wrap::-webkit-scrollbar-thumb { background: var(--hot); }
  .voice-gallery {
    display: flex;
    gap: 16px;
    min-width: max-content;
    padding-right: 10px;
  }
  .voice-shot {
    flex: 0 0 auto;
    height: 360px;
    background: var(--card);
    border: 1px solid var(--card);
    overflow: hidden;
    box-shadow: 14px 18px 34px rgba(0,0,0,0.28), 0 0 0 1px rgba(239,232,214,0.04);
  }
  .voice-shot img {
    width: auto;
    height: 100%;
    display: block;
  }

  /* ——— PRICE ——— */
  #price { background: var(--paper); color: var(--ink); padding-top: 72px; }
  #price .price-wrap { 
    color: #111;
    background: var(--ink);
  }
  .price-lede {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 2;
    max-width: 1080px;
    color: var(--ink-2);
    margin: 0 auto 34px;
  }
  .price-wrap {
    border: 2px solid var(--ink);
    background: var(--card);
    padding: 34px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    box-shadow: 18px 24px 44px rgba(0,0,0,0.34), 0 0 0 1px rgba(239,232,214,0.05);
  }
  .price-wrap::before {
    content: "PRICE LIST / 税込";
    position: absolute;
    top: -12px; left: 30px;
    background: var(--card);
    color: var(--paper);
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    padding: 3px 10px;
  }
  .price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
  }
  .price-row:first-child { border-top: 1px solid var(--rule); }
  .price-row:last-child { border-bottom: none; }
  .price-row-head {
    display: block;
    margin-bottom: 0;
  }
  .price-costs {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 14px;
    margin-top: 0;
    justify-content: end;
  }
  .price-row.has-4-costs .price-costs {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
  .price-cost-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 130px;
    padding-left: 10px;
    border-left: 1px solid rgba(17,17,17,0.14);
  }
  .price-cost-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: rgba(17,17,17,0.5);
    text-transform: uppercase;
  }
  .price-cost-val {
    font-family: "Archivo Black", sans-serif;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: #111;
  }
  .price-cost-val .yen { font-size: 13px; margin-right: 1px; opacity: 0.6; }
  .price-cost-val .unit { font-family: "JetBrains Mono", monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.1em; margin-left: 4px; opacity: 0.7; }
  .price-item {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 900;
  }
  .price-item small {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--hot);
    margin-top: 4px;
  }
  .price-item, #price .price-desc, #price .price-num, #price .price-note { color: #111; }
  .price-desc {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(17,17,17,0.75);
    margin-top: 6px;
  }
  .price-calc {
    grid-column: 2;
    justify-self: stretch;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px dashed rgba(17,17,17,0.16);
    display: grid;
    grid-template-columns: auto max-content 1fr;
    gap: 8px 10px;
    align-items: center;
  }
  .price-calc-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(17,17,17,0.6);
    text-transform: uppercase;
  }
  .price-calc-input {
    width: 7.8ch;
    border: 1px solid rgba(17,17,17,0.22);
    background: #fff;
    color: #111;
    padding: 7px 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    line-height: 1;
    text-align: right;
  }
  .price-calc-result {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 12px;
    color: rgba(17,17,17,0.78);
    line-height: 1.6;
  }
  .price-calc-result b {
    font-family: "Archivo Black", sans-serif;
    letter-spacing: -0.01em;
    color: #111;
    font-size: 16px;
    font-weight: 100;
    margin: 0 2px;
  }
  .price-calc-result .price-effective-unit {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    color: rgba(17,17,17,0.78);
  }
  .price-num {
    font-family: "Archivo Black", sans-serif;
    font-size: 28px;
    text-align: right;
    letter-spacing: -0.02em;
  }
  .price-num .yen { font-size: 15px; margin-right: 2px; opacity: 0.6; }
  .price-num .unit { font-family: "JetBrains Mono", monospace; font-size: 10px; font-weight: 400; letter-spacing: 0.1em; margin-left: 6px; }
  .price-note {
    margin-top: 24px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: 1.9;
    color: var(--ink-2);
  }

  /* ——— ABOUT ——— */
  #about { background: var(--bg-2); color: var(--ink); }
  #about .sec-head { border-color: rgba(255, 255, 255, 0.3); }
  #about .sec-num { color: var(--ink); }
  #about .sec-title .en { color: var(--hot); }
  #about .sec-head-side { color: rgba(255, 255, 255, 0.6); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .about-quote {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .about-quote em { font-style: normal; color: var(--hot); }
  .about-quote .u { text-decoration: underline wavy var(--hot); text-underline-offset: 6px; }
  .about-body {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
  }
  .about-body p + p { margin-top: 1em; }
  .about-sig {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: baseline;
  }
  .about-sig b {
    font-family: "Archivo Black", sans-serif;
    font-size: 22px;
  }
  .about-sig small {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat {
    padding: 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255,255,255,0.02);
  }
  .stat dt {
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--hot);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .stat dd {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 21px;
    line-height: 1.65;
    letter-spacing: 0;
    font-weight: 800;
  }
  .stat dd small {
    display: block;
    margin-top: 6px;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--ink-2);
    opacity: 1;
  }

  /* ——— FAQ ——— */
  #faq { background: var(--bg-2); color: var(--ink); }
  #faq .faq:hover { background: rgba(255,255,255,0.04); }
  #faq .faq-toggle { border-color: var(--ink); }
  #faq .faq-toggle::before, #faq .faq-toggle::after { background: var(--ink); }
  .faq-list { border-top: 2px solid var(--ink); }
  .faq {
    border-bottom: 1px solid var(--rule);
    cursor: pointer;
    transition: background 0.2s;
  }
  .faq:hover { background: var(--paper-2); }
  .faq-q {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    gap: 20px;
    padding: 24px 0;
    align-items: center;
  }
  .faq-n {
    font-family: "Archivo Black", sans-serif;
    font-size: 22px;
    color: var(--hot);
    letter-spacing: -0.03em;
  }
  .faq-t {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-weight: 700;
  }
  .faq-t em { font-style: normal; background: var(--hot); color: #fff; padding: 0 3px; }
  .faq-toggle {
    width: 32px; height: 32px;
    border: 1px solid var(--ink);
    position: relative;
    justify-self: end;
  }
  .faq-toggle::before, .faq-toggle::after {
    content: ""; position: absolute; background: var(--ink);
    top: 50%; left: 50%; transition: transform 0.3s;
  }
  .faq-toggle::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
  .faq-toggle::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
  .faq.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .faq-a {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    gap: 20px;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq.open .faq-a { max-height: 500px; padding-bottom: 24px; }
  .faq-a-text {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 2;
    color: var(--ink-2);
    max-width: 720px;
  }
  #faq .faq-t, #faq .faq-n { color: var(--ink); }
  #faq .faq-t em { color: #111; }

  /* ——— NEWS ——— */
  #news { background: var(--bg); color: var(--ink); }
  #news .news-item:hover { background: var(--bg-2); }
  #news .news-title { color: var(--ink); }
  .news-list {}
  .news-item {
    display: grid;
    grid-template-columns: 120px 120px 1fr 40px;
    gap: 24px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
    cursor: pointer;
    transition: padding 0.2s;
  }
  .news-item:first-child { border-top: 2px solid var(--ink); }
  .news-item:hover { padding-left: 12px; background: var(--paper); }
  .news-date { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--gold); }
  .news-cat {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    padding: 3px 8px;
    background: var(--ink);
    color: var(--paper);
    text-transform: uppercase;
    justify-self: start;
  }
  .news-title {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
  .news-arrow { font-family: "Archivo Black", sans-serif; transition: transform 0.2s; }
  .news-item:hover .news-arrow { transform: translateX(6px); color: var(--gold); }

  /* ——— CONTACT ——— */
  #contact { background: var(--bg); color: var(--ink); padding: 104px 56px; border-top: 1px solid var(--rule); }
  #contact .sec-head { border-color: rgba(255, 255, 255, 0.4); }
  #contact .sec-num { color: var(--ink); }
  #contact .sec-num .hash { color: var(--hot); }
  #contact .sec-title .en { color: var(--hot); }
  #contact .sec-title { color: var(--ink); }
  #contact .sec-head-side { color: rgba(255, 255, 255, 0.7); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  /* Align sections after #03 with the ITEMS content width */
  #gallery .sec-head,
  #gallery .voice-gallery-wrap,
  #price .sec-head,
  #price .price-wrap,
  #about .sec-head,
  #about .about-grid,
  #faq .sec-head,
  #faq .faq-list,
  #news .sec-head,
  #news .news-list,
  #contact .sec-head,
  #contact .contact-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  #price .price-lede { margin-left: auto; margin-right: auto; }

  .contact-kicker {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .contact-kicker em { font-style: normal; background: var(--hot); color: #fff; padding: 0 8px; }
  .contact-body {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 2;
    max-width: 480px;
    margin-bottom: 30px;
  }
  .contact-info-list { border-top: 1px solid rgba(255, 255, 255, 0.4); }
  .contact-info-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    align-items: baseline;
  }
  .contact-info-row dt {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .contact-info-row dd {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 18px;
    letter-spacing: -0.01em;
  }

  .form {
    background: var(--card);
    color: #111;
    padding: 40px;
    border: 2px solid var(--card);
    box-shadow: 18px 24px 44px rgba(0,0,0,0.34), 0 0 0 1px rgba(239,232,214,0.05);
  }
  .form-head {
    font-family: "Archivo Black", sans-serif;
    font-size: 26px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .form-head em { font-style: normal; color: var(--hot); }
  .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
  .form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-row.two > .form-row { margin-bottom: 0; }
  .form label {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(17, 17, 17, 0.72);
    text-transform: uppercase;
  }
  .form label .req { color: var(--hot); margin-left: 4px; }
  .form input, .form select, .form textarea {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 15px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 8px 0;
    outline: none;
    width: 100%;
  }
  .form input:focus, .form select:focus { border-bottom-color: var(--hot); }
  .form textarea {
    min-height: 100px;
    resize: vertical;
    border: 1px solid var(--rule);
    padding: 10px;
  }
  .form textarea:focus { border-color: var(--hot); }
  .form-submit {
    width: 100%;
    padding: 18px;
    background: var(--paper);
    color: var(--ink);
    border: 2px solid var(--paper);
    font-family: "Archivo Black", sans-serif;
    font-size: 18px;
    letter-spacing: 0.02em;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
  }
  .form-submit:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }
  .form-success { display: none; text-align: center; padding: 30px 20px; }
  .form-success.show { display: block; }
  .form-error {
    display: none;
    margin-top: -6px;
    margin-bottom: 14px;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: #b00020;
  }
  .form-error.show { display: block; }
  .form-success .mark {
    font-family: "Archivo Black", sans-serif;
    font-size: 80px;
    color: var(--hot);
    line-height: 1;
  }
  .form-success .t1 { font-family:"M PLUS 1p", "Noto Sans JP", sans-serif; font-weight: 900; font-size: 24px; margin-top: 16px; }
  .form-success .t2 { font-size: 13px; margin-top: 12px; line-height: 2; }

  /* ——— Reveal ——— */
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  }
  [data-reveal].in { opacity: 1; transform: translateY(0); }

  /* ——— Responsive ——— */
  @media (max-width: 1000px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right {
      position: relative;
      inset: auto;
      width: 100%;
      min-height: 390px;
      opacity: 0.72;
      pointer-events: auto;
      overflow: hidden;
    }
    .cover-mock { width: 140px; }
    .cm-1 { right: auto; left: 8px; top: 8px; }
    .cm-2 { right: auto; left: 98px; top: 44px; }
    .cm-3 { right: auto; left: 188px; top: 96px; }
    .cm-4 { right: auto; left: 56px; top: 122px; }
    .cm-5 { right: auto; left: 146px; top: 160px; }
    .concept-grid { grid-template-columns: 1fr; gap: 40px; }
    .work-row { grid-template-columns: 1fr; gap: 20px; }
    .work-body { grid-template-columns: 1fr; }
    .work-thumb {
      grid-column: 1;
      grid-row: auto;
      width: 100%;
      max-width: min(100%, 420px);
      margin: 14px 0 22px;
    }
    .voice-shot {
      height: 320px;
    }
    .price-row {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .price-costs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; justify-content: stretch; }
    .price-row.has-4-costs .price-costs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .price-cost-cell { min-width: 0; padding-left: 6px; }
    .price-cost-label { font-size: 8px; letter-spacing: 0.1em; }
    .price-cost-val { font-size: 16px; }
    .price-cost-val .yen { font-size: 10px; }
    .price-cost-val .unit { display: block; margin: 2px 0 0; font-size: 8px; }
    .price-calc {
      grid-column: 1;
      grid-template-columns: 1fr;
      gap: 8px;
      align-items: start;
      margin-top: 4px;
      padding-top: 10px;
    }
    .price-calc-input { max-width: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .sec-head { grid-template-columns: 1fr; }
    .sec-head-side { text-align: left; }
    .news-item { grid-template-columns: 100px 1fr; gap: 12px; }
    .news-cat, .news-arrow { display: none; }
    section { padding: 80px 20px; }
    #contact { padding: 80px 20px; }
    .hero { min-height: auto; padding: 96px 20px 34px; gap: 32px; }
    .stat dd { font-size: 19px; }
  }

  @media (max-width: 640px) {
    .voice-gallery {
      align-items: flex-start;
    }

    .voice-shot {
      width: auto;
      height: auto;
      max-width: calc(100vw - 40px);
      max-height: 72vw;
      background: transparent;
      border: 0;
      box-shadow: none;
      overflow: hidden;
    }

    .voice-shot img {
      width: auto;
      height: 72vw;
      max-width: calc(100vw - 40px);
      max-height: 280px;
      object-fit: contain;
    }
  }
  /* ——— ITEMS SECTION ——— */
  #items { background: var(--paper); color: var(--ink); position: relative; padding: 124px 56px; }
  #items::before {
    content: "";
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: calc(100% - 112px); max-width: 1400px;
    height: 1px; background: var(--rule);
  }
  .items-intro {
    max-width: 1400px; margin: 0 auto 80px;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: end;
  }
  .items-intro .lede {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 18px; line-height: 2.1; color: var(--ink-2);
  }
  .items-intro .lede em { color: var(--hot); font-style: normal; font-weight: 700; }
  .items-intro .lede mark { background: var(--hot); color: #fff; padding: 0 4px; }
  .items-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px;
  }
  .item-card {
    background: var(--card); color: #111;
    padding: 28px 26px 30px;
    position: relative;
    border: 1px solid var(--card);
    transition: transform 0.5s cubic-bezier(0.2,0.7,0.3,1);
  }
  .item-card:hover { transform: translate(-3px,-4px); box-shadow: 16px 22px 42px rgba(0,0,0,0.30), 0 0 0 1px rgba(239,232,214,0.04); }
  .item-card.hero-item { grid-column: span 6; min-height: 420px; background: var(--card); box-shadow: 18px 24px 50px rgba(0,0,0,0.34), 0 0 0 1px rgba(214,189,120,0.48); }
  .item-card.mid { grid-column: span 6; min-height: 420px; background: var(--card-2); }
  .item-card.small { grid-column: span 4; min-height: 320px; }
  .item-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px; letter-spacing: 0.2em;
    color: var(--hot);
    margin-bottom: 14px; display: flex; justify-content: space-between;
  }
  .item-num em { color: rgba(17,17,17,0.5); font-style: normal; font-weight: 500; }
  .item-kicker {
    font-family: "Oswald", sans-serif;
    font-size: 11px; letter-spacing: 0.25em; font-weight: 500;
    color: rgba(17,17,17,0.55);
    margin-bottom: 10px; text-transform: uppercase;
  }
  .item-name {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 0.95; letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: #111;
  }
  .item-name-jp {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 15px; font-weight: 700;
    color: #111; margin-bottom: 18px;
  }
  .item-desc {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 13px; line-height: 1.95; color: rgba(17,17,17,0.78);
    margin-bottom: 22px;
  }
  .item-card.small .item-name { font-size: clamp(22px, 2.2vw, 30px); }
  .item-card.small .item-desc { font-size: 12px; line-height: 1.85; }
  .item-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
  .item-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 9px; letter-spacing: 0.15em;
    padding: 3px 7px; background: transparent; color: #111; border: 1px solid rgba(17,17,17,0.35); text-transform: uppercase;
  }
  .item-tag.y { background: transparent; color: #111; border: 1px solid rgba(17,17,17,0.35); }
  .item-tag.b { background: transparent; color: #111; border: 1px solid rgba(17,17,17,0.35); }
  .item-tag.g { background: transparent; color: #111; border: 1px solid rgba(17,17,17,0.35); }
  .item-tag.p { background: transparent; color: var(--hot); border: 1px solid var(--hot); }
  .item-card .item-visual {
    position: absolute; right: 18px; bottom: 18px;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    color: rgba(17,17,17,0.06);
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 0.8;
  }
  .items-note {
    max-width: 1400px; margin: 60px auto 0;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    padding: 20px 24px;
    border: 1px dashed var(--rule);
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 13px;
    color: var(--ink-2);
  }
  .items-note em { color: var(--hot); font-style: normal; font-weight: 700; }
  .items-detail-link {
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    padding: 10px 14px;
    border: 1px solid var(--ink);
    color: var(--ink);
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .items-detail-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--paper);
  }

  /* ——— DUO RIBBON (二人で見てください) ——— */
  .duo-ribbon {
    position: relative;
    background: var(--bg-2);
    color: var(--ink);
    padding: 14px 28px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    gap: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400; font-size: 13px;
    letter-spacing: 0.04em;
    border-top: 1px solid var(--rule-2);
    border-bottom: 1px solid var(--rule-2);
  }
  .duo-ribbon em {
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    font-style: normal; font-size: 10px; letter-spacing: 0.25em;
    color: var(--gold); padding: 0;
    border: 1px solid var(--gold); padding: 2px 8px;
  }
  .duo-ribbon b { color: var(--gold); font-weight: 500; }
  .duo-ribbon b { font-weight: 700; }
  .duo-ribbon .arrow { font-family: "Oswald", sans-serif; font-size: 13px; letter-spacing: 0.15em; opacity: 0.85; }

  /* CTA strip between sections */
  .duo-cta {
    max-width: 1400px; margin: 0 auto;
    padding: 80px 28px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .duo-cta h3 {
    font-family: "M PLUS 1p", "Noto Sans JP", "Yu Gothic", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 0.95; letter-spacing: -0.02em;
    color: var(--ink);
  }
  .duo-cta h3 em { color: var(--hot); font-style: normal; }
  .duo-cta h3 .jp {
    display: block;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    margin-top: 14px; letter-spacing: 0;
    color: var(--ink);
    line-height: 1.2;
  }
  .duo-cta .side {
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    font-size: 15px; line-height: 2; color: var(--ink-2);
  }
  .duo-cta .side .actions {
    margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap;
  }
  .duo-cta .side .actions a {
    font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: 0.2em; font-weight: 500;
    padding: 12px 18px; border: 1px solid var(--ink); color: var(--ink); text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
  }
  .duo-cta .side .actions a.primary { background: var(--ink); border-color: var(--ink); color: var(--paper); }
  .duo-cta .side .actions a:hover { background: var(--ink); color: var(--paper); }
  .duo-cta .side .actions a.primary:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }

  @media (max-width: 820px) {
    .item-card.hero-item, .item-card.mid, .item-card.small { grid-column: span 12; }
    .items-intro, .duo-cta { grid-template-columns: 1fr; }
    #items { padding: 80px 20px; }
    #items::before { width: calc(100% - 0px); }
    .items-note { gap: 12px; align-items: flex-start; }
    .items-note > * { max-width: 100%; }
  }

  @media (max-width: 640px) {
    body {
      line-height: 1.85;
    }

    section,
    #items,
    #contact {
      padding-top: 142px;
      padding-bottom: 92px;
      scroll-margin-top: 126px;
    }

    .hero {
      padding-top: 108px;
      padding-bottom: 52px;
    }

    .hero-lede,
    .concept-left .body,
    .work-text,
    .items-intro .lede,
    .price-lede,
    .price-desc,
    .price-note,
    .about-body,
    .contact-body,
    .duo-cta .side {
      line-height: 2.08;
    }

    .hero-lede,
    .concept-left .body,
    .items-intro .lede,
    .price-lede,
    .about-body,
    .contact-body {
      font-size: 15px;
    }

    .hero-left p + p,
    .concept-left .body p + p,
    .work-text p + p,
    .items-intro p + p,
    .price-wrap p + p,
    .about-body p + p,
    .contact-body p + p,
    .duo-cta .side p + p {
      margin-top: 1.55em;
    }

    .sec-head {
      margin-bottom: 46px;
      gap: 18px;
    }

    .concept-grid,
    .about-grid,
    .contact-grid {
      gap: 52px;
    }

    .work-row {
      padding-top: 42px;
      padding-bottom: 42px;
      padding-left: 16px;
      padding-right: 16px;
    }

    .items-intro {
      margin-bottom: 54px;
      gap: 28px;
    }

    .items-grid {
      gap: 24px;
    }

    .item-card {
      padding: 32px 26px 34px;
    }

    .item-name-jp {
      margin-bottom: 22px;
    }

    .item-desc,
    .item-card.small .item-desc {
      font-size: 13px;
      line-height: 2.05;
      margin-bottom: 28px;
    }

    .price-row {
      padding: 34px 0;
      gap: 18px;
    }

    .price-calc {
      margin-top: 10px;
      padding-top: 16px;
    }

    .news-item {
      padding: 24px 0;
      gap: 16px;
    }

    .duo-cta {
      padding: 74px 20px;
      gap: 30px;
    }
  }
