  :root {
    --red: #E42B0D;
    --white: #F5F0EB;
    --black: #0E0E0E;
    --ink: #1A1A1A;
    --muted: #7A7068;
    --cream: #F9F5F0;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* CUSTOM CURSOR (enabled via CMS → body.has-custom-cursor) */
  body.has-custom-cursor {
    cursor: none;
  }
  body.has-custom-cursor .cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
    mix-blend-mode: multiply;
  }
  body.has-custom-cursor .cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    opacity: 0.5;
  }
  body.has-custom-cursor:hover .cursor { opacity: 1; }

  @media (max-width: 768px) {
    body.has-custom-cursor {
      cursor: auto;
    }
    body.has-custom-cursor .cursor,
    body.has-custom-cursor .cursor-ring {
      display: none !important;
    }
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 3rem;
    mix-blend-mode: normal;
  }
  nav.scrolled {
    background: color-mix(in srgb, var(--cream) 65%, transparent);
    border-bottom: 1px solid rgba(228, 43, 13, 0.12);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
  }
  .footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
  }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--red);
    color: white !important;
    padding: 0.5rem 1.4rem;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .nav-cta:hover { background: var(--ink) !important; }
  .nav-cta::after { display: none !important; }

  .nav-toggle,
  .nav-overlay {
    display: none;
  }

  .nav-drawer {
    display: contents;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(36rem, 1.25fr) minmax(0, 0.75fr);
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    background: var(--red);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 4rem 5rem;
    position: relative;
    overflow: hidden;
    gap: 2rem;
    min-width: 0;
    container-type: inline-size;
    container-name: hero-left;
  }
  .hero-left::before {
    content: '※';
    position: absolute;
    top: -0.1em;
    right: -0.1em;
    font-size: 28rem;
    color: rgba(255,255,255,0.05);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
  }
  /* hero-headline styles moved into hero-content-row block above */
  .hero-headline em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--cream);
    display: block;
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 340px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
  }
  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
  }
  .btn-primary {
    background: white;
    color: var(--red);
    padding: 0.9rem 2.2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .btn-primary:hover { background: var(--ink); color: white; transform: translateY(-2px); }
  .hero-scroll-hint {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .hero-right {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5rem 5rem 5rem;
    position: relative;
    gap: 3rem;
    min-width: 0;
  }
  .marquee-vertical {
    position: absolute;
    right: 3.5rem;
    top: 0; bottom: 0;
    width: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .marquee-vertical-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: scrollDown 14s linear infinite;
  }
  .marquee-vertical span {
    writing-mode: vertical-rl;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.5;
  }
  @keyframes scrollDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
  }
  .stat-item {}
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--red);
    letter-spacing: 0.02em;
  }
  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 0.4rem;
    line-height: 1.4;
  }
  /* HERO PHRASE ANIMATION */
  .hero-content-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    column-gap: clamp(0.75rem, 2vw, 1.5rem);
    flex: 1;
    min-height: 0;
    width: 100%;
    max-width: 100%;
  }
  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 0.92;
    color: white;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
    min-width: 0;
  }
  .hero-phrase-animate {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
  }
  .hero-phrase-animate.fade-out {
    opacity: 0;
    transition: opacity 0.7s ease;
  }
  .phrase-word {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7.5vw, 8.8rem);
    line-height: 0.92;
    color: white;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateX(24px);
    animation: slideInWord 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
    white-space: nowrap;
  }
  .phrase-word:nth-child(1) { animation-delay: 0.8s; }
  .phrase-word:nth-child(2) { animation-delay: 1.05s; }
  .phrase-word:nth-child(3) { animation-delay: 1.3s; }
  .phrase-word:nth-child(4) { animation-delay: 1.55s; }
  .phrase-word:nth-child(5) { animation-delay: 1.8s; }
  .phrase-word:nth-child(6) { animation-delay: 2.05s; }
  @keyframes slideInWord {
    to { opacity: 1; transform: translateX(0); }
  }

  @container hero-left (max-width: 36rem) {
    .hero-headline {
      font-size: clamp(1.75rem, 10cqi, 3.75rem);
      line-height: 0.9;
    }

    .phrase-word {
      font-size: clamp(1.35rem, 7.5cqi, 3rem);
      line-height: 0.9;
    }

    .hero-content-row {
      column-gap: clamp(0.35rem, 1.5cqi, 0.75rem);
    }
  }

  @container hero-left (max-width: 30rem) {
    .hero-headline {
      font-size: clamp(1.5rem, 9cqi, 3rem);
    }

    .phrase-word {
      font-size: clamp(1.15rem, 6.5cqi, 2.5rem);
    }
  }

  .hero-right-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
  }
  .hero-right-bottom strong {
    color: var(--ink);
    font-weight: 500;
  }

  /* TICKER */
  .ticker {
    background: var(--ink);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker 22s linear infinite;
  }
  .ticker-item {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 0 2.5rem;
  }
  .ticker-item.red { color: var(--red); }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* SECTION SHARED */
  section { padding: 8rem 0; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--red);
  }

  /* APPROACH */
  .approach { background: var(--cream); }
  .approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
  }
  .approach-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1.1;
    color: var(--ink);
    margin-top: 1.5rem;
  }
  .approach-left h2 em {
    font-style: italic;
    color: var(--red);
  }
  .approach-left p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 300px;
  }
  .approach-right {}
  .approach-items { display: flex; flex-direction: column; gap: 0; }
  .approach-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
    transition: padding-left 0.3s ease;
  }
  .approach-item:hover { padding-left: 0.5rem; }
  .approach-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: rgba(228, 43, 13, 0.15);
    transition: color 0.3s ease;
  }
  .approach-item:hover .approach-num { color: var(--red); }
  .approach-text h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .approach-text p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted);
  }

  /* KANJI INTERLUDE */
  .kanji-section {
    background: var(--ink);
    padding: 7rem 0;
    overflow: hidden;
    position: relative;
  }
  .kanji-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40rem;
    color: rgba(255,255,255,0.02);
    font-family: serif;
    pointer-events: none;
    user-select: none;
    line-height: 1;
  }
  .kanji-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .kanji-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .kanji-left .section-label { color: rgba(255,255,255,0.3); }
  .kanji-left .section-label::before { background: rgba(255,255,255,0.3); }
  .kanji-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    color: white;
    line-height: 0.95;
    letter-spacing: 0.02em;
  }
  .kanji-left h2 span { color: var(--red); }
  .kanji-left p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 380px;
  }
  .kanji-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .kanji-char {
    font-size: 14rem;
    color: white;
    font-family: serif;
    line-height: 1;
    position: relative;
    z-index: 1;
    opacity: 0.9;
    filter: drop-shadow(0 0 60px rgba(228,43,13,0.3));
  }
  .kanji-annotation {
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .ann-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
  }
  .ann-dot {
    width: 4px; height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* SERVICES */
  .services { background: white; }
  .services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .services-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    max-width: 400px;
  }
  .services-header h2 em { font-style: italic; color: var(--red); }
  .services-intro {
    max-width: 320px;
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--muted);
    text-align: right;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .service-card {
    padding: 2.5rem;
    border-right: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    cursor: pointer;
  }
  .service-card:last-child { border-right: none; }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover { background: var(--cream); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 44px; height: 44px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
  .service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.8rem;
  }
  .service-card p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--muted);
  }
  .service-tag {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid rgba(228,43,13,0.3);
    padding: 0.25rem 0.7rem;
  }
  a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  a.service-card .service-card-more {
    display: block;
    margin-top: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  a.service-card:hover .service-card-more { opacity: 1; }

  /* SERVICE DETAIL PAGES */
  .service-hero {
    background: var(--cream);
    padding: 10rem 0 5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .service-hero-back {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 2.5rem;
    transition: color 0.2s ease;
  }
  .service-hero-back:hover { color: var(--red); }
  .service-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .service-hero-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
  }
  .service-hero-tag { margin-top: 0; }
  .service-hero-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    max-width: 900px;
    margin-bottom: 1.5rem;
  }
  .service-hero-headline em { font-style: italic; color: var(--red); }
  .service-hero-intro {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 2.5rem;
  }
  .service-hero-cta { margin-top: 0.5rem; }

  .service-sections {
    background: white;
    padding: 6rem 0;
  }
  .service-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .service-section:first-child { padding-top: 0; }
  .service-section:last-child { border-bottom: none; padding-bottom: 0; }
  .service-section-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.15;
    margin-top: 0.5rem;
  }
  .service-section-left h2 em { font-style: italic; color: var(--red); }
  .service-section-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ink);
    margin-bottom: 2rem;
  }
  .service-section-bullets {
    list-style: none;
    display: grid;
    gap: 1.5rem;
  }
  .service-section-bullet h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  .service-section-bullet p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--muted);
  }

  /* INSIGHT / METHODOLOGY */
  .methodology {
    background: var(--red);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
  }
  .methodology::before {
    content: '※※';
    position: absolute;
    right: -1rem;
    top: -3rem;
    font-size: 22rem;
    color: rgba(255,255,255,0.05);
    font-family: serif;
    line-height: 1;
  }
  .methodology .container { position: relative; z-index: 1; }
  .methodology .section-label { color: rgba(255,255,255,0.5); }
  .methodology .section-label::before { background: rgba(255,255,255,0.5); }
  .methodology h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    color: white;
    line-height: 0.92;
    letter-spacing: 0.02em;
    max-width: 700px;
    margin: 1.5rem 0 4rem;
  }
  .steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .step {
    background: rgba(255,255,255,0.08);
    padding: 2rem;
    border-top: 2px solid rgba(255,255,255,0.2);
    transition: background 0.3s ease;
  }
  .step:hover { background: rgba(255,255,255,0.15); }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.2);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .step h3 {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.8rem;
  }
  .step p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
  }

  /* MANIFESTO */
  .manifesto {
    background: var(--ink);
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .manifesto-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 25vw;
    color: rgba(255,255,255,0.02);
    letter-spacing: 0.05em;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
  }
  .manifesto-content {
    position: relative;
    z-index: 1;
  }
  .manifesto-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2rem;
  }
  .manifesto-tag span { color: var(--red); font-size: 1.2rem; }
  .manifesto h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 5rem);
    color: white;
    line-height: 1.2;
    max-width: 850px;
    margin: 0 auto;
  }
  .manifesto h2 em {
    color: var(--red);
    font-style: italic;
  }
  .manifesto-body {
    margin: 3rem auto 0;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.45);
  }

  /* CONTACT / CTA */
  .contact-section {
    background: var(--cream);
    padding: 8rem 0;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .contact-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    line-height: 1.1;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .contact-left h2 em { font-style: italic; color: var(--red); }
  .contact-left p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 2rem;
  }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background-color: white;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-group select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%237A7068' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.75em;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--red); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    background: var(--red);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--ink); transform: translateY(-2px); }
  .form-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
  }
  .form-errors {
    border: 1px solid rgba(228, 43, 13, 0.35);
    background: rgba(228, 43, 13, 0.06);
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--ink);
  }
  .form-errors ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
  .form-group.has-error input,
  .form-group.has-error textarea,
  .form-group.has-error select { border-color: var(--red); }
  .form-field-error {
    font-size: 0.75rem;
    color: var(--red);
    margin-top: 0.15rem;
  }
  .contact-form-widget {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    align-items: start;
  }
  .contact-form-widget > .form-thank-you,
  .contact-form-widget > .contact-form__panel {
    grid-area: 1 / 1;
  }
  .contact-form__panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .contact-form__panel.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .form-thank-you {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .form-thank-you[hidden] {
    display: flex !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .form-thank-you.is-visible {
    animation: formThankYouIn 0.45s ease forwards;
  }
  .form-thank-you__mark {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--red);
  }
  .form-thank-you__title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.15;
    font-weight: 400;
  }
  .form-thank-you__message {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 32ch;
  }
  .form-thank-you__reset {
    align-self: flex-start;
    margin-top: 0.5rem;
    background: transparent;
    border: none;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .form-thank-you__reset:hover { color: var(--ink); }
  @keyframes formThankYouIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* FOOTER */
  footer {
    background: var(--ink);
    padding: 4rem 0 2rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  /* footer logo uses .footer-logo-img */
  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.35);
    max-width: 240px;
  }
  .footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
  }
  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
  }
  .footer-bottom .red-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.4rem;
    vertical-align: middle;
  }

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

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* DESKTOP — hero fits entirely above the fold */
  @media (min-width: 769px) {
    .hero {
      height: 100svh;
      height: 100dvh;
      min-height: 100svh;
      min-height: 100dvh;
      max-height: 100svh;
      max-height: 100dvh;
      overflow: hidden;
    }

    .hero-left,
    .hero-right {
      min-height: 0;
      overflow: hidden;
      padding-top: clamp(4.5rem, 9.5vh, 5.75rem);
      padding-bottom: clamp(1.75rem, 3.5vh, 2.75rem);
    }

    .hero-left {
      padding-left: clamp(2.5rem, 4vw, 4rem);
      padding-right: clamp(2.5rem, 4vw, 4rem);
      gap: clamp(0.625rem, 1.35vh, 1.25rem);
    }

    .hero-right {
      padding-left: clamp(2.5rem, 4vw, 5rem);
      padding-right: clamp(2.5rem, 4vw, 3.5rem);
      gap: clamp(0.875rem, 1.75vh, 1.75rem);
    }

    .hero-content-row {
      flex: 0 1 auto;
      min-height: 0;
    }

    .hero-headline {
      font-size: clamp(2.5rem, 6.75vh, 5.75rem);
      line-height: 0.9;
    }

    .phrase-word {
      font-size: clamp(2.25rem, 6vh, 5.25rem);
      line-height: 0.9;
    }

    .hero-sub {
      font-size: clamp(0.8125rem, 1.55vh, 0.9375rem);
      line-height: 1.55;
    }

    .stat-num {
      font-size: clamp(1.875rem, 3.75vh, 3rem);
    }

    .stat-label {
      font-size: clamp(0.7rem, 1.25vh, 0.78rem);
    }

    .stat-grid {
      gap: clamp(0.625rem, 1.35vh, 1.5rem) clamp(0.75rem, 1.25vw, 1.75rem);
    }

    .hero-right-bottom {
      padding-top: clamp(0.5rem, 1vh, 1rem);
      font-size: clamp(0.75rem, 1.35vh, 0.85rem);
      line-height: 1.55;
    }

    .hero-cta-row {
      gap: clamp(1rem, 2vw, 2rem);
    }

    .btn-primary {
      padding: clamp(0.65rem, 1.2vh, 0.85rem) clamp(1.5rem, 2.5vw, 2rem);
      font-size: clamp(0.7rem, 1.2vh, 0.78rem);
    }
  }

  @media (min-width: 769px) and (max-width: 1200px) {
    .hero {
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    }

    .hero-headline {
      font-size: clamp(2rem, 11cqi, 4.5rem);
      line-height: 0.9;
    }

    .phrase-word {
      font-size: clamp(1.5rem, 9cqi, 3.75rem);
      line-height: 0.9;
    }

    .hero-content-row {
      column-gap: clamp(0.5rem, 2cqi, 1rem);
    }
  }

  @media (min-width: 1201px) {
    .hero-content-row {
      grid-template-columns: auto auto;
      justify-content: start;
      column-gap: clamp(1.25rem, 2.5vw, 2.25rem);
    }
  }

  @media (min-width: 769px) and (max-height: 860px) {
    .hero-left,
    .hero-right {
      padding-top: clamp(3.75rem, 8vh, 4.75rem);
      padding-bottom: clamp(1.25rem, 2.5vh, 2rem);
    }

    .hero-left {
      gap: clamp(0.5rem, 1vh, 0.875rem);
    }

    .hero-right {
      gap: clamp(0.625rem, 1.25vh, 1.25rem);
    }

    .hero-headline {
      font-size: clamp(2.25rem, 6vh, 4.75rem);
    }

    .phrase-word {
      font-size: clamp(2rem, 5.25vh, 4.5rem);
    }

    .stat-num {
      font-size: clamp(1.625rem, 3.25vh, 2.5rem);
    }
  }

  @media (min-width: 769px) and (max-height: 720px) {
    .hero-scroll-hint {
      display: none;
    }

    .hero-left::before {
      font-size: 18rem;
    }
  }

  /* MOBILE */
  @media (max-width: 768px) {
    nav {
      padding: 0.85rem 1.25rem;
      padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
    }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      margin: -0.35rem -0.5rem -0.35rem 0;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      z-index: 102;
    }

    .nav-toggle-bar {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    nav.is-open .nav-toggle-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    nav.is-open .nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }

    nav.is-open .nav-toggle-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-drawer {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      z-index: 101;
      width: min(100%, 18.5rem);
      height: 100dvh;
      height: 100svh;
      padding: calc(4.5rem + env(safe-area-inset-top, 0px)) 1.75rem 2rem;
      background: var(--cream);
      border-left: 1px solid rgba(228, 43, 13, 0.12);
      box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      visibility: hidden;
    }

    nav.is-open .nav-drawer {
      transform: translateX(0);
      visibility: visible;
    }

    .nav-overlay {
      display: block;
      position: fixed;
      inset: 0;
      z-index: 99;
      background: rgba(14, 14, 14, 0.45);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    nav.is-open .nav-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }

    .nav-links li {
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-links a {
      display: block;
      padding: 1rem 0;
      font-size: 0.82rem;
    }

    .nav-links a::after {
      display: none;
    }

    .nav-links .nav-cta {
      margin-top: 1rem;
      text-align: center;
      border-bottom: none;
    }

    body.nav-menu-open {
      overflow: hidden;
    }

    .hero {
      grid-template-columns: 1fr;
      min-height: 100svh;
      min-height: 100dvh;
    }

    .hero-right {
      display: none;
    }

    .hero-left {
      padding: calc(4.25rem + env(safe-area-inset-top, 0px)) 1.25rem 1.5rem;
      min-height: 100svh;
      min-height: 100dvh;
      gap: 0.75rem;
      justify-content: center;
    }

    .hero-left::before {
      font-size: 11rem;
      top: auto;
      bottom: -2rem;
      right: -1rem;
    }

    .hero-content-row {
      flex: 0 0 auto;
      min-height: auto;
    }

    .hero-headline {
      font-size: clamp(2.35rem, 11vw, 3.5rem);
      line-height: 0.95;
    }

    .hero-phrase-animate {
      display: none;
    }

    .hero-eyebrow {
      font-size: 0.65rem;
      margin-bottom: 0.15rem;
    }

    .hero-sub {
      font-size: 0.875rem;
      line-height: 1.55;
      max-width: none;
    }

    .hero-cta-row {
      flex-wrap: wrap;
      gap: 0.75rem 1.25rem;
      margin-top: 0.25rem;
    }

    .btn-primary {
      padding: 0.7rem 1.35rem;
      font-size: 0.72rem;
    }

    .hero-scroll-hint {
      font-size: 0.65rem;
    }

    .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
    .kanji-content { grid-template-columns: 1fr; gap: 3rem; }
    .kanji-annotation { display: none; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .services-intro { text-align: left; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .service-section { grid-template-columns: 1fr; gap: 2rem; }
    .service-hero { padding: 8rem 0 4rem; }
    .steps-row { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .container { padding: 0 1.5rem; }
  }

  @media (max-width: 768px) and (max-height: 700px) {
    .hero-left {
      padding-top: calc(3.75rem + env(safe-area-inset-top, 0px));
      padding-bottom: 1rem;
      gap: 0.5rem;
      justify-content: flex-start;
    }

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

    .hero-sub {
      font-size: 0.8rem;
      line-height: 1.45;
    }

    .hero-scroll-hint {
      display: none;
    }
  }

  /* ERROR PAGES */
  .error-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
  }
  .error-page-left {
    background: var(--red);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
  }
  .error-page-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0,0,0,0.15), transparent 55%);
    pointer-events: none;
  }
  .error-page-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .error-page-code {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 14vw, 12rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .error-page-right {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    gap: 1.25rem;
  }
  .error-page-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin: 0;
  }
  .error-page-message {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 28rem;
    margin: 0;
  }
  .error-page-actions {
    margin-top: 0.5rem;
  }
  .error-page-right .btn-primary {
    background: var(--red);
    color: white;
  }
  .error-page-right .btn-primary:hover {
    background: var(--ink);
    color: white;
  }

  @media (max-width: 900px) {
    .error-page {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .error-page-left {
      min-height: 42vh;
      padding: 3rem 1.5rem;
    }
    .error-page-right {
      min-height: 48vh;
      padding: 3rem 1.5rem;
    }
  }

