    /* ========================================
       CSS CUSTOM PROPERTIES
    ======================================== */
    :root {
      --color-bg: #0a0a0a;
      --color-bg-secondary: #111111;
      --color-bg-tertiary: #1a1a1a;
      --color-text: #f0f0f0;
      --color-text-muted: #888888;
      --color-text-dim: #555555;
      --color-accent: #c8ff00;
      --color-accent-dark: #a0cc00;
      --color-border: #222222;
      --color-white: #ffffff;
      --font-en: 'Inter', sans-serif;
      --font-jp: 'Noto Sans JP', sans-serif;
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    }

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

    html {
      font-size: 16px;
      scroll-behavior: auto;
    }

    body {
      font-family: var(--font-jp);
      background: var(--color-bg);
      color: var(--color-text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body.loading {
      overflow: hidden;
      height: 100vh;
    }

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

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

    ul, ol {
      list-style: none;
    }

    /* ========================================
       CUSTOM CURSOR
    ======================================== */
    .cursor {
      width: 20px;
      height: 20px;
      border: 2px solid var(--color-accent);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 10000;
      transition: width 0.3s, height 0.3s, border-color 0.3s;
      transform: translate(-50%, -50%);
      mix-blend-mode: difference;
    }

    .cursor.hover {
      width: 60px;
      height: 60px;
      border-color: var(--color-white);
    }

    .cursor-dot {
      width: 6px;
      height: 6px;
      background: var(--color-accent);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 10001;
      transform: translate(-50%, -50%);
    }

    @media (max-width: 768px) {
      .cursor, .cursor-dot { display: none; }
    }

    /* ========================================
       LOADING SCREEN
    ======================================== */
    .loading-screen {
      position: fixed;
      inset: 0;
      background: var(--color-bg);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .loading-logo {
      font-family: var(--font-en);
      font-weight: 900;
      font-size: clamp(2rem, 5vw, 4rem);
      letter-spacing: 0.15em;
      color: var(--color-white);
      overflow: hidden;
      text-transform: lowercase;
    }

    .loading-logo-text {
      display: inline-block;
      opacity: 0;
    }

    .loading-bar {
      width: 200px;
      height: 2px;
      background: var(--color-border);
      margin-top: 2rem;
      position: relative;
      overflow: hidden;
    }

    .loader-bar-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 0%;
      background: var(--color-accent);
    }


    /* ========================================
       HEADER / NAVIGATION
    ======================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      mix-blend-mode: difference;
    }

    .header-logo {
      font-family: var(--font-en);
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: 0.12em;
      color: var(--color-white);
      text-transform: lowercase;
    }

    .header-logo .dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--color-accent);
      border-radius: 50%;
      margin-left: 2px;
      vertical-align: super;
      font-size: 0;
    }

    .nav-menu {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    .nav-link {
      font-family: var(--font-en);
      font-weight: 500;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-white);
      position: relative;
      padding-bottom: 4px;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--color-accent);
      transition: width 0.4s var(--ease-out-expo);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Menu Toggle */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 1001;
      padding: 10px;
    }

    .menu-toggle span {
      display: block;
      width: 28px;
      height: 2px;
      background: var(--color-white);
      transition: all 0.4s var(--ease-out-expo);
      transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    .nav-menu-mobile {
      position: fixed;
      inset: 0;
      background: var(--color-bg);
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s;
    }

    .nav-menu-mobile.active {
      opacity: 1;
      pointer-events: all;
    }

    .nav-menu-mobile a {
      font-family: var(--font-en);
      font-weight: 700;
      font-size: clamp(2rem, 6vw, 3.5rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-white);
      transform: translateY(30px);
      opacity: 0;
      transition: color 0.3s;
    }

    .nav-menu-mobile a:hover {
      color: var(--color-accent);
    }

    .nav-menu-mobile.active a {
      transform: translateY(0);
      opacity: 1;
    }

    /* ========================================
       HERO SECTION
    ======================================== */
    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 0 8vw;
      padding-bottom: 8rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-text {
      position: absolute;
      right: -5vw;
      bottom: -5vh;
      font-family: var(--font-en);
      font-weight: 900;
      font-size: clamp(15rem, 25vw, 30rem);
      color: var(--color-bg-secondary);
      line-height: 0.85;
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.05em;
    }

    .hero-label {
      font-family: var(--font-en);
      font-weight: 500;
      font-size: clamp(0.85rem, 1.7vw, 1.4rem);
      letter-spacing: 0.08em;
      text-transform: lowercase;
      color: var(--color-accent);
      margin-bottom: 1.2rem;
      overflow: hidden;
      width: 100%;
      line-height: 1.4;
    }

    .hero-label span {
      display: inline-block;
      opacity: 0;
      transform: translateY(40px);
    }

    .hero-title {
      font-family: var(--font-en);
      font-weight: 900;
      font-size: clamp(4rem, 12vw, 11rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      margin-bottom: 0.8rem;
    }

    .hero-title .line {
      display: block;
      overflow: hidden;
    }

    .hero-title .line span {
      display: inline-block;
      transform: translateY(120%);
    }

    .hero-title .highlight {
      color: var(--color-accent);
    }

    .hero-subtitle {
      font-family: var(--font-jp);
      font-weight: 400;
      font-size: clamp(0.85rem, 1.8vw, 1.5rem);
      color: var(--color-text-muted);
      max-width: none;
      line-height: 1.4;
      overflow: hidden;
      letter-spacing: 0.08em;
      white-space: nowrap;
      margin-top: 0.3rem;
      padding-left: 0;
    }

    .hero-subtitle span {
      display: inline-block;
      opacity: 0;
      transform: translateY(40px);
    }

    .hero-subtitle-sp {
      display: none !important;
    }

    .hero-label-pc { max-width: none; white-space: nowrap; }

    .hero-label-sp {
      display: none !important;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 8vw;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-scroll-line {
      width: 1px;
      height: 60px;
      background: var(--color-border);
      position: relative;
      overflow: hidden;
    }

    .hero-scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-accent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0% { top: -100%; }
      50% { top: 0; }
      100% { top: 100%; }
    }

    .hero-scroll-text {
      font-family: var(--font-en);
      font-size: 0.625rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      writing-mode: vertical-rl;
    }

    /* Floating particles */
    .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: var(--color-accent);
      border-radius: 50%;
      opacity: 0.3;
    }

    /* ========================================
       SECTION COMMON
    ======================================== */
    section {
      position: relative;
    }

    .section-padding {
      padding: 10rem 8vw;
    }

    .section-label {
      font-family: var(--font-en);
      font-weight: 500;
      font-size: 0.6875rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .section-label::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--color-accent);
    }

    .section-title {
      font-family: var(--font-en);
      font-weight: 800;
      font-size: clamp(2.5rem, 5vw, 5rem);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 3rem;
    }

    .section-title .line {
      display: block;
      overflow: visible;
    }

    .section-title .line span {
      display: inline-block;
      opacity: 0;
      transform: scale(2.5) translateY(40px);
      transform-origin: left bottom;
    }

    .section-divider {
      width: 100%;
      height: 1px;
      background: var(--color-border);
    }

    /* Reveal animation base */
    .reveal {
      opacity: 0;
      transform: translateY(60px);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.9);
    }

    /* ========================================
       MARQUEE
    ======================================== */
    .marquee-section {
      padding: 1.5rem 0;
      overflow: hidden;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 25s linear infinite;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    .marquee-item {
      font-family: var(--font-en);
      font-weight: 800;
      font-size: clamp(1rem, 2vw, 2rem);
      white-space: nowrap;
      padding: 0 1rem;
      color: transparent;
      -webkit-text-stroke: 1px var(--color-text-dim);
      transition: color 0.3s, -webkit-text-stroke 0.3s;
    }

    .marquee-item:hover {
      color: var(--color-accent);
      -webkit-text-stroke: 1px var(--color-accent);
    }

    .marquee-item .separator {
      display: inline-block;
      margin: 0 0.75rem;
      color: var(--color-accent);
      font-size: 0.5em;
      vertical-align: middle;
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ========================================
       NEWS TICKER
    ======================================== */
    .news-section {
      padding: 1rem 0;
      overflow: hidden;
      background: var(--color-bg-secondary);
      border-bottom: 1px solid var(--color-border);
    }

    .news-inner {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 0 8vw;
    }

    .news-label {
      font-family: var(--font-en);
      font-weight: 700;
      font-size: 0.6875rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-accent);
      flex-shrink: 0;
      padding: 0.3rem 0.8rem;
      border: 1px solid var(--color-accent);
      border-radius: 2px;
    }

    .news-ticker-wrap {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .news-ticker-wrap::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 60px;
      background: linear-gradient(to left, var(--color-bg-secondary), transparent);
      z-index: 1;
    }

    .news-ticker {
      display: flex;
      gap: 3rem;
      width: max-content;
      animation: newsTicker 30s linear infinite;
    }

    .news-ticker:hover {
      animation-play-state: paused;
    }

    .news-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      white-space: nowrap;
      font-size: 0.8125rem;
      cursor: pointer;
      transition: color 0.3s;
    }

    .news-item:hover {
      color: var(--color-accent);
    }

    .news-date {
      font-family: var(--font-en);
      font-weight: 500;
      font-size: 0.6875rem;
      color: var(--color-text-dim);
      letter-spacing: 0.05em;
    }

    .news-title {
      color: var(--color-text-muted);
    }

    .news-item:hover .news-title {
      color: var(--color-accent);
    }

    @keyframes newsTicker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ========================================
       ABOUT SECTION
    ======================================== */
    .about {
      background: var(--color-bg);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .about-visual {
      position: relative;
      height: 500px;
      overflow: hidden;
      border-radius: 4px;
    }

    .about-visual-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--color-bg-tertiary), var(--color-bg-secondary));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-visual-text {
      font-family: var(--font-en);
      font-weight: 900;
      font-size: 8rem;
      color: var(--color-bg);
      -webkit-text-stroke: 1px var(--color-border);
      opacity: 0.5;
    }

    .about-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--color-bg), transparent 50%);
    }

    /* About Logo */
    .about-logo-container {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .about-logo-img {
      width: 280px;
      height: auto;
      filter: invert(1) brightness(1.2);
      opacity: 0;
      transform: translateY(20px);
    }

    @media (max-width: 768px) {
      .about-logo-img {
        width: 200px;
      }
    }

    .about-visual-accent {
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: var(--color-accent);
      filter: blur(60px);
      opacity: 0.3;
      top: 30%;
      left: 20%;
    }

    /* Brand meaning section */
    .about-brand-meaning {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
      padding: 1.5rem 2rem;
      background: var(--color-bg-secondary);
      border-radius: 4px;
      border-left: 3px solid var(--color-accent);
    }

    .about-brand-meaning .brand-word {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
    }

    .about-brand-meaning .brand-jp {
      font-family: var(--font-jp);
      font-weight: 700;
      font-size: 1.5rem;
    }

    .about-brand-meaning .brand-en {
      font-family: var(--font-en);
      font-weight: 400;
      font-size: 0.6875rem;
      color: var(--color-accent);
      letter-spacing: 0.05em;
    }

    .about-brand-meaning .brand-plus {
      font-family: var(--font-en);
      font-weight: 300;
      font-size: 1.25rem;
      color: var(--color-text-dim);
    }

    .about-brand-meaning .brand-equals {
      font-family: var(--font-en);
      font-weight: 300;
      font-size: 1.25rem;
      color: var(--color-text-dim);
      margin-left: 0.5rem;
    }

    .about-brand-meaning .brand-result {
      font-family: var(--font-en);
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--color-accent);
      letter-spacing: 0.05em;
      margin-left: 0.5rem;
    }

    .about-content h3 {
      font-family: var(--font-jp);
      font-weight: 700;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .about-content p {
      font-size: 0.9375rem;
      line-height: 2.2;
      color: var(--color-text-muted);
      margin-bottom: 1.5rem;
    }

    .about-numbers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid var(--color-border);
    }

    .about-number {
      text-align: center;
    }

    .about-number .num {
      font-family: var(--font-en);
      font-weight: 800;
      font-size: clamp(2rem, 3vw, 3rem);
      color: var(--color-accent);
      line-height: 1;
    }

    .about-number .num.special-text {
      font-size: clamp(1rem, 1.8vw, 1.5rem);
      letter-spacing: 0.1em;
    }

    .about-number .label {
      font-size: 0.75rem;
      color: var(--color-text-muted);
      margin-top: 0.5rem;
      letter-spacing: 0.05em;
    }ns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid var(--color-border);
    }

    .about-number {
      text-align: center;
    }

    .about-number .num {
      font-family: var(--font-en);
      font-weight: 800;
      font-size: clamp(2rem, 3vw, 3rem);
      color: var(--color-accent);
      line-height: 1;
    }

    .about-number .num.special-text {
      font-size: clamp(1rem, 1.8vw, 1.5rem);
      letter-spacing: 0.1em;
    }

    .about-number .label {
      font-size: 0.75rem;
      color: var(--color-text-muted);
      margin-top: 0.5rem;
      letter-spacing: 0.05em;
    }

    /* ========================================
       PHILOSOPHY → SERVICE SPACER (PC only)
    ======================================== */
    .phil-service-spacer {
      display: none;             /* hidden on SP by default */
    }
    @media (min-width: 769px) {
      .phil-service-spacer {
        display: block;
        height: 100vh;
        background: #000;
      }
    }

    /* ========================================
       SERVICE SECTION
    ======================================== */
    .service {
      background: var(--color-bg-secondary);
    }

    .service-list {
      margin-top: 4rem;
    }

    .service-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 3rem;
      align-items: center;
      padding: 3rem 0;
      border-bottom: 1px solid var(--color-border);
      cursor: pointer;
      transition: background 0.4s;
      position: relative;
    }

    .service-item:first-child {
      border-top: 1px solid var(--color-border);
    }

    .service-item:hover {
      background: rgba(200, 255, 0, 0.02);
    }

    .service-item:hover .service-num {
      color: var(--color-accent);
    }

    .service-item:hover .service-name {
      transform: translateX(20px);
      color: var(--color-accent);
    }

    .service-item:hover .service-arrow {
      transform: translateX(10px);
      color: var(--color-accent);
    }

    .service-num {
      font-family: var(--font-en);
      font-weight: 300;
      font-size: 0.875rem;
      color: var(--color-text-dim);
      transition: color 0.4s;
      min-width: 40px;
    }

    .service-info {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .service-name {
      font-family: var(--font-en);
      font-weight: 700;
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      letter-spacing: -0.01em;
      transition: transform 0.5s var(--ease-out-expo), color 0.4s;
    }

    .service-desc {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      line-height: 1.8;
      max-width: 600px;
    }

    .service-arrow {
      font-family: var(--font-en);
      font-size: 1.5rem;
      color: var(--color-text-dim);
      transition: transform 0.5s var(--ease-out-expo), color 0.4s;
    }

    /* ========================================
       SERVICE DETAIL OVERLAY
    ======================================== */
    .service-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      background: rgba(10, 10, 10, 0.97);
      overflow-y: auto;
    }

    .service-overlay-bg {
      display: none;
    }

    .service-overlay-close {
      position: absolute;
      top: 2rem;
      right: 3rem;
      width: 50px;
      height: 50px;
      border: 1px solid var(--color-border);
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text);
      font-size: 1.5rem;
      transition: border-color 0.3s, transform 0.3s;
    }

    .service-overlay-close:hover {
      border-color: var(--color-accent);
      transform: rotate(90deg);
    }

    .service-overlay-close::before,
    .service-overlay-close::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 1.5px;
      background: var(--color-text);
    }

    .service-overlay-close::before {
      transform: rotate(45deg);
    }

    .service-overlay-close::after {
      transform: rotate(-45deg);
    }

    .service-overlay-content {
      position: relative;
      z-index: 5;
      height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .service-overlay-image {
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .service-overlay-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.2);
      filter: brightness(0.6);
    }

    @keyframes overlayImageSlide {
      0% { background-position: 60% center; transform: scale(1.15); }
      100% { background-position: 40% center; transform: scale(1.05); }
    }

    .service-overlay-image.is-active {
      animation: overlayImageSlide 12s ease-out forwards;
    }

    .service-overlay-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 50%, var(--color-bg) 100%);
    }

    .service-overlay-image-num {
      position: absolute;
      bottom: 3rem;
      left: 3rem;
      font-family: var(--font-en);
      font-weight: 900;
      font-size: 8rem;
      color: var(--color-white);
      opacity: 0.1;
      line-height: 1;
    }

    .service-overlay-details {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem 6rem 4rem 4rem;
      overflow-y: auto;
    }

    .service-overlay-label {
      font-family: var(--font-en);
      font-weight: 500;
      font-size: 0.6875rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .service-overlay-label::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--color-accent);
    }

    .service-overlay-title {
      font-family: var(--font-en);
      font-weight: 900;
      font-size: clamp(3rem, 5vw, 5rem);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 2.5rem;
    }

    .service-overlay-desc {
      font-size: 1rem;
      line-height: 2.2;
      color: var(--color-text-muted);
      margin-bottom: 3rem;
      max-width: 500px;
      opacity: 0;
      transform: translateY(30px);
    }

    .service-overlay-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      opacity: 0;
      transform: translateY(30px);
    }

    .service-overlay-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--color-border);
    }

    .service-overlay-feature-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(200, 255, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      color: var(--color-accent);
      flex-shrink: 0;
    }

    .service-overlay-feature-text {
      font-size: 0.875rem;
      color: var(--color-text);
      line-height: 1.6;
    }

    .service-overlay-cta {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      margin-top: 2.5rem;
      font-family: var(--font-en);
      font-weight: 600;
      font-size: 0.8125rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-accent);
      cursor: pointer;
      background: none;
      border: none;
      opacity: 0;
      transform: translateY(20px);
      transition: gap 0.3s;
    }

    .service-overlay-cta:hover {
      gap: 1.5rem;
    }

    .service-overlay-cta .cta-line {
      width: 40px;
      height: 1px;
      background: var(--color-accent);
      transition: width 0.3s;
    }

    .service-overlay-cta:hover .cta-line {
      width: 60px;
    }

    @media (max-width: 768px) {
      .service-overlay-content {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
      }

      .service-overlay-image {
        height: 40vh;
      }

      .service-overlay-details {
        padding: 2rem 1.5rem 4rem;
      }

      .service-overlay-close {
        top: 1rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
      }

      .service-overlay-image-num {
        font-size: 5rem;
        bottom: 1.5rem;
        left: 1.5rem;
      }
    }

    /* ========================================
       WORKS SECTION
    ======================================== */
    .works {
      background: var(--color-bg);
      overflow: hidden;
    }

    .works-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
    }

    .works-scroll {
      display: flex;
      gap: 2rem;
      padding-bottom: 2rem;
      overflow-x: auto;
      cursor: grab;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .works-scroll::-webkit-scrollbar {
      display: none;
    }

    .works-scroll:active {
      cursor: grabbing;
    }

    .work-card {
      flex: 0 0 400px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }

    .work-card-image {
      width: 100%;
height: 300px;
      position: relative;
      overflow: hidden;
    }

    .work-card-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.3));
      z-index: 1;
    }

    .work-card-label {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      z-index: 2;
      font-family: var(--font-en);
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-accent);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s var(--ease-out-expo);
    }

    .work-card-title {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      z-index: 2;
      font-family: var(--font-en);
      font-weight: 900;
      font-size: clamp(1.5rem, 2vw, 2rem);
      letter-spacing: -0.01em;
      color: var(--color-white);
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.5s var(--ease-out-expo) 0.1s;
    }

    .work-card-meta {
      position: absolute;
      top: 2rem;
      right: 2rem;
      z-index: 2;
      font-family: var(--font-en);
      font-weight: 500;
      font-size: 0.6875rem;
      letter-spacing: 0.1em;
      color: var(--color-white);
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.5s var(--ease-out-expo) 0.2s;
    }

    .work-card:hover .work-card-image {
      transform: scale(1.05);
    }

    .work-card:hover .work-card-label {
      opacity: 1;
      transform: translateY(0);
    }

    .work-card:hover .work-card-title {
      opacity: 1;
      transform: translateY(0);
    }

    .work-card:hover .work-card-meta {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       TESTIMONIALS SECTION
    ======================================== */
    .testimonials {
      background: var(--color-bg-secondary);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .testimonial-card {
      padding: 2.5rem;
      background: var(--color-bg);
      border-radius: 4px;
      border: 1px solid var(--color-border);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      cursor: pointer;
      transition: border-color 0.3s, transform 0.3s;
    }

    .testimonial-card:hover {
      border-color: var(--color-accent);
      transform: translateY(-5px);
    }

    .testimonial-stars {
      display: flex;
      gap: 0.25rem;
    }

    .star {
      font-size: 1rem;
      color: var(--color-accent);
    }

    .testimonial-text {
      font-size: 0.875rem;
      line-height: 1.8;
      color: var(--color-text-muted);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--color-border);
    }

    .testimonial-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--color-bg-tertiary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-en);
      font-weight: 800;
      color: var(--color-accent);
      font-size: 1.25rem;
    }

    .testimonial-info h4 {
      font-size: 0.875rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .testimonial-info p {
      font-size: 0.75rem;
      color: var(--color-text-dim);
    }

    /* ========================================
       CONTACT / CTA SECTION
    ======================================== */
    .contact {
      background: var(--color-bg);
    }

    .contact-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-subtitle {
      font-size: 1.125rem;
      color: var(--color-text-muted);
      line-height: 2;
      margin-bottom: 3rem;
    }

    .contact-cta {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 2.5rem;
      background: var(--color-accent);
      color: var(--color-bg);
      font-family: var(--font-en);
      font-weight: 700;
      font-size: 0.8125rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.4s var(--ease-out-expo);
      text-decoration: none;
    }

    .contact-cta:hover {
      transform: translateY(-3px);
      gap: 1.5rem;
      box-shadow: 0 10px 30px rgba(200, 255, 0, 0.2);
    }

    .contact-cta-arrow {
      font-size: 1rem;
      transition: transform 0.3s;
    }

    /* ========================================
       FOOTER
    ======================================== */
    footer {
      background: var(--color-bg-secondary);
      border-top: 1px solid var(--color-border);
      padding: 4rem 8vw 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 4rem;
    }

    .footer-section h4 {
      font-family: var(--font-en);
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-white);
      margin-bottom: 1.5rem;
    }

    .footer-section ul {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-section a {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      transition: color 0.3s;
    }

    .footer-section a:hover {
      color: var(--color-accent);
    }

    .footer-section p {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      line-height: 1.8;
    }

    .footer-divider {
      width: 100%;
      height: 1px;
      background: var(--color-border);
      margin-bottom: 2rem;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copyright {
      font-size: 0.75rem;
      color: var(--color-text-dim);
    }

    .footer-socials {
      display: flex;
      gap: 2rem;
    }

    .footer-social-link {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      transition: color 0.3s;
    }

    .footer-social-link:hover {
      color: var(--color-accent);
    }

    /* ========================================
       RESPONSIVE / MOBILE
    ======================================== */
    @media (max-width: 1024px) {
      .about-grid,
      .service-overlay-content {
        grid-template-columns: 1fr;
      }

      .service-overlay-image {
        height: 300px;
      }
    }

    @media (max-width: 768px) {
      .header {
        padding: 1rem 1.5rem;
      }

      .nav-menu {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }

      .section-padding {
        padding: 6rem 1.5rem;
      }

      .hero {
        padding: 0 1.5rem;
        padding-bottom: 4rem;
      }

      .hero-bg-text {
        font-size: clamp(8rem, 20vw, 15rem);
      }

      .hero-scroll {
        left: 1.5rem;
      }

      .works-header {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 2rem;
      }

      .work-card {
        flex: 0 0 100%;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .header-logo {
        font-size: 0.875rem;
      }

      .hero-subtitle {
        white-space: normal;
      }

      .section-padding {
        padding: 4rem 1rem;
      }

      .news-inner {
        padding: 0 1rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
  cing: 0.1em;
      color: var(--color-text-muted);
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--color-accent);
    }

    .footer-bottom {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--color-border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copyright {
      font-size: 0.75rem;
      color: var(--color-text-dim);
    }

    .footer-logo {
      font-family: var(--font-en);
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.1em;
      color: var(--color-white);
      text-transform: lowercase;
    }

    .footer-socials {
      display: flex;
      gap: 1.5rem;
    }

    .footer-social-link {
      font-size: 0.75rem;
      color: var(--color-text-muted);
      transition: color 0.3s;
      text-decoration: none;
    }

    .footer-social-link:hover {
      color: var(--color-accent);
    }

    /* ========================================
       ANIMATIONS
    ======================================== */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideLeft {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideRight {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Stagger animations */
    .reveal.animated,
    .reveal-left.animated,
    .reveal-right.animated,
    .reveal-scale.animated {
      animation: slideUp 0.8s var(--ease-out-expo) forwards;
    }

    .reveal-left.animated {
      animation: slideLeft 0.8s var(--ease-out-expo) forwards;
    }

    .reveal-right.animated {
      animation: slideRight 0.8s var(--ease-out-expo) forwards;
    }

    .reveal-scale.animated {
      animation: scaleIn 0.8s var(--ease-out-expo) forwards;
    }

    /* ========================================
       GSAP ANIMATIONS (if needed)
    ======================================== */
    .animated-element {
      will-change: transform, opacity;
    }

    /* ========================================
       UTILITY CLASSES
    ======================================== */
    .no-scroll {
      overflow: hidden;
    }

    .hide {
      display: none !important;
    }

    .invisible {
      visibility: hidden;
    }

    .text-center {
      text-align: center;
    }

    .text-left {
      text-align: left;
    }

    .text-right {
      text-align: right;
    }

    .m-0 {
      margin: 0;
    }

    .p-0 {
      padding: 0;
    }

    /* ========================================
       PRINT STYLES
    ======================================== */
    @media print {
      .header,
      footer,
      .nav-menu,
      .contact-cta {
        display: none;
      }

      body {
        background: white;
        color: black;
      }
    }

    /* ========================================
       DARK MODE (if implemented)
    ======================================== */
    /* Already using CSS custom properties for easy dark mode support */

    /* ========================================
       ADDITIONAL CUSTOM STYLES
    ======================================== */
    .custom-scroll {
      scroll-behavior: smooth;
    }

    .transition-all {
      transition: all 0.3s ease;
    }

    .no-transition {
      transition: none !important;
    }

    /* Smooth scrollbar styling */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--color-bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--color-border);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--color-accent);
    }

    /* Firefox scrollbar */
    * {
      scrollbar-color: var(--color-border) var(--color-bg);
      scrollbar-width: thin;
    }

    /* ========================================
       ACCESSIBILITY
    ======================================== */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* Focus styles for keyboard navigation */
    a:focus,
    button:focus {
      outline: 2px solid var(--color-accent);
      outline-offset: 2px;
    }

    /* ========================================
       FORM STYLES (if needed)
    ======================================== */
    input,
    textarea,
    select {
      font-family: inherit;
      font-size: inherit;
      color: inherit;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid var(--color-border);
      border-radius: 2px;
      background: var(--color-bg-secondary);
      color: var(--color-text);
      transition: border-color 0.3s;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus {
      border-color: var(--color-accent);
      outline: none;
    }

    button {
      cursor: pointer;
      font-family: inherit;
    }

    /* ========================================
       END OF CSS
    ======================================== */m;
    }

    .thanks-title {
      font-family: var(--font-en);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .thanks-message {
      font-size: 0.9375rem;
      line-height: 1.8;
      color: var(--color-text-muted);
      margin-bottom: 2rem;
    }

    .thanks-button {
      display: inline-block;
      padding: 0.75rem 2rem;
      background: var(--color-accent);
      color: var(--color-bg);
      text-decoration: none;
      font-family: var(--font-en);
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.3s var(--ease-out-expo);
    }

    .thanks-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(200, 255, 0, 0.2);
    }

    /* ========================================
       ADDITIONAL RESPONSIVE ADJUSTMENTS
    ======================================== */

    @media (max-width: 1440px) {
      .section-padding {
        padding: 8rem 6vw;
      }

      .hero {
        padding: 0 6vw;
      }
    }

    @media (max-width: 1024px) {
      .header {
        padding: 1.5rem 2rem;
      }

      .section-padding {
        padding: 6rem 4vw;
      }

      .hero {
        padding: 0 4vw;
        padding-bottom: 6rem;
      }

      .hero-bg-text {
        right: -10vw;
        font-size: clamp(10rem, 20vw, 20rem);
      }

      .section-title {
        font-size: clamp(2rem, 4vw, 4rem);
      }
    }

    @media (max-width: 768px) {
      .header {
        padding: 1rem 1.5rem;
      }

      .header-logo {
        font-size: 1rem;
      }

      .section-padding {
        padding: 4rem 1.5rem;
      }

      .hero {
        padding: 0 1.5rem;
        padding-bottom: 3rem;
      }

      .hero-bg-text {
        font-size: clamp(5rem, 15vw, 10rem);
        right: -20vw;
      }

      .hero-scroll {
        bottom: 1rem;
        left: 1.5rem;
      }

      .about-grid {
        gap: 3rem;
      }

      .service-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
      }

      .service-arrow {
        display: none;
      }

      .work-card {
        flex: 0 0 100%;
      }

      .works-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
      }

      .footer-socials {
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .header {
        padding: 0.75rem 1rem;
      }

      .header-logo {
        font-size: 0.875rem;
      }

      .section-padding {
        padding: 3rem 1rem;
      }

      .hero {
        padding: 0 1rem;
        padding-bottom: 2rem;
      }

      .hero-label {
        font-size: clamp(0.75rem, 2vw, 1.25rem);
      }

      .hero-title {
        font-size: clamp(2rem, 10vw, 5rem);
      }

      .hero-subtitle {
        font-size: clamp(0.75rem, 2vw, 1rem);
        white-space: normal;
      }

      .hero-scroll {
        display: none;
      }

      .hero-bg-text {
        display: none;
      }

      .nav-menu {
        display: none;
      }

      .section-label {
        font-size: 0.6rem;
      }

      .section-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
      }

      .news-inner {
        padding: 0 1rem;
        gap: 1rem;
      }

      .news-label {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
      }

      .about-visual {
        height: 300px;
      }

      .about-grid {
        gap: 2rem;
      }

      .about-brand-meaning {
        padding: 1rem;
        gap: 0.5rem;
      }

      .about-brand-meaning .brand-jp {
        font-size: 1rem;
      }

      .about-numbers {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .about-number .num {
        font-size: clamp(1.5rem, 2vw, 2rem);
      }

      .service-num {
        font-size: 0.75rem;
      }

      .service-name {
        font-size: clamp(1rem, 2vw, 1.5rem);
      }

      .service-desc {
        font-size: 0.75rem;
      }

      .contact-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .footer-copyright {
        font-size: 0.65rem;
      }
    }

    /* ========================================
       CUSTOM ANIMATIONS - ADDITIONAL
    ======================================== */

    @keyframes pulse {
      0%,
      100% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
      }
    }

    .pulse {
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    @keyframes shimmer {
      0% {
        background-position: -1000px 0;
      }
      100% {
        background-position: 1000px 0;
      }
    }

    .shimmer {
      animation: shimmer 2s infinite;
    }

    /* ========================================
       FINAL STYLES
    ======================================== */
  alNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
      z-index: 0;
    }

    /* ========================================
       PHILOSOPHY TEXT - LANGUAGE FLASH
    ======================================== */
    .philosophy-text .word-jp-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      font-family: var(--font-jp);
      font-weight: 700;
      font-size: clamp(1rem, 2.5vw, 1.6rem);
      line-height: 2;
      color: var(--color-accent);
      opacity: 0;
      pointer-events: none;
      text-align: center;
      z-index: 3;
    }
/* v5 patch: hide second philosophy paragraph */
.about-content > p:last-of-type { display: none !important; }

/* ========================================
   Hamburger Animation (bar rotation on active)
   Not duplicated in header.php inline CSS
   ======================================== */
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Nav link hover (not in header.php) */
.nav-links a:hover { opacity: 0.7; }

/* Loading bar fill (not in header.php) */
.loading-bar-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 0%;
  background: var(--color-accent);
}
