
  :root {
    --paper: #F4EEE0;
    --paper-deep: #ECE3CE;
    --paper-soft: #F8F3E7;
    --paper-warm: #F0E5CC;
    --ink: #1C1815;
    --ink-soft: #3A332B;
    --ink-light: #6B6258;
    --ash: #A89F90;
    --shu: #D85A1F;
    --shu-soft: #E07642;
    --kihada: #B89240;
    --moss: #6B7C5A;
    --line: rgba(28, 24, 21, 0.14);
    --line-soft: rgba(28, 24, 21, 0.07);

    --serif: 'Fraunces', 'Times New Roman', serif;
    --jp-serif: 'Shippori Mincho B1', 'Noto Serif JP', serif;
    --jp-sans: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --mono: 'DM Mono', 'Courier New', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--jp-sans);
    line-height: 1.95;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 15px;
  }
  ::selection { background: var(--shu); color: var(--paper); }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
  }

  /* === NAV === */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 238, 224, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 60px;
    border-bottom: 1px solid var(--line-soft);
  }
  nav .brand { display: flex; align-items: center; gap: 14px; }
  nav .brand img { height: 30px; width: auto; }
  nav .brand-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
    border-left: 1px solid var(--line);
    padding-left: 14px;
  }
  nav .menu {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
  }
  nav .menu a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  nav .menu a:hover { color: var(--shu); }
  nav .nav-side {
    display: flex; align-items: center; gap: 20px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  nav .nav-side .lang { color: var(--ink-light); }
  nav .nav-side .join {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: all 0.3s ease;
  }
  nav .nav-side .join:hover { color: var(--shu); border-color: var(--shu); }

  /* === HERO === */
  .hero {
    padding: 120px 48px 80px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
  }
  .hero-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .hero-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero-eyebrow .dot {
    width: 8px; height: 8px;
    background: var(--shu);
    border-radius: 50%;
  }
  .hero h1 {
    font-family: var(--jp-serif);
    font-weight: 500;
    font-size: clamp(44px, 5vw, 84px);
    line-height: 1.35;
    letter-spacing: 0.01em;
    margin-bottom: 36px;
  }
  .hero h1 .verb {
    color: var(--shu);
    font-style: normal;
  }
  .hero h1 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 0.42em;
    line-height: 1.4;
    letter-spacing: 0;
    display: block;
    margin-top: 22px;
    color: var(--ink-light);
  }
  .hero-byline {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.95;
    padding-left: 28px;
    border-left: 2px solid var(--shu);
    max-width: 460px;
  }
  .hero-byline strong {
    font-family: var(--jp-serif);
    font-weight: 600;
    color: var(--ink);
  }

  .hero-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 600px;
  }
  .hero-stack .pic {
    overflow: hidden;
    background: var(--paper-deep);
    position: relative;
  }
  .hero-stack .pic img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.9);
  }
  .hero-stack .pic.tall {
    grid-row: 1 / span 2;
  }
  .hero-stack .pic .cap {
    position: absolute;
    bottom: 12px; left: 12px;
    background: var(--paper);
    padding: 6px 10px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .hero-stack .pic .cap.shu { color: var(--shu); }

  /* === MARQUEE: Tools & Materials === */
  .marquee {
    background: var(--ink);
    color: var(--paper);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--shu);
  }
  .marquee-track {
    display: flex;
    gap: 56px;
    animation: scroll-x 60s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .marquee-track span {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 56px;
  }
  .marquee-track span::after {
    content: '◆';
    color: var(--shu);
    font-size: 9px;
  }
  @keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* === MAKE (What We Make) === */
  .make {
    padding: 120px 48px;
    border-bottom: 1px solid var(--line-soft);
    background: var(--paper);
  }
  .make-head {
    max-width: 1320px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .label .num {
    color: var(--shu);
    font-weight: 500;
  }
  .label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--ink-light);
  }
  .h-display {
    font-family: var(--jp-serif);
    font-size: clamp(34px, 4.2vw, 64px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--ink);
  }
  .h-display em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    color: var(--ink-light);
    font-size: 0.45em;
    display: block;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 14px;
  }
  .h-display .shu { color: var(--shu); }
  .make-head p {
    font-size: 14px;
    line-height: 2.05;
    color: var(--ink-soft);
    max-width: 480px;
  }

  .make-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .make-cell {
    padding: 36px 24px 32px;
    border-right: 1px solid var(--line-soft);
    position: relative;
  }
  .make-cell:last-child { border-right: none; }
  .make-cell .ic {
    width: 28px; height: 28px;
    margin-bottom: 28px;
    color: var(--shu);
  }
  .make-cell .ic svg { width: 100%; height: 100%; }
  .make-cell .num {
    font-family: var(--jp-serif);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .make-cell .num small {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 0.4em;
    color: var(--ink-light);
    margin-left: 4px;
  }
  .make-cell .ttl {
    font-family: var(--jp-serif);
    font-weight: 600;
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 4px;
    line-height: 1.45;
  }
  .make-cell .desc {
    font-size: 12px;
    color: var(--ink-light);
    line-height: 1.85;
  }

  /* === FIELD NOTES (photo essay) === */
  .field {
    padding: 130px 48px;
    background: var(--paper-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .field-head {
    max-width: 1320px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .field-head p {
    font-size: 14px;
    line-height: 2;
    color: var(--ink-soft);
    max-width: 480px;
  }
  .field-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }
  .field-img {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
  }
  .field-img.fa { aspect-ratio: 1; grid-column: 1; grid-row: 1 / span 2; aspect-ratio: 4/5; }
  .field-img.fb { aspect-ratio: 4/3; }
  .field-img.fc { aspect-ratio: 4/3; }
  .field-img.fd { aspect-ratio: 4/3; }
  .field-img.fe { aspect-ratio: 4/3; }
  .field-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .field-img:hover img { transform: scale(1.04); }
  .field-img .meta {
    position: absolute;
    bottom: 14px; left: 14px; right: 14px;
    background: var(--paper);
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .field-img .meta .ttl {
    font-family: var(--jp-serif);
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
  }
  .field-img .meta .when {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--shu);
  }

  /* === PLACE (location) === */
  .place {
    padding: 130px 48px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    overflow: hidden;
  }
  .place-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .place-text h2 {
    font-family: var(--jp-serif);
    font-size: clamp(34px, 4.2vw, 60px);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 32px;
  }
  .place-text h2 .shu { color: var(--shu); }
  .place-text h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 0.45em;
    color: var(--ink-light);
    display: block;
    margin-top: 14px;
    letter-spacing: 0;
  }
  .place-text p {
    font-size: 14px;
    line-height: 2.1;
    color: var(--ink-soft);
    margin-bottom: 22px;
    max-width: 500px;
  }
  .place-list {
    margin-top: 36px;
    border-top: 1px solid var(--line);
  }
  .place-row {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 20px;
    align-items: center;
    font-size: 13px;
  }
  .place-row .where {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--shu);
    font-weight: 500;
  }
  .place-row .what {
    font-family: var(--jp-serif);
    font-weight: 500;
    color: var(--ink);
  }
  .place-row .when {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--ink-light);
    text-align: right;
  }

  .place-map {
    aspect-ratio: 1;
    background: var(--paper-deep);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .place-map svg {
    width: 100%; height: 100%;
  }

  /* === MANIFESTO (Five Axes - simplified) === */
  .manifesto {
    background: var(--paper-warm);
    padding: 110px 48px;
    border-bottom: 1px solid var(--line-soft);
  }
  .manifesto-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
  }
  .axes-stack {
    display: flex;
    flex-direction: column;
  }
  .axis-line {
    display: grid;
    grid-template-columns: 50px 100px 1fr;
    gap: 20px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }
  .axis-line:first-child { border-top: 1px solid var(--line); }
  .axis-line .num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    color: var(--shu);
  }
  .axis-line .jp {
    font-family: var(--jp-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
  }
  .axis-line .desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.85;
  }
  .axis-line .desc .en {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-light);
    margin-right: 8px;
    font-size: 12px;
  }

  /* === PRACTICES === */
  .practices {
    padding: 130px 48px;
    border-bottom: 1px solid var(--line-soft);
  }
  .practices-head {
    max-width: 1320px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .practices-head p {
    font-size: 14px;
    line-height: 2;
    color: var(--ink-soft);
    max-width: 480px;
  }
  .practices-list {
    max-width: 1320px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
  }
  .pr-row {
    display: grid;
    grid-template-columns: 60px 240px 1fr 130px 50px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--line-soft);
    gap: 30px;
    text-decoration: none;
    color: inherit;
    transition: padding 0.4s ease;
  }
  .pr-row:hover { padding-left: 14px; }
  .pr-row:hover .pr-arrow { color: var(--shu); transform: translateX(6px); }
  .pr-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--ink-light);
  }
  .pr-name {
    font-family: var(--jp-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
  }
  .pr-name .en {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    color: var(--ink-light);
    margin-top: 4px;
  }
  .pr-desc {
    font-size: 13px;
    line-height: 1.85;
    color: var(--ink-soft);
  }
  .pr-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
    text-align: right;
  }
  .pr-arrow {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--ink-light);
    transition: all 0.3s ease;
    text-align: right;
  }

  /* === WORKSHOP (Self-build emphasis) === */
  .workshop {
    background: var(--ink);
    color: var(--paper);
    padding: 130px 48px;
  }
  .workshop .label { color: rgba(244,238,224,0.6); }
  .workshop .label::before { background: rgba(244,238,224,0.5); }
  .workshop .label .num { color: var(--shu-soft); }

  .workshop-head {
    max-width: 1320px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .workshop .h-display { color: var(--paper); }
  .workshop .h-display em { color: rgba(244,238,224,0.55); }
  .workshop .h-display .shu { color: var(--shu-soft); }
  .workshop-head p {
    font-size: 14px;
    line-height: 2;
    color: rgba(244,238,224,0.75);
    max-width: 460px;
  }

  /* hero workshop card */
  .ws-hero {
    max-width: 1320px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
  }
  .ws-hero .pic {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
  }
  .ws-hero .pic img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.95);
  }
  .ws-hero .info {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .ws-hero .info .tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--shu-soft);
    margin-bottom: 14px;
  }
  .ws-hero .info h3 {
    font-family: var(--jp-serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .ws-hero .info p {
    font-size: 14px;
    line-height: 2;
    color: rgba(244,238,224,0.8);
    margin-bottom: 24px;
  }
  .ws-specs {
    margin-top: auto;
    border-top: 1px solid rgba(244,238,224,0.18);
    padding-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .ws-specs .spec {
    font-size: 12px;
  }
  .ws-specs .spec .lbl {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244,238,224,0.5);
    margin-bottom: 6px;
  }
  .ws-specs .spec .val {
    font-family: var(--jp-serif);
    font-size: 16px;
    color: var(--paper);
  }

  /* secondary cards */
  .ws-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .ws-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    color: var(--paper);
    cursor: pointer;
  }
  .ws-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.9);
    transition: all 0.7s ease;
  }
  .ws-card:hover img { filter: brightness(0.9) saturate(1); transform: scale(1.05); }
  .ws-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(28,24,21,0.95) 100%);
  }
  .ws-card .body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px;
    z-index: 2;
  }
  .ws-card .tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--shu-soft);
    margin-bottom: 8px;
  }
  .ws-card h4 {
    font-family: var(--jp-serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
  }
  .ws-card .where {
    font-family: var(--serif);
    font-style: italic;
    font-size: 11px;
    opacity: 0.7;
  }

  /* === VOICE === */
  .voice {
    padding: 140px 48px 110px;
    border-bottom: 1px solid var(--line-soft);
  }
  .voice-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
  }
  .voice-portrait {
    position: relative;
  }
  .voice-portrait .img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--paper-deep);
  }
  .voice-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.08) saturate(0.85) grayscale(0.15);
  }
  .voice-portrait .deco {
    position: absolute;
    top: -18px; left: -18px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 84px;
    color: var(--shu);
    line-height: 0.7;
    z-index: 2;
  }
  .voice-content .quote {
    font-family: var(--jp-serif);
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 36px;
  }
  .voice-content .quote .shu { color: var(--shu); }
  .voice-content p {
    font-size: 14px;
    line-height: 2.1;
    margin-bottom: 22px;
    color: var(--ink-soft);
    max-width: 540px;
  }
  .voice-meta {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
  }
  .voice-meta .name {
    font-family: var(--jp-serif);
    font-size: 22px;
    font-weight: 600;
  }
  .voice-meta .name small {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--ink-light);
    margin-top: 4px;
  }
  .voice-meta .credentials {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    line-height: 1.9;
    text-align: right;
  }
  .voice-meta .credentials strong {
    color: var(--ink);
    font-weight: 500;
  }

  /* === WORDS === */
  .words {
    background: var(--paper-soft);
    padding: 130px 48px;
    border-bottom: 1px solid var(--line-soft);
  }
  .words-head {
    max-width: 1320px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 48px;
    flex-wrap: wrap;
  }
  .view-all {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: all 0.3s ease;
  }
  .view-all:hover { color: var(--shu); border-color: var(--shu); }
  .words-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .word {
    padding: 32px 28px;
    border-bottom: 1px solid var(--line-soft);
    border-right: 1px solid var(--line-soft);
    cursor: pointer;
    transition: background 0.4s ease;
    text-decoration: none;
    color: inherit;
  }
  .word:nth-child(3n) { border-right: none; }
  .word:hover { background: var(--paper); }
  .word .meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 14px;
    display: flex;
    gap: 14px;
  }
  .word .meta .src { color: var(--shu); font-weight: 500; }
  .word h3 {
    font-family: var(--jp-serif);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .word p {
    font-size: 12px;
    line-height: 1.85;
    color: var(--ink-soft);
    opacity: 0.85;
  }

  /* === JOIN === */
  .join {
    padding: 150px 48px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    overflow: hidden;
  }
  .join::before {
    content: '実践';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    font-family: var(--jp-serif);
    font-size: 480px;
    font-weight: 700;
    color: var(--paper-warm);
    line-height: 0.85;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -0.05em;
  }
  .join-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    z-index: 1;
    align-items: center;
  }
  .join-text h2 {
    font-family: var(--jp-serif);
    font-size: clamp(34px, 4.2vw, 60px);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 32px;
  }
  .join-text h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 0.45em;
    display: block;
    color: var(--ink-light);
    margin-top: 14px;
  }
  .join-text h2 .shu { color: var(--shu); }
  .join-text p {
    font-size: 14px;
    line-height: 2.1;
    color: var(--ink-soft);
    margin-bottom: 18px;
    max-width: 460px;
  }
  .join-paths {
    border-top: 1px solid var(--line);
  }
  .path {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    transition: padding 0.4s ease;
  }
  .path:hover { padding-left: 12px; }
  .path:hover .path-arr { color: var(--shu); transform: translateX(6px); }
  .path-info .ttl {
    font-family: var(--jp-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .path-info .desc {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--ink-light);
  }
  .path-arr {
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    color: var(--ink-light);
    transition: all 0.3s ease;
  }

  /* === FOOTER === */
  footer {
    background: var(--paper-deep);
    padding: 80px 48px 30px;
  }
  .footer-top {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
  }
  .footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 22px;
  }
  .footer-brand .tag {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .footer-brand .desc {
    font-size: 13px;
    line-height: 1.95;
    color: var(--ink-light);
    max-width: 320px;
  }
  .footer-brand .addr {
    margin-top: 22px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
  }
  .footer-col h4 {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--shu);
    margin-bottom: 22px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .footer-col a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-col a:hover { color: var(--shu); }
  .footer-bottom {
    max-width: 1320px;
    margin: 26px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
  }
  .footer-bottom .seal {
    color: var(--shu);
    font-family: var(--jp-serif);
    letter-spacing: 0.1em;
  }

  /* === REVEAL === */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* === RESPONSIVE === */
  @media (max-width: 1100px) {
    .pr-row { grid-template-columns: 50px 200px 1fr 100px 40px; gap: 20px; }
    .ws-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    nav { padding: 14px 20px; grid-template-columns: 1fr auto; }
    nav .menu, nav .brand-tag { display: none; }
    nav .brand img { height: 26px; }
    section { padding: 70px 24px; }
    .hero { padding: 70px 24px 50px; }
    .make, .field, .place, .manifesto, .practices, .workshop, .voice, .words, .join { padding: 80px 24px; }
    .hero-grid, .make-head, .field-head, .place-grid, .manifesto-inner, .practices-head, .workshop-head, .ws-hero, .voice-grid, .join-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 38px; }
    .hero-stack { height: 420px; }
    .make-grid { grid-template-columns: 1fr 1fr; }
    .make-cell:nth-child(2n) { border-right: none; }
    .make-cell:nth-child(odd) { border-right: 1px solid var(--line-soft); }
    .make-cell { border-bottom: 1px solid var(--line-soft); }
    .field-grid { grid-template-columns: 1fr 1fr; }
    .field-img.fa { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/3; }
    .axis-line { grid-template-columns: 40px 1fr; }
    .axis-line .desc { grid-column: 1 / -1; padding-top: 6px; }
    .pr-row { grid-template-columns: 36px 1fr 30px; gap: 16px; padding: 22px 0; }
    .pr-row .pr-desc, .pr-row .pr-tag { display: none; }
    .ws-grid { grid-template-columns: 1fr 1fr; }
    .words-grid { grid-template-columns: 1fr; }
    .word { border-right: none; }
    .place-list .place-row { grid-template-columns: 80px 1fr; gap: 14px; }
    .place-list .place-row .when { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; margin-bottom: 16px; }
    .join::before { font-size: 280px; }
  }


/* ============================================================
   WordPress 投稿ページ用の追加スタイル
   ============================================================ */
.single-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 32px 120px;
}
.post-header {
  margin-bottom: 60px;
  text-align: left;
}
.post-meta-top {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
}
.post-meta-top .cat {
  color: var(--shu);
  font-weight: 500;
}
.post-title {
  font-family: var(--jp-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.post-thumb {
  margin-bottom: 40px;
  overflow: hidden;
  background: var(--paper-deep);
}
.post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.post-content {
  font-size: 16px;
  line-height: 2.05;
  color: var(--ink-soft);
}
.post-content p { margin-bottom: 1.4em; }
.post-content h2, .post-content h3, .post-content h4 {
  font-family: var(--jp-serif);
  font-weight: 600;
  margin: 2em 0 0.8em;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.5;
}
.post-content h2 { font-size: 24px; padding-left: 14px; border-left: 3px solid var(--shu); }
.post-content h3 { font-size: 19px; }
.post-content h4 { font-size: 17px; }
.post-content a {
  color: var(--shu);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.post-content img {
  max-width: 100%;
  height: auto;
  margin: 1.6em 0;
}
.post-content ul, .post-content ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}
.post-content li { margin-bottom: 0.4em; }
.post-content blockquote {
  border-left: 2px solid var(--shu);
  padding: 8px 24px;
  margin: 1.6em 0;
  font-family: var(--jp-serif);
  font-size: 17px;
  color: var(--ink-soft);
  background: var(--paper-soft);
}
.post-footer {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.post-tags a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s ease;
}
.post-tags a:hover { color: var(--shu); border-color: var(--shu); }
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.post-nav a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}
.post-nav a:hover { color: var(--shu); border-color: var(--shu); }

/* archive */
.archive-header {
  text-align: left;
  margin-bottom: 60px;
}
.archive-grid {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.archive-thumb {
  margin: -32px -28px 20px;
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: 4/3;
}
.archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-desc {
  color: var(--ink-soft);
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
}

/* pagination */
.pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.pagination .page-numbers {
  display: flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  list-style: none;
}
.pagination .page-numbers a,
.pagination .page-numbers span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s ease;
}
.pagination .page-numbers a:hover,
.pagination .page-numbers .current {
  background: var(--shu);
  color: var(--paper);
  border-color: var(--shu);
}

/* ============================================================
   NOTE.COM フィード連携カード
   ============================================================ */
.note-word {
  position: relative;
  display: flex;
  flex-direction: column;
}
.note-thumb {
  margin: -32px -28px 20px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper-deep);
}
.note-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.note-word:hover .note-thumb img {
  transform: scale(1.05);
}
.note-word .note-read {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.3s ease;
}
.note-word:hover .note-read {
  color: var(--shu);
}
