/*
Theme Name: TORUAS Location Crew
Theme URI: https://location.toruas.co.jp/
Author: 合同会社トルアス
Author URI: https://www.toruas.co.jp/
Description: 鹿児島ロケ受注用カスタムテーマ。バラエティ・情報番組の地方ロケに同行する撮影クルー手配HP。
Version: 1.4.1
License: Proprietary
Text Domain: toruas-location-crew
Tags: dark, custom-colors, custom-menu, full-width-template
*/

/* ============================================================
 * TORUAS Location Crew — Dark Cinema Edition (v2)
 * Inspired by professional video production studio aesthetics
 * Color: ink black + warm gold accent. No flat blue/orange UI.
 * ============================================================ */

:root {
  --ink-900: #0A0A0A;
  --ink-800: #0F0F0F;
  --ink-700: #1A1A1A;
  --ink-600: #252525;
  --ink-500: #303030;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text-primary: #FFFFFF;
  --text-secondary: #E8E8E8;
  --text-muted: #9A9A9A;
  --text-dim: #6A6A6A;
  --gold: #C9A961;
  --gold-bright: #D4B872;

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-en: "Inter", "Helvetica Neue", "Arial", sans-serif;

  --wrap: 1280px;
  --wrap-narrow: 1080px;

  --pad-section: clamp(80px, 12vw, 160px);
  --pad-section-md: clamp(64px, 10vw, 120px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink-900);
}

/* ============================================================
 * Layout primitives
 * ============================================================ */

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(calc(100% - 40px), var(--wrap-narrow));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--pad-section) 0;
}

.section--tight {
  padding: var(--pad-section-md) 0;
}

.section--ink-900 { background: var(--ink-900); }
.section--ink-800 { background: var(--ink-800); }
.section--ink-700 { background: var(--ink-700); }
.section--ink-600 { background: var(--ink-600); }

/* ============================================================
 * Typography — large, bold, cinema-poster scale
 * ============================================================ */

h1, h2, h3, h4, p, ul, ol, dl {
  margin: 0;
}

h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
}

h4 {
  font-size: 17px;
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: clamp(15px, 1.4vw, 16px);
}

p + p {
  margin-top: 1.2em;
}

/* English caption / eyebrow — keep minimal, no leading numbers */
.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

/* Section heading without eyebrow — for less-uniform sections */
.section-head--plain { gap: 20px; }
.section-head--plain h2 { letter-spacing: -0.015em; }

/* Big english header (cinema-poster style) */
.en-banner {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

.en-banner--outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.en-banner--accent {
  color: var(--gold);
}

.en-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lead {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 38ch;
}

/* ============================================================
 * Header / Navigation
 * ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 48px);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-logo__img {
  height: 22px;
  width: auto;
  display: block;
}

.site-logo__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 12px;
}

.site-logo__sub {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .site-logo__img { height: 20px; }
  .site-logo__divider { margin: 0 8px; }
  .site-logo__sub { font-size: 9.5px; letter-spacing: 0.12em; }
}

.global-nav {
  display: none;
}

.global-nav a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 200ms ease;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.global-nav a:hover {
  color: var(--text-primary);
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: grid;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  color: var(--text-primary);
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
}

@media (min-width: 920px) {
  .global-nav {
    display: flex;
    gap: 36px;
  }
  .nav-toggle { display: none; }
}

@media (max-width: 919px) {
  .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }
  .global-nav.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .global-nav a {
    padding: 14px clamp(20px, 5vw, 48px);
    border-bottom: 1px solid var(--line);
  }
  .global-nav a::after { display: none; }
}

/* ============================================================
 * Buttons
 * ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 32px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn::after {
  content: "→";
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 220ms ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn--primary {
  color: var(--ink-900);
  background: var(--text-primary);
  border-color: var(--text-primary);
}

.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-900);
}

.btn--gold {
  color: var(--ink-900);
  background: var(--gold);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn--outline {
  color: var(--text-primary);
  background: transparent;
  border-color: var(--line-strong);
}

.btn--outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost {
  color: var(--text-primary);
  background: transparent;
  border: none;
  padding: 8px 0;
  min-height: 0;
}

.btn--ghost::after {
  margin-left: 8px;
}

.btn--ghost:hover {
  color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 220ms ease, border-color 220ms ease;
}

.text-link::after {
  content: "→";
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 220ms ease;
}

.text-link:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* ============================================================
 * Hero — full-bleed cinema scope
 * ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(120px, 16vh, 180px) 0 clamp(80px, 10vh, 120px);
  overflow: hidden;
  background: var(--ink-900);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.35) 35%, rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.2) 50%);
}

.hero__inner {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}

.hero__caption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.hero__caption::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  max-width: 16ch;
  color: var(--text-primary);
}

.hero__title .nl {
  display: block;
}

.hero__title em {
  font-style: normal;
  display: block;
  font-family: var(--font-en);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 12px;
  color: var(--gold);
  line-height: 1.05;
}

.hero__lead {
  max-width: 26ch;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__meta {
  position: relative;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hero__meta dt {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero__meta dd {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__scroll {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 32px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-secondary);
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
}

/* ============================================================
 * Section Heading variants
 * ============================================================ */

.section-head {
  display: grid;
  gap: 28px;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 920px;
}

.section-head__title {
  display: grid;
  gap: 16px;
}

.section-head__lead {
  max-width: 60ch;
  color: var(--text-secondary);
}

/* ============================================================
 * Coverage / Areas section
 * ============================================================ */

.coverage {
  position: relative;
}

.coverage-grid {
  display: grid;
  gap: clamp(48px, 6vw, 88px);
  grid-template-columns: 1fr;
}

@media (min-width: 920px) {
  .coverage-grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }
}

.coverage__copy h2 { margin-bottom: 28px; }

.coverage__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.coverage__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 240ms ease, color 240ms ease;
}

.coverage__item:hover {
  padding-left: 12px;
}

.coverage__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

.coverage__name {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.coverage__name small {
  display: block;
  margin-top: 6px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.coverage__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: right;
  max-width: 32ch;
  justify-self: end;
}

@media (max-width: 720px) {
  .coverage__item {
    grid-template-columns: 1fr;
  }
  .coverage__desc {
    grid-column: 1 / -1;
    text-align: left;
    max-width: none;
    margin-top: 8px;
    justify-self: stretch;
  }
}

/* ============================================================
 * Service / Pricing
 * ============================================================ */

.service-grid {
  display: grid;
  gap: clamp(40px, 4vw, 64px);
}

@media (min-width: 920px) {
  .service-grid {
    grid-template-columns: 4.5fr 7.5fr;
    align-items: start;
  }
}

.price-card {
  position: relative;
  padding: clamp(36px, 4vw, 56px);
  background: var(--ink-700);
  border: 1px solid var(--line);
  display: grid;
  gap: 28px;
  align-content: start;
}

.price-card__amount {
  display: grid;
  gap: 8px;
}

.price-card__amount strong {
  font-family: var(--font-en);
  font-size: clamp(56px, 8vw, 84px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.price-card__amount span {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.price-card__amount em {
  font-style: normal;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.service-spec {
  display: grid;
  gap: 0;
}

.service-spec__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

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

@media (min-width: 720px) {
  .service-spec__row {
    grid-template-columns: 200px 1fr 180px;
    gap: 32px;
    align-items: baseline;
  }
}

.service-spec__name {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-spec__name b {
  display: block;
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-top: 6px;
}

.service-spec__desc {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.85;
}

.service-spec__price {
  text-align: right;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 719px) {
  .service-spec__price { text-align: left; }
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}

/* ============================================================
 * Equipment / Gear section
 * ============================================================ */

.equipment {
  position: relative;
  overflow: hidden;
}

.equipment-feature {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 920px) {
  .equipment-feature {
    grid-template-columns: 7fr 5fr;
  }
  .equipment-feature--reverse {
    grid-template-columns: 5fr 7fr;
  }
  .equipment-feature--reverse > .equipment-feature__copy {
    order: 2;
  }
}

.equipment-feature__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-700);
}

.equipment-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10, 10, 10, 0.4));
  pointer-events: none;
}

.equipment-feature__copy h2 {
  margin-bottom: 24px;
}

.gear-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.gear-grid article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .gear-grid article {
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: baseline;
  }
}

.gear-grid__num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.gear-grid h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 2vw, 22px);
}

.gear-grid p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
}

/* ============================================================
 * Why / Strengths
 * ============================================================ */

.strengths-grid {
  display: grid;
  gap: clamp(40px, 5vw, 64px);
}

@media (min-width: 920px) {
  .strengths-grid {
    grid-template-columns: 4fr 8fr;
  }
}

.strength-cards {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.strength-cards article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 240ms ease;
}

@media (min-width: 720px) {
  .strength-cards article {
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: baseline;
  }
}

.strength-cards article:hover {
  padding-left: 12px;
}

.strength-cards__num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-top: 6px;
}

.strength-cards h3 {
  margin-bottom: 12px;
}

.strength-cards p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

/* ============================================================
 * Works
 * ============================================================ */

.works-numbers {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 56px;
}

.works-numbers article {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.works-numbers__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.works-numbers__category {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.works-numbers__detail {
  display: block;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 6px;
}

.works-projects {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 720px) {
  .works-projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .works-projects {
    grid-template-columns: repeat(4, 1fr);
  }
}

.works-projects article {
  padding: 32px;
  background: var(--ink-700);
  border: 1px solid var(--line);
  transition: border-color 240ms ease, transform 240ms ease;
}

.works-projects article:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.works-projects__cat {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.works-projects h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.works-projects p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.press-bar {
  margin-top: clamp(48px, 6vw, 80px);
  padding: 36px 40px;
  background: var(--ink-700);
  border-left: 2px solid var(--gold);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
}

.press-bar p {
  margin: 0;
  font-size: 16px;
  color: var(--text-secondary);
  flex: 1 1 320px;
}

.press-bar strong {
  color: var(--text-primary);
  font-weight: 800;
}

/* ============================================================
 * Profile
 * ============================================================ */

.profile-grid {
  display: grid;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 920px) {
  .profile-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.profile__photo {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--ink-700);
  border: 1px solid var(--line);
  overflow: hidden;
}

.profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile__photo--placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, var(--ink-700), var(--ink-600));
}

.profile__photo--placeholder span {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.profile h2 {
  margin-bottom: 28px;
}

.profile__name {
  font-family: var(--font-en);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.profile__role {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.profile__points {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.profile__points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.profile__points li::before {
  content: "—";
  color: var(--gold);
  font-family: var(--font-en);
  font-weight: 700;
}

/* ============================================================
 * Credentials
 * ============================================================ */

.credentials-grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
}

@media (min-width: 920px) {
  .credentials-grid {
    grid-template-columns: 4fr 8fr;
  }
}

.credentials-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.credentials-list article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .credentials-list article {
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: baseline;
  }
}

.credentials-list h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.credentials-list p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

.credentials-list__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-top: 6px;
}

/* ============================================================
 * Contact / Form
 * ============================================================ */

.contact-grid {
  display: grid;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}

@media (min-width: 920px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.contact-info h2 {
  margin-bottom: 32px;
}

.contact-lines {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-en);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  transition: color 240ms ease;
}

.contact-lines a:hover {
  color: var(--gold);
}

.contact-lines a::before {
  content: attr(data-label);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 28px;
  padding: clamp(32px, 4vw, 56px);
  background: var(--ink-700);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  gap: 12px;
}

.form-row--full {
  grid-column: 1 / -1;
}

@media (min-width: 600px) {
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form > .btn,
  .contact-form > .form-row--full,
  .contact-form > .form-status {
    grid-column: 1 / -1;
  }
}

label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--text-primary);
  font: inherit;
  font-size: 15px;
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 240ms ease, background 240ms ease;
}

textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ink-700);
}

.form-status {
  min-height: 24px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.form-status.is-error {
  color: #E27272;
}

/* ============================================================
 * CTA Band
 * ============================================================ */

.cta-band {
  margin-top: clamp(56px, 6vw, 96px);
  padding: clamp(40px, 5vw, 72px);
  background: var(--ink-700);
  border: 1px solid var(--line);
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 760px) {
  .cta-band {
    grid-template-columns: 1fr auto;
  }
}

.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 0;
  max-width: 32ch;
  line-height: 1.25;
}

/* ============================================================
 * FAQ
 * ============================================================ */

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  padding: 28px 0;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 200ms ease;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: transform 240ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary:hover {
  color: var(--gold);
}

.faq-list p {
  padding: 0 0 28px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 70ch;
}

/* ============================================================
 * Sub-page hero (service / equipment / works / contact)
 * ============================================================ */

.sub-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: clamp(140px, 18vh, 180px) 0 clamp(72px, 9vh, 120px);
  overflow: hidden;
  background: var(--ink-900);
  isolation: isolate;
}

.sub-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.sub-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.95) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.3));
}

.sub-hero__inner {
  display: grid;
  gap: 32px;
  max-width: 920px;
}

.sub-hero h1 {
  font-size: clamp(36px, 6.5vw, 72px);
}

/* ============================================================
 * Steps (process flow)
 * ============================================================ */

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 920px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    border-top: none;
  }
}

.steps article {
  position: relative;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: stepcount;
}

.steps {
  counter-reset: stepcount;
}

.steps article::before {
  content: counter(stepcount, decimal-leading-zero);
  display: block;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

@media (min-width: 920px) {
  .steps article {
    padding: 0 32px 32px 32px;
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .steps article:first-child { padding-left: 0; }
  .steps article:last-child { padding-right: 0; border-right: none; }
}

.steps__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 16px;
}

.steps h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.steps p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================================
 * Spec table (used on equipment page)
 * ============================================================ */

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 24px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.spec-table tr:first-child th,
.spec-table tr:first-child td {
  border-top: 1px solid var(--line);
}

.spec-table th {
  width: 30%;
  padding-right: 32px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
}

.spec-table td {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }
  .spec-table th { padding-bottom: 8px; }
  .spec-table td { border-top: none; padding-top: 0; padding-bottom: 24px; }
}

/* ============================================================
 * Case studies grid (works page)
 * ============================================================ */

.case-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 720px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-grid article {
  background: var(--ink-700);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: border-color 240ms ease, transform 240ms ease;
}

.case-grid article:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.case-grid__photo {
  aspect-ratio: 16 / 9;
  background: var(--ink-600);
  position: relative;
  overflow: hidden;
}

.case-grid__photo--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 14px, transparent 14px, transparent 28px),
    radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.12), transparent 50%);
}

.case-grid__photo span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 2;
}

.case-grid__body {
  padding: 32px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.case-grid__cat {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.case-grid h3 {
  font-size: 19px;
}

.case-grid p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
}

/* ============================================================
 * Footer
 * ============================================================ */

.site-footer {
  padding: clamp(64px, 8vw, 120px) 0 40px;
  background: var(--ink-900);
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  gap: clamp(40px, 5vw, 64px);
  margin-bottom: 56px;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 6fr 6fr;
    align-items: start;
  }
}

.footer-brand h3 {
  font-family: var(--font-en);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 0.95;
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 4px 0;
}

.footer-brand p strong {
  color: var(--text-secondary);
  font-weight: 700;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-nav__group h4 {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-nav__group ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.footer-nav__group a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 200ms ease;
}

.footer-nav__group a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

/* ============================================================
 * Editorial — long-form reading block (asymmetric, no list)
 * ============================================================ */

.editorial {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

@media (min-width: 920px) {
  .editorial {
    grid-template-columns: 4fr 7fr;
    gap: clamp(48px, 7vw, 96px);
  }
}

.editorial__lede {
  position: sticky;
  top: 120px;
}

.editorial__lede h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
}

.editorial__lede p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.85;
  max-width: 28ch;
}

.editorial__body {
  display: grid;
  gap: 24px;
  max-width: 60ch;
}

.editorial__body p {
  font-size: clamp(15.5px, 1.45vw, 17px);
  line-height: 2;
  color: var(--text-secondary);
}

.editorial__body p:first-of-type::first-letter {
  font-family: var(--font-en);
  float: left;
  font-size: 4.4em;
  line-height: 0.85;
  font-weight: 900;
  color: var(--gold);
  margin: 8px 14px 0 0;
}

.editorial__pull {
  margin: 8px 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

@media (max-width: 919px) {
  .editorial__lede { position: static; }
}

/* ============================================================
 * Stat-band — single metric blow-up (rhythm break)
 * ============================================================ */

.stat-band {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}

@media (min-width: 920px) {
  .stat-band {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-band__item {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.stat-band__num {
  font-family: var(--font-en);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.stat-band__num em {
  font-style: normal;
  font-size: 0.45em;
  color: var(--gold);
  margin-left: 4px;
  font-weight: 700;
}

.stat-band__label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.stat-band__caption {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}

/* ============================================================
 * Statement — short manifesto block, no eyebrow
 * ============================================================ */

.statement {
  max-width: 64ch;
  margin: 0 auto;
  text-align: center;
}

.statement h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  margin-bottom: 32px;
}

.statement p {
  font-size: clamp(15px, 1.5vw, 17.5px);
  line-height: 2.05;
  color: var(--text-secondary);
}

.statement__sign {
  margin-top: 36px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Section padding rhythm variants */
.section--compact { padding: clamp(60px, 8vw, 96px) 0; }
.section--ample   { padding: clamp(110px, 16vw, 200px) 0; }

/* Plain card — for works projects without leading english tag */
.case-grid__cat--plain {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--gold);
}

/* Section divider — used between editorial blocks */
.divider {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: clamp(40px, 5vw, 64px) 0;
}

/* ============================================================
 * Misc helpers / placeholder
 * ============================================================ */

.is-hidden { display: none !important; }

.placeholder-photo {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 14px, transparent 14px, transparent 28px),
    radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.18), transparent 50%),
    var(--ink-700);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.placeholder-photo span {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
 * Reveal animation (subtle)
 * ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
 * Responsive tweaks
 * ============================================================ */

@media (max-width: 600px) {
  .hero__title em { font-size: clamp(28px, 9vw, 44px); }
  .hero__scroll { display: none; }
  .price-card { padding: 32px 24px; }
  .contact-form { padding: 28px 24px; }
}

/* Coverage list — link style for area pages */
.coverage__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 200ms ease, transform 240ms ease;
}

.coverage__link:hover {
  opacity: 0.9;
  transform: translateX(4px);
}

.coverage__more {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 240ms ease, letter-spacing 240ms ease;
}

.coverage__link:hover .coverage__more {
  opacity: 1;
  letter-spacing: 0.22em;
}

/* ============================================================
 * Case Grid (text-only variant)
 * 画像枠を撤去し、テキスト主体の業務カードに再設計
 * ============================================================ */
.case-grid--text {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 720px) {
  .case-grid--text {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
.case-grid--text > article {
  padding: 44px clamp(28px, 4vw, 44px);
  background: var(--ink-800);
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 240ms ease, transform 240ms ease;
}
.case-grid--text > article:hover {
  background: var(--ink-700);
  transform: translateY(-2px);
}
.case-grid--text .case-grid__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-grid--text .case-grid__cat {
  margin: 0;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.case-grid--text h3 {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.case-grid--text p:last-child {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
}
