*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --base: #FAFAF7;
      --navy: #2C3E50;
      --terra: #E8A87C;
      --mint: #7FB3B0;
      --text: #1A1A1A;
      --text-light: #666;
      --border: rgba(44,62,80,0.12);
      --section-gap: 120px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: var(--base);
      color: var(--text);
      line-height: 1.8;
      overflow-x: hidden;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--base); }
    ::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 2px; }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 40px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    header.scrolled {
      background: rgba(250,250,247,0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--border);
    }
    .header-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--base);
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: color 0.4s;
    }
    header.scrolled .header-logo { color: var(--navy); }

    nav { display: flex; align-items: center; gap: 32px; }
    nav a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.3s;
    }
    nav a:hover { color: var(--terra); }
    header.scrolled nav a { color: var(--navy); }
    header.scrolled nav a:hover { color: var(--terra); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--base);
      transition: all 0.3s;
    }
    header.scrolled .hamburger span { background: var(--navy); }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: rgba(250,250,247,0.97);
      backdrop-filter: blur(16px);
      padding: 24px 40px;
      flex-direction: column;
      gap: 0;
      z-index: 999;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.3s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--terra); }

    /* ===== HERO ===== */
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #heroCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
    }
    .hero-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(11px, 1.2vw, 13px);
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 8vw, 110px);
      font-weight: 300;
      color: #fff;
      letter-spacing: 0.02em;
      line-height: 1.05;
      margin-bottom: 8px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--terra);
    }
    .hero-subtitle {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: clamp(13px, 1.5vw, 16px);
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.15em;
      margin-bottom: 40px;
    }
    .hero-catch {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 300;
      color: #fff;
      letter-spacing: 0.08em;
      padding: 16px 32px;
      border: 1px solid rgba(255,255,255,0.3);
      display: inline-block;
      backdrop-filter: blur(4px);
    }
    .scroll-down {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.6);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .scroll-down svg { width: 20px; height: 20px; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ===== SECTION BASE ===== */
    section { padding: var(--section-gap) 0; }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
    .container-wide { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

    .section-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 48px;
    }
    .section-title span { color: var(--terra); }

    /* FADE IN */
    .fade-in {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }
    .fade-in-delay-5 { transition-delay: 0.5s; }

    /* ===== ABOUT ===== */
    #about { background: var(--base); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .about-text p {
      font-size: 15px;
      color: var(--text);
      line-height: 2;
      margin-bottom: 24px;
      font-weight: 300;
    }
    .about-message {
      border-left: 3px solid var(--terra);
      padding: 28px 32px;
      background: rgba(232,168,124,0.06);
      font-size: 14px;
      line-height: 2;
      color: var(--text);
      font-weight: 300;
      margin-top: 32px;
    }
    .about-message p { margin: 0; }

    .abr-box {
      background: var(--navy);
      color: #fff;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    .abr-box::before {
      content: 'ABR';
      position: absolute;
      top: -10px; right: -10px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 120px;
      font-weight: 300;
      color: rgba(255,255,255,0.04);
      line-height: 1;
      pointer-events: none;
    }
    .abr-box-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 16px;
    }
    .abr-box h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.4;
    }
    .abr-box p {
      font-size: 13px;
      line-height: 2;
      color: rgba(255,255,255,0.8);
      font-weight: 300;
    }
    .abr-keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }
    .abr-keyword {
      font-size: 11px;
      letter-spacing: 0.08em;
      padding: 4px 12px;
      border: 1px solid rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.7);
    }

    /* ===== MAGAZINE ===== */
    #magazine { background: #F4F4F0; }
    .magazine-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 32px;
      flex-wrap: wrap;
    }
    .magazine-header p {
      font-size: 15px;
      color: var(--text-light);
      font-weight: 300;
      max-width: 400px;
    }
    .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-block;
      background: var(--navy);
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      padding: 14px 28px;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn-primary:hover { background: #1a2a38; transform: translateY(-1px); }
    .btn-outline {
      display: inline-block;
      background: transparent;
      color: var(--navy);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      padding: 13px 27px;
      text-decoration: none;
      border: 1px solid var(--navy);
      transition: all 0.3s;
      cursor: pointer;
    }
    .btn-outline:hover { background: var(--navy); color: #fff; }

    .toc-list { list-style: none; }
    .toc-chapter {
      border-bottom: 1px solid var(--border);
    }
    .toc-chapter-btn {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      text-align: left;
      gap: 16px;
    }
    .toc-chapter-btn:hover .toc-ch-title { color: var(--terra); }
    .toc-ch-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      color: var(--terra);
      min-width: 36px;
      letter-spacing: 0.05em;
    }
    .toc-ch-title {
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      flex: 1;
      transition: color 0.3s;
      line-height: 1.5;
    }
    .toc-arrow {
      width: 20px;
      height: 20px;
      color: var(--text-light);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .toc-chapter-btn.open .toc-arrow { transform: rotate(180deg); }
    .toc-sub {
      display: none;
      padding: 0 0 16px 52px;
    }
    .toc-sub.open { display: block; }
    .toc-sub li {
      font-size: 13px;
      color: var(--text-light);
      padding: 6px 0;
      font-weight: 300;
      line-height: 1.6;
      border-left: 1px solid var(--mint);
      padding-left: 16px;
      margin-bottom: 4px;
    }
    .toc-sub li::before { content: none; }

.toc-ch-title small {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  transition: color 0.3s;
}

.toc-chapter-btn:hover .toc-ch-title,
.toc-chapter-btn:hover .toc-ch-title small {
  color: var(--terra);
}

    /* ===== HIGHLIGHTS ===== */
    #highlights { background: var(--base); }
    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .highlight-card {
      background: #fff;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid var(--border);
    }
    .highlight-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 48px rgba(44,62,80,0.08);
      z-index: 1;
    }
    .highlight-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%;
      height: 3px;
      background: var(--terra);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .highlight-card:hover::before { transform: scaleX(1); }
    .highlight-icon {
      font-size: 36px;
      margin-bottom: 20px;
      display: block;
    }
    .highlight-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .highlight-desc {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.9;
      font-weight: 300;
    }
    .highlight-num {
      position: absolute;
      top: 24px; right: 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      font-weight: 300;
      color: rgba(44,62,80,0.05);
      line-height: 1;
    }

    /* ===== MEMBERS ===== */
    #members { background: var(--navy); }
    #members .section-label { color: var(--terra); }
    #members .section-title { color: #fff; }
    .members-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
    }
    .member-card {
      position: relative;
      background: rgba(255,255,255,0.04);
      padding: 28px 24px;
      cursor: default;
      overflow: hidden;
      transition: background 0.3s;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .member-card:hover {
      background: rgba(255,255,255,0.08);
    }
    .member-name {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 4px;
      line-height: 1.5;
    }
    .member-name-en {
      font-family: 'Cormorant Garamond', serif;
      font-size: 12px;
      color: var(--mint);
      letter-spacing: 0.05em;
    }
    .member-overlay {
      position: absolute;
      inset: 0;
      background: var(--terra);
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .member-card:hover .member-overlay {
      opacity: 1;
      transform: translateY(0);
    }
    .member-theme {
      font-size: 12px;
      color: var(--navy);
      font-weight: 500;
      line-height: 1.8;
      text-align: center;
    }

    /* ===== PHOTOVOICE ===== */
    #photovoice { background: #F4F4F0; }
    .instagram-wrap {
      text-align: center;
    }
    .instagram-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.05em;
      padding: 16px 32px;
      text-decoration: none;
      border-radius: 0;
      transition: opacity 0.3s, transform 0.2s;
      margin-bottom: 40px;
    }
    .instagram-link-btn:hover { opacity: 0.9; transform: translateY(-2px); }
    .instagram-link-btn svg { width: 22px; height: 22px; }
    .insta-embed-note {
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 24px;
      font-weight: 300;
    }
    .instagram-widget {
      max-width: 900px;
      margin: 0 auto;
      background: #fff;
      border: 1px solid var(--border);
      padding: 40px;
      text-align: center;
    }
    .insta-preview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
      margin-bottom: 24px;
    }
    .insta-cell {
      aspect-ratio: 1;
      background: var(--mint);
      opacity: 0.3;
    }
    .insta-cell:nth-child(2n) { background: var(--terra); opacity: 0.25; }
    .insta-cell:nth-child(3n) { background: var(--navy); opacity: 0.15; }

    /* ===== VIDEOS ===== */
    #videos { background: var(--base); }
    .videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .video-item {}
    .video-embed {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      overflow: hidden;
      background: var(--navy);
    }
    .video-embed iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .video-label {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 10px;
      font-weight: 300;
      line-height: 1.5;
      letter-spacing: 0.02em;
    }

    /* ===== NEWS ===== */
    #news { background: #F4F4F0; }
    .news-list { list-style: none; }
    .news-item {
      border-bottom: 1px solid var(--border);
    }
    .news-link {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      padding: 24px 0;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s;
    }
    .news-link:hover .news-title { color: var(--terra); }
    .news-date {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      color: var(--terra);
      white-space: nowrap;
      min-width: 100px;
      padding-top: 2px;
      letter-spacing: 0.05em;
    }
    .news-title {
      font-size: 14px;
      font-weight: 400;
      color: var(--text);
      line-height: 1.7;
      transition: color 0.3s;
    }
    .news-arrow {
      margin-left: auto;
      color: var(--terra);
      font-size: 16px;
      padding-top: 2px;
      flex-shrink: 0;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.7);
      padding: 60px 0;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      color: #fff;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }
    .footer-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.1em;
      margin-bottom: 28px;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 40px;
    }
    .footer-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a:hover { color: var(--terra); }
    .footer-links a svg { width: 16px; height: 16px; }
    .footer-copy {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.05em;
    }
    .footer-divider {
      width: 40px;
      height: 1px;
      background: var(--terra);
      margin: 0 auto 32px;
    }

    /* ===== DIVIDER DECO ===== */
    .section-deco {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    .section-deco-line {
      height: 1px;
      width: 40px;
      background: var(--terra);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .highlights-grid { grid-template-columns: repeat(2, 1fr); }
      .members-grid { grid-template-columns: repeat(3, 1fr); }
      .videos-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      :root { --section-gap: 80px; }
      header { padding: 0 20px; }
      .container, .container-wide { padding: 0 20px; }
      nav { display: none; }
      .hamburger { display: flex; }

      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .highlights-grid { grid-template-columns: 1fr; }
      .members-grid { grid-template-columns: repeat(2, 1fr); }
      .videos-grid { grid-template-columns: 1fr; }
      .magazine-header { flex-direction: column; align-items: flex-start; }

      .news-link { flex-wrap: wrap; gap: 8px; }
      .news-date { min-width: auto; }

      .hero-title { font-size: 44px; }
      .hero-catch { font-size: 14px; padding: 12px 20px; }
    }
    @media (max-width: 480px) {
      .members-grid { grid-template-columns: 1fr; }
      .btn-group { flex-direction: column; }
      .footer-links { flex-direction: column; align-items: center; gap: 16px; }
    }

/* ===== LUCIDE ICONS ===== */
.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  line-height: 1;
}
.highlight-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.75;
}
.highlight-card:hover .highlight-icon {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

