  :root {
    --crimson: #8B1A2E;
    --crimson-dark: #6B1222;
    --crimson-light: #A52035;
    --cream: #FAF8F5;
    --charcoal: #2A2A2A;
    --mid-gray: #4A4A4A;
    --light-gray: #F4F2EF;
    --border: #E5E0D8;
    --white: #FFFFFF;
    --dark-bg: #2D2D2D;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--charcoal);
    line-height: 1;
  }
  .nav-logo span {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--mid-gray);
    margin-top: 3px;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }
  .nav-links li a {
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--mid-gray);
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links li a:hover { color: var(--crimson); }
  .nav-links li strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: 0.08em;
  }

  .nav-entry {
    background: var(--crimson);
    color: white !important;
    padding: 10px 20px;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    transition: background 0.2s !important;
  }
  .nav-entry:hover { background: var(--crimson-dark) !important; color: white !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: 0.3s;
  }

  /* ─── HERO SLIDESHOW ─── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

  /* Slideshow track */
  .hero-slides {
    position: absolute;
    inset: 0;
    display: flex;
    transition: none;
  }

  .hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    transition: opacity 1s ease;
  }

  /* Each slide: gradient placeholder — swap background-image for real photos */
  .hero-slide:nth-child(1) {
    background: linear-gradient(160deg, #2a1010 0%, #1a0808 60%, #0d0505 100%);
  }
  .hero-slide:nth-child(2) {
    background: linear-gradient(160deg, #1a1828 0%, #0f1020 60%, #090c18 100%);
  }
  .hero-slide:nth-child(3) {
    background: linear-gradient(160deg, #1a1210 0%, #120c08 60%, #0a0705 100%);
  }
  .hero-slide:nth-child(4) {
    background: linear-gradient(160deg, #1c1a10 0%, #14120a 60%, #0d0c06 100%);
  }
  .hero-slide:nth-child(5) {
    background: linear-gradient(160deg, #1a1018 0%, #120b12 60%, #0a0709 100%);
  }

  /* Dark overlay per slide */
  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.1) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.55) 100%
    );
  }

  /* Decorative shimmer pattern */
  .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 25% 45%, rgba(139,26,46,0.25) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 30%, rgba(139,26,46,0.15) 0%, transparent 45%);
    z-index: 1;
  }

  /* Slide label watermark */
  .slide-label {
    position: absolute;
    bottom: 48%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 300;
    color: rgba(255,255,255,0.04);
    letter-spacing: 0.3em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }

  /* Slideshow dots */
  .hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  .hero-dot {
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
  }
  .hero-dot.active {
    background: white;
    width: 44px;
  }

  /* Prev / Next arrows */
  .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.2);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
  }
  .hero-arrow:hover {
    background: rgba(139,26,46,0.7);
    border-color: transparent;
  }
  .hero-arrow.prev { left: 24px; }
  .hero-arrow.next { right: 24px; }

  @media (max-width: 768px) {
    .hero-arrow { display: none; }
  }

  .hero-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
    animation: fadeUp 1s ease forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  .hero-content h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }
  .hero-content h1 em {
    font-style: normal;
    color: var(--crimson-light);
    border-bottom: 2px solid var(--crimson-light);
    padding-bottom: 1px;
  }

  .hero-entry-btn {
    position: absolute;
    top: 80px;
    right: 0;
    background: var(--crimson);
    color: white;
    padding: 16px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
  }
  .hero-entry-btn:hover { background: var(--crimson-dark); }
  .hero-entry-btn span { font-size: 9px; font-weight: 400; letter-spacing: 0.1em; }

  .scroll-indicator {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.4);
    animation: scrollLine 1.5s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.6); }
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 80px 0; }

  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .section-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--crimson);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 48px;
  }

  .section-title-ja {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 500;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 48px;
  }

  /* ─── VIDEO SECTION ─── */
  .video-section {
    padding: 60px 0;
    background: var(--white);
  }
  .video-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  }
  .video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2a1515 0%, #1a0a0a 100%);
  }
  .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: #FF0000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .video-play::after {
    content: '';
    border-left: 24px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 5px;
  }
  .video-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 2px;
  }
  .video-yt {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 11px;
    color: white;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* ─── ACTION CARDS ─── */
  .action-section {
    background: var(--dark-bg);
    padding: 60px 0;
  }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .action-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }
  .card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  .card-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #c8b8a2, #a09080);
  }
  .card-body {
    padding: 20px;
  }
  .card-body h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--charcoal);
  }
  .card-body p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--mid-gray);
    margin-bottom: 16px;
  }
  .btn-crimson {
    display: inline-block;
    background: var(--crimson);
    color: white;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
  }
  .btn-crimson:hover { background: var(--crimson-dark); }

  /* ─── DISCOVER FIREKIDS ─── */
  .discover-section {
    background: var(--white);
    padding: 80px 0;
  }

  .discover-header {
    margin-bottom: 48px;
  }
  .discover-bar {
    width: 48px;
    height: 4px;
    background: var(--crimson);
    margin-bottom: 16px;
  }
  .discover-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--charcoal);
  }

  .discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
  }

  .discover-item {}

  .discover-cap {
    font-size: 12px;
    line-height: 1.8;
    color: var(--mid-gray);
    text-align: center;
    margin-bottom: 12px;
    min-height: 48px;
  }

  .discover-video {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }

  .discover-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(160deg, #2a1a0a, #1a1005);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 14px 10px;
    cursor: pointer;
    overflow: hidden;
    transition: filter 0.2s;
  }
  .discover-video-inner:hover { filter: brightness(1.1); }

  .discover-video-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 10px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    z-index: 1;
  }
  .discover-video-label small {
    display: block;
    font-size: 9px;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
  }

  .discover-fk-logo {
    background: var(--crimson);
    color: white;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 6px;
    border-radius: 50%;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Play button — centered absolutely */
  .discover-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .discover-play-btn {
    width: 52px;
    height: 52px;
    background: #FF0000;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }
  .discover-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }

  /* Big bold headline over video */
  .discover-headline {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    line-height: 1.3;
    z-index: 1;
  }
  .discover-headline span {
    color: #FFD700;
  }

  .discover-yt-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    z-index: 1;
  }
  .discover-yt-link {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
  }

  @media (max-width: 768px) {
    .discover-grid { grid-template-columns: 1fr; gap: 24px; }
  }

  /* ─── JOB DETAILS ─── */
  .jobdetail-section {
    background: #fdf9f6;
    padding: 80px 0;
  }

  .jd-block {
    margin-bottom: 56px;
  }

  .jd-skills-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .jd-block--half { margin-bottom: 0; }

  .jd-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 12px;
  }

  .jd-bar {
    width: 40px;
    height: 3px;
    background: var(--crimson);
    margin: 0 auto 28px;
  }

  .jd-card {
    background: var(--white);
    border-radius: 6px;
    padding: 28px 36px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  }
  .jd-card--sm {
    padding: 20px 28px;
  }
  .jd-card--sm p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--mid-gray);
  }

  /* Checklist (with √ icon) */
  .jd-checklist {
    list-style: none;
  }
  .jd-checklist li {
    position: relative;
    padding: 14px 0 14px 28px;
    font-size: 14px;
    color: var(--charcoal);
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
  }
  .jd-checklist li:last-child { border-bottom: none; }
  .jd-checklist li::before {
    content: '√';
    position: absolute;
    left: 0;
    color: var(--crimson);
    font-size: 13px;
    font-weight: 600;
  }
  .jd-checklist--sm li {
    font-size: 13px;
    padding: 10px 0 10px 28px;
  }

  /* Plain list (no divider, card-row style) */
  .jd-plainlist {
    list-style: none;
  }
  .jd-plainlist li {
    padding: 12px 16px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--charcoal);
    background: #fdf9f6;
    border-radius: 4px;
    border: 1px solid var(--border);
    line-height: 1.6;
  }
  .jd-plainlist li:last-child { margin-bottom: 0; }

  /* Salary banner */
  .jd-salary-banner {
    background: #1e3a5a;
    border-radius: 6px;
    padding: 28px 36px;
    text-align: center;
    margin-bottom: 20px;
  }
  .jd-salary-main {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
  }
  .jd-salary-note {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
  }

  .jd-model-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
  .jd-model-card {
    border: 1px solid #b8d0e8;
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 13px;
    color: var(--charcoal);
    line-height: 1.6;
    background: white;
  }

  .jd-condition-block {
    margin-bottom: 24px;
  }
  .jd-condition-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
  }

  @media (max-width: 768px) {
    .jd-skills-row { grid-template-columns: 1fr; }
    .jd-model-row  { grid-template-columns: 1fr; }
    .jd-card { padding: 20px; }
    .jd-salary-banner { padding: 20px; }
    .jd-salary-main { font-size: 17px; }
  }

  /* ─── JOB OPENINGS ─── */
  .jobs-section {
    background: var(--light-gray);
    padding: 80px 0;
  }

  .jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Featured card spans full width */
  .job-card--featured {
    grid-column: 1 / -1;
  }

  .job-card {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #111;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }

  /* Image area */
  .job-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;        /* default cards */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
  }
  .job-card--featured .job-card-img {
    aspect-ratio: 16/6;        /* wider for featured */
  }
  .job-card:hover .job-card-img {
    transform: scale(1.03);
  }

  /* Dark gradient overlay on image */
  .job-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.55) 70%,
      rgba(0,0,0,0.80) 100%
    );
  }

  .job-card-img-hint {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    border: 1px dashed rgba(255,255,255,0.2);
    padding: 7px 14px;
    z-index: 1;
    pointer-events: none;
    position: relative;
  }

  /* Text overlay — sits on top of the image gradient */
  .job-card-overlay {
    position: absolute;
    left: 0; right: 0;
    /* align to bottom of image area; fine-tuned via JS-free bottom offset */
    padding: 20px 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    /* position from the bottom of the image */
    bottom: 56px;   /* above the foot button bar */
  }

  .job-card--featured .job-card-overlay {
    padding: 24px 36px;
    bottom: 60px;
  }

  .job-card-tag {
    display: inline-block;
    background: var(--crimson);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 4px 10px;
    align-self: flex-start;
    margin-bottom: 4px;
  }

  .job-card-role {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
  }

  .job-card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }
  .job-card--featured .job-card-title {
    font-size: 22px;
  }

  /* Button footer */
  .job-card-foot {
    padding: 14px 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 3;
  }
  .job-card-foot .btn-crimson {
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 10px 0;
  }

  /* ─── ABOUT ─── */
  .about-section { background: var(--white); }
  .about-title-block {
    margin-bottom: 48px;
  }
  .about-title-block .red-bar {
    width: 32px;
    height: 3px;
    background: var(--crimson);
    margin-bottom: 12px;
  }
  .about-title-block .label {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--crimson);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .about-title-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.08em;
  }
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .about-text h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .about-text p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--mid-gray);
    margin-bottom: 14px;
  }
  .about-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #8B7355, #5C4A32);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 20px
    );
  }

  /* ─── PYRAMID ─── */
  .pyramid-section {
    background: var(--white);
    padding: 60px 0;
  }
  .pyramid-wrap {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .pyramid-svg {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
  .pyramid-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .pyramid-item:last-child { border-bottom: none; }
  .pyramid-item .item-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--crimson);
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .pyramid-item .item-sub {
    font-size: 10px;
    color: var(--mid-gray);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .pyramid-item .item-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
  }

  /* ─── WORK STYLE / PASSION CARDS ─── */
  .work-style-section {
    background: var(--cream);
    padding: 80px 0;
  }
  .work-style-section .section-label { color: var(--crimson); }
  .work-style-section .section-title-ja {
    color: var(--charcoal);
    margin-bottom: 40px;
  }

  .passion-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
  }
  .passion-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .passion-grid--3 { grid-template-columns: repeat(3, 1fr); }

  .passion-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .passion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  }

  .passion-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .passion-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
  }
  .passion-img-hint {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
    border: 1px dashed rgba(255,255,255,0.15);
    padding: 5px 12px;
    z-index: 1;
    position: relative;
  }

  .passion-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .passion-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0,0,0,0.3);
    letter-spacing: 0.1em;
  }
  .passion-num em {
    font-style: italic;
    color: rgba(0,0,0,0.2);
  }

  .passion-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--charcoal);
    margin: 0;
  }
  /* Crimson highlight variant */
  .passion-title--accent span {
    color: var(--crimson);
  }

  .passion-sub {
    font-size: 11px;
    color: var(--mid-gray);
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 768px) {
    .passion-grid--4,
    .passion-grid--3 { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .passion-grid--4,
    .passion-grid--3 { grid-template-columns: 1fr; }
  }

  /* ─── NUMBERS ─── */
  .numbers-section { background: var(--white); }
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .number-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px 16px;
    text-align: center;
  }
  .number-card .num-label {
    display: inline-block;
    background: var(--charcoal);
    color: white;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    margin-bottom: 16px;
  }
  .number-card .num-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 6px;
  }
  .number-card .num-unit {
    font-size: 12px;
    color: var(--mid-gray);
  }
  .number-card .num-note {
    font-size: 9px;
    color: #999;
    margin-top: 4px;
  }
  .num-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--crimson);
    margin-top: 8px;
    line-height: 1.5;
  }
  /* Accent variant — crimson top border */
  .number-card--accent {
    border-top: 3px solid var(--crimson);
    background: linear-gradient(to bottom, rgba(139,26,46,0.03) 0%, var(--white) 40%);
  }
  .num-icon {
    font-size: 40px;
    margin-bottom: 8px;
    display: block;
  }

  /* ─── CASE STUDY ─── */
  .case-section {
    background: var(--crimson);
    padding: 60px 0;
  }
  .case-section .section-label { color: rgba(255,255,255,0.7); }
  .case-section .section-title { color: white; }
  .logos-row {
    background: white;
    border-radius: 4px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .logo-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    padding: 8px 16px;
    border: 1px solid var(--border);
  }

  /* ─── BENEFITS ─── */
  .benefits-section { background: var(--white); }
  .benefits-table {
    width: 100%;
    border: 1px solid var(--border);
    border-collapse: collapse;
  }
  .benefits-table tr {
    border-bottom: 1px solid var(--border);
  }
  .benefits-table td {
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.7;
    vertical-align: top;
  }
  .benefits-table td:first-child {
    background: var(--crimson);
    color: white;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    width: 100px;
    text-align: center;
    vertical-align: middle;
  }
  .benefits-table td:last-child {
    color: var(--mid-gray);
  }
  .benefits-table ul {
    padding-left: 16px;
  }
  .benefits-table ul li {
    margin-bottom: 4px;
  }

  /* ─── FAQ ─── */
  .faq-section { background: var(--light-gray); }
  .faq-title-block {
    margin-bottom: 40px;
  }
  .faq-title-block .red-bar {
    width: 32px;
    height: 3px;
    background: var(--crimson);
    margin-bottom: 12px;
  }
  .faq-title-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
  }
  .faq-title-block span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: var(--mid-gray);
    margin-left: 12px;
  }

  .faq-item {
    background: var(--white);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  }
  .faq-q {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.15s;
  }
  .faq-q:hover { background: var(--cream); }
  .faq-q-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .faq-q-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    flex: 1;
    margin-top: 2px;
  }
  .faq-arrow {
    font-size: 12px;
    color: var(--crimson);
    flex-shrink: 0;
    margin-top: 4px;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-a {
    display: none;
    padding: 0 24px 20px 52px;
  }
  .faq-item.open .faq-a { display: block; }
  .faq-a-inner {
    display: flex;
    gap: 14px;
  }
  .faq-a-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
    flex-shrink: 0;
  }
  .faq-a-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--mid-gray);
  }

  /* ─── PHOTO STRIP ─── */
  .photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 200px;
  }
  .photo-strip div {
    background: linear-gradient(160deg, #b8a090, #8a7060);
    position: relative;
    overflow: hidden;
  }
  .photo-strip div:nth-child(2) { background: linear-gradient(160deg, #8a7060, #6a5040); }
  .photo-strip div:nth-child(3) { background: linear-gradient(160deg, #a09080, #7a6050); }
  .photo-strip div:nth-child(4) { background: linear-gradient(160deg, #907060, #705040); }

  /* ─── BOTTOM CTA ─── */
  .bottom-cta {
    background: var(--dark-bg);
    padding: 60px 0;
  }

  /* ─── TEAM PHOTO ─── */
  .team-photo {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2a1a1a, #1a1010);
    position: relative;
    overflow: hidden;
  }
  .team-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 60%, rgba(139,26,46,0.2) 0%, transparent 60%);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--crimson);
    padding: 60px 0 30px;
    color: white;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
  }
  .footer-stores {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
  }
  .store-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }
  .store-info {
    font-size: 11px;
    line-height: 1.8;
    opacity: 0.8;
  }
  .store-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    font-size: 11px;
  }
  .footer-sns {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
  }
  .sns-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .sns-icon:hover { background: rgba(255,255,255,0.3); }
  .footer-copy {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    font-size: 11px;
    opacity: 0.6;
    text-align: center;
  }

  /* ─── WATCHES HANDLED ─── */
  .watches-section {
    background: var(--charcoal);
    padding: 80px 0;
  }
  .watches-section .section-label { color: rgba(255,255,255,0.5); }
  .watches-section .section-title-ja {
    color: white;
    margin-bottom: 16px;
  }

  .watches-lead {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 48px;
    letter-spacing: 0.05em;
  }
  .watches-lead strong {
    color: white;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .watches-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .watch-img-card {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
  }
  .watch-img-card:hover {
    transform: translateY(-5px);
  }

  .watch-img {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  /* Placeholder gradients — swap for real watch photos */
  .watch-img--1 { background: linear-gradient(160deg, #3a2a1a, #1a1208); }
  .watch-img--2 { background: linear-gradient(160deg, #1a2030, #0a1020); }
  .watch-img--3 { background: linear-gradient(160deg, #2a1a20, #180d12); }
  .watch-img--4 { background: linear-gradient(160deg, #1a2a1a, #0d180d); }
  .watch-img--5 { background: linear-gradient(160deg, #2a2218, #1a160e); }

  .watch-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
  }

  .watch-img-hint {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    border: 1px dashed rgba(255,255,255,0.15);
    padding: 6px 12px;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .watches-row { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 480px) {
    .watches-row { grid-template-columns: repeat(2, 1fr); }
  }

  /* ─── REPAIR PROCESS ─── */
  .repair-section {
    background: var(--white);
    padding: 80px 0;
  }

  .repair-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .repair-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 320px;
    border-bottom: 1px solid var(--border);
  }
  .repair-item:first-child { border-top: 1px solid var(--border); }

  /* Reversed layout for even items */
  .repair-item--rev .repair-img-wrap { order: 2; }
  .repair-item--rev .repair-body     { order: 1; }

  .repair-img-wrap {
    position: relative;
    overflow: hidden;
  }

  .repair-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Replace background with background-image: url('your-photo.jpg'); background-size: cover; */
  }

  /* Placeholder gradients — swap for real photos */
  .repair-img--1 { background: linear-gradient(135deg, #c8b090, #9a8060); }
  .repair-img--2 { background: linear-gradient(135deg, #90a0b8, #607080); }
  .repair-img--3 { background: linear-gradient(135deg, #b0b890, #808860); }
  .repair-img--4 { background: linear-gradient(135deg, #c8a0a0, #987070); }
  .repair-img--5 { background: linear-gradient(135deg, #a090b8, #706088); }
  .repair-img--6 { background: linear-gradient(135deg, #b8c0a0, #889070); }

  .repair-img-hint {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    border: 1px dashed rgba(255,255,255,0.3);
    padding: 8px 16px;
    pointer-events: none;
  }

  .repair-body {
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    position: relative;
  }

  /* Subtle tint for reversed rows */
  .repair-item--rev .repair-body {
    background: var(--cream);
  }

  .repair-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: rgba(139,26,46,0.10);
    position: absolute;
    top: 24px;
    left: 48px;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
  }

  .repair-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--charcoal);
    position: relative;
    padding-left: 16px;
  }
  .repair-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: 18px;
    background: var(--crimson);
  }

  .repair-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--mid-gray);
    position: relative;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    nav { padding: 12px 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-content h1 { font-size: 22px; }
    .hero-entry-btn { padding: 12px 16px; }

    .cards-grid,
    .jobs-grid { grid-template-columns: 1fr; }
    .job-card--featured { grid-column: auto; }
    .repair-item--rev .repair-img-wrap,
    .repair-item--rev .repair-body {
      grid-template-columns: 1fr;
      order: unset !important;
    }
    .repair-item { grid-template-columns: 1fr; }
    .repair-body { padding: 32px 24px; }
    .repair-num  { font-size: 44px; top: 16px; left: 16px; }
    .repair-img  { min-height: 220px; }

    .about-layout { grid-template-columns: 1fr; gap: 32px; }

    .work-grid { grid-template-columns: repeat(2, 1fr); }

    .numbers-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-stores { grid-template-columns: repeat(2, 1fr); }

    .photo-strip { grid-template-columns: repeat(2, 1fr); }

    .logos-row { gap: 24px; }

    section { padding: 56px 0; }
  }

  @media (max-width: 480px) {
    .work-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .footer-stores { grid-template-columns: 1fr; }
    .about-title-block h2 { font-size: 28px; }
  }
