﻿/* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
  }

  .hero-left {
    padding: 7rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--accent);
  }

  .hero-eyebrow-text {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-title-jp {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-muted);
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--ink-soft);
    max-width: 420px;
    margin-bottom: 3rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.875rem 2rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #a02d21; transform: translateY(-1px); }

  .btn-ghost {
    color: var(--ink);
    padding: 0.875rem 1.5rem;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: 0.5px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--ink); }

  .hero-right {
    position: relative;
    overflow: hidden;
    background: #1a1a18;
  }

  /* ─── CAROUSEL ─── */
  .carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .carousel-track {
    position: absolute;
    inset: 0;
  }

  .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.4,0,0.2,1);
    background-size: cover;
    background-position: center;
  }

  .carousel-slide.active { opacity: 1; }

  .carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,10,8,0.25) 0%,
      rgba(10,10,8,0.1) 40%,
      rgba(10,10,8,0.55) 100%
    );
  }

  /* Slide images using high-quality Unsplash photos */
  .carousel-slide:nth-child(1) {
    background-image: url('../images/unsplash-1559757148-1200.jpg');
  }
  .carousel-slide:nth-child(2) {
    background-image: url('../images/unsplash-1576091160550-1200.jpg');
  }
  .carousel-slide:nth-child(3) {
    background-image: url('../images/unsplash-1414235077428-1200.jpg');
  }
  .carousel-slide:nth-child(4) {
    background-image: url('../images/unsplash-1517457373958-1200.jpg');
  }
  .carousel-slide:nth-child(5) {
    background-image: url('../images/unsplash-1522202176988-1200.jpg');
  }

  /* Carousel caption */
  .carousel-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    padding: 0 2.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .carousel-caption-text {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .carousel-dot {
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    border: none;
    padding: 0;
  }

  .carousel-dot.active {
    background: #fff;
    width: 32px;
  }

  .carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0; right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border: 0.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
  }

  .carousel-arrow:hover { background: rgba(200,56,42,0.6); border-color: rgba(200,56,42,0.4); }
  .carousel-arrow svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; }

  /* Progress bar */
  .carousel-progress {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    z-index: 5;
    background: rgba(255,255,255,0.08);
  }

  .carousel-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width linear;
  }

  .hero-right-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
  }

  .hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    margin-top: auto;
  }

  .hero-stat {
    background: rgba(26,26,24,0.6);
    padding: 2rem;
    backdrop-filter: blur(4px);
    border: 0.5px solid transparent;
    transition: background 0.25s, border-color 0.25s;
    cursor: default;
  }

  .hero-stat:hover {
    background: rgba(48,46,42,0.9);
    border-color: rgba(200,56,42,0.25);
  }
  .hero-stat:hover .hero-stat-num { color: #fff; }
  .hero-stat:hover .hero-stat-label { color: rgba(255,255,255,0.7); }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
  }

  .hero-stat-num span {
    font-size: 1.5rem;
    color: var(--gold-light);
  }

  .hero-stat-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
  }

  .hero-jp-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .hero-jp-badge .flag-red {
    width: 32px;
    height: 22px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
  }

  .hero-jp-badge .flag-red::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #BC002D;
  }

  .hero-jp-badge .arrow-down {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
  }

  .flag-np {
    width: 0;
    height: 0;
    position: relative;
  }

  /* ─── DIVIDER ─── */
  .section-divider {
    height: 1px;
    background: var(--border);
    margin: 0 4rem;
  }

  /* ─── MARQUEE ─── */
  .marquee-wrap {
    background: var(--ink);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .marquee-inner {
    display: inline-flex;
    animation: marquee 30s linear infinite;
  }

  .marquee-item {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    padding: 0 3rem;
  }

  .marquee-dot {
    color: var(--accent);
    padding: 0;
  }

  /* ─── SECTIONS ─── */

  

  

  

  

  

  

  /* ─── MISSION ─── */
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .mission-quote {
    border-left: 2px solid var(--accent);
    padding: 2rem 2.5rem;
    background: var(--paper-warm);
    margin: 2rem 0;
  }

  .mission-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--ink);
    font-style: italic;
  }

  .mission-quote-jp {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--ink-muted);
    letter-spacing: 0.12em;
    margin-top: 0.75rem;
  }

  .mission-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mission-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--paper-card);
    border: 0.5px solid var(--border);
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  }

  .mission-card:hover {
    border-color: var(--accent);
    background: var(--paper-warm);
    box-shadow: 0 4px 24px rgba(200,56,42,0.07);
  }
  .mission-card:hover .mission-card-icon {
    box-shadow: 0 0 14px rgba(200,56,42,0.45);
  }

  .mission-card-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.25s;
  }

  .mission-card-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.5; }

  .mission-card-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.35rem;
  }

  .mission-card-desc {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.75;
  }

  /* ─── PROGRAMS ─── */
  .programs-section {
    background: var(--ink);
    color: #fff;
  }
  .programs-section .section-title { color: #fff; }
  .programs-section .section-subtitle { color: rgba(255,255,255,0.55); }


  .programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    margin-top: 4rem;
  }

  .program-card {
    background: var(--ink);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .program-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .program-card:hover::before { transform: scaleX(1); }
  .program-card:hover { background: #242420; }
  .program-card:hover .program-icon { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }
  .program-card:hover .program-icon svg { stroke: #fff; }
  .program-card:hover .program-number { color: rgba(200,56,42,0.18); }
  .program-card:hover .prog-cta { opacity: 1; }

  .program-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    transition: color 0.3s;
  }

  .program-icon {
    width: 48px;
    height: 48px;
    border: 0.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s, background 0.3s;
  }

  .program-icon svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }

  .program-name {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
  }

  .program-name-jp {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
  }

  .program-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
  }

  .program-tag {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 0.5px solid rgba(200,160,90,0.25);
    padding: 0.25rem 0.65rem;
  }

  /* "View Program" link — stacked below the tag on Food Service card only */
  .prog-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    width: fit-content;
  }
  .prog-cta svg { flex-shrink: 0; }

  /* ─── PROCESS ─── */
  .process-section { background: var(--paper-warm); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 0.5px;
    background: var(--border);
    z-index: 0;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }

  .step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 0.5px solid var(--border);
    background: var(--paper-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.2s, border-color 0.2s;
  }

  .process-step:hover .step-circle {
    background: var(--accent);
    border-color: var(--accent);
  }

  .process-step:hover .step-circle svg { stroke: #fff; }

  .step-circle svg { width: 22px; height: 22px; stroke: var(--ink-muted); fill: none; stroke-width: 1.5; transition: stroke 0.2s; }

  .step-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
  }

  .step-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.75;
  }

  /* ─── ABOUT / PARTNERS ─── */
  .partners-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .partner-half {
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .partner-half:first-child {
    background: var(--paper-card);
    border-right: 0.5px solid var(--border);
  }

  .partner-half:last-child { background: var(--paper); }

  .partner-logo-area {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
  }

  .partner-logo-box {
    padding: 0.6rem 1.25rem;
    border: 0.5px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
  }

  .partner-logo-box.accent-box {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }

  .partner-plus {
    font-size: 18px;
    color: var(--ink-muted);
    font-weight: 300;
  }

  .partner-name {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 400;
    margin-bottom: 0.75rem;
  }

  .partner-full-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1.25rem;
    line-height: 1.25;
  }

  .partner-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.9;
  }

  /* ─── WHY US ─── */
  .why-section {
    background: var(--paper);
    position: relative;
  }

  .why-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: start;
    margin-top: 4rem;
  }

  .why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .why-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 0.5px solid var(--border);
    align-items: flex-start;
    cursor: default;
    transition: padding-left 0.2s;
  }

  .why-item:hover { padding-left: 0.5rem; }

  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--accent);
    min-width: 28px;
    margin-top: 0.15rem;
  }

  .why-content-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
  }

  .why-content-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.8;
  }

  .why-feature-box {
    background: var(--ink);
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .why-feature-box::after {
    content: 'SSW';
    position: absolute;
    right: -1rem;
    bottom: -2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    line-height: 1;
  }

  .why-feature-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
  }

  .why-feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 1.5rem;
  }

  .why-feature-desc {
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    margin-bottom: 2rem;
  }

  .why-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .why-check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
  }

  .check-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-icon::after {
    content: '';
    width: 6px;
    height: 4px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
  }

  /* ─── CONTACT ─── */
  .contact-section {
    background: var(--paper-warm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .contact-left {
    padding: 6rem 4rem;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .contact-left::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.8) 0,
      rgba(255,255,255,0.8) 1px,
      transparent 0,
      transparent 50%
    );
    background-size: 8px 8px;
    pointer-events: none;
  }

  .contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
  }

  .contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .contact-info-icon {
    width: 36px;
    height: 36px;
    border: 0.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-info-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; }

  .contact-info-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.25rem;
  }

  .contact-info-value {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
  }

  .contact-right {
    padding: 6rem 4rem;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 500;
  }

  .form-input, .form-select, .form-textarea {
    padding: 0.75rem 1rem;
    border: 0.5px solid var(--border);
    background: var(--paper-card);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 0;
    width: 100%;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
  }

  .form-textarea { resize: vertical; min-height: 110px; }

  .form-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
  }

  .form-submit:hover { background: #a02d21; transform: translateY(-1px); }
  .form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

  .req { color: var(--accent); font-size: 0.75rem; }

  .form-feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    display: none;
  }
  .form-feedback:not(:empty) { display: block; }
  .form-feedback--ok  { background: #f0faf4; color: #1a6b3c; border: 1px solid #a3d9b8; }
  .form-feedback--err { background: #fdf2f2; color: #8b1a1a; border: 1px solid #f5c6c6; }

  /* ─── FOOTER ─── */
  footer {
    background: #111110;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }

  .footer-left { display: flex; flex-direction: row; align-items: center; gap: 0.875rem; }

  .footer-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .footer-link {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-link:hover { color: rgba(255,255,255,0.7); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeInUp 0.7s ease both; }
  .hero-title { animation: fadeInUp 0.7s 0.1s ease both; }
  .hero-title-jp { animation: fadeInUp 0.7s 0.15s ease both; }
  .hero-desc { animation: fadeInUp 0.7s 0.2s ease both; }
  .hero-actions { animation: fadeInUp 0.7s 0.28s ease both; }

  /* ─── SCROLL FADE ─── */


/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--ink);
  padding: 2rem 4rem;
}

.test-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  align-items: stretch;
}

.test-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding-right: 3rem;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  position: relative;
}

.test-jp-subtitle {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.18em;
  margin-top: -1rem;
}

.test-left-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}


.test-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.test-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.test-arrows { display: flex; gap: 0.5rem; }

.test-arrow {
  width: 34px;
  height: 34px;
  border: 0.5px solid rgba(255,255,255,0.12);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.test-arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.test-slider-wrap {
  overflow: hidden;
  padding: 1.75rem 0;
}

.testimonial-slide {
  padding-left: 3rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.testimonial-open-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.25rem;
  display: block;
}

.testimonial-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 720px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.testimonial-byline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-photo-wrap { flex-shrink: 0; }

.testimonial-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255,255,255,0.15);
  display: block;
}

.testimonial-photo-placeholder {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.testimonial-byline-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ─── VIDEO SECTION ─── */
.video-section {
  background: linear-gradient(160deg, var(--paper-warm) 0%, #e8edf0 100%);
  text-align: center;
}

.video-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.video-pill {
  display: inline-flex;
  align-items: center;
  border: 0.5px solid rgba(26,26,24,0.15);
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.55);
}

.video-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.video-headline em { font-style: italic; color: var(--accent); }

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  margin-bottom: 2.5rem;
}

.video-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-thumb-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.video-thumb:hover .video-thumb-img { transform: scale(1.03); }

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.3);
  transition: background 0.3s;
}

.video-thumb:hover .video-thumb-overlay { background: rgba(10,10,8,0.15); }

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent);
  transition: transform 0.25s, background 0.2s;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  padding-left: 4px;
}

.video-play-btn:hover { transform: scale(1.12); background: #fff; }

.video-caption {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

.video-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.video-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ─── Extracted inline styles ─── */
.no-padding { padding:0; }
.progress-anim { transition:width 4500ms linear; width:100%; }
.hero-stat-wrap { padding-bottom:2.5rem; position:relative; z-index:2; margin-top:auto; }
.hero-jp-label { font-family:'Noto Sans JP','Hiragino Sans','Yu Gothic','Meiryo',sans-serif; font-size:11px; font-weight:300; letter-spacing:0.2em; color:rgba(255,255,255,0.4); text-transform:uppercase; margin-bottom:1rem; }
.tag-row { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:2rem; }
.hero-tag { font-size:11px; letter-spacing:0.1em; border:0.5px solid rgba(255,255,255,0.15); color:rgba(255,255,255,0.55); padding:0.4rem 0.9rem; font-weight:300; background:rgba(0,0,0,0.2); transition:background 0.2s, border-color 0.2s, color 0.2s; cursor:default; }
.hero-tag:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.4); color:rgba(255,255,255,0.95); }
.hero-tag-gold { font-size:11px; letter-spacing:0.1em; border:0.5px solid rgba(200,160,90,0.35); color:var(--gold-light); padding:0.4rem 0.9rem; font-weight:300; background:rgba(0,0,0,0.2); transition:background 0.2s, border-color 0.2s; cursor:default; }
.hero-tag-gold:hover { background:rgba(200,160,90,0.12); border-color:rgba(200,160,90,0.7); }
.body-soft { font-size:14px; font-weight:300; color:var(--ink-soft); line-height:1.9; }
.row-between-mt { display:flex; align-items:center; justify-content:space-between; margin-top:1.5rem; }
.stat-link { font-size:11px; letter-spacing:0.1em; color:var(--gold-light); display:flex; align-items:center; gap:0.4rem; }
.body-soft-mt { font-size:14px; font-weight:300; color:var(--ink-soft); line-height:1.9; margin-top:1rem; max-width:440px; }
.delay-2-col { transition-delay:.1s; display:flex; flex-direction:column; gap:3rem; }
.section-top-border { padding-top:2rem; border-top:0.5px solid var(--border); }
.no-border-bottom { border-bottom:none; }
.body-light-mt { font-size:14px; font-weight:300; color:rgba(255,255,255,0.5); margin-top:1rem; line-height:1.9; max-width:380px; }
.jp-muted { font-family:'Noto Sans JP','Hiragino Sans','Yu Gothic','Meiryo',sans-serif; font-size:12px; color:rgba(255,255,255,0.3); }
.ml-125 { margin-left:1.25rem; }
.mt-02 { margin-top:0.2rem; }